From 47e093534e5cf86c3e50c2d1d3b9edf61d83cb0c Mon Sep 17 00:00:00 2001 From: Peter Deng Date: Thu, 16 Sep 2021 12:54:40 +0800 Subject: [PATCH 01/25] singleton sysinfo host to avoid frequently collecting host info --- libbeat/metric/system/process/process.go | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/libbeat/metric/system/process/process.go b/libbeat/metric/system/process/process.go index 8ec358d3a81..897922d7217 100644 --- a/libbeat/metric/system/process/process.go +++ b/libbeat/metric/system/process/process.go @@ -27,6 +27,7 @@ import ( "strings" "time" + "github.com/elastic/go-sysinfo/types" "github.com/pkg/errors" "github.com/elastic/beats/v7/libbeat/common" @@ -60,7 +61,7 @@ type Process struct { FD sigar.ProcFDUsage Env common.MapStr - //cpu stats + // cpu stats cpuSinceStart float64 cpuTotalPct float64 cpuTotalPctNorm float64 @@ -291,12 +292,20 @@ func GetOwnResourceUsageTimeInMillis() (int64, int64, error) { return uTime, sTime, nil } +var ( + host types.Host + err error +) + +func init() { + host, err = sysinfo.Host() +} + func (procStats *Stats) getProcessEvent(process *Process) common.MapStr { // This is a holdover until we migrate this library to metricbeat/internal // At which point we'll use the memory code there. var totalPhyMem uint64 - host, err := sysinfo.Host() if err != nil { procStats.logger.Warnf("Getting host details: %v", err) } else { From 9100f0554c5d4be11785a7b47b1b346e17012f4b Mon Sep 17 00:00:00 2001 From: Peter Deng Date: Fri, 24 Sep 2021 08:59:43 +0800 Subject: [PATCH 02/25] add Host object to Stats object --- libbeat/metric/system/process/process.go | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/libbeat/metric/system/process/process.go b/libbeat/metric/system/process/process.go index 897922d7217..ede59d6e69d 100644 --- a/libbeat/metric/system/process/process.go +++ b/libbeat/metric/system/process/process.go @@ -95,6 +95,7 @@ type Stats struct { envRegexps []match.Matcher // List of regular expressions used to whitelist env vars. cgroups *cgroup.Reader logger *logp.Logger + host types.Host } // Ticks of CPU for a process @@ -292,24 +293,12 @@ func GetOwnResourceUsageTimeInMillis() (int64, int64, error) { return uTime, sTime, nil } -var ( - host types.Host - err error -) - -func init() { - host, err = sysinfo.Host() -} - func (procStats *Stats) getProcessEvent(process *Process) common.MapStr { - // This is a holdover until we migrate this library to metricbeat/internal // At which point we'll use the memory code there. var totalPhyMem uint64 - if err != nil { - procStats.logger.Warnf("Getting host details: %v", err) - } else { - memStats, err := host.Memory() + if procStats.host != nil { + memStats, err := procStats.host.Memory() if err != nil { procStats.logger.Warnf("Getting memory details: %v", err) } else { @@ -435,6 +424,13 @@ func (procStats *Stats) matchProcess(name string) bool { // cannot be compiled. func (procStats *Stats) Init() error { procStats.logger = logp.NewLogger("processes") + + var err error + procStats.host, err = sysinfo.Host() + if err != nil { + procStats.logger.Warnf("Getting host details: %v", err) + } + procStats.ProcsMap = make(ProcsMap) if len(procStats.Procs) == 0 { From 1694024e2324e29ec98370aac2b6f7f8ddede43c Mon Sep 17 00:00:00 2001 From: Peter Deng Date: Mon, 27 Sep 2021 14:38:17 +0800 Subject: [PATCH 03/25] update changelog --- CHANGELOG.next.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index b3efac5cbbc..ac823715623 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -22,6 +22,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Skip add_kubernetes_metadata processor when kubernetes metadata are already present {pull}27689[27689] - Remove deprecated/undocumented IncludeCreatorMetadata setting from kubernetes metadata config options {pull}28006[28006] - Remove deprecated fields from kubernetes module {pull}28046[28046] +- Improve stats API {pull}27963[27963] *Auditbeat* From 30e78c2b403b9559a992c0c22aa790023e3adb2f Mon Sep 17 00:00:00 2001 From: Peter Deng Date: Wed, 6 Oct 2021 22:32:51 +0800 Subject: [PATCH 04/25] set procStats.host to nil if any error calling sysinfo.Host() --- libbeat/metric/system/process/process.go | 1 + 1 file changed, 1 insertion(+) diff --git a/libbeat/metric/system/process/process.go b/libbeat/metric/system/process/process.go index ede59d6e69d..b28cf073827 100644 --- a/libbeat/metric/system/process/process.go +++ b/libbeat/metric/system/process/process.go @@ -428,6 +428,7 @@ func (procStats *Stats) Init() error { var err error procStats.host, err = sysinfo.Host() if err != nil { + procStats.host = nil procStats.logger.Warnf("Getting host details: %v", err) } From 902d579f2c7f5397d566e21f4d4b23fce5558a4b Mon Sep 17 00:00:00 2001 From: kaiyan-sheng Date: Thu, 7 Oct 2021 08:32:07 -0600 Subject: [PATCH 05/25] Update aws-lambda-go library version to 1.13.3 (#28236) --- NOTICE.txt | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++-- go.mod | 2 +- go.sum | 8 +++- 3 files changed, 112 insertions(+), 7 deletions(-) diff --git a/NOTICE.txt b/NOTICE.txt index ff814610ef0..b9de0bf3a34 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -2626,11 +2626,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/aws/aws-lambda-go -Version: v1.6.0 +Version: v1.13.3 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-lambda-go@v1.6.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-lambda-go@v1.13.3/LICENSE: Apache License @@ -26218,6 +26218,37 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +Dependency : github.com/cpuguy83/go-md2man/v2 +Version: v2.0.0-20190314233015-f79a8a8ca69d +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/cpuguy83/go-md2man/v2@v2.0.0-20190314233015-f79a8a8ca69d/LICENSE.md: + +The MIT License (MIT) + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + -------------------------------------------------------------------------------- Dependency : github.com/creack/pty Version: v1.1.9 @@ -39643,6 +39674,45 @@ Blackfriday is distributed under the Simplified BSD License: > POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +Dependency : github.com/russross/blackfriday/v2 +Version: v2.0.1 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/russross/blackfriday/v2@v2.0.1/LICENSE.txt: + +Blackfriday is distributed under the Simplified BSD License: + +> Copyright © 2011 Russ Ross +> All rights reserved. +> +> Redistribution and use in source and binary forms, with or without +> modification, are permitted provided that the following conditions +> are met: +> +> 1. Redistributions of source code must retain the above copyright +> notice, this list of conditions and the following disclaimer. +> +> 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. + + -------------------------------------------------------------------------------- Dependency : github.com/samuel/go-parser Version: v0.0.0-20130731160455-ca8abbf65d0e @@ -40018,6 +40088,37 @@ DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +Dependency : github.com/shurcooL/sanitized_anchor_name +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/shurcoo!l/sanitized_anchor_name@v1.0.0/LICENSE: + +MIT License + +Copyright (c) 2015 Dmitri Shuralyov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + -------------------------------------------------------------------------------- Dependency : github.com/sirupsen/logrus Version: v1.4.2 @@ -40523,11 +40624,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/urfave/cli -Version: v0.0.0-20171014202726-7bc6a0acffa5 +Version: v1.22.1 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/urfave/cli@v0.0.0-20171014202726-7bc6a0acffa5/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/urfave/cli@v1.22.1/LICENSE: MIT License diff --git a/go.mod b/go.mod index 9c471a98274..e4194dde3dc 100644 --- a/go.mod +++ b/go.mod @@ -30,7 +30,7 @@ require ( github.com/antlr/antlr4 v0.0.0-20200820155224-be881fa6b91d github.com/apoydence/eachers v0.0.0-20181020210610-23942921fe77 // indirect github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 - github.com/aws/aws-lambda-go v1.6.0 + github.com/aws/aws-lambda-go v1.13.3 github.com/aws/aws-sdk-go-v2 v0.24.0 github.com/awslabs/goformation/v4 v4.1.0 github.com/blakesmith/ar v0.0.0-20150311145944-8bd4349a67f2 diff --git a/go.sum b/go.sum index b56560c5a4e..8c4f650587a 100644 --- a/go.sum +++ b/go.sum @@ -153,8 +153,8 @@ github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgI github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-lambda-go v1.6.0 h1:T+u/g79zPKw1oJM7xYhvpq7i4Sjc0iVsXZUaqRVVSOg= -github.com/aws/aws-lambda-go v1.6.0/go.mod h1:zUsUQhAUjYzR8AuduJPCfhBuKWUaDbQiPOG+ouzmE1A= +github.com/aws/aws-lambda-go v1.13.3 h1:SuCy7H3NLyp+1Mrfp+m80jcbi9KYWAs9/BXwppwRDzY= +github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-sdk-go-v2 v0.24.0 h1:R0lL0krk9EyTI1vmO1ycoeceGZotSzCKO51LbPGq3rU= github.com/aws/aws-sdk-go-v2 v0.24.0/go.mod h1:2LhT7UgHOXK3UXONKI5OMgIyoQL6zTAw/jwIeX6yqzw= github.com/awslabs/goformation/v3 v3.1.0/go.mod h1:hQ5RXo3GNm2laHWKizDzU5DsDy+yNcenSca2UxN0850= @@ -219,6 +219,7 @@ github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+ github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea h1:n2Ltr3SrfQlf/9nOna1DoGKxLx3qTSI8Ttl6Xrqp6mw= github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/cucumber/godog v0.8.1 h1:lVb+X41I4YDreE+ibZ50bdXmySxgRviYFgKY6Aw4XE8= github.com/cucumber/godog v0.8.1/go.mod h1:vSh3r/lM+psC1BPXvdkSEuNjmXfpVqrMGYAElF6hxnA= @@ -740,6 +741,7 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqn github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e h1:hUGyBE/4CXRPThr4b6kt+f1CN90no4Fs5CNrYOKYSIg= github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e/go.mod h1:Sb6li54lXV0yYEjI4wX8cucdQ9gqUJV3+Ngg3l9g30I= github.com/samuel/go-thrift v0.0.0-20140522043831-2187045faa54 h1:jbchLJWyhKcmOjkbC4zDvT/n5EEd7g6hnnF760rEyRA= @@ -760,6 +762,7 @@ github.com/shirou/gopsutil v3.20.12+incompatible h1:6VEGkOXP/eP4o2Ilk8cSsX0PhOEf github.com/shirou/gopsutil v3.20.12+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= @@ -809,6 +812,7 @@ github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljT github.com/ugorji/go/codec v1.1.8 h1:4dryPvxMP9OtkjIbuNeK2nb27M38XMHLGlfNSNph/5s= github.com/ugorji/go/codec v1.1.8/go.mod h1:X00B19HDtwvKbQY2DcYjvZxKQp8mzrJoQ6EgoIY/D2E= github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urso/diag v0.0.0-20200210123136-21b3cc8eb797 h1:OHNw/6pXODJAB32NujjdQO/KIYQ3KAbHQfCzH81XdCs= github.com/urso/diag v0.0.0-20200210123136-21b3cc8eb797/go.mod h1:pNWFTeQ+V1OYT/TzWpnWb6eQBdoXpdx+H+lrH97/Oyo= github.com/urso/go-bin v0.0.0-20180220135811-781c575c9f0e h1:NiofbjIUI5gR+ybDsGSVH1fWyjSeDYiYVJHT1+kcsak= From 80b9e281a3fb3ad03d8cc320e94929e93b4b20e2 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 7 Oct 2021 16:45:43 +0100 Subject: [PATCH 06/25] [cloud][docker] use the private docker namespace (#28286) --- .ci/packaging.groovy | 10 +++++++--- Jenkinsfile | 11 +++++++---- dev-tools/packaging/packages.yml | 5 +++-- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index a59ff4f2e40..4f960aaf3cd 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -328,14 +328,16 @@ def tagAndPush(Map args = [:]) { } variants.each { variant -> + // cloud docker images are stored in the private docker namespace. + def sourceNamespace = variant.equals('-cloud') ? 'beats-ci' : 'beats' tags.each { tag -> // TODO: // For backward compatibility let's ensure we tag only for amd64, then E2E can benefit from until // they support the versioning with the architecture if ("${arch}" == "amd64") { - doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}") + doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}", sourceNamespace: sourceNamespace) } - doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}") + doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}", sourceNamespace: sourceNamespace) } } } @@ -343,6 +345,7 @@ def tagAndPush(Map args = [:]) { /** * @param beatName name of the Beat * @param variant name of the variant used to build the docker image name +* @param sourceNamespace namespace to be used as source for the docker tag command * @param sourceTag tag to be used as source for the docker tag command, usually under the 'beats' namespace * @param targetTag tag to be used as target for the docker tag command, usually under the 'observability-ci' namespace */ @@ -351,7 +354,8 @@ def doTagAndPush(Map args = [:]) { def variant = args.variant def sourceTag = args.sourceTag def targetTag = args.targetTag - def sourceName = "${DOCKER_REGISTRY}/beats/${beatName}${variant}:${sourceTag}" + def sourceNamespace = args.sourceNamespace + def sourceName = "${DOCKER_REGISTRY}/${sourceNamespace}/${beatName}${variant}:${sourceTag}" def targetName = "${DOCKER_REGISTRY}/observability-ci/${beatName}${variant}:${targetTag}" def iterations = 0 retryWithSleep(retries: 3, seconds: 5, backoff: true) { diff --git a/Jenkinsfile b/Jenkinsfile index 75d4c17ad49..e14b0e86dd6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -460,13 +460,15 @@ def tagAndPush(Map args = [:]) { def variants = ["", "-oss", "-ubi8"] if(beatName == 'elastic-agent'){ - variants.add("-complete") - variants.add("-cloud") + variants.add("-complete") + variants.add("-cloud") } variants.each { variant -> + // cloud docker images are stored in the private docker namespace. + def sourceNamespace = variant.equals('-cloud') ? 'beats-ci' : 'beats' tags.each { tag -> - doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}") + doTagAndPush(beatName: beatName, variant: variant, sourceTag: libbetaVer, targetTag: "${tag}-${arch}", sourceNamespace: sourceNamespace) } } } @@ -482,7 +484,8 @@ def doTagAndPush(Map args = [:]) { def variant = args.variant def sourceTag = args.sourceTag def targetTag = args.targetTag - def sourceName = "${DOCKER_REGISTRY}/beats/${beatName}${variant}:${sourceTag}" + def sourceNamespace = args.sourceNamespace + def sourceName = "${DOCKER_REGISTRY}/${sourceNamespace}/${beatName}${variant}:${sourceTag}" def targetName = "${DOCKER_REGISTRY}/observability-ci/${beatName}${variant}:${targetTag}" def iterations = 0 diff --git a/dev-tools/packaging/packages.yml b/dev-tools/packaging/packages.yml index 42bb9eba364..c0dc436f034 100644 --- a/dev-tools/packaging/packages.yml +++ b/dev-tools/packaging/packages.yml @@ -454,6 +454,7 @@ shared: <<: *agent_docker_spec extra_vars: image_name: '{{.BeatName}}-cloud' + repository: 'docker.elastic.co/beats-ci' # Deb/RPM spec for community beats. - &deb_rpm_spec @@ -1018,9 +1019,9 @@ specs: arch: amd64 types: [docker] spec: + <<: *elastic_docker_spec <<: *agent_docker_spec <<: *agent_docker_cloud_spec - <<: *elastic_docker_spec <<: *elastic_license_for_binaries files: '{{.BeatName}}{{.BinaryExt}}': @@ -1057,9 +1058,9 @@ specs: arch: arm64 types: [docker] spec: + <<: *elastic_docker_spec <<: *agent_docker_arm_spec <<: *agent_docker_cloud_spec - <<: *elastic_docker_spec <<: *elastic_license_for_binaries files: '{{.BeatName}}{{.BinaryExt}}': From 358842bb81aad05220650ba2e7a20247b6ca4bef Mon Sep 17 00:00:00 2001 From: Ugo Sangiorgi Date: Thu, 7 Oct 2021 11:43:48 -0500 Subject: [PATCH 07/25] [7.x] [DOCS] Update api_key example on elasticsearch output (#28288) --- libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc b/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc index 2f9f709d2fb..a3c89dad67e 100644 --- a/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc +++ b/libbeat/outputs/elasticsearch/docs/elasticsearch.asciidoc @@ -39,7 +39,7 @@ output.elasticsearch: ---- output.elasticsearch: hosts: ["https://myEShost:9200"] - api_key: "KnR6yE41RrSowb0kQ0HWoA" + api_key: "ZCV7VnwBgnX0T19fN8Qe:KnR6yE41RrSowb0kQ0HWoA" ---- *PKI certificate authentication:* From f80d1acc6ba1215e1da860862250ac7fb712860a Mon Sep 17 00:00:00 2001 From: Dan Kortschak <90160302+efd6@users.noreply.github.com> Date: Mon, 11 Oct 2021 08:58:22 +1030 Subject: [PATCH 08/25] packetbeat/protos/dns: don't render missing A and AAAA addresses from truncated records (#28297) --- CHANGELOG.next.asciidoc | 1 + packetbeat/protos/dns/dns.go | 12 ++++++++++++ packetbeat/protos/dns/dns_test.go | 10 ++++++++-- packetbeat/protos/dns/dns_udp_test.go | 23 +++++++++++++++++++++++ 4 files changed, 44 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 67cbf7f7eba..b5664666903 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -419,6 +419,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Packetbeat* +- Handle truncated DNS records more gracefully. {issue}21495[21495] {pull}28297[28297] *Winlogbeat* diff --git a/packetbeat/protos/dns/dns.go b/packetbeat/protos/dns/dns.go index 15aa154276f..125d6112bae 100644 --- a/packetbeat/protos/dns/dns.go +++ b/packetbeat/protos/dns/dns.go @@ -615,6 +615,9 @@ func rrsToMapStrs(records []mkdns.RR, ipList bool) ([]common.MapStr, []string) { mapStr["ttl"] = strconv.FormatInt(int64(rrHeader.Ttl), 10) mapStrSlice = append(mapStrSlice, mapStr) } + if len(mapStrSlice) == 0 { + mapStrSlice = nil + } return mapStrSlice, allIPs } @@ -687,10 +690,19 @@ func rrToMapStr(rr mkdns.RR, ipList bool) (common.MapStr, []string) { } else { debugf("Rdata for the unhandled RR type %s could not be fetched", dnsTypeToString(rrType)) } + + // Don't attempt to render IPs for answers that are incomplete. case *mkdns.A: + if x.A == nil { + break + } mapStr["data"] = appendIP(x.A.String()) case *mkdns.AAAA: + if x.AAAA == nil { + break + } mapStr["data"] = appendIP(x.AAAA.String()) + case *mkdns.CNAME: mapStr["data"] = trimRightDot(x.Target) case *mkdns.DNSKEY: diff --git a/packetbeat/protos/dns/dns_test.go b/packetbeat/protos/dns/dns_test.go index 3b87ecb2e72..f4a0b862de0 100644 --- a/packetbeat/protos/dns/dns_test.go +++ b/packetbeat/protos/dns/dns_test.go @@ -211,8 +211,14 @@ func assertMapStrData(t testing.TB, m common.MapStr, q dnsTestMessage) { assertFlags(t, m, q.flags) assert.Equal(t, q.rcode, mapValue(t, m, "dns.response_code")) - assert.Equal(t, len(q.answers), mapValue(t, m, "dns.answers_count"), - "Expected dns.answers_count to be %d", len(q.answers)) + truncated, ok := mapValue(t, m, "dns.flags.truncated_response").(bool) + if !ok { + t.Fatal("dns.flags.truncated_response value is not a bool.") + } + if !truncated { + assert.Equal(t, len(q.answers), mapValue(t, m, "dns.answers_count"), + "Expected dns.answers_count to be %d", len(q.answers)) + } if len(q.answers) > 0 { assert.Len(t, mapValue(t, m, "dns.answers"), len(q.answers), "Expected dns.answers to be length %d", len(q.answers)) diff --git a/packetbeat/protos/dns/dns_udp_test.go b/packetbeat/protos/dns/dns_udp_test.go index fb482b55676..7104bd1437e 100644 --- a/packetbeat/protos/dns/dns_udp_test.go +++ b/packetbeat/protos/dns/dns_udp_test.go @@ -53,6 +53,7 @@ var ( // An array of all test messages. messages = []dnsTestMessage{ elasticA, + elasticNoIP, zoneIxfr, githubPtr, sophosTxt, @@ -82,6 +83,28 @@ var ( }, } + elasticNoIP = dnsTestMessage{ + id: 8529, + opcode: "QUERY", + flags: []string{"rd", "ra", "tc"}, + rcode: "NOERROR", + qClass: "IN", + qType: "A", + qName: "elastic.co", + qEtld: "elastic.co", + qTLD: "co", + answers: nil, + request: []byte{ + 0x21, 0x51, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x65, 0x6c, 0x61, + 0x73, 0x74, 0x69, 0x63, 0x02, 0x63, 0x6f, 0x00, 0x00, 0x01, 0x00, 0x01, + }, + response: []byte{ + 0x21, 0x51, 0x83, 0x80, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x65, 0x6c, 0x61, + 0x73, 0x74, 0x69, 0x63, 0x02, 0x63, 0x6f, 0x00, 0x00, 0x01, 0x00, 0x01, 0xc0, 0x0c, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, + }, + } + zoneIxfr = dnsTestMessage{ id: 16384, opcode: "QUERY", From eccac0e4f4f903286ba3fcbe54b3f45c9b31e25a Mon Sep 17 00:00:00 2001 From: Arnaud Lefebvre Date: Mon, 11 Oct 2021 14:51:24 +0200 Subject: [PATCH 09/25] seccomp: allow clone3 syscall for x86 (#28117) clone3 is a linux syscall that is now used by glibc starting version 2.34. It is used when pthread_create() gets called. Current seccomp filters do not allow this syscall leading to crashes like runtime/cgo: pthread_create failed: Operation not permitted See https://github.com/elastic/apm-server/issues/6238 for more details --- CHANGELOG.next.asciidoc | 1 + libbeat/common/seccomp/policy_linux_386.go | 1 + libbeat/common/seccomp/policy_linux_amd64.go | 1 + 3 files changed, 3 insertions(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index b5664666903..c1069dc6934 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -212,6 +212,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d as gauges (rather than counters). {pull}22877[22877] - Beats dashboards use custom index when `setup.dashboards.index` is set. {issue}21232[21232] {pull}27901[27901] - Fix handling of float data types within processors. {issue}28279[28279] {pull}28280[28280] +- Allow `clone3` syscall in seccomp filters. {pull}28117[28117] *Auditbeat* diff --git a/libbeat/common/seccomp/policy_linux_386.go b/libbeat/common/seccomp/policy_linux_386.go index 796b071a104..40b49113b73 100644 --- a/libbeat/common/seccomp/policy_linux_386.go +++ b/libbeat/common/seccomp/policy_linux_386.go @@ -35,6 +35,7 @@ func init() { "chown", "clock_gettime", "clone", + "clone3", "close", "dup", "dup2", diff --git a/libbeat/common/seccomp/policy_linux_amd64.go b/libbeat/common/seccomp/policy_linux_amd64.go index 4246e6a1a51..6096b37bb32 100644 --- a/libbeat/common/seccomp/policy_linux_amd64.go +++ b/libbeat/common/seccomp/policy_linux_amd64.go @@ -38,6 +38,7 @@ func init() { "chown", "clock_gettime", "clone", + "clone3", "close", "connect", "dup", From 59a52382547f1a9d4f4fed2e424f2ec1fd4ad62a Mon Sep 17 00:00:00 2001 From: Aleksandr Maus Date: Mon, 11 Oct 2021 06:00:03 -0700 Subject: [PATCH 10/25] Osquerybeat: Improve handling of osquery.autoload file, allow customizations (#28289) Previously the osquery.autoload file was overwritten every time on osquerybeat start and stamped with our extension. After the change we check the content of the file and do not overwrite it on each osquerybeat start. This allows the user to deploy their own extensions if their want and start osquery with that. --- x-pack/osquerybeat/internal/osqd/osqueryd.go | 60 ++++++++- .../internal/osqd/osqueryd_test.go | 127 ++++++++++++++++++ 2 files changed, 185 insertions(+), 2 deletions(-) diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd.go b/x-pack/osquerybeat/internal/osqd/osqueryd.go index 09a5d866f4f..206846f985b 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd.go @@ -5,6 +5,7 @@ package osqd import ( + "bufio" "context" "fmt" "io" @@ -263,8 +264,9 @@ func (q *OSQueryD) prepare(ctx context.Context) (func(), error) { // Write the autoload file extensionAutoloadPath := q.resolveDataPath(osqueryAutoload) - if err := ioutil.WriteFile(extensionAutoloadPath, []byte(extensionPath), 0644); err != nil { - return nil, errors.Wrap(err, "failed write osquery extension autoload file") + err = prepareAutoloadFile(extensionAutoloadPath, extensionPath, q.log) + if err != nil { + return nil, errors.Wrapf(err, "failed to prepare extensions autoload file") } // Write the flagsfile in order to lock down/prevent loading default flags from osquery global locations. @@ -286,6 +288,60 @@ func (q *OSQueryD) prepare(ctx context.Context) (func(), error) { return func() {}, nil } +func prepareAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath string, log *logp.Logger) error { + ok, err := fileutil.FileExists(extensionAutoloadPath) + if err != nil { + return errors.Wrapf(err, "failed to check osquery.autoload file exists") + } + + rewrite := false + + if ok { + log.Debugf("Extensions autoload file %s exists, verify the first extension is ours", extensionAutoloadPath) + err = verifyAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath) + if err != nil { + log.Debugf("Extensions autoload file %v verification failed, err: %v, create a new one", extensionAutoloadPath, err) + rewrite = true + } + } else { + log.Debugf("Extensions autoload file %s doesn't exists, create a new one", extensionAutoloadPath) + rewrite = true + } + + if rewrite { + if err := ioutil.WriteFile(extensionAutoloadPath, []byte(mandatoryExtensionPath), 0644); err != nil { + return errors.Wrap(err, "failed write osquery extension autoload file") + } + } + return nil +} + +func verifyAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath string) error { + f, err := os.Open(extensionAutoloadPath) + if err != nil { + return err + } + defer f.Close() + scanner := bufio.NewScanner(f) + for i := 0; scanner.Scan(); i++ { + line := scanner.Text() + if i == 0 { + // Check that the first line is the mandatory extension + if line != mandatoryExtensionPath { + return errors.New("extentsions autoload file is missing mandatory extension in the first line of the file") + } + } + + // Check that the line contains the valid path that exists + _, err := os.Stat(line) + if err != nil { + return err + } + } + + return scanner.Err() +} + func (q *OSQueryD) prepareBinPath() error { // If path to osquery was not set use the current executable path if q.binPath == "" { diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd_test.go b/x-pack/osquerybeat/internal/osqd/osqueryd_test.go index 513e921cd2e..ae8387601dd 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd_test.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd_test.go @@ -5,8 +5,18 @@ package osqd import ( + "bufio" + "errors" + "io/ioutil" + "os" + "path/filepath" "testing" + "github.com/elastic/beats/v7/libbeat/common" + "github.com/elastic/beats/v7/libbeat/logp" + "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/fileutil" + + "github.com/gofrs/uuid" "github.com/google/go-cmp/cmp" ) @@ -46,3 +56,120 @@ func TestNew(t *testing.T) { t.Error(diff) } } + +func TestVerifyAutoloadFileMissing(t *testing.T) { + dir := uuid.Must(uuid.NewV4()).String() + extensionAutoloadPath := filepath.Join(dir, osqueryAutoload) + mandatoryExtensionPath := filepath.Join(dir, extensionName) + err := verifyAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath) + if !errors.Is(err, os.ErrNotExist) { + t.Fatalf("expected error: %v, got: %v", os.ErrNotExist, err) + } +} + +// TestPrepareAutoloadFile tests possibly different states of the osquery.autoload file and that it is restored into the workable state +func TestPrepareAutoloadFile(t *testing.T) { + validLogger := logp.NewLogger("osqueryd_test") + + // Prepare the directory with extension + dir, err := os.MkdirTemp("", "") + if err != nil { + t.Fatal(err) + } + defer os.RemoveAll(dir) + mandatoryExtensionPath := filepath.Join(dir, extensionName) + + // Write fake extension file for testing + err = ioutil.WriteFile(mandatoryExtensionPath, nil, 0644) + if err != nil { + t.Fatal(err) + } + + randomContent := func(sz int) []byte { + b, err := common.RandomBytes(sz) + if err != nil { + t.Fatal(err) + } + return b + } + + tests := []struct { + Name string + FileContent []byte + }{ + { + Name: "Empty file", + FileContent: nil, + }, + { + Name: "File with mandatory extension", + FileContent: []byte(mandatoryExtensionPath), + }, + { + Name: "Missing mandatory extension, should restore the file", + FileContent: []byte(filepath.Join(dir, "foobar.ext")), + }, + { + Name: "User extension path doesn't exists", + FileContent: []byte(mandatoryExtensionPath + "\n" + filepath.Join(dir, "foobar.ext")), + }, + { + Name: "Random garbage", + FileContent: randomContent(1234), + }, + } + + for _, tc := range tests { + t.Run(tc.Name, func(t *testing.T) { + + // Setup + dir, err := os.MkdirTemp("", "") + if err != nil { + t.Fatal(err) + } + + defer os.RemoveAll(dir) + + extensionAutoloadPath := filepath.Join(dir, osqueryAutoload) + + err = ioutil.WriteFile(extensionAutoloadPath, tc.FileContent, 0644) + if err != nil { + t.Fatal(err) + } + + err = prepareAutoloadFile(extensionAutoloadPath, mandatoryExtensionPath, validLogger) + if err != nil { + t.Fatal(err) + } + + // Check the content, should have our mandatory extension and possibly the other extension paths with each extension existing on the disk + f, err := os.Open(extensionAutoloadPath) + if err != nil { + t.Fatal(err) + } + defer f.Close() + scanner := bufio.NewScanner(f) + for i := 0; scanner.Scan(); i++ { + line := scanner.Text() + if i == 0 { + if line != mandatoryExtensionPath { + t.Fatalf("expected the fist line of the file to be: %v , got: %v", mandatoryExtensionPath, line) + } + } + // Check that it is a valid path to the file on the disk + ok, err := fileutil.FileExists(line) + if err != nil { + t.Fatal(err) + } + if !ok { + t.Fatalf("expected to have only valid paths to the extensions files that exists, got: %v", line) + } + } + + err = scanner.Err() + if err != nil { + t.Fatal(err) + } + }) + } +} From 7491d0835448b9b31038d346a5a662e3ca3aeee2 Mon Sep 17 00:00:00 2001 From: Aleksandr Maus Date: Mon, 11 Oct 2021 06:00:18 -0700 Subject: [PATCH 11/25] Osquerybeat: Runner and Fetcher unit tests (#28290) * Runner and Fetcher unit tests * Fix header formatting * Tweak test --- .../osquerybeat/beater/osquery_runner_test.go | 87 +++++++++++++++++- x-pack/osquerybeat/internal/fetch/fetch.go | 16 +++- .../osquerybeat/internal/fetch/fetch_test.go | 92 +++++++++++++++++++ x-pack/osquerybeat/scripts/mage/distro.go | 3 +- 4 files changed, 191 insertions(+), 7 deletions(-) create mode 100644 x-pack/osquerybeat/internal/fetch/fetch_test.go diff --git a/x-pack/osquerybeat/beater/osquery_runner_test.go b/x-pack/osquerybeat/beater/osquery_runner_test.go index b1fe1c132e1..e04bcb5c1e0 100644 --- a/x-pack/osquerybeat/beater/osquery_runner_test.go +++ b/x-pack/osquerybeat/beater/osquery_runner_test.go @@ -12,6 +12,8 @@ import ( "golang.org/x/sync/errgroup" + "github.com/google/go-cmp/cmp" + "github.com/elastic/beats/v7/libbeat/logp" "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/config" "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/osqd" @@ -84,9 +86,7 @@ func TestOsqueryRunnerCancellable(t *testing.T) { } // Cancel - go func() { - cn() - }() + cn() // Wait for runner stop er := waitGroupWithTimeout(parentCtx, g, to) @@ -94,3 +94,84 @@ func TestOsqueryRunnerCancellable(t *testing.T) { t.Fatal("failed running:", er) } } + +func TestOsqueryRunnerRestart(t *testing.T) { + to := 10 * time.Second + + parentCtx := context.Background() + logger := logp.NewLogger("osquery_runner") + + runCh := make(chan struct{}, 1) + + var runs int + + runfn := func(ctx context.Context, flags osqd.Flags, inputCh <-chan []config.InputConfig) error { + runs++ + runCh <- struct{}{} + <-ctx.Done() + return nil + } + + ctx, cn := context.WithCancel(parentCtx) + defer cn() + + g, ctx := errgroup.WithContext(ctx) + + // Start runner + runner := newOsqueryRunner(logger) + g.Go(func() error { + return runner.Run(ctx, runfn) + }) + + // Sent input that will start the runner function + runner.Update(ctx, nil) + + // Wait for runner start + err := waitForStart(ctx, runCh, to) + if err != nil { + t.Fatal("failed starting:", err) + } + + inputConfigs := []config.InputConfig{ + { + Osquery: &config.OsqueryConfig{ + Options: map[string]interface{}{ + "foo": "bar", + }, + }, + }, + } + + // Update flags, this should restart the run function + runner.Update(ctx, inputConfigs) + + // Should get another run + err = waitForStart(ctx, runCh, to) + if err != nil { + t.Fatal("failed starting after flags update:", err) + } + + // Update with the same flags, should not restart the runner function + runner.Update(ctx, inputConfigs) + + // Should timeout on waiting for another run + err = waitForStart(ctx, runCh, 300*time.Millisecond) + if err != context.DeadlineExceeded { + t.Fatal("unexpected error type after update with the same flags:", err) + } + + // Cancel + cn() + + // Wait for runner stop + er := waitGroupWithTimeout(parentCtx, g, to) + if er != nil && !errors.Is(er, context.Canceled) { + t.Fatal("failed running:", er) + } + + // Check that there were total of 2 executions of run function + diff := cmp.Diff(2, runs) + if diff != "" { + t.Error(diff) + } +} diff --git a/x-pack/osquerybeat/internal/fetch/fetch.go b/x-pack/osquerybeat/internal/fetch/fetch.go index 4de7bc326b8..795869d7f2e 100644 --- a/x-pack/osquerybeat/internal/fetch/fetch.go +++ b/x-pack/osquerybeat/internal/fetch/fetch.go @@ -5,21 +5,31 @@ package fetch import ( + "context" "fmt" "io/ioutil" "log" "net/http" "os" + "strings" "github.com/elastic/beats/v7/x-pack/osquerybeat/internal/hash" ) -func Download(url, fp string) (hashout string, err error) { +// Download downloads the osquery distro package +// writes the content into a given filepath +// returns the sha256 hash +func Download(ctx context.Context, url, fp string) (hashout string, err error) { log.Printf("Download %s to %s", url, fp) cli := http.Client{} - res, err := cli.Get(url) + req, err := http.NewRequestWithContext(ctx, "GET", url, nil) + if err != nil { + return + } + + res, err := cli.Do(req) if err != nil { return } @@ -32,7 +42,7 @@ func Download(url, fp string) (hashout string, err error) { if err != nil { log.Printf("Failed to read the error response body: %v", err) } else { - s = string(b) + s = strings.TrimSpace(string(b)) } return hashout, fmt.Errorf("failed fetch %s, status: %d, message: %s", url, res.StatusCode, s) } diff --git a/x-pack/osquerybeat/internal/fetch/fetch_test.go b/x-pack/osquerybeat/internal/fetch/fetch_test.go new file mode 100644 index 00000000000..f234a78f256 --- /dev/null +++ b/x-pack/osquerybeat/internal/fetch/fetch_test.go @@ -0,0 +1,92 @@ +// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one +// or more contributor license agreements. Licensed under the Elastic License; +// you may not use this file except in compliance with the Elastic License. + +package fetch + +import ( + "context" + "net/http" + "net/http/httptest" + "os" + "testing" + + "github.com/gofrs/uuid" + "github.com/google/go-cmp/cmp" +) + +func TestDownload(t *testing.T) { + ctx := context.Background() + + localFilePathUUID := func() string { + return uuid.Must(uuid.NewV4()).String() + } + tests := []struct { + Name string + Path string + LocalFilePath string + Status int + Payload string + Hash string + ErrStr string + }{ + { + Name: "Http OK", + Path: "/ok", + LocalFilePath: localFilePathUUID(), + Status: http.StatusOK, + Payload: "serenity now", + Hash: "d1071dfdfd6a5bdf08d9b110f664731cf327cc3d341038f0739699690b599281", + }, + { + Name: "Http OK, empty local file path", + Path: "/ok2", + LocalFilePath: "", + Status: http.StatusOK, + Payload: "serenity now", + Hash: "d1071dfdfd6a5bdf08d9b110f664731cf327cc3d341038f0739699690b599281", + ErrStr: "no such file or directory", + }, + { + Name: "Http not found", + Path: "/notfound", + LocalFilePath: localFilePathUUID(), + Payload: "file not found", + Status: http.StatusNotFound, + ErrStr: "file not found", + }, + } + + mux := http.NewServeMux() + for _, tc := range tests { + mux.HandleFunc(tc.Path, func(payload string, status int) func(w http.ResponseWriter, r *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { + http.Error(w, payload, status) + } + }(tc.Payload, tc.Status)) + } + + svr := httptest.NewServer(mux) + defer svr.Close() + + for _, tc := range tests { + t.Run(tc.Name, func(t *testing.T) { + hash, err := Download(ctx, svr.URL+tc.Path, tc.LocalFilePath) + defer os.Remove(tc.LocalFilePath) + + if err != nil { + if tc.ErrStr == "" { + t.Fatal("unexpected download error:", err) + } + return + } + + diff := cmp.Diff(tc.Hash, hash) + if diff != "" { + t.Fatal(diff) + } + + }) + } + +} diff --git a/x-pack/osquerybeat/scripts/mage/distro.go b/x-pack/osquerybeat/scripts/mage/distro.go index dde52e3e7b1..1be99ae3f6d 100644 --- a/x-pack/osquerybeat/scripts/mage/distro.go +++ b/x-pack/osquerybeat/scripts/mage/distro.go @@ -5,6 +5,7 @@ package mage import ( + "context" "errors" "fmt" "io/ioutil" @@ -121,7 +122,7 @@ func checkCacheAndFetch(osarch distro.OSArch, spec distro.Spec) (fetched bool, e log.Printf("Hash mismatch, expected: %s, got: %s.", specHash, fileHash) } - fileHash, err = fetch.Download(url, fp) + fileHash, err = fetch.Download(context.Background(), url, fp) if err != nil { log.Printf("File %s fetch failed, err: %v", url, err) return From 8a1ff9e3935123069ac682dfa536df090582d2dc Mon Sep 17 00:00:00 2001 From: apmmachine <58790750+apmmachine@users.noreply.github.com> Date: Mon, 11 Oct 2021 09:43:32 -0400 Subject: [PATCH 12/25] Update go release version 1.17.1 (#27543) * format of conditional build tags has changed * matching of * in regexes was fixed, thus breaking some of our code: https://github.com/golang/go/issues/46123 * iproute package was missing from the new Golang Docker image, thus, we had to add it for our tests * go.mod file contains separate require directive for transitive dependencies --- .go-version | 2 +- CHANGELOG-developer.next.asciidoc | 1 + NOTICE.txt | 134639 +-------------- auditbeat/Dockerfile | 3 +- auditbeat/magefile.go | 1 + auditbeat/module/auditd/audit_unsupported.go | 1 + auditbeat/module/auditd/golden_files_test.go | 1 + .../file_integrity/eventreader_fsevents.go | 1 + .../file_integrity/eventreader_fsnotify.go | 1 + .../file_integrity/eventreader_unsupported.go | 1 + .../module/file_integrity/fileinfo_bsd.go | 1 + .../module/file_integrity/fileinfo_linux.go | 1 + .../file_integrity/fileinfo_other_test.go | 1 + .../module/file_integrity/fileinfo_posix.go | 1 + .../module/file_integrity/fileinfo_windows.go | 1 + .../file_integrity/fileorigin_darwin.go | 1 + .../module/file_integrity/fileorigin_other.go | 1 + .../module/file_integrity/fileorigin_test.go | 1 + .../file_integrity/monitor/filetree_test.go | 1 + .../file_integrity/monitor/monitor_test.go | 1 + filebeat/Dockerfile | 2 +- filebeat/config/config_test.go | 1 + filebeat/fileset/compatibility_test.go | 1 + filebeat/fileset/fileset_test.go | 1 + filebeat/fileset/modules_integration_test.go | 1 + filebeat/fileset/modules_test.go | 1 + filebeat/fileset/pipelines_test.go | 1 + filebeat/harvester/util_test.go | 1 + filebeat/input/container/input_test.go | 1 + filebeat/input/default-inputs/inputs_other.go | 1 + filebeat/input/docker/input_test.go | 1 + filebeat/input/file/glob_other_test.go | 1 + filebeat/input/file/glob_windows_test.go | 1 + .../input/file/identifier_inode_deviceid.go | 1 + .../file/identifier_inode_deviceid_windows.go | 1 + filebeat/input/file/identifier_test.go | 1 + .../input/file/identifier_test_windows.go | 1 + filebeat/input/file/states_test.go | 1 + .../example_inputs_integration_test.go | 1 + .../filestream/filestream_test_non_windows.go | 1 + .../filestream/fswatch_test_non_windows.go | 1 + .../filestream/identifier_inode_deviceid.go | 1 + .../identifier_inode_deviceid_windows.go | 1 + .../filestream/identifier_test_non_windows.go | 1 + .../filestream/input_integration_test.go | 1 + .../filestream/parsers_integration_test.go | 1 + filebeat/input/input_test.go | 1 + filebeat/input/journald/config.go | 1 + filebeat/input/journald/conv.go | 1 + filebeat/input/journald/input.go | 1 + filebeat/input/journald/input_stub.go | 1 + filebeat/input/kafka/input_test.go | 1 + .../input/kafka/kafka_integration_test.go | 1 + filebeat/input/log/config_test.go | 1 + filebeat/input/log/harvester_test.go | 1 + filebeat/input/log/input_other_test.go | 1 + filebeat/input/log/input_test.go | 1 + filebeat/input/log/prospector_windows_test.go | 1 + filebeat/input/mqtt/mqtt_integration_test.go | 1 + filebeat/input/redis/input_test.go | 1 + filebeat/input/stdin/input_test.go | 1 + filebeat/input/udp/input_test.go | 1 + filebeat/inputsource/unix/config_test.go | 1 + filebeat/magefile.go | 1 + filebeat/registrar/migrate_bench_test.go | 1 + .../beat/{beat}/config/config_test.go | 1 + generator/_templates/beat/{beat}/magefile.go | 1 + .../_templates/beat/{beat}/tools/tools.go | 1 + .../_templates/metricbeat/{beat}/magefile.go | 1 + .../metricbeat/{beat}/tools/tools.go | 1 + go.mod | 102 +- go.sum | 83 +- heartbeat/Dockerfile | 2 +- journalbeat/Dockerfile | 2 +- journalbeat/checkpoint/checkpoint_test.go | 1 + journalbeat/checkpoint/file_unix.go | 1 + journalbeat/cmd/instance/metrics.go | 3 +- journalbeat/cmd/instance/metrics_other.go | 3 +- journalbeat/magefile.go | 1 + journalbeat/pkg/journalfield/conv_test.go | 3 +- journalbeat/pkg/journalfield/default.go | 3 +- journalbeat/pkg/journalfield/default_other.go | 3 +- journalbeat/pkg/journalfield/matcher_test.go | 3 +- journalbeat/pkg/journalread/reader.go | 1 + journalbeat/reader/fields.go | 3 +- journalbeat/reader/journal.go | 3 +- journalbeat/reader/journal_other.go | 3 +- libbeat/Dockerfile | 2 +- libbeat/api/make_listener_posix.go | 3 +- libbeat/api/make_listener_windows.go | 3 +- libbeat/api/npipe/listener_windows.go | 1 + libbeat/api/npipe/listener_windows_test.go | 1 + libbeat/api/npipe/listerner_posix.go | 3 +- libbeat/api/server_windows_test.go | 3 +- .../autodiscover/providers/docker/config.go | 1 + .../autodiscover/providers/docker/docker.go | 1 + .../docker/docker_integration_test.go | 1 + .../providers/kubernetes/config.go | 1 + .../providers/kubernetes/kubernetes.go | 1 + libbeat/cfgfile/cfgfile_test.go | 1 + libbeat/cfgfile/reload_test.go | 1 + libbeat/cmd/instance/beat_test.go | 1 + libbeat/cmd/instance/imports_docker.go | 1 + libbeat/cmd/instance/locker_test.go | 1 + libbeat/cmd/instance/metrics/metrics.go | 1 + .../metrics/metrics_file_descriptors.go | 1 + .../metrics/metrics_file_descriptors_stub.go | 1 + .../cmd/instance/metrics/metrics_handles.go | 1 + .../instance/metrics/metrics_handles_stub.go | 1 + libbeat/cmd/instance/metrics/metrics_other.go | 4 +- libbeat/cmd/instance/umask_other.go | 1 + libbeat/cmd/platformcheck/platformcheck.go | 1 + .../cmd/platformcheck/platformcheck_other.go | 1 + libbeat/common/atomic/atomic32.go | 1 + libbeat/common/atomic/atomic64.go | 1 + libbeat/common/bytes_test.go | 1 + libbeat/common/cache_test.go | 1 + libbeat/common/capabilities_linux.go | 1 + libbeat/common/csv_test.go | 1 + libbeat/common/datetime_test.go | 1 + libbeat/common/docker/client.go | 1 + libbeat/common/docker/client_test.go | 1 + libbeat/common/docker/watcher.go | 1 + libbeat/common/docker/watcher_test.go | 1 + libbeat/common/encoding/xml/decode_test.go | 1 + libbeat/common/file/file_other.go | 1 + libbeat/common/file/file_other_test.go | 1 + libbeat/common/file/file_windows_test.go | 1 + libbeat/common/file/fileinfo_test.go | 1 + libbeat/common/file/fileinfo_unix.go | 1 + libbeat/common/file/helper_other.go | 1 + libbeat/common/file/helper_test.go | 1 + libbeat/common/file/stderr_other.go | 1 + libbeat/common/mapstr_test.go | 1 + libbeat/common/net_test.go | 1 + libbeat/common/streambuf/ascii_test.go | 1 + libbeat/common/streambuf/io_test.go | 1 + libbeat/common/streambuf/net_test.go | 1 + libbeat/common/streambuf/streambuf_test.go | 1 + .../common/transport/tlscommon/tls_test.go | 1 + .../transport/tlscommon/versions_default.go | 1 + .../transport/tlscommon/versions_legacy.go | 1 + libbeat/common/tuples_test.go | 1 + libbeat/common/url_test.go | 1 + libbeat/docs/version.asciidoc | 2 +- .../esleg/eslegclient/api_integration_test.go | 1 + libbeat/esleg/eslegclient/api_mock_test.go | 1 + .../eslegclient/bulkapi_integration_test.go | 1 + .../esleg/eslegclient/bulkapi_mock_test.go | 1 + .../connection_integration_test.go | 1 + libbeat/esleg/eslegclient/url_test.go | 1 + .../ilm/client_handler_integration_test.go | 3 +- .../elastic_fetcher_integration_test.go | 1 + libbeat/logp/eventlog_unsupported.go | 1 + libbeat/logp/global.go | 3 +- libbeat/logp/global_test.go | 3 +- libbeat/logp/syslog_unix.go | 1 + libbeat/logp/syslog_unsupported.go | 1 + libbeat/magefile.go | 1 + .../system/cgroup/cgv2/io_helper_linux.go | 1 + .../system/cgroup/cgv2/io_helper_other.go | 1 + libbeat/metric/system/cpu/cpu.go | 1 + .../system/diskio/disk_performance_386.go | 1 + .../system/diskio/disk_performance_amd64.go | 1 + libbeat/metric/system/diskio/diskstat.go | 1 + .../metric/system/diskio/diskstat_linux.go | 1 + .../system/diskio/diskstat_linux_test.go | 4 +- .../metric/system/diskio/diskstat_other.go | 1 + .../metric/system/diskio/diskstat_windows.go | 1 + .../system/diskio/diskstat_windows_helper.go | 1 + .../system/diskio/diskstat_windows_test.go | 4 +- libbeat/metric/system/numcpu/cpu_bsd.go | 1 + libbeat/metric/system/numcpu/cpu_cgo.go | 1 + libbeat/metric/system/numcpu/cpu_other.go | 1 + libbeat/metric/system/process/process.go | 1 + .../metric/system/process/process_other.go | 1 + libbeat/metric/system/process/process_test.go | 1 + libbeat/monitoring/opts_test.go | 1 + libbeat/monitoring/registry_test.go | 1 + libbeat/monitoring/visitor_expvar_test.go | 1 + libbeat/outputs/console/console_test.go | 1 + libbeat/outputs/elasticsearch/bulk_test.go | 1 + .../elasticsearch/client_integration_test.go | 1 + libbeat/outputs/elasticsearch/client_test.go | 1 + libbeat/outputs/fileout/file_test.go | 1 + .../outputs/kafka/kafka_integration_test.go | 1 + libbeat/outputs/kafka/partition_test.go | 1 + libbeat/outputs/logstash/async_test.go | 1 + libbeat/outputs/logstash/client_test.go | 1 + .../logstash/logstash_integration_test.go | 1 + libbeat/outputs/logstash/sync_test.go | 1 + libbeat/outputs/logstash/window_test.go | 1 + .../outputs/redis/redis_integration_test.go | 1 + libbeat/plugin/cli.go | 5 +- libbeat/plugin/cli_stub.go | 3 +- libbeat/plugin/load.go | 5 +- libbeat/plugin/load_stub.go | 3 +- .../add_docker_metadata.go | 1 + .../add_docker_metadata_integration_test.go | 1 + .../add_docker_metadata_test.go | 1 + .../processors/add_docker_metadata/config.go | 1 + .../add_kubernetes_metadata/cache.go | 1 + .../add_kubernetes_metadata/kubernetes.go | 1 + .../add_process_metadata/gosigar_provider.go | 1 + .../decode_xml_wineventlog/decoder.go | 1 + .../decode_xml_wineventlog/decoder_windows.go | 1 + .../processors/translate_sid/translatesid.go | 1 + .../translate_sid/translatesid_test.go | 1 + .../publisher/pipeline/stress/stress_test.go | 1 + libbeat/reader/multiline/multiline_test.go | 1 + .../reader/readfile/encoding/utf16_test.go | 1 + libbeat/reader/readfile/limit_test.go | 1 + libbeat/reader/readfile/line_test.go | 1 + libbeat/reader/readfile/strip_newline_test.go | 1 + libbeat/service/service_unix.go | 1 + .../statestore/backend/memlog/util_other.go | 1 + libbeat/template/load_integration_test.go | 1 + libbeat/template/template_test.go | 1 + metricbeat/Dockerfile | 2 +- metricbeat/helper/dialer/dialer_posix.go | 3 +- metricbeat/helper/dialer/dialer_windows.go | 3 +- metricbeat/helper/http_windows_test.go | 3 +- metricbeat/helper/server/http/http_test.go | 1 + metricbeat/helper/server/tcp/tcp_test.go | 1 + metricbeat/helper/server/udp/udp_test.go | 1 + metricbeat/helper/socket/netlink.go | 1 + metricbeat/helper/socket/ptable.go | 1 + metricbeat/helper/socket/ptable_linux.go | 1 + metricbeat/helper/socket/ptable_other.go | 1 + .../helper/windows/pdh/defs_pdh_windows.go | 1 + metricbeat/helper/windows/pdh/mkpdh_defs.go | 1 + .../helper/windows/pdh/pdh_query_windows.go | 1 + metricbeat/helper/windows/pdh/pdh_windows.go | 1 + metricbeat/helper/windows/run.go | 1 + .../internal/metrics/cpu/metrics_openbsd.go | 1 + .../metrics/cpu/metrics_procfs_common.go | 1 + .../internal/metrics/memory/memory_test.go | 1 + metricbeat/magefile.go | 1 + metricbeat/mb/event_test.go | 1 + metricbeat/mb/lightmodules_test.go | 1 + metricbeat/mb/mb_test.go | 1 + metricbeat/mb/module/example_test.go | 1 + metricbeat/mb/module/runner_test.go | 1 + metricbeat/mb/module/wrapper_test.go | 1 + metricbeat/mb/registry_test.go | 1 + metricbeat/mb/testing/data/data_test.go | 1 + metricbeat/mb/testing/lightmodules_test.go | 1 + .../namespace/namespace_integration_test.go | 1 + .../apache/status/status_integration_test.go | 1 + .../module/apache/status/status_test.go | 1 + .../module/beat/beat_integration_test.go | 1 + metricbeat/module/beat/state/data_test.go | 1 + metricbeat/module/beat/stats/data_test.go | 1 + .../cluster_disk_integration_test.go | 1 + .../cluster_health_integration_test.go | 1 + .../cluster_status_integration_test.go | 1 + .../mgr_cluster_disk_integration_test.go | 1 + .../mgr_cluster_health_integration_test.go | 1 + .../mgr_osd_perf_integration_test.go | 1 + .../mgr_osd_pool_stats_integration_test.go | 1 + .../mgr_osd_tree_integration_test.go | 1 + .../mgr_pool_disk_integration_test.go | 1 + .../ceph/osd_df/osd_df_integration_test.go | 1 + .../osd_tree/osd_tree_integration_test.go | 1 + .../pool_disk/pool_disk_integration_test.go | 1 + .../consul/agent/agent_integration_test.go | 1 + metricbeat/module/consul/agent/agent_test.go | 1 + .../consul/agent/data_integration_test.go | 1 + .../bucket/bucket_integration_test.go | 1 + .../module/couchbase/bucket/bucket_test.go | 1 + .../cluster/cluster_integration_test.go | 1 + .../module/couchbase/cluster/cluster_test.go | 1 + .../couchbase/node/node_integration_test.go | 1 + metricbeat/module/couchbase/node/node_test.go | 1 + .../couchdb/server/server_integration_test.go | 1 + .../module/docker/container/container.go | 1 + .../container/container_integration_test.go | 1 + metricbeat/module/docker/cpu/cpu.go | 1 + .../module/docker/cpu/cpu_integration_test.go | 1 + metricbeat/module/docker/diskio/diskio.go | 1 + .../docker/diskio/diskio_integration_test.go | 1 + metricbeat/module/docker/docker.go | 1 + metricbeat/module/docker/event/event.go | 1 + .../docker/event/event_integration_test.go | 1 + .../module/docker/healthcheck/healthcheck.go | 1 + .../healthcheck_integration_test.go | 1 + .../docker/image/image_integration_test.go | 1 + .../docker/info/info_integration_test.go | 1 + metricbeat/module/docker/memory/memory.go | 1 + .../docker/memory/memory_integration_test.go | 1 + metricbeat/module/docker/network/network.go | 1 + .../network/network_integration_test.go | 1 + .../module/docker/network_summary/config.go | 1 + .../module/docker/network_summary/helper.go | 1 + .../docker/network_summary/network_summary.go | 1 + .../network_summary/network_summary_test.go | 1 + .../collector/collector_integration_test.go | 1 + .../dropwizard/collector/collector_test.go | 1 + .../module/elasticsearch/ccr/data_test.go | 1 + .../elasticsearch/cluster_stats/data_test.go | 1 + .../elasticsearch_integration_test.go | 1 + .../module/elasticsearch/enrich/data_test.go | 1 + .../module/elasticsearch/index/data_test.go | 1 + .../elasticsearch/index_recovery/data_test.go | 1 + .../elasticsearch/index_summary/data_test.go | 1 + .../module/elasticsearch/ml_job/data_test.go | 1 + .../module/elasticsearch/node/data_test.go | 1 + .../module/elasticsearch/node/node_test.go | 1 + .../elasticsearch/node_stats/data_test.go | 1 + .../elasticsearch/pending_tasks/data_test.go | 1 + metricbeat/module/elasticsearch/testing.go | 1 + .../server/server_integration_test.go | 1 + .../etcd/leader/leader_integration_test.go | 1 + .../etcd/metrics/metrics_integration_test.go | 1 + .../module/etcd/metrics/metrics_test.go | 1 + .../module/etcd/self/self_integration_test.go | 1 + .../etcd/store/store_integration_test.go | 1 + .../golang/expvar/expvar_integration_test.go | 1 + .../golang/heap/heap_integration_test.go | 1 + .../module/graphite/server/data_test.go | 1 + .../module/graphite/server/tree_test.go | 1 + .../haproxy/info/info_integration_test.go | 1 + .../haproxy/stat/stat_integration_test.go | 1 + .../module/http/json/json_integration_test.go | 1 + metricbeat/module/http/json/json_test.go | 1 + .../jolokia/jmx/jmx_integration_test.go | 1 + .../kafka/broker/broker_integration_test.go | 1 + .../consumer/consumer_integration_test.go | 1 + .../consumergroup_integration_test.go | 1 + .../partition/partition_integration_test.go | 1 + .../producer/producer_integration_test.go | 1 + .../settings/settings_integration_test.go | 1 + .../module/kibana/settings/settings_test.go | 1 + metricbeat/module/kibana/stats/data_test.go | 1 + .../kibana/stats/stats_integration_test.go | 1 + metricbeat/module/kibana/stats/stats_test.go | 1 + metricbeat/module/kibana/status/data_test.go | 1 + .../kibana/status/status_integration_test.go | 1 + .../module/kibana/status/status_test.go | 1 + .../apiserver/apiserver_integration_test.go | 1 + .../kubernetes/apiserver/apiserver_test.go | 1 + .../container/container_integration_test.go | 1 + .../kubernetes/container/container_test.go | 1 + .../controllermanager_integration_test.go | 1 + .../controllermanager_test.go | 1 + .../kubernetes/node/node_integration_test.go | 1 + .../module/kubernetes/node/node_test.go | 1 + .../kubernetes/pod/pod_integration_test.go | 1 + metricbeat/module/kubernetes/pod/pod_test.go | 1 + .../proxy/proxy_integration_test.go | 1 + .../module/kubernetes/proxy/proxy_test.go | 1 + .../scheduler/scheduler_integration_test.go | 1 + .../kubernetes/scheduler/scheduler_test.go | 1 + .../state_container_integration_test.go | 1 + .../state_container/state_container_test.go | 1 + .../state_cronjob_integration_test.go | 1 + .../state_cronjob/state_cronjob_test.go | 1 + .../state_daemonset_integration_test.go | 1 + .../state_daemonset/state_daemonset_test.go | 1 + .../state_deployment_integration_test.go | 1 + .../state_deployment/state_deployment_test.go | 1 + .../state_job/state_job_integration_test.go | 1 + .../kubernetes/state_job/state_job_test.go | 1 + .../state_node/state_node_integration_test.go | 1 + .../kubernetes/state_node/state_node_test.go | 1 + ...state_persistentvolume_integration_test.go | 1 + .../state_persistentvolume_test.go | 1 + ..._persistentvolumeclaim_integration_test.go | 1 + .../state_persistentvolumeclaim_test.go | 1 + .../state_pod/state_pod_integration_test.go | 1 + .../kubernetes/state_pod/state_pod_test.go | 1 + .../state_replicaset_integration_test.go | 1 + .../state_replicaset/state_replicaset_test.go | 1 + .../state_resourcequota_integration_test.go | 1 + .../state_resourcequota_test.go | 1 + .../state_service_integration_test.go | 1 + .../state_service/state_service_test.go | 1 + .../state_statefulset_integration_test.go | 1 + .../state_statefulset_test.go | 1 + .../state_storageclass_integration_test.go | 1 + .../state_storageclass_test.go | 1 + .../system/system_integration_test.go | 1 + .../module/kubernetes/system/system_test.go | 1 + .../volume/volume_integration_test.go | 1 + .../module/kubernetes/volume/volume_test.go | 1 + metricbeat/module/linux/iostat/iostat_test.go | 1 + .../module/linux/pressure/pressure_test.go | 1 + .../logstash/logstash_integration_test.go | 1 + metricbeat/module/logstash/node/data_test.go | 1 + .../module/logstash/node_stats/data_test.go | 1 + .../memcached/stats/stats_integration_test.go | 1 + .../collstats/collstats_integration_test.go | 1 + .../module/mongodb/collstats/data_test.go | 1 + .../dbstats/dbstats_integration_test.go | 1 + .../metrics/metrics_intergration_test.go | 1 + .../replstatus/replstatus_integration_test.go | 1 + .../mongodb/status/status_integration_test.go | 1 + .../munin/node/node_integration_test.go | 1 + .../module/mysql/mysql_integration_test.go | 1 + metricbeat/module/mysql/mysql_test.go | 1 + .../mysql/status/status_integration_test.go | 1 + .../connection/connection_integration_test.go | 1 + .../connections_integration_test.go | 1 + .../nats/route/route_integration_test.go | 1 + .../nats/routes/routes_integration_test.go | 1 + .../nats/stats/stats_integration_test.go | 1 + .../subscriptions_integration_test.go | 1 + .../stubstatus/stubstatus_integration_test.go | 1 + .../openmetrics/collector/collector_test.go | 1 + .../php_fpm/pool/pool_integration_test.go | 1 + metricbeat/module/php_fpm/pool/pool_test.go | 1 + .../process/process_integration_test.go | 1 + .../module/php_fpm/process/process_test.go | 1 + .../activity/activity_integration_test.go | 1 + .../bgwriter/bgwriter_integration_test.go | 1 + .../database/database_integration_test.go | 1 + .../statement/statement_integration_test.go | 1 + .../prometheus/collector/collector_test.go | 1 + .../query/query_integration_test.go | 1 + .../rabbitmq/node/node_integration_test.go | 1 + .../redis/info/info_integration_test.go | 1 + .../module/redis/key/key_integration_test.go | 1 + .../keyspace/keyspace_integration_test.go | 1 + .../redis/metricset_integration_test.go | 1 + metricbeat/module/redis/metricset_test.go | 1 + .../module/redis/redis_integration_test.go | 1 + metricbeat/module/system/core/core.go | 1 + metricbeat/module/system/core/core_test.go | 1 + metricbeat/module/system/cpu/cpu.go | 1 + metricbeat/module/system/cpu/cpu_test.go | 1 + metricbeat/module/system/diskio/diskio.go | 1 + .../module/system/diskio/diskio_test.go | 1 + metricbeat/module/system/entropy/entropy.go | 1 + .../module/system/entropy/entropy_test.go | 1 + .../module/system/filesystem/filesystem.go | 1 + .../system/filesystem/filesystem_test.go | 1 + metricbeat/module/system/filesystem/helper.go | 1 + .../module/system/filesystem/helper_test.go | 1 + metricbeat/module/system/fsstat/fsstat.go | 1 + .../module/system/fsstat/fsstat_test.go | 1 + metricbeat/module/system/load/load.go | 1 + metricbeat/module/system/load/load_test.go | 1 + .../module/system/memory/helper_other.go | 1 + metricbeat/module/system/memory/memory.go | 1 + .../module/system/memory/memory_test.go | 1 + metricbeat/module/system/network/network.go | 1 + .../module/system/network/network_test.go | 1 + metricbeat/module/system/process/process.go | 1 + .../module/system/process/process_test.go | 1 + .../system/process_summary/process_summary.go | 1 + .../process_summary/process_summary_test.go | 1 + metricbeat/module/system/service/data.go | 3 +- metricbeat/module/system/service/dbus.go | 3 +- metricbeat/module/system/service/service.go | 3 +- .../module/system/service/service_test.go | 3 +- metricbeat/module/system/socket/socket.go | 1 + .../module/system/socket/socket_test.go | 1 + .../system/socket_summary/sockstat_linux.go | 1 + .../socket_summary/sockstat_linux_test.go | 1 + .../system/socket_summary/sockstat_other.go | 1 + metricbeat/module/system/system_other.go | 1 + metricbeat/module/system/uptime/uptime.go | 1 + .../module/system/uptime/uptime_test.go | 1 + metricbeat/module/system/users/dbus.go | 3 +- metricbeat/module/system/users/users.go | 3 +- metricbeat/module/system/users/users_test.go | 3 +- metricbeat/module/traefik/health/data_test.go | 1 + .../traefik/health/health_integration_test.go | 1 + .../module/traefik/health/health_test.go | 1 + .../uwsgi/status/status_integration_test.go | 1 + metricbeat/module/windows/perfmon/config.go | 1 + .../module/windows/perfmon/config_test.go | 1 + metricbeat/module/windows/perfmon/data.go | 1 + .../module/windows/perfmon/data_test.go | 1 + metricbeat/module/windows/perfmon/perfmon.go | 1 + .../module/windows/perfmon/perfmon_test.go | 4 +- metricbeat/module/windows/perfmon/reader.go | 1 + .../perfmon/reader_integration_test.go | 4 +- .../module/windows/perfmon/reader_test.go | 1 + .../windows/service/defs_service_windows.go | 1 + metricbeat/module/windows/service/reader.go | 1 + .../module/windows/service/reader_test.go | 1 + metricbeat/module/windows/service/service.go | 1 + .../service/service_integration_test.go | 4 +- .../module/windows/service/service_status.go | 1 + .../windows/service/service_status_test.go | 1 + metricbeat/module/windows/windows.go | 1 + .../connection/connection_integration_test.go | 1 + .../zookeeper/mntr/mntr_integration_test.go | 1 + .../server/server_integration_test.go | 1 + .../zookeeper/zookeeper_integration_test.go | 1 + packetbeat/Dockerfile | 2 +- packetbeat/decoder/decoder_test.go | 1 + packetbeat/flows/flowid_test.go | 1 + packetbeat/flows/flows_test.go | 1 + packetbeat/magefile.go | 1 + packetbeat/procs/procs_linux.go | 1 + packetbeat/procs/procs_linux_test.go | 1 + packetbeat/procs/procs_other.go | 1 + packetbeat/procs/procs_test.go | 1 + packetbeat/procs/procs_windows.go | 1 + packetbeat/procs/procs_windows_test.go | 1 + packetbeat/procs/syscall_windows.go | 1 + packetbeat/protos/dns/dns_tcp_test.go | 1 + packetbeat/protos/dns/dns_test.go | 1 + packetbeat/protos/dns/dns_udp_test.go | 1 + packetbeat/protos/dns/names_test.go | 1 + packetbeat/protos/http/http_test.go | 1 + packetbeat/protos/icmp/icmp_test.go | 1 + packetbeat/protos/icmp/message_test.go | 1 + packetbeat/protos/icmp/transaction_test.go | 1 + packetbeat/protos/icmp/tuple_test.go | 1 + packetbeat/protos/memcache/binary_test.go | 1 + packetbeat/protos/memcache/memcache_test.go | 1 + packetbeat/protos/memcache/parse_test.go | 1 + packetbeat/protos/memcache/plugin_udp_test.go | 1 + packetbeat/protos/memcache/text_test.go | 1 + .../protos/mongodb/mongodb_parser_test.go | 1 + packetbeat/protos/mongodb/mongodb_test.go | 1 + packetbeat/protos/mysql/mysql_test.go | 1 + packetbeat/protos/pgsql/pgsql_test.go | 1 + packetbeat/protos/protos_test.go | 1 + packetbeat/protos/redis/redis_test.go | 1 + packetbeat/protos/sip/plugin_test.go | 1 + packetbeat/protos/tcp/tcp_test.go | 1 + packetbeat/protos/thrift/thrift_test.go | 1 + packetbeat/protos/tls/alerts_test.go | 1 + packetbeat/protos/tls/buffer_test.go | 1 + packetbeat/protos/tls/extensions_test.go | 1 + packetbeat/protos/tls/ja3_test.go | 1 + packetbeat/protos/tls/parse_test.go | 1 + packetbeat/protos/tls/tls_test.go | 1 + packetbeat/protos/udp/udp_test.go | 1 + packetbeat/publish/publish_test.go | 1 + packetbeat/sniffer/afpacket_linux.go | 1 + packetbeat/sniffer/afpacket_nonlinux.go | 1 + packetbeat/sniffer/sniffer_test.go | 1 + tools/tools.go | 1 + winlogbeat/checkpoint/checkpoint_test.go | 1 + winlogbeat/checkpoint/file_unix.go | 1 + winlogbeat/config/config_test.go | 1 + winlogbeat/eventlog/bench_test.go | 1 + winlogbeat/eventlog/errors_unix.go | 1 + winlogbeat/eventlog/wineventlog.go | 1 + .../eventlog/wineventlog_experimental.go | 1 + winlogbeat/eventlog/wineventlog_test.go | 1 + winlogbeat/magefile.go | 1 + winlogbeat/sys/winevent/sid_test.go | 1 + winlogbeat/sys/wineventlog/bookmark.go | 1 + winlogbeat/sys/wineventlog/bookmark_test.go | 1 + winlogbeat/sys/wineventlog/format_message.go | 1 + .../sys/wineventlog/format_message_test.go | 1 + winlogbeat/sys/wineventlog/iterator.go | 1 + winlogbeat/sys/wineventlog/iterator_test.go | 1 + winlogbeat/sys/wineventlog/metadata_store.go | 1 + .../sys/wineventlog/metadata_store_test.go | 1 + .../sys/wineventlog/publisher_metadata.go | 1 + .../wineventlog/publisher_metadata_test.go | 1 + winlogbeat/sys/wineventlog/query_test.go | 1 + winlogbeat/sys/wineventlog/renderer.go | 1 + winlogbeat/sys/wineventlog/renderer_test.go | 1 + winlogbeat/sys/wineventlog/stringinserts.go | 1 + .../sys/wineventlog/stringinserts_test.go | 1 + winlogbeat/sys/wineventlog/util_test.go | 1 + x-pack/auditbeat/magefile.go | 1 + .../auditbeat/module/system/login/config.go | 1 + x-pack/auditbeat/module/system/login/login.go | 1 + .../module/system/login/login_other.go | 1 + .../module/system/login/login_test.go | 1 + x-pack/auditbeat/module/system/login/utmp.go | 1 + .../auditbeat/module/system/login/utmp_c.go | 1 + .../auditbeat/module/system/package/config.go | 1 + .../module/system/package/package.go | 1 + .../module/system/package/package_homebrew.go | 1 + .../system/package/package_homebrew_test.go | 1 + .../module/system/package/package_test.go | 1 + .../module/system/package/package_windows.go | 1 + .../module/system/package/rpm_common_test.go | 1 + .../module/system/package/rpm_linux.go | 1 + .../module/system/package/rpm_linux_test.go | 1 + .../module/system/package/rpm_others.go | 1 + .../module/system/socket/arch_386.go | 1 + .../module/system/socket/arch_amd64.go | 1 + .../system/socket/dns/afpacket/afpacket.go | 1 + .../auditbeat/module/system/socket/events.go | 1 + .../module/system/socket/guess/creds.go | 1 + .../module/system/socket/guess/cskxmit6.go | 1 + .../module/system/socket/guess/deref.go | 1 + .../module/system/socket/guess/guess.go | 1 + .../module/system/socket/guess/helpers.go | 1 + .../module/system/socket/guess/inetsock.go | 1 + .../module/system/socket/guess/inetsock6.go | 1 + .../module/system/socket/guess/inetsockaf.go | 1 + .../module/system/socket/guess/iplocalout.go | 1 + .../module/system/socket/guess/registry.go | 1 + .../module/system/socket/guess/skbuff.go | 1 + .../module/system/socket/guess/sockaddrin.go | 1 + .../module/system/socket/guess/sockaddrin6.go | 1 + .../module/system/socket/guess/socketsk.go | 1 + .../module/system/socket/guess/syscallargs.go | 1 + .../system/socket/guess/tcpsendmsgargs.go | 1 + .../system/socket/guess/tcpsendmsgsk.go | 1 + .../module/system/socket/guess/udpsendmsg.go | 1 + .../socket/helper/fixedthreadexecutor.go | 1 + .../module/system/socket/helper/loopback.go | 1 + .../module/system/socket/helper/probes.go | 1 + .../module/system/socket/helper/types.go | 1 + .../auditbeat/module/system/socket/kprobes.go | 1 + .../module/system/socket/kprobes_test.go | 1 + .../module/system/socket/socket_linux.go | 1 + .../module/system/socket/socket_other.go | 1 + .../auditbeat/module/system/socket/state.go | 1 + .../module/system/socket/state_test.go | 1 + .../module/system/socket/template.go | 1 + x-pack/auditbeat/module/system/user/user.go | 1 + .../auditbeat/module/system/user/user_test.go | 1 + .../module/system/user/users_linux.go | 1 + .../module/system/user/users_other.go | 1 + x-pack/auditbeat/tracing/cpu.go | 1 + x-pack/auditbeat/tracing/cpu_test.go | 1 + x-pack/auditbeat/tracing/decoder.go | 1 + x-pack/auditbeat/tracing/endian.go | 1 + x-pack/auditbeat/tracing/events_test.go | 1 + x-pack/auditbeat/tracing/int_aligned.go | 4 +- x-pack/auditbeat/tracing/int_unaligned.go | 1 + x-pack/auditbeat/tracing/perfevent.go | 1 + x-pack/auditbeat/tracing/probe.go | 1 + x-pack/auditbeat/tracing/tracefs.go | 1 + x-pack/dockerlogbeat/magefile.go | 1 + x-pack/elastic-agent/Dockerfile | 2 +- x-pack/elastic-agent/magefile.go | 1 + .../pkg/agent/application/info/svc_unix.go | 1 + .../pkg/agent/application/info/svc_windows.go | 1 + .../pkg/agent/application/paths/paths.go | 4 +- .../agent/application/paths/paths_darwin.go | 1 + .../agent/application/paths/paths_windows.go | 1 + .../pkg/agent/application/reexec/reexec.go | 1 + .../application/reexec/reexec_windows.go | 1 + .../pkg/agent/application/upgrade/service.go | 4 +- .../application/upgrade/service_darwin.go | 1 + .../application/upgrade/service_windows.go | 1 + x-pack/elastic-agent/pkg/agent/cmd/reexec.go | 1 + .../pkg/agent/cmd/reexec_windows.go | 1 + .../elastic-agent/pkg/agent/control/addr.go | 1 + .../pkg/agent/control/addr_windows.go | 1 + .../pkg/agent/control/client/dial.go | 1 + .../pkg/agent/control/client/dial_windows.go | 1 + .../pkg/agent/control/server/listener.go | 1 + .../agent/control/server/listener_windows.go | 1 + .../pkg/agent/install/install_unix.go | 1 + .../pkg/agent/install/install_windows.go | 1 + .../pkg/agent/install/perms_unix.go | 1 + .../pkg/agent/install/perms_windows.go | 1 + .../pkg/agent/install/root_unix.go | 1 + .../pkg/agent/install/root_windows.go | 1 + .../pkg/agent/install/root_windows_test.go | 1 + .../composable/providers/kubernetes/config.go | 1 + .../kubernetesleaderelection/config.go | 1 + .../providers/kubernetessecrets/config.go | 1 + .../pkg/config/operations/svc_unix.go | 1 + .../pkg/config/operations/svc_windows.go | 1 + .../pkg/core/app/process_cred.go | 1 + .../pkg/core/app/process_cred_other.go | 4 +- .../pkg/core/plugin/process/watch_posix.go | 1 + .../pkg/core/plugin/process/watch_windows.go | 1 + x-pack/elastic-agent/pkg/core/process/cmd.go | 4 +- .../pkg/core/process/cmd_darwin.go | 1 + .../pkg/core/process/cmd_linux.go | 1 + .../input/awss3/input_integration_test.go | 4 +- .../azureeventhub_integration_test.go | 4 +- .../cloudfoundry/input_integration_test.go | 4 +- x-pack/filebeat/input/gcppubsub/input_test.go | 1 + .../input/netflow/decoder/fields/gen.go | 1 + x-pack/filebeat/input/netflow/fields_gen.go | 1 + x-pack/filebeat/input/netflow/input_test.go | 1 + x-pack/filebeat/magefile.go | 1 + .../spamfirewall/config/liblogparser.js | 2 +- .../barracuda/waf/config/liblogparser.js | 2 +- .../bluecoat/director/config/liblogparser.js | 2 +- .../cisco/meraki/config/liblogparser.js | 2 +- .../module/cisco/nexus/config/liblogparser.js | 2 +- .../cisco/shared/gen-ecs-mapping-docs.go | 1 + .../cisco/shared/gen-ftd-ecs-mapping.go | 1 + .../filebeat/module/cisco/shared/stringset.go | 1 + .../cylance/protect/config/liblogparser.js | 2 +- .../module/f5/bigipafm/config/liblogparser.js | 2 +- .../module/f5/bigipapm/config/liblogparser.js | 2 +- .../clientendpoint/config/liblogparser.js | 2 +- .../fortinet/fortimail/config/liblogparser.js | 2 +- .../fortimanager/config/liblogparser.js | 2 +- .../securesphere/config/liblogparser.js | 2 +- .../infoblox/nios/config/liblogparser.js | 2 +- .../juniper/junos/config/liblogparser.js | 2 +- .../juniper/netscreen/config/liblogparser.js | 2 +- .../microsoft/dhcp/config/liblogparser.js | 2 +- .../netscout/sightline/config/liblogparser.js | 2 +- .../emailsecurity/config/liblogparser.js | 2 +- .../radware/defensepro/config/liblogparser.js | 2 +- .../module/snort/log/config/liblogparser.js | 2 +- .../sonicwall/firewall/config/liblogparser.js | 2 +- .../module/sophos/utm/config/liblogparser.js | 2 +- .../module/squid/log/config/liblogparser.js | 2 +- .../module/tomcat/log/config/liblogparser.js | 2 +- .../module/zscaler/zia/config/liblogparser.js | 2 +- x-pack/functionbeat/Dockerfile | 2 +- x-pack/functionbeat/magefile.go | 1 + x-pack/heartbeat/magefile.go | 1 + x-pack/libbeat/Dockerfile | 2 +- .../cloudfoundry/cache_integration_test.go | 4 +- .../libbeat/common/cloudfoundry/cache_test.go | 1 + .../common/cloudfoundry/config_test.go | 1 + .../common/cloudfoundry/events_test.go | 1 + .../common/cloudfoundry/rlplistener_test.go | 1 + x-pack/libbeat/magefile.go | 1 + x-pack/metricbeat/magefile.go | 1 + .../module/appsearch/stats/data_test.go | 1 + .../appsearch/stats/stats_integration_test.go | 1 + x-pack/metricbeat/module/aws/aws_test.go | 1 + .../aws/billing/billing_integration_test.go | 4 +- .../module/aws/billing/billing_test.go | 1 + .../cloudwatch/cloudwatch_integration_test.go | 4 +- .../module/aws/cloudwatch/cloudwatch_test.go | 1 + .../aws/dynamodb/dynamodb_integration_test.go | 4 +- .../module/aws/ebs/ebs_integration_test.go | 4 +- .../module/aws/ec2/ec2_integration_test.go | 4 +- .../module/aws/elb/elb_integration_test.go | 4 +- .../aws/kinesis/kinesis_integration_test.go | 4 +- .../aws/lambda/lambda_integration_test.go | 4 +- .../natgateway/natgateway_integration_test.go | 4 +- .../module/aws/rds/rds_integration_test.go | 4 +- .../s3_daily_storage_integration_test.go | 4 +- .../s3_request/s3_request_integration_test.go | 4 +- .../module/aws/sns/sns_integration_test.go | 4 +- .../module/aws/sqs/sqs_integration_test.go | 4 +- .../transitgateway_integration_test.go | 4 +- .../aws/usage/usage_integration_test.go | 4 +- .../module/aws/vpn/vpn_integration_test.go | 4 +- .../task_stats/task_stats_integration_test.go | 1 + .../app_insights_integration_test.go | 4 +- .../app_state/app_state_integration_test.go | 4 +- .../azure/billing/billing_integration_test.go | 4 +- .../compute_vm/compute_vm_integration_test.go | 4 +- .../compute_vm_scaleset_integration_test.go | 4 +- .../container_instance_integration_test.go | 4 +- .../container_registry_integration_test.go | 4 +- .../container_service_integration_test.go | 4 +- .../database_account_integration_test.go | 4 +- .../azure/monitor/monitor_integration_test.go | 4 +- .../azure/storage/storage_integration_test.go | 4 +- .../container/container_integration_test.go | 4 +- .../cloudfoundry/container/container_test.go | 1 + .../counter/counter_integration_test.go | 4 +- .../cloudfoundry/counter/counter_test.go | 1 + .../value/value_integration_test.go | 4 +- .../module/cloudfoundry/value/value_test.go | 1 + .../status/status_integration_test.go | 1 + .../module/cockroachdb/status/status_test.go | 1 + .../coredns/stats/stats_integration_test.go | 1 + .../module/coredns/stats/stats_test.go | 1 + .../enterprisesearch/health/data_test.go | 1 + .../health/health_integration_test.go | 1 + .../enterprisesearch/stats/data_test.go | 1 + .../stats/stats_integration_test.go | 1 + .../gcp/billing/billing_integration_test.go | 4 +- .../gcp/compute/compute_integration_test.go | 4 +- .../loadbalancing_integration_test.go | 4 +- .../gcp/metrics/metrics_integration_test.go | 4 +- .../gcp/pubsub/pubsub_integration_test.go | 4 +- .../gcp/storage/storage_integration_test.go | 4 +- .../ibmmq/qmgr/qmgr_integration_test.go | 1 + .../metricbeat/module/ibmmq/qmgr/qmgr_test.go | 1 + .../application_integration_test.go | 4 +- .../iis/application_pool/application_pool.go | 1 + .../application_pool/application_pool_test.go | 1 + .../module/iis/application_pool/reader.go | 1 + .../iis/application_pool/reader_test.go | 1 + .../metricbeat/module/iis/test/integration.go | 1 + .../webserver/webserver_integration_test.go | 4 +- .../module/iis/webserver/webserver_test.go | 1 + .../iis/website/website_integration_test.go | 4 +- .../module/iis/website/website_test.go | 1 + .../module/istio/citadel/citadel_test.go | 1 + .../module/istio/galley/galley_test.go | 1 + .../module/istio/istiod/istiod_test.go | 1 + .../metricbeat/module/istio/mesh/mesh_test.go | 1 + .../module/istio/mixer/mixer_test.go | 1 + .../module/istio/pilot/pilot_test.go | 1 + .../module/istio/proxy/proxy_test.go | 1 + .../performance_integration_test.go | 1 + .../transaction_log_integration_test.go | 1 + .../oracle/performance/metricset_test.go | 4 +- .../oracle/tablespace/metricset_test.go | 4 +- .../collector/collector_integration_test.go | 1 + .../prometheus/collector/collector_test.go | 1 + .../prometheus/collector/histogram_test.go | 1 + .../remote_write/remote_write_test.go | 1 + .../node/node_integration_test.go | 1 + .../module/redisenterprise/node/node_test.go | 1 + .../proxy/proxy_integration_test.go | 1 + .../redisenterprise/proxy/proxy_test.go | 1 + .../sql/query/query_integration_test.go | 1 + .../channels/channels_integration_test.go | 1 + .../stan/stats/stats_integration_test.go | 1 + .../subscriptions_integration_test.go | 1 + .../osquerybeat/ext/osquery-extension/main.go | 2 +- x-pack/packetbeat/magefile.go | 1 + x-pack/winlogbeat/magefile.go | 1 + .../module/sysmon/gen_dns_error_codes.go | 3 +- 808 files changed, 6549 insertions(+), 129356 deletions(-) diff --git a/.go-version b/.go-version index de646d2fc11..511a76e6faf 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.16.6 +1.17.1 diff --git a/CHANGELOG-developer.next.asciidoc b/CHANGELOG-developer.next.asciidoc index 72f063e460c..d0f6255f21c 100644 --- a/CHANGELOG-developer.next.asciidoc +++ b/CHANGELOG-developer.next.asciidoc @@ -122,6 +122,7 @@ The list below covers the major changes between 7.0.0-rc2 and master only. - Update to go-concert 0.2.0 {pull}27162[27162] - Update Go version to 1.16.5. {issue}26182[26182] {pull}26186[26186] - Introduce `libbeat/beat.Beat.OutputConfigReloader` {pull}28048[28048] +- Update Go version to 1.17.1. {pull}27543[27543] ==== Deprecated diff --git a/NOTICE.txt b/NOTICE.txt index b9de0bf3a34..41518c53964 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -17153,11 +17153,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : golang.org/x/net -Version: v0.0.0-20210614182718-04defd469f4e +Version: v0.0.0-20210805182204-aaa1db679c0d Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/golang.org/x/net@v0.0.0-20210614182718-04defd469f4e/LICENSE: +Contents of probable licence file $GOMODCACHE/golang.org/x/net@v0.0.0-20210805182204-aaa1db679c0d/LICENSE: Copyright (c) 2009 The Go Authors. All rights reserved. @@ -17264,11 +17264,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : golang.org/x/sys -Version: v0.0.0-20210630005230-0f9fa26af87c +Version: v0.0.0-20210809222454-d867a43fc93e Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/golang.org/x/sys@v0.0.0-20210630005230-0f9fa26af87c/LICENSE: +Contents of probable licence file $GOMODCACHE/golang.org/x/sys@v0.0.0-20210809222454-d867a43fc93e/LICENSE: Copyright (c) 2009 The Go Authors. All rights reserved. @@ -17375,11 +17375,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : golang.org/x/tools -Version: v0.0.0-20200602230032-c00d67ef29d0 +Version: v0.1.6 Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/golang.org/x/tools@v0.0.0-20200602230032-c00d67ef29d0/LICENSE: +Contents of probable licence file $GOMODCACHE/golang.org/x/tools@v0.1.6/LICENSE: Copyright (c) 2009 The Go Authors. All rights reserved. @@ -19348,321 +19348,6 @@ Contents of probable licence file $GOMODCACHE/k8s.io/client-go@v0.21.1/LICENSE: Indirect dependencies --------------------------------------------------------------------------------- -Dependency : bazil.org/fuse -Version: v0.0.0-20160811212531-371fbbdaa898 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/bazil.org/fuse@v0.0.0-20160811212531-371fbbdaa898/LICENSE: - -Copyright (c) 2013-2015 Tommi Virtanen. -Copyright (c) 2009, 2011, 2012 The Go Authors. -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(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 following included software components have additional copyright -notices and license terms that may differ from the above. - - -File fuse.go: - -// Adapted from Plan 9 from User Space's src/cmd/9pfuse/fuse.c, -// which carries this notice: -// -// The files in this directory are subject to the following license. -// -// The author of this software is Russ Cox. -// -// Copyright (c) 2006 Russ Cox -// -// Permission to use, copy, modify, and distribute this software for any -// purpose without fee is hereby granted, provided that this entire notice -// is included in all copies of any software which is or includes a copy -// or modification of this software and in all copies of the supporting -// documentation for such software. -// -// THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -// WARRANTY. IN PARTICULAR, THE AUTHOR MAKES NO REPRESENTATION OR WARRANTY -// OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS -// FITNESS FOR ANY PARTICULAR PURPOSE. - - -File fuse_kernel.go: - -// Derived from FUSE's fuse_kernel.h -/* - This file defines the kernel interface of FUSE - Copyright (C) 2001-2007 Miklos Szeredi - - - This -- and only this -- header file may also be distributed under - the terms of the BSD Licence as follows: - - Copyright (C) 2001-2007 Miklos Szeredi. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 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 AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. -*/ - - --------------------------------------------------------------------------------- -Dependency : cloud.google.com/go/datastore -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/cloud.google.com/go/datastore@v1.1.0/LICENSE: - - - 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. - - -------------------------------------------------------------------------------- Dependency : code.cloudfoundry.org/go-diodes Version: v0.0.0-20190809170250-f77fb823c7ee @@ -20120,43 +19805,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -Dependency : dmitri.shuralyov.com/gpu/mtl -Version: v0.0.0-20190408044501-666a987793e9 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/dmitri.shuralyov.com/gpu/mtl@v0.0.0-20190408044501-666a987793e9/LICENSE: - -Copyright (c) 2018 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -------------------------------------------------------------------------------- Dependency : github.com/Azure/azure-amqp-common-go/v3 Version: v3.0.0 @@ -21719,68 +21367,243 @@ THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/BurntSushi/xgb -Version: v0.0.0-20160522181843-27f122750802 -Licence type (autodetected): BSD-3-Clause +Dependency : github.com/Microsoft/hcsshim +Version: v0.8.7 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!burnt!sushi/xgb@v0.0.0-20160522181843-27f122750802/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/!microsoft/hcsshim@v0.8.7/LICENSE: -// Copyright (c) 2009 The XGB Authors. 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 Google Inc. 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 -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Subject to the terms and conditions of this License, Google 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 this implementation of XGB, where such license -// applies only to those patent claims licensable by Google that are -// necessarily infringed by use of this implementation of XGB. If You -// institute patent litigation against any entity (including a -// cross-claim or counterclaim in a lawsuit) alleging that this -// implementation of XGB or a Contribution incorporated within this -// implementation of XGB constitutes direct or contributory patent -// infringement, then any patent licenses granted to You under this -// License for this implementation of XGB shall terminate as of the date -// such litigation is filed. +The MIT License (MIT) + +Copyright (c) 2015 Microsoft + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/Microsoft/hcsshim -Version: v0.8.7 +Dependency : github.com/OneOfOne/xxhash +Version: v1.2.2 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2.2/LICENSE: + + 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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/Shopify/toxiproxy +Version: v2.1.4+incompatible Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!microsoft/hcsshim@v0.8.7/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/!shopify/toxiproxy@v2.1.4+incompatible/LICENSE: The MIT License (MIT) -Copyright (c) 2015 Microsoft +Copyright (c) 2014 Shopify Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -21800,36 +21623,47 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + -------------------------------------------------------------------------------- -Dependency : github.com/NYTimes/gziphandler -Version: v0.0.0-20170623195520-56545f4a5d46 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/akavel/rsrc +Version: v0.8.0 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!n!y!times/gziphandler@v0.0.0-20170623195520-56545f4a5d46/LICENSE.md: +Contents of probable licence file $GOMODCACHE/github.com/akavel/rsrc@v0.8.0/LICENSE.txt: -Copyright (c) 2015 The New York Times Company - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library 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. +The MIT License (MIT) + +Copyright (c) 2013-2017 The rsrc 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: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/OneOfOne/xxhash -Version: v1.2.2 +Dependency : github.com/apache/thrift +Version: v0.13.1-0.20200603211036-eac4d0c79a5f Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2.2/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0.20200603211036-eac4d0c79a5f/LICENSE: + Apache License Version 2.0, January 2004 @@ -22011,7 +21845,7 @@ Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2 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 "{}" + 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 @@ -22019,77 +21853,136 @@ Contents of probable licence file $GOMODCACHE/github.com/!one!of!one/xxhash@v1.2 same "printed page" as the copyright notice for easier identification within third-party archives. + Copyright [yyyy] [name of copyright owner] --------------------------------------------------------------------------------- -Dependency : github.com/PuerkitoBio/purell -Version: v1.1.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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 -Contents of probable licence file $GOMODCACHE/github.com/!puerkito!bio/purell@v1.1.1/LICENSE: + http://www.apache.org/licenses/LICENSE-2.0 -Copyright (c) 2012, Martin Angers -All rights reserved. + 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. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +-------------------------------------------------- +SOFTWARE DISTRIBUTED WITH THRIFT: -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +The Apache Thrift software includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. -* 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. +-------------------------------------------------- +Portions of the following files are licensed under the MIT License: -* Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + lib/erl/src/Makefile.am -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Please see doc/otp-base-license.txt for the full terms of this license. +-------------------------------------------------- +For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components: --------------------------------------------------------------------------------- -Dependency : github.com/PuerkitoBio/urlesc -Version: v0.0.0-20170810143723-de5bf2ad4578 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- +# Copyright (c) 2007 Thomas Porschberg +# +# Copying and distribution of this file, with or without +# modification, are permitted in any medium without royalty provided +# the copyright notice and this notice are preserved. -Contents of probable licence file $GOMODCACHE/github.com/!puerkito!bio/urlesc@v0.0.0-20170810143723-de5bf2ad4578/LICENSE: +-------------------------------------------------- +For the lib/nodejs/lib/thrift/json_parse.js: -Copyright (c) 2012 The Go Authors. All rights reserved. +/* + json_parse.js + 2015-05-02 + Public Domain. + NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +*/ +(By Douglas Crockford ) - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +-------------------------------------------------- +For lib/cpp/src/thrift/windows/SocketPair.cpp -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +/* socketpair.c + * Copyright 2007 by Nathan C. Myers ; some rights reserved. + * This code is Free Software. It may be copied freely, in original or + * modified form, subject only to the restrictions that (1) the author is + * relieved from all responsibilities for any use for any purpose, and (2) + * this copyright notice must be retained, unchanged, in its entirety. If + * for any reason the author might be held responsible for any consequences + * of copying or use, license is withheld. + */ + + +-------------------------------------------------- +For lib/py/compat/win32/stdint.h + +// ISO C9x compliant stdint.h for Microsoft Visual Studio +// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 +// +// Copyright (c) 2006-2008 Alexander Chemeris +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// 1. Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// 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. +// +// 3. The name of the author may be used to endorse or promote products +// derived from this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +/////////////////////////////////////////////////////////////////////////////// + + +-------------------------------------------------- +Codegen template in t_html_generator.h + +* Bootstrap v2.0.3 +* +* Copyright 2012 Twitter, Inc +* Licensed under the Apache License v2.0 +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Designed and built with all the love in the world @twitter by @mdo and @fat. + +--------------------------------------------------- +For t_cl_generator.cc + + * Copyright (c) 2008- Patrick Collison + * Copyright (c) 2006- Facebook + +--------------------------------------------------- -------------------------------------------------------------------------------- -Dependency : github.com/Shopify/toxiproxy -Version: v2.1.4+incompatible +Dependency : github.com/apoydence/eachers +Version: v0.0.0-20181020210610-23942921fe77 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/!shopify/toxiproxy@v2.1.4+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/apoydence/eachers@v0.0.0-20181020210610-23942921fe77/LICENSE.md: The MIT License (MIT) -Copyright (c) 2014 Shopify +Copyright (c) 2016 Andrew Poydence Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22110,134 +22003,168 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------------------------------------------------- -Dependency : github.com/akavel/rsrc -Version: v0.8.0 +Dependency : github.com/armon/go-radix +Version: v1.0.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/akavel/rsrc@v0.8.0/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/armon/go-radix@v1.0.0/LICENSE: -The MIT License (MIT) - -Copyright (c) 2013-2017 The rsrc 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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 Armon Dadgar + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/alecthomas/template -Version: v0.0.0-20190718012654-fb15b899a751 -Licence type (autodetected): BSD-3-Clause +Dependency : github.com/beorn7/perks +Version: v1.0.1 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/alecthomas/template@v0.0.0-20190718012654-fb15b899a751/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/beorn7/perks@v1.0.1/LICENSE: -Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (C) 2013 Blake Mizerany -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/alecthomas/units -Version: v0.0.0-20190717042225-c3de453c63f4 +Dependency : github.com/cavaliercoder/badio +Version: v0.0.0-20160213150051-ce5280129e9e Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/alecthomas/units@v0.0.0-20190717042225-c3de453c63f4/COPYING: +Contents of probable licence file $GOMODCACHE/github.com/cavaliercoder/badio@v0.0.0-20160213150051-ce5280129e9e/LICENSE: -Copyright (C) 2014 Alec Thomas +Copyright (c) 2015 Ryan Armstrong Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/cespare/xxhash +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/cespare/xxhash@v1.1.0/LICENSE.txt: + +Copyright (c) 2016 Caleb Spare + +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. -------------------------------------------------------------------------------- -Dependency : github.com/antihax/optional -Version: v0.0.0-20180407024304-ca021399b1a6 +Dependency : github.com/codegangsta/inject +Version: v0.0.0-20150114235600-33e0aa1cb7c0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/antihax/optional@v0.0.0-20180407024304-ca021399b1a6/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/codegangsta/inject@v0.0.0-20150114235600-33e0aa1cb7c0/LICENSE: The MIT License (MIT) -Copyright (c) 2016 Adam Hintz -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/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 Jeremy Saenz -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. -------------------------------------------------------------------------------- -Dependency : github.com/apache/thrift -Version: v0.13.1-0.20200603211036-eac4d0c79a5f +Dependency : github.com/containerd/containerd +Version: v1.3.3 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0.20200603211036-eac4d0c79a5f/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.3.3/LICENSE: Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -22412,24 +22339,13 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0 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] + Copyright The containerd Authors 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 + https://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, @@ -22437,554 +22353,536 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.13.1-0 See the License for the specific language governing permissions and limitations under the License. --------------------------------------------------- -SOFTWARE DISTRIBUTED WITH THRIFT: -The Apache Thrift software includes a number of subcomponents with -separate copyright notices and license terms. Your use of the source -code for the these subcomponents is subject to the terms and -conditions of the following licenses. +-------------------------------------------------------------------------------- +Dependency : github.com/containerd/continuity +Version: v0.0.0-20200107194136-26c1120b8d41 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- --------------------------------------------------- -Portions of the following files are licensed under the MIT License: +Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v0.0.0-20200107194136-26c1120b8d41/LICENSE: - lib/erl/src/Makefile.am -Please see doc/otp-base-license.txt for the full terms of this license. + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ --------------------------------------------------- -For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components: + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -# Copyright (c) 2007 Thomas Porschberg -# -# Copying and distribution of this file, with or without -# modification, are permitted in any medium without royalty provided -# the copyright notice and this notice are preserved. + 1. Definitions. --------------------------------------------------- -For the lib/nodejs/lib/thrift/json_parse.js: + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -/* - json_parse.js - 2015-05-02 - Public Domain. - NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -*/ -(By Douglas Crockford ) + "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. --------------------------------------------------- -For lib/cpp/src/thrift/windows/SocketPair.cpp + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -/* socketpair.c - * Copyright 2007 by Nathan C. Myers ; some rights reserved. - * This code is Free Software. It may be copied freely, in original or - * modified form, subject only to the restrictions that (1) the author is - * relieved from all responsibilities for any use for any purpose, and (2) - * this copyright notice must be retained, unchanged, in its entirety. If - * for any reason the author might be held responsible for any consequences - * of copying or use, license is withheld. - */ + "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. --------------------------------------------------- -For lib/py/compat/win32/stdint.h + "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). -// ISO C9x compliant stdint.h for Microsoft Visual Studio -// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 -// -// Copyright (c) 2006-2008 Alexander Chemeris -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are met: -// -// 1. Redistributions of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// 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. -// -// 3. The name of the author may be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -/////////////////////////////////////////////////////////////////////////////// + "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." --------------------------------------------------- -Codegen template in t_html_generator.h + "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. -* Bootstrap v2.0.3 -* -* Copyright 2012 Twitter, Inc -* Licensed under the Apache License v2.0 -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Designed and built with all the love in the world @twitter by @mdo and @fat. + 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. ---------------------------------------------------- -For t_cl_generator.cc + 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. - * Copyright (c) 2008- Patrick Collison - * Copyright (c) 2006- Facebook + 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 --------------------------------------------------------------------------------- -Dependency : github.com/apoydence/eachers -Version: v0.0.0-20181020210610-23942921fe77 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/apoydence/eachers@v0.0.0-20181020210610-23942921fe77/LICENSE.md: - -The MIT License (MIT) + (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 -Copyright (c) 2016 Andrew Poydence + (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. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following 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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + 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. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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. --------------------------------------------------------------------------------- -Dependency : github.com/armon/consul-api -Version: v0.0.0-20180202201655-eb2c6b5be1b6 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/armon/consul-api@v0.0.0-20180202201655-eb2c6b5be1b6/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. -Mozilla Public License, version 2.0 + END OF TERMS AND CONDITIONS -1. Definitions + Copyright The containerd Authors -1.1. "Contributor" + 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 - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. + https://www.apache.org/licenses/LICENSE-2.0 -1.2. "Contributor Version" + 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. - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. -1.3. "Contribution" +-------------------------------------------------------------------------------- +Dependency : github.com/coreos/go-systemd +Version: v0.0.0-20190321100706-95778dfbb74e +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- - means Covered Software of a particular Contributor. +Contents of probable licence file $GOMODCACHE/github.com/coreos/go-systemd@v0.0.0-20190321100706-95778dfbb74e/LICENSE: -1.4. "Covered Software" +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ - 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. +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1.5. "Incompatible With Secondary Licenses" - means +1. Definitions. - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. - 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. +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. -1.6. "Executable Form" +"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. - means any form of the work other than Source Code Form. +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. -1.7. "Larger Work" +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. +"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. -1.8. "License" +"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). - means this document. +"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. -1.9. "Licensable" +"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." - 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. +"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. -1.10. "Modifications" +2. Grant of Copyright License. - means any of the following: +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. - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or +3. Grant of Patent License. - b. any new file in Source Code Form that contains any Covered Software. +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. -1.11. "Patent Claims" of a Contributor +4. Redistribution. - 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. +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: -1.12. "Secondary License" +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. - 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. +5. Submission of Contributions. -1.13. "Source Code Form" +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. - means the form of the work preferred for making modifications. +6. Trademarks. -1.14. "You" (or "Your") +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. - 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. +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. -2. License Grants and Conditions +8. Limitation of Liability. -2.1. Grants +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. - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: +9. Accepting Warranty or Additional Liability. - 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 +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. - 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. +END OF TERMS AND CONDITIONS -2.2. Effective Date +APPENDIX: How to apply the Apache License to your work - 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. +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. -2.3. Limitations on Grant Scope + Copyright [yyyy] [name of copyright owner] - 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: + 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 - a. for any code that a Contributor has removed from Covered Software; or + http://www.apache.org/licenses/LICENSE-2.0 - 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 + 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. - 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). +-------------------------------------------------------------------------------- +Dependency : github.com/cucumber/godog +Version: v0.8.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -2.4. Subsequent Licenses +Contents of probable licence file $GOMODCACHE/github.com/cucumber/godog@v0.8.1/LICENSE: - 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). +The MIT License (MIT) -2.5. Representation +Copyright (c) SmartBear - 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. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -2.6. Fair Use +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -2.7. Conditions - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. +-------------------------------------------------------------------------------- +Dependency : github.com/cyphar/filepath-securejoin +Version: v0.2.2 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/cyphar/filepath-securejoin@v0.2.2/LICENSE: -3. Responsibilities +Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved. +Copyright (C) 2017 SUSE LLC. All rights reserved. -3.1. Distribution of Source Form +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - 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. + * 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 Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -3.2. Distribution of Executable Form +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - 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 +-------------------------------------------------------------------------------- +Dependency : github.com/davecgh/go-spew +Version: v1.1.1 +Licence type (autodetected): ISC +-------------------------------------------------------------------------------- - 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. +Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: -3.3. Distribution of a Larger Work +ISC License - 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). +Copyright (c) 2012-2016 Dave Collins -3.4. Notices +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. - 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. +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. -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. +-------------------------------------------------------------------------------- +Dependency : github.com/davecgh/go-xdr +Version: v0.0.0-20161123171359-e6a2ba005892 +Licence type (autodetected): ISC +-------------------------------------------------------------------------------- -4. Inability to Comply Due to Statute or Regulation +Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-xdr@v0.0.0-20161123171359-e6a2ba005892/LICENSE: - 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. +Copyright (c) 2012-2014 Dave Collins -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. - --------------------------------------------------------------------------------- -Dependency : github.com/armon/go-radix -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/armon/go-radix@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Armon Dadgar - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION 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 to use, copy, modify, and 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. -------------------------------------------------------------------------------- -Dependency : github.com/asaskevich/govalidator -Version: v0.0.0-20190424111038-f61b66f89f4a +Dependency : github.com/devigned/tab +Version: v0.1.2-0.20190607222403-0c15cf42f9a2 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/asaskevich/govalidator@v0.0.0-20190424111038-f61b66f89f4a/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/devigned/tab@v0.1.2-0.20190607222403-0c15cf42f9a2/LICENSE: -The MIT License (MIT) +MIT License -Copyright (c) 2014 Alex Saskevich +Copyright (c) 2019 David Justice Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23004,13 +22902,14 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + -------------------------------------------------------------------------------- -Dependency : github.com/awslabs/goformation/v3 -Version: v3.1.0 +Dependency : github.com/dgraph-io/ristretto +Version: v0.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/awslabs/goformation/v3@v3.1.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -23189,73 +23088,19 @@ Contents of probable licence file $GOMODCACHE/github.com/awslabs/goformation/v3@ 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/beorn7/perks -Version: v1.0.1 -Licence type (autodetected): MIT -------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/beorn7/perks@v1.0.1/LICENSE: - -Copyright (C) 2013 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/blang/semver -Version: v3.1.0+incompatible +Dependency : github.com/dgryski/go-farm +Version: v0.0.0-20190423205320-6a90982ecee2 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/blang/semver@v3.1.0+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/dgryski/go-farm@v0.0.0-20190423205320-6a90982ecee2/LICENSE: -The MIT License +As this is a highly derivative work, I have placed it under the same license as the original implementation: -Copyright (c) 2014 Benedikt Lang +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 @@ -23278,41 +23123,12 @@ THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/cavaliercoder/badio -Version: v0.0.0-20160213150051-ce5280129e9e -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cavaliercoder/badio@v0.0.0-20160213150051-ce5280129e9e/LICENSE: - -Copyright (c) 2015 Ryan Armstrong - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/census-instrumentation/opencensus-proto -Version: v0.2.1 +Dependency : github.com/dimchansky/utfbom +Version: v1.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/opencensus-proto@v0.2.1/LICENSE: - +Contents of probable licence file $GOMODCACHE/github.com/dimchansky/utfbom@v1.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -23494,7 +23310,7 @@ Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/ 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 "[]" + 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 @@ -23502,7 +23318,7 @@ Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + 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. @@ -23518,119 +23334,16 @@ Contents of probable licence file $GOMODCACHE/github.com/census-instrumentation/ -------------------------------------------------------------------------------- -Dependency : github.com/cespare/xxhash -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cespare/xxhash@v1.1.0/LICENSE.txt: - -Copyright (c) 2016 Caleb Spare - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/chzyer/logex -Version: v1.1.10 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/chzyer/readline -Version: v0.0.0-20180603132655-2972be24d48e -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/chzyer/readline@v0.0.0-20180603132655-2972be24d48e/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Chzyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/chzyer/test -Version: v0.0.0-20180213035817-a1ea475d72b1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/chzyer/test@v0.0.0-20180213035817-a1ea475d72b1/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 chzyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/client9/misspell -Version: v0.3.4 +Dependency : github.com/dlclark/regexp2 +Version: v1.1.7-0.20171009020623-7632a260cbaf Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/client9/misspell@v0.3.4/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/dlclark/regexp2@v1.1.7-0.20171009020623-7632a260cbaf/LICENSE: The MIT License (MIT) -Copyright (c) 2015-2017 Nick Galbreath +Copyright (c) Doug 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 @@ -23651,16 +23364,15 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------------------------------------------------- -Dependency : github.com/cncf/udpa/go -Version: v0.0.0-20201120205902-5459f2c99403 +Dependency : github.com/docker/distribution +Version: v2.7.1+incompatible Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-20201120205902-5459f2c99403/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/distribution@v2.7.1+incompatible/LICENSE: - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -23840,7 +23552,7 @@ Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-202 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 "[]" + 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 @@ -23848,7 +23560,7 @@ Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-202 same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + 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. @@ -23863,47 +23575,19 @@ Contents of probable licence file $GOMODCACHE/github.com/cncf/udpa/go@v0.0.0-202 limitations under the License. --------------------------------------------------------------------------------- -Dependency : github.com/codegangsta/inject -Version: v0.0.0-20150114235600-33e0aa1cb7c0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/codegangsta/inject@v0.0.0-20150114235600-33e0aa1cb7c0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Jeremy Saenz - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------------------------------------------------------------------- -Dependency : github.com/containerd/cgroups -Version: v0.0.0-20190919134610-bf292b21730f +Dependency : github.com/docker/go-metrics +Version: v0.0.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/cgroups@v0.0.0-20190919134610-bf292b21730f/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/go-metrics@v0.0.1/LICENSE: + Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -24078,24 +23762,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/cgroups@v0.0 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] + Copyright 2013-2016 Docker, Inc. 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 + https://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, @@ -24105,12 +23778,277 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/cgroups@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/console -Version: v0.0.0-20180822173158-c12b1e7919c1 +Dependency : github.com/eapache/go-xerial-snappy +Version: v0.0.0-20180814174437-776d5712da21 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/eapache/go-xerial-snappy@v0.0.0-20180814174437-776d5712da21/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2016 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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/eapache/queue +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/eapache/queue@v1.1.0/LICENSE: + +The MIT License (MIT) + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +-------------------------------------------------------------------------------- +Dependency : github.com/elazarl/goproxy +Version: v0.0.0-20180725130230-947c36da3153 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy@v0.0.0-20180725130230-947c36da3153/LICENSE: + +Copyright (c) 2012 Elazar Leibovich. 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 Elazar Leibovich. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/evanphx/json-patch +Version: v4.9.0+incompatible +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/evanphx/json-patch@v4.9.0+incompatible/LICENSE: + +Copyright (c) 2014, Evan Phoenix +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 the Evan Phoenix 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 OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/fortytw2/leaktest +Version: v1.3.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/fortytw2/leaktest@v1.3.0/LICENSE: + +Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/frankban/quicktest +Version: v1.11.3 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/frankban/quicktest@v1.11.3/LICENSE: + +MIT License + +Copyright (c) 2017 Canonical Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-kit/kit +Version: v0.9.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-kit/kit@v0.9.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 Peter Bourgon + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-logfmt/logfmt +Version: v0.4.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-logfmt/logfmt@v0.4.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 go-logfmt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-logr/logr +Version: v0.4.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0.0-20180822173158-c12b1e7919c1/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-logr/logr@v0.4.0/LICENSE: Apache License Version 2.0, January 2004 @@ -24292,7 +24230,7 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0 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 "[]" + 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 @@ -24300,7 +24238,7 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0 same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + 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. @@ -24316,17 +24254,198 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/console@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/containerd -Version: v1.3.3 +Dependency : github.com/go-martini/martini +Version: v0.0.0-20170121215854-22fa46961aab +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-martini/martini@v0.0.0-20170121215854-22fa46961aab/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 Jeremy Saenz + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-ole/go-ole +Version: v1.2.5-0.20190920104607-14974a1cf647 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-ole/go-ole@v1.2.5-0.20190920104607-14974a1cf647/LICENSE: + +The MIT License (MIT) + +Copyright © 2013-2017 Yasuhiro Matsumoto, + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-sourcemap/sourcemap +Version: v2.1.2+incompatible +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-sourcemap/sourcemap@v2.1.2+incompatible/LICENSE: + +Copyright (c) 2016 The github.com/go-sourcemap/sourcemap 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: + + * 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. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/gobuffalo/here +Version: v0.6.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gobuffalo/here@v0.6.0/LICENSE: + +The MIT License (MIT) + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/godbus/dbus/v5 +Version: v5.0.3 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/godbus/dbus/v5@v5.0.3/LICENSE: + +Copyright (c) 2013, Georg Reinke (), Google +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang-jwt/jwt/v4 +Version: v4.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/golang-jwt/jwt/v4@v4.0.0/LICENSE: + +Copyright (c) 2012 Dave Grijalva +Copyright (c) 2021 golang-jwt maintainers + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang-sql/civil +Version: v0.0.0-20190719163853-cb61b32ac6fe Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.3.3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/golang-sql/civil@v0.0.0-20190719163853-cb61b32ac6fe/LICENSE: Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -24501,13 +24620,24 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v END OF TERMS AND CONDITIONS - Copyright The containerd Authors + 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 - https://www.apache.org/licenses/LICENSE-2.0 + 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, @@ -24515,26 +24645,427 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v See the License for the specific language governing permissions and limitations under the License. - -------------------------------------------------------------------------------- -Dependency : github.com/containerd/continuity -Version: v0.0.0-20200107194136-26c1120b8d41 +Dependency : github.com/elastic/glog +Version: v1.0.1-0.20210831205241-7d8b5c89dfc4 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v0.0.0-20200107194136-26c1120b8d41/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elastic/glog@v1.0.1-0.20210831205241-7d8b5c89dfc4/LICENSE: +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions. - 1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. - "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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang/groupcache +Version: v0.0.0-20200121045136-8c9f03a8e57e +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/golang/groupcache@v0.0.0-20200121045136-8c9f03a8e57e/LICENSE: + +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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/google/gofuzz +Version: v1.1.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/google/gofuzz@v1.1.0/LICENSE: + + + 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. @@ -24702,13 +25233,24 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v END OF TERMS AND CONDITIONS - Copyright The containerd Authors + 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 - https://www.apache.org/licenses/LICENSE-2.0 + 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, @@ -24718,12 +25260,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/continuity@v -------------------------------------------------------------------------------- -Dependency : github.com/containerd/go-runc -Version: v0.0.0-20180907222934-5a6d9f37cfa3 +Dependency : github.com/google/licenseclassifier +Version: v0.0.0-20200402202327-879cb1424de0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/go-runc@v0.0.0-20180907222934-5a6d9f37cfa3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/licenseclassifier@v0.0.0-20200402202327-879cb1424de0/LICENSE: + Apache License Version 2.0, January 2004 @@ -24929,12 +25472,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/go-runc@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/ttrpc -Version: v0.0.0-20190828154514-0e0f228740de +Dependency : github.com/google/martian +Version: v2.1.0+incompatible Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/ttrpc@v0.0.0-20190828154514-0e0f228740de/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/martian@v2.1.0+incompatible/LICENSE: + Apache License Version 2.0, January 2004 @@ -25140,12 +25684,13 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/ttrpc@v0.0.0 -------------------------------------------------------------------------------- -Dependency : github.com/containerd/typeurl -Version: v0.0.0-20180627222232-a93fcdb778cd +Dependency : github.com/google/martian/v3 +Version: v3.2.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/containerd/typeurl@v0.0.0-20180627222232-a93fcdb778cd/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/martian/v3@v3.2.1/LICENSE: + Apache License Version 2.0, January 2004 @@ -25351,12 +25896,12 @@ Contents of probable licence file $GOMODCACHE/github.com/containerd/typeurl@v0.0 -------------------------------------------------------------------------------- -Dependency : github.com/coreos/etcd -Version: v3.3.10+incompatible +Dependency : github.com/google/shlex +Version: v0.0.0-20191202100458-e7afc7fbc510 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/etcd@v3.3.10+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510/COPYING: Apache License @@ -25563,12 +26108,49 @@ Contents of probable licence file $GOMODCACHE/github.com/coreos/etcd@v3.3.10+inc -------------------------------------------------------------------------------- -Dependency : github.com/coreos/go-etcd -Version: v2.0.0+incompatible +Dependency : github.com/googleapis/gax-go/v2 +Version: v2.0.5 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/googleapis/gax-go/v2@v2.0.5/LICENSE: + +Copyright 2016, Google Inc. +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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/googleapis/gnostic +Version: v0.4.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/go-etcd@v2.0.0+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/googleapis/gnostic@v0.4.1/LICENSE: Apache License @@ -25774,13 +26356,117 @@ Contents of probable licence file $GOMODCACHE/github.com/coreos/go-etcd@v2.0.0+i limitations under the License. + -------------------------------------------------------------------------------- -Dependency : github.com/coreos/go-semver -Version: v0.2.0 +Dependency : github.com/gopherjs/gopherjs +Version: v0.0.0-20181017120253-0766667cb4d1 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gopherjs/gopherjs@v0.0.0-20181017120253-0766667cb4d1/LICENSE: + +Copyright (c) 2013 Richard Musiol. 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. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/gorilla/websocket +Version: v1.4.2 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gorilla/websocket@v1.4.2/LICENSE: + +Copyright (c) 2013 The Gorilla WebSocket Authors. 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. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/grpc-ecosystem/grpc-gateway +Version: v1.13.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/grpc-ecosystem/grpc-gateway@v1.13.0/LICENSE.txt: + +Copyright (c) 2015, Gengo, Inc. +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 Gengo, Inc. 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 OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/hashicorp/cronexpr +Version: v1.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/go-semver@v0.2.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.0/APLv2: Apache License @@ -25987,907 +26673,753 @@ Contents of probable licence file $GOMODCACHE/github.com/coreos/go-semver@v0.2.0 -------------------------------------------------------------------------------- -Dependency : github.com/coreos/go-systemd -Version: v0.0.0-20190321100706-95778dfbb74e -Licence type (autodetected): Apache-2.0 +Dependency : github.com/hashicorp/errwrap +Version: v1.0.0 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/coreos/go-systemd@v0.0.0-20190321100706-95778dfbb74e/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.0.0/LICENSE: -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ +Mozilla Public License, version 2.0 -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions -1. Definitions. +1.1. “Contributor” -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. +1.2. “Contributor Version” -"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. + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. +1.3. “Contribution” -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. + means Covered Software of a particular Contributor. -"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. +1.4. “Covered Software” -"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). + 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. -"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. +1.5. “Incompatible With Secondary Licenses” + means -"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." + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or -"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. + 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. -2. Grant of Copyright License. +1.6. “Executable Form” -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. + means any form of the work other than Source Code Form. -3. Grant of Patent License. +1.7. “Larger Work” -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. + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. -4. Redistribution. +1.8. “License” -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: + means this document. -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. +1.9. “Licensable” -5. Submission of Contributions. + 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. -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. +1.10. “Modifications” -6. Trademarks. + means any of the following: -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. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or -7. Disclaimer of Warranty. + b. any new file in Source Code Form that contains any Covered Software. -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. +1.11. “Patent Claims” of a Contributor -8. Limitation of Liability. + 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. -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. +1.12. “Secondary License” -9. Accepting Warranty or Additional Liability. + 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. -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. +1.13. “Source Code Form” -END OF TERMS AND CONDITIONS + means the form of the work preferred for making modifications. -APPENDIX: How to apply the Apache License to your work +1.14. “You” (or “Your”) -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. + 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. - 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 +2. License Grants and Conditions - http://www.apache.org/licenses/LICENSE-2.0 +2.1. Grants - 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. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/cpuguy83/go-md2man -Version: v1.0.10 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/cpuguy83/go-md2man@v1.0.10/LICENSE.md: +2.2. Effective Date -The MIT License (MIT) + 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. -Copyright (c) 2014 Brian Goff +2.3. Limitations on Grant Scope -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 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: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + a. for any code that a Contributor has removed from Covered Software; or -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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. --------------------------------------------------------------------------------- -Dependency : github.com/cpuguy83/go-md2man/v2 -Version: v2.0.0-20190314233015-f79a8a8ca69d -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + 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). -Contents of probable licence file $GOMODCACHE/github.com/cpuguy83/go-md2man/v2@v2.0.0-20190314233015-f79a8a8ca69d/LICENSE.md: +2.4. Subsequent Licenses -The MIT License (MIT) + 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). -Copyright (c) 2014 Brian Goff +2.5. Representation -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +2.6. Fair Use -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/creack/pty -Version: v1.1.9 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. -Contents of probable licence file $GOMODCACHE/github.com/creack/pty@v1.1.9/LICENSE: -Copyright (c) 2011 Keith Rarick +3. Responsibilities -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, -subject to the following conditions: +3.1. Distribution of Source Form -The above copyright notice and this permission notice shall -be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/cucumber/godog -Version: v0.8.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + If You distribute Covered Software in Executable Form then: -Contents of probable licence file $GOMODCACHE/github.com/cucumber/godog@v0.8.1/LICENSE: + 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 -The MIT License (MIT) + 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. -Copyright (c) SmartBear +3.3. Distribution of a Larger Work -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 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). -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +3.4. Notices -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/cyphar/filepath-securejoin -Version: v0.2.2 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/cyphar/filepath-securejoin@v0.2.2/LICENSE: +4. Inability to Comply Due to Statute or Regulation -Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved. -Copyright (C) 2017 SUSE LLC. All rights reserved. + 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. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +5. Termination - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +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. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +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. --------------------------------------------------------------------------------- -Dependency : github.com/davecgh/go-spew -Version: v1.1.1 -Licence type (autodetected): ISC --------------------------------------------------------------------------------- +6. Disclaimer of Warranty -Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: + 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. -ISC License +7. Limitation of Liability -Copyright (c) 2012-2016 Dave Collins + 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. -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. +8. Litigation -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. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/davecgh/go-xdr -Version: v0.0.0-20161123171359-e6a2ba005892 -Licence type (autodetected): ISC --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-xdr@v0.0.0-20161123171359-e6a2ba005892/LICENSE: -Copyright (c) 2012-2014 Dave Collins +10. Versions of the License -Permission to use, copy, modify, and 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. +10.1. New Versions -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. + 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. --------------------------------------------------------------------------------- -Dependency : github.com/devigned/tab -Version: v0.1.2-0.20190607222403-0c15cf42f9a2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +10.2. Effect of New Versions -Contents of probable licence file $GOMODCACHE/github.com/devigned/tab@v0.1.2-0.20190607222403-0c15cf42f9a2/LICENSE: + 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. -MIT License +10.3. Modified Versions -Copyright (c) 2019 David Justice + 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). -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Exhibit A - Source Code Form License Notice -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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. --------------------------------------------------------------------------------- -Dependency : github.com/dgraph-io/ristretto -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +You may add additional accurate notices of copyright ownership. -Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0.1.0/LICENSE: +Exhibit B - “Incompatible With Secondary Licenses” Notice - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. - 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. +-------------------------------------------------------------------------------- +Dependency : github.com/hashicorp/go-cleanhttp +Version: v0.5.1 +Licence type (autodetected): MPL-2.0 +-------------------------------------------------------------------------------- - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-cleanhttp@v0.5.1/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. +Mozilla Public License, version 2.0 - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +1. Definitions - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +1.1. "Contributor" - "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. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. - "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). +1.2. "Contributor Version" - "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. + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's 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." +1.3. "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. + means Covered Software of a particular Contributor. - 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. +1.4. "Covered Software" - 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. + 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. - 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: +1.5. "Incompatible With Secondary Licenses" + means - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + 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. - (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 +1.6. "Executable Form" - (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. + means any form of the work other than Source Code 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. +1.7. "Larger 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. + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. - 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. +1.8. "License" - 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. + means this document. - 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. +1.9. "Licensable" - 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. + 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. - END OF TERMS AND CONDITIONS +1.10. "Modifications" + means any of the following: --------------------------------------------------------------------------------- -Dependency : github.com/dgrijalva/jwt-go -Version: v3.2.0+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or -Contents of probable licence file $GOMODCACHE/github.com/dgrijalva/jwt-go@v3.2.0+incompatible/LICENSE: + b. any new file in Source Code Form that contains any Covered Software. -Copyright (c) 2012 Dave Grijalva +1.11. "Patent Claims" of a Contributor -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + 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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +1.12. "Secondary 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. + 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. --------------------------------------------------------------------------------- -Dependency : github.com/dgryski/go-farm -Version: v0.0.0-20190423205320-6a90982ecee2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +1.14. "You" (or "Your") -Contents of probable licence file $GOMODCACHE/github.com/dgryski/go-farm@v0.0.0-20190423205320-6a90982ecee2/LICENSE: + 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. -As this is a highly derivative work, I have placed it under the same license as the original implementation: -Copyright (c) 2014-2017 Damian Gryski -Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com +2. License Grants and 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: +2.1. Grants -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive 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. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/dimchansky/utfbom -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/dimchansky/utfbom@v1.1.0/LICENSE: +2.3. Limitations on Grant Scope - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + 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: - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + a. for any code that a Contributor has removed from Covered Software; or - 1. Definitions. + 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 - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + 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). - "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. +2.4. Subsequent Licenses - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + 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). - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +2.5. Representation - "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. + 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. - "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.6. Fair Use - "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. + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. - "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." +2.7. Conditions - "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. + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - 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. +3. Responsibilities - 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.1. Distribution of Source Form - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + 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. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +3.2. Distribution of Executable Form - (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 + If You distribute Covered Software in Executable Form then: - (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. + 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 - 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. + 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. - 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. +3.3. Distribution of a Larger Work - 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. + 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). - 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. +3.4. Notices - 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. + 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. - 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. +3.5. Application of Additional Terms - END OF TERMS AND CONDITIONS + 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. - APPENDIX: How to apply the Apache License to your work. +4. Inability to Comply Due to Statute or Regulation - 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. + 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. - Copyright {yyyy} {name of copyright owner} +5. Termination - 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 +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. - http://www.apache.org/licenses/LICENSE-2.0 +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. - 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. -------------------------------------------------------------------------------- -Dependency : github.com/dlclark/regexp2 -Version: v1.1.7-0.20171009020623-7632a260cbaf +Dependency : github.com/hashicorp/go-hclog +Version: v0.9.2 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/dlclark/regexp2@v1.1.7-0.20171009020623-7632a260cbaf/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-hclog@v0.9.2/LICENSE: -The MIT License (MIT) +MIT License -Copyright (c) Doug Clark +Copyright (c) 2017 HashiCorp Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -26909,1584 +27441,1138 @@ SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/docker/distribution -Version: v2.7.1+incompatible -Licence type (autodetected): Apache-2.0 +Dependency : github.com/hashicorp/go-rootcerts +Version: v1.0.2 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/distribution@v2.7.1+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-rootcerts@v1.0.2/LICENSE: -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Mozilla Public License, version 2.0 - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1. Definitions - 1. Definitions. +1.1. "Contributor" - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +1.2. "Contributor Version" - "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. + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +1.3. "Contribution" - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + means Covered Software of a particular Contributor. - "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. +1.4. "Covered Software" - "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). + 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. - "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. +1.5. "Incompatible With Secondary Licenses" + means - "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." + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or - "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. + 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. - 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. +1.6. "Executable 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. + means any form of the work other than Source Code 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: +1.7. "Larger Work" - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +1.8. "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 + means this document. - (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. +1.9. "Licensable" - 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. + 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. - 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. +1.10. "Modifications" - 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. + means any of the following: - 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. + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or - 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. + b. any new file in Source Code Form that contains any Covered Software. - 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. +1.11. "Patent Claims" of a Contributor - END OF TERMS AND CONDITIONS + 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. - APPENDIX: How to apply the Apache License to your work. +1.12. "Secondary License" - 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. + 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. - Copyright {yyyy} {name of copyright owner} +1.13. "Source Code Form" - 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 + means the form of the work preferred for making modifications. - http://www.apache.org/licenses/LICENSE-2.0 +1.14. "You" (or "Your") - 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. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/docker/go-metrics -Version: v0.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +2.1. Grants -Contents of probable licence file $GOMODCACHE/github.com/docker/go-metrics@v0.0.1/LICENSE: + 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 - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ + 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. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +2.2. Effective Date - 1. Definitions. + 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. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +2.3. Limitations on Grant Scope - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + 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: - "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. + a. for any code that a Contributor has removed from Covered Software; or - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + 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 - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. - "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. + 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). - "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.4. Subsequent Licenses - "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. + 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). - "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." +2.5. Representation - "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. + 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. 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. +2.6. Fair Use - 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. + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. - 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: +2.7. Conditions - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - (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 +3. Responsibilities - (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. +3.1. Distribution of Source 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. + 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. - 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. +3.2. Distribution of Executable Form - 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. + If You distribute Covered Software in Executable Form then: - 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. + 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 - 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. + 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. - 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. +3.3. Distribution of a Larger Work - END OF TERMS AND CONDITIONS + 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). - Copyright 2013-2016 Docker, Inc. +3.4. Notices - 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 + 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. - https://www.apache.org/licenses/LICENSE-2.0 +3.5. Application of Additional Terms - 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 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 --------------------------------------------------------------------------------- -Dependency : github.com/docopt/docopt-go -Version: v0.0.0-20180111231733-ee0de3bc6815 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/docopt/docopt-go@v0.0.0-20180111231733-ee0de3bc6815/LICENSE: +5. Termination -The MIT License (MIT) +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. -Copyright (c) 2013 Keith Batten -Copyright (c) 2016 David Irvine +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. -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +6. Disclaimer of Warranty -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/eapache/go-xerial-snappy -Version: v0.0.0-20180814174437-776d5712da21 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/eapache/go-xerial-snappy@v0.0.0-20180814174437-776d5712da21/LICENSE: +8. Litigation -The MIT License (MIT) + 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. -Copyright (c) 2016 Evan Huus +9. Miscellaneous -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +10. Versions of the License +10.1. New Versions --------------------------------------------------------------------------------- -Dependency : github.com/eapache/queue -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/eapache/queue@v1.1.0/LICENSE: +10.2. Effect of New Versions -The MIT License (MIT) + 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. -Copyright (c) 2014 Evan Huus +10.3. Modified Versions -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 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). -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +Exhibit A - Source Code Form License Notice --------------------------------------------------------------------------------- -Dependency : github.com/elazarl/goproxy -Version: v0.0.0-20180725130230-947c36da3153 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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/. -Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy@v0.0.0-20180725130230-947c36da3153/LICENSE: +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. -Copyright (c) 2012 Elazar Leibovich. All rights reserved. +You may add additional accurate notices of copyright ownership. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Exhibit B - "Incompatible With Secondary Licenses" Notice - * 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 Elazar Leibovich. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 2.0. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -Dependency : github.com/emicklei/go-restful -Version: v0.0.0-20170410110728-ff4f55a20633 -Licence type (autodetected): MIT +Dependency : github.com/hashicorp/go-uuid +Version: v1.0.2 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/emicklei/go-restful@v0.0.0-20170410110728-ff4f55a20633/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-uuid@v1.0.2/LICENSE: -Copyright (c) 2012,2013 Ernest Micklei +Mozilla Public License, version 2.0 -MIT License +1. Definitions -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +1.1. "Contributor" -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +1.2. "Contributor Version" --------------------------------------------------------------------------------- -Dependency : github.com/envoyproxy/go-control-plane -Version: v0.9.9-0.20210217033140-668b12f5399d -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. -Contents of probable licence file $GOMODCACHE/github.com/envoyproxy/go-control-plane@v0.9.9-0.20210217033140-668b12f5399d/LICENSE: +1.3. "Contribution" - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + means Covered Software of a particular Contributor. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +1.4. "Covered Software" - 1. Definitions. + 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. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +1.5. "Incompatible With Secondary Licenses" + means - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or - "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. + 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. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +1.6. "Executable Form" - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + means any form of the work other than Source Code Form. - "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. +1.7. "Larger 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). + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. - "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. +1.8. "License" - "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." + means this document. - "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. +1.9. "Licensable" - 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. + 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. - 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. +1.10. "Modifications" - 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: + means any of the following: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + 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) You must cause any modified files to carry prominent notices - stating that You changed the files; and + b. any new file in Source Code Form that contains any Covered Software. - (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 +1.11. "Patent Claims" of a Contributor - (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. + 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. - 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. +1.12. "Secondary 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. + 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. - 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. +1.13. "Source Code Form" - 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. + means the form of the work preferred for making modifications. - 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. +1.14. "You" (or "Your") - 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. + 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. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +2. License Grants and Conditions - 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. +2.1. Grants - Copyright {yyyy} {name of copyright owner} + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive 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 + 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 - http://www.apache.org/licenses/LICENSE-2.0 + 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. - 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. +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. --------------------------------------------------------------------------------- -Dependency : github.com/envoyproxy/protoc-gen-validate -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +2.3. Limitations on Grant Scope -Contents of probable licence file $GOMODCACHE/github.com/envoyproxy/protoc-gen-validate@v0.1.0/LICENSE: + 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 - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + 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 - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. - 1. Definitions. + 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). - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +2.4. Subsequent Licenses - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + 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). - "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. +2.5. Representation - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + 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. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +2.6. Fair Use - "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. + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. - "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.7. Conditions - "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. + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - "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. +3. Responsibilities - 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.1. Distribution of Source 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. + 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. - 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.2. Distribution of Executable Form - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + If You distribute Covered Software in Executable Form then: - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + 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 - (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 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. - (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. +3.3. Distribution of a Larger Work - 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. + 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). - 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. +3.4. Notices - 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. + 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. - 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. +3.5. Application of Additional Terms - 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. + 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. - 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. +4. Inability to Comply Due to Statute or Regulation - END OF TERMS AND CONDITIONS + 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. - APPENDIX: How to apply the Apache License to your work. +5. Termination - 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. +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. - Copyright [yyyy] [name of copyright owner] +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. - 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 +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. - http://www.apache.org/licenses/LICENSE-2.0 +6. Disclaimer of Warranty - 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. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/evanphx/json-patch -Version: v4.9.0+incompatible -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/evanphx/json-patch@v4.9.0+incompatible/LICENSE: +8. Litigation -Copyright (c) 2014, Evan Phoenix -All rights reserved. + 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. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +9. Miscellaneous -* 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 the Evan Phoenix nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. + 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. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +10. Versions of the License --------------------------------------------------------------------------------- -Dependency : github.com/form3tech-oss/jwt-go -Version: v3.2.2+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +10.1. New Versions -Contents of probable licence file $GOMODCACHE/github.com/form3tech-oss/jwt-go@v3.2.2+incompatible/LICENSE: + 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. -Copyright (c) 2012 Dave Grijalva +10.2. Effect of New Versions -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + 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. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +10.3. Modified Versions -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + 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 --------------------------------------------------------------------------------- -Dependency : github.com/fortytw2/leaktest -Version: v1.3.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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/. -Contents of probable licence file $GOMODCACHE/github.com/fortytw2/leaktest@v1.3.0/LICENSE: +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. -Copyright (c) 2012 The Go Authors. All rights reserved. +You may add additional accurate notices of copyright ownership. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Exhibit B - "Incompatible With Secondary Licenses" Notice - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 2.0. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -Dependency : github.com/frankban/quicktest -Version: v1.11.3 -Licence type (autodetected): MIT +Dependency : github.com/hashicorp/go-version +Version: v1.0.0 +Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/frankban/quicktest@v1.11.3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-version@v1.0.0/LICENSE: -MIT License +Mozilla Public License, version 2.0 -Copyright (c) 2017 Canonical Ltd. +1. Definitions -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +1.1. “Contributor” -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -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. --------------------------------------------------------------------------------- -Dependency : github.com/ghodss/yaml -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +1.3. “Contribution” -Contents of probable licence file $GOMODCACHE/github.com/ghodss/yaml@v1.0.0/LICENSE: + means Covered Software of a particular Contributor. -The MIT License (MIT) +1.4. “Covered Software” -Copyright (c) 2014 Sam Ghods + 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. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +1.5. “Incompatible With Secondary Licenses” + means -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + 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” -Copyright (c) 2012 The Go Authors. All rights reserved. + means any form of the work other than Source Code Form. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +1.7. “Larger Work” - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1.8. “License” + means this document. --------------------------------------------------------------------------------- -Dependency : github.com/go-gl/glfw -Version: v0.0.0-20190409004039-e6da0acd62b1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- +1.9. “Licensable” -Contents of probable licence file $GOMODCACHE/github.com/go-gl/glfw@v0.0.0-20190409004039-e6da0acd62b1/LICENSE: + 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. -Copyright (c) 2012 The glfw3-go Authors. All rights reserved. +1.10. “Modifications” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + means any of the following: - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + b. any new file in Source Code Form that contains any Covered Software. +1.11. “Patent Claims” of a Contributor --------------------------------------------------------------------------------- -Dependency : github.com/go-gl/glfw/v3.3/glfw -Version: v0.0.0-20200222043503-6f7a984d4dc4 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- + 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. -Contents of probable licence file $GOMODCACHE/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20200222043503-6f7a984d4dc4/LICENSE: +1.12. “Secondary License” -Copyright (c) 2012 The glfw3-go Authors. All rights reserved. + 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. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +1.13. “Source Code Form” - * 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 Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + means the form of the work preferred for making modifications. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +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. --------------------------------------------------------------------------------- -Dependency : github.com/go-kit/kit -Version: v0.9.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-kit/kit@v0.9.0/LICENSE: +2. License Grants and Conditions -The MIT License (MIT) +2.1. Grants -Copyright (c) 2015 Peter Bourgon + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive 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: + 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 -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + 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. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +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 --------------------------------------------------------------------------------- -Dependency : github.com/go-logfmt/logfmt -Version: v0.4.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + 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: -Contents of probable licence file $GOMODCACHE/github.com/go-logfmt/logfmt@v0.4.0/LICENSE: + a. for any code that a Contributor has removed from Covered Software; or -The MIT License (MIT) + 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 -Copyright (c) 2015 go-logfmt + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 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). -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +2.4. Subsequent Licenses -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 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. --------------------------------------------------------------------------------- -Dependency : github.com/go-logr/logr -Version: v0.4.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +2.6. Fair Use -Contents of probable licence file $GOMODCACHE/github.com/go-logr/logr@v0.4.0/LICENSE: + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +2.7. Conditions - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +3. Responsibilities - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +3.1. Distribution of Source Form - "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. + 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. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +3.2. Distribution of Executable Form - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + If You distribute Covered Software in Executable Form then: - "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. + 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 - "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). + 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. - "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. +3.3. Distribution of a Larger Work - "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." + 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). - "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.4. Notices - 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 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. 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. +3.5. Application of Additional Terms - 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: + 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. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +4. Inability to Comply Due to Statute or Regulation - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + 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. - (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 +5. Termination - (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.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. - 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.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. 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. +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. 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. +6. Disclaimer of Warranty - 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. + 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. - 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. Limitation of Liability - 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. + 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. - END OF TERMS AND CONDITIONS +8. Litigation - APPENDIX: How to apply the Apache License to your work. + 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. - 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. +9. Miscellaneous - Copyright {yyyy} {name of copyright owner} + 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. - 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 +10. Versions of 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. +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. --------------------------------------------------------------------------------- -Dependency : github.com/go-martini/martini -Version: v0.0.0-20170121215854-22fa46961aab -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +10.2. Effect of New Versions -Contents of probable licence file $GOMODCACHE/github.com/go-martini/martini@v0.0.0-20170121215854-22fa46961aab/LICENSE: + 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. -The MIT License (MIT) +10.3. Modified Versions -Copyright (c) 2015 Jeremy Saenz + 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). -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +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. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/go-ole/go-ole -Version: v1.2.5-0.20190920104607-14974a1cf647 +Dependency : github.com/hpcloud/tail +Version: v1.0.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-ole/go-ole@v1.2.5-0.20190920104607-14974a1cf647/LICENSE: - -The MIT License (MIT) +Contents of probable licence file $GOMODCACHE/github.com/hpcloud/tail@v1.0.0/LICENSE.txt: -Copyright © 2013-2017 Yasuhiro Matsumoto, +# 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 2015 Hewlett Packard Enterprise Development LP +Copyright (c) 2014 ActiveState +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -28496,124845 +28582,73 @@ SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/jsonpointer -Version: v0.19.3 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/imdario/mergo +Version: v0.3.6 +Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonpointer@v0.19.3/LICENSE: - - - 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. +Contents of probable licence file $GOMODCACHE/github.com/imdario/mergo@v0.3.6/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. +Copyright (c) 2013 Dario Castañé. All rights reserved. +Copyright (c) 2012 The Go Authors. All rights reserved. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + * 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 Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. - "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. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - "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. +-------------------------------------------------------------------------------- +Dependency : github.com/inconshreveable/mousetrap +Version: v1.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- - "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." +Contents of probable licence file $GOMODCACHE/github.com/inconshreveable/mousetrap@v1.0.0/LICENSE: - "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. +Copyright 2014 Alan Shreve - 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. +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 - 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. + http://www.apache.org/licenses/LICENSE-2.0 - 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: +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. - (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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/jsonreference -Version: v0.19.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonreference@v0.19.3/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/spec -Version: v0.19.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/spec@v0.19.3/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-openapi/swag -Version: v0.19.5 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/swag@v0.19.5/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-sourcemap/sourcemap -Version: v2.1.2+incompatible -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-sourcemap/sourcemap@v2.1.2+incompatible/LICENSE: - -Copyright (c) 2016 The github.com/go-sourcemap/sourcemap 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: - - * 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-stack/stack -Version: v1.8.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-stack/stack@v1.8.0/LICENSE.md: - -The MIT License (MIT) - -Copyright (c) 2014 Chris Hines - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gobuffalo/here -Version: v0.6.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gobuffalo/here@v0.6.0/LICENSE: - -The MIT License (MIT) - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/godbus/dbus/v5 -Version: v5.0.3 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/godbus/dbus/v5@v5.0.3/LICENSE: - -Copyright (c) 2013, Georg Reinke (), Google -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/golang-jwt/jwt/v4 -Version: v4.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang-jwt/jwt/v4@v4.0.0/LICENSE: - -Copyright (c) 2012 Dave Grijalva -Copyright (c) 2021 golang-jwt maintainers - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/golang-sql/civil -Version: v0.0.0-20190719163853-cb61b32ac6fe -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang-sql/civil@v0.0.0-20190719163853-cb61b32ac6fe/LICENSE: - - - 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. - --------------------------------------------------------------------------------- -Dependency : github.com/elastic/glog -Version: v1.0.1-0.20210831205241-7d8b5c89dfc4 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/elastic/glog@v1.0.1-0.20210831205241-7d8b5c89dfc4/LICENSE: - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/golang/groupcache -Version: v0.0.0-20200121045136-8c9f03a8e57e -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang/groupcache@v0.0.0-20200121045136-8c9f03a8e57e/LICENSE: - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/btree -Version: v1.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/btree@v1.0.0/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/gofuzz -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/gofuzz@v1.1.0/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/licenseclassifier -Version: v0.0.0-20200402202327-879cb1424de0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/licenseclassifier@v0.0.0-20200402202327-879cb1424de0/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/martian -Version: v2.1.0+incompatible -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/martian@v2.1.0+incompatible/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/martian/v3 -Version: v3.2.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/martian/v3@v3.2.1/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/pprof -Version: v0.0.0-20210601050228-01bbb1931b22 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/pprof@v0.0.0-20210601050228-01bbb1931b22/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/renameio -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/renameio@v0.1.0/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/shlex -Version: v0.0.0-20191202100458-e7afc7fbc510 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/shlex@v0.0.0-20191202100458-e7afc7fbc510/COPYING: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/googleapis/gax-go/v2 -Version: v2.0.5 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/googleapis/gax-go/v2@v2.0.5/LICENSE: - -Copyright 2016, Google Inc. -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/googleapis/gnostic -Version: v0.4.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/googleapis/gnostic@v0.4.1/LICENSE: - - - 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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/gopherjs/gopherjs -Version: v0.0.0-20181017120253-0766667cb4d1 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gopherjs/gopherjs@v0.0.0-20181017120253-0766667cb4d1/LICENSE: - -Copyright (c) 2013 Richard Musiol. 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/securecookie -Version: v1.1.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/securecookie@v1.1.1/LICENSE: - -Copyright (c) 2012 Rodrigo Moraes. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/sessions -Version: v1.2.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/sessions@v1.2.1/LICENSE: - -Copyright (c) 2012-2018 The Gorilla Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/websocket -Version: v1.4.2 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/websocket@v1.4.2/LICENSE: - -Copyright (c) 2013 The Gorilla WebSocket Authors. 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gregjones/httpcache -Version: v0.0.0-20180305231024-9cad4c3443a7 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gregjones/httpcache@v0.0.0-20180305231024-9cad4c3443a7/LICENSE.txt: - -Copyright © 2012 Greg Jones (greg.jones@gmail.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. - --------------------------------------------------------------------------------- -Dependency : github.com/grpc-ecosystem/grpc-gateway -Version: v1.13.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/grpc-ecosystem/grpc-gateway@v1.13.0/LICENSE.txt: - -Copyright (c) 2015, Gengo, Inc. -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 Gengo, Inc. 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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/cronexpr -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.0/APLv2: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/errwrap -Version: v1.0.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.0.0/LICENSE: - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-cleanhttp -Version: v0.5.1 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-cleanhttp@v0.5.1/LICENSE: - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-hclog -Version: v0.9.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-hclog@v0.9.2/LICENSE: - -MIT License - -Copyright (c) 2017 HashiCorp - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-rootcerts -Version: v1.0.2 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-rootcerts@v1.0.2/LICENSE: - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-uuid -Version: v1.0.2 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-uuid@v1.0.2/LICENSE: - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-version -Version: v1.0.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-version@v1.0.0/LICENSE: - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/hcl -Version: v1.0.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/hcl@v1.0.0/LICENSE: - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hpcloud/tail -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hpcloud/tail@v1.0.0/LICENSE.txt: - -# The MIT License (MIT) - -# © Copyright 2015 Hewlett Packard Enterprise Development LP -Copyright (c) 2014 ActiveState - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/ianlancetaylor/demangle -Version: v0.0.0-20200824232613-28f6c0f3b639 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/ianlancetaylor/demangle@v0.0.0-20200824232613-28f6c0f3b639/LICENSE: - -Copyright (c) 2015 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/imdario/mergo -Version: v0.3.6 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/imdario/mergo@v0.3.6/LICENSE: - -Copyright (c) 2013 Dario Castañé. All rights reserved. -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/inconshreveable/mousetrap -Version: v1.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/inconshreveable/mousetrap@v1.0.0/LICENSE: - -Copyright 2014 Alan Shreve - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/aescts/v2 -Version: v2.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/aescts/v2@v2.0.0/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/dnsutils/v2 -Version: v2.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/dnsutils/v2@v2.0.0/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/gofork -Version: v1.0.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gofork@v1.0.0/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/goidentity/v6 -Version: v6.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/goidentity/v6@v6.0.1/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/gokrb5/v8 -Version: v8.4.2 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gokrb5/v8@v8.4.2/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jcmturner/rpc/v2 -Version: v2.0.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jcmturner/rpc/v2@v2.0.3/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/jessevdk/go-flags -Version: v1.4.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jessevdk/go-flags@v1.4.0/LICENSE: - -Copyright (c) 2012 Jesse van den Kieboom. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jmespath/go-jmespath -Version: v0.0.0-20180206201540-c2b33e8439af -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jmespath/go-jmespath@v0.0.0-20180206201540-c2b33e8439af/LICENSE: - -Copyright 2015 James Saryerwinnie - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/joho/godotenv -Version: v1.3.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/joho/godotenv@v1.3.0/LICENCE: - -Copyright (c) 2013 John Barton - -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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/jpillora/backoff -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jpillora/backoff@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2017 Jaime Pillora - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/json-iterator/go -Version: v1.1.10 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/json-iterator/go@v1.1.10/LICENSE: - -MIT License - -Copyright (c) 2016 json-iterator - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jstemmer/go-junit-report -Version: v0.9.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jstemmer/go-junit-report@v0.9.1/LICENSE: - -Copyright (c) 2012 Joel Stemmer - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/jtolds/gls -Version: v4.20.0+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jtolds/gls@v4.20.0+incompatible/LICENSE: - -Copyright (c) 2013, Space Monkey, 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/julienschmidt/httprouter -Version: v1.2.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/julienschmidt/httprouter@v1.2.0/LICENSE: - -Copyright (c) 2013 Julien Schmidt. 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. - * The names of the 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 JULIEN SCHMIDT BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -Dependency : github.com/karrick/godirwalk -Version: v1.15.6 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/karrick/godirwalk@v1.15.6/LICENSE: - -BSD 2-Clause License - -Copyright (c) 2017, Karrick McDermott -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kisielk/errcheck -Version: v1.5.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kisielk/errcheck@v1.5.0/LICENSE: - -Copyright (c) 2013 Kamil Kisiel - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kisielk/gotool -Version: v1.0.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kisielk/gotool@v1.0.0/LEGAL: - -All the files in this distribution are covered under either the MIT -license (see the file LICENSE) except some files mentioned below. - -match.go, match_test.go: - - Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/klauspost/compress -Version: v1.12.3 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/klauspost/compress@v1.12.3/LICENSE: - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2019 Klaus Post. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/konsorten/go-windows-terminal-sequences -Version: v1.0.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/konsorten/go-windows-terminal-sequences@v1.0.2/LICENSE: - -(The MIT License) - -Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/logfmt -Version: v0.0.0-20140226030751-b84e30acd515 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/logfmt@v0.0.0-20140226030751-b84e30acd515/Readme: - -Go package for parsing (and, eventually, generating) -log lines in the logfmt style. - -See http://godoc.org/github.com/kr/logfmt for format, and other documentation and examples. - -Copyright (C) 2013 Keith Rarick, Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/pretty -Version: v0.2.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/pretty@v0.2.1/License: - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/pty -Version: v1.1.5 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/pty@v1.1.5/License: - -Copyright (c) 2011 Keith Rarick - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall -be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS -OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR -OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/kr/text -Version: v0.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/kr/text@v0.2.0/License: - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/magiconair/properties -Version: v1.8.0 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/magiconair/properties@v1.8.0/LICENSE: - -goproperties - properties file decoder for Go - -Copyright (c) 2013-2018 - Frank Schroeder - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mailru/easyjson -Version: v0.7.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mailru/easyjson@v0.7.1/LICENSE: - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/markbates/pkger -Version: v0.17.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/markbates/pkger@v0.17.0/LICENSE: - -The MIT License (MIT) - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/martini-contrib/render -Version: v0.0.0-20150707142108-ec18f8345a11 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/martini-contrib/render@v0.0.0-20150707142108-ec18f8345a11/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Jeremy Saenz - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-ieproxy -Version: v0.0.0-20191113090002-7c0f6868bffe -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-ieproxy@v0.0.0-20191113090002-7c0f6868bffe/LICENSE: - -MIT License - -Copyright (c) 2014 mattn -Copyright (c) 2017 oliverpool -Copyright (c) 2019 Adele Reed - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-isatty -Version: v0.0.12 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-isatty@v0.0.12/LICENSE: - -Copyright (c) Yasuhiro MATSUMOTO - -MIT License (Expat) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-runewidth -Version: v0.0.9 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-runewidth@v0.0.9/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mattn/go-sqlite3 -Version: v1.9.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mattn/go-sqlite3@v1.9.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/matttproud/golang_protobuf_extensions -Version: v1.0.2-0.20181231171920-c182affec369 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/matttproud/golang_protobuf_extensions@v1.0.2-0.20181231171920-c182affec369/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/go-homedir -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-homedir@v1.1.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/go-testing-interface -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-testing-interface@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/iochan -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/iochan@v1.0.0/LICENSE.md: - -The MIT License (MIT) - -Copyright (c) 2015 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/moby/spdystream -Version: v0.2.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/moby/spdystream@v0.2.0/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/modern-go/concurrent -Version: v0.0.0-20180306012644-bacd9c7ef1dd -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/modern-go/concurrent@v0.0.0-20180306012644-bacd9c7ef1dd/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/modern-go/reflect2 -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/modern-go/reflect2@v1.0.1/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/morikuni/aec -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/morikuni/aec@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2016 Taihei Morikuni - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/munnerz/goautoneg -Version: v0.0.0-20120707110453-a547fc61f48d -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/mwitkow/go-conntrack -Version: v0.0.0-20161129095857-cc309e4a2223 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mwitkow/go-conntrack@v0.0.0-20161129095857-cc309e4a2223/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/mxk/go-flowrate -Version: v0.0.0-20140419014527-cca7078d478f -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mxk/go-flowrate@v0.0.0-20140419014527-cca7078d478f/LICENSE: - -Copyright (c) 2014 The Go-FlowRate Authors. 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 the go-flowrate project 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/niemeyer/pretty -Version: v0.0.0-20200227124842-a10e7caefd8e -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/niemeyer/pretty@v0.0.0-20200227124842-a10e7caefd8e/License: - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/onsi/ginkgo -Version: v1.11.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/onsi/ginkgo@v1.11.0/LICENSE: - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/onsi/gomega -Version: v1.7.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/onsi/gomega@v1.7.0/LICENSE: - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/go-digest -Version: v1.0.0-rc1.0.20190228220655-ac19fd6e7483 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/go-digest@v1.0.0-rc1.0.20190228220655-ac19fd6e7483/LICENSE: - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2016 Docker, Inc. - - 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 - - https://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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/image-spec -Version: v1.0.2-0.20190823105129-775207bd45b6 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/image-spec@v1.0.2-0.20190823105129-775207bd45b6/LICENSE: - - - 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 - - Copyright 2016 The Linux Foundation. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/runc -Version: v1.0.0-rc9 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runc@v1.0.0-rc9/LICENSE: - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/runtime-spec -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runtime-spec@v1.0.1/LICENSE: - - - 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 - - Copyright 2015 The Linux Foundation. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/opencontainers/runtime-tools -Version: v0.0.0-20181011054405-1d69bd0f9c39 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runtime-tools@v0.0.0-20181011054405-1d69bd0f9c39/LICENSE: - - - 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 - - Copyright 2015 The Linux Foundation. - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/otiai10/curr -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/otiai10/curr@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2020 Hiromu Ochiai - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/otiai10/mint -Version: v1.3.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/otiai10/mint@v1.3.1/LICENSE: - -Copyright 2017 otiai10 (Hiromu OCHIAI) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/oxtoacart/bpool -Version: v0.0.0-20150712133111-4e1c5567d7c2 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/oxtoacart/bpool@v0.0.0-20150712133111-4e1c5567d7c2/LICENSE: - - - 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 2014 Percy Wegmann - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/pelletier/go-toml -Version: v1.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/pelletier/go-toml@v1.2.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/peterbourgon/diskv -Version: v2.0.1+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/peterbourgon/diskv@v2.0.1+incompatible/LICENSE: - -Copyright (c) 2011-2012 Peter Bourgon - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/pierrec/lz4 -Version: v2.6.0+incompatible -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/pierrec/lz4@v2.6.0+incompatible/LICENSE: - -Copyright (c) 2015, Pierre Curto -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 xxHash 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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/prometheus/client_golang -Version: v1.1.1-0.20190913103102-20428fa0bffc -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/prometheus/client_golang@v1.1.1-0.20190913103102-20428fa0bffc/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/rogpeppe/fastuuid -Version: v1.2.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/rogpeppe/fastuuid@v1.2.0/LICENSE: - -Copyright © 2014, Roger Peppe -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 this project 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/rogpeppe/go-internal -Version: v1.3.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/rogpeppe/go-internal@v1.3.0/LICENSE: - -Copyright (c) 2018 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/russross/blackfriday -Version: v1.5.2 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/russross/blackfriday@v1.5.2/LICENSE.txt: - -Blackfriday is distributed under the Simplified BSD License: - -> Copyright © 2011 Russ Ross -> All rights reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions -> are met: -> -> 1. Redistributions of source code must retain the above copyright -> notice, this list of conditions and the following disclaimer. -> -> 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/russross/blackfriday/v2 -Version: v2.0.1 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/russross/blackfriday/v2@v2.0.1/LICENSE.txt: - -Blackfriday is distributed under the Simplified BSD License: - -> Copyright © 2011 Russ Ross -> All rights reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions -> are met: -> -> 1. Redistributions of source code must retain the above copyright -> notice, this list of conditions and the following disclaimer. -> -> 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/samuel/go-parser -Version: v0.0.0-20130731160455-ca8abbf65d0e -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/sanathkr/go-yaml -Version: v0.0.0-20170819195128-ed9d249f429b -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sanathkr/go-yaml@v0.0.0-20170819195128-ed9d249f429b/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/sanathkr/yaml -Version: v1.0.1-0.20170819201035-0056894fa522 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sanathkr/yaml@v1.0.1-0.20170819201035-0056894fa522/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/santhosh-tekuri/jsonschema -Version: v1.2.4 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/santhosh-tekuri/jsonschema@v1.2.4/LICENSE: - -Copyright (c) 2017 Santhosh Kumar Tekuri. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -Dependency : github.com/satori/go.uuid -Version: v1.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/satori/go.uuid@v1.2.0/LICENSE: - -Copyright (C) 2013-2018 by Maxim Bublis - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/sergi/go-diff -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sergi/go-diff@v1.1.0/LICENSE: - -Copyright (c) 2012-2016 The go-diff Authors. 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. - - - --------------------------------------------------------------------------------- -Dependency : github.com/shurcooL/sanitized_anchor_name -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/shurcoo!l/sanitized_anchor_name@v1.0.0/LICENSE: - -MIT License - -Copyright (c) 2015 Dmitri Shuralyov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/sirupsen/logrus -Version: v1.4.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/sirupsen/logrus@v1.4.2/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Simon Eskildsen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/smartystreets/assertions -Version: v0.0.0-20180927180507-b2de0cb4f26d -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/smartystreets/assertions@v0.0.0-20180927180507-b2de0cb4f26d/LICENSE.md: - -Copyright (c) 2016 SmartyStreets, LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -NOTE: Various optional and subordinate components carry their own licensing -requirements and restrictions. Use of those components is subject to the terms -and conditions outlined the respective license of each component. - - --------------------------------------------------------------------------------- -Dependency : github.com/smartystreets/goconvey -Version: v0.0.0-20190330032615-68dc04aab96a -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/smartystreets/goconvey@v0.0.0-20190330032615-68dc04aab96a/LICENSE.md: - -Copyright (c) 2016 SmartyStreets, LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -NOTE: Various optional and subordinate components carry their own licensing -requirements and restrictions. Use of those components is subject to the terms -and conditions outlined the respective license of each component. - - --------------------------------------------------------------------------------- -Dependency : github.com/spaolacci/murmur3 -Version: v1.1.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spaolacci/murmur3@v1.1.0/LICENSE: - -Copyright 2013, Sébastien Paolacci. -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 the library 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 BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/afero -Version: v1.2.2 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/afero@v1.2.2/LICENSE.txt: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/cast -Version: v1.3.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/cast@v1.3.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/jwalterweatherman -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/jwalterweatherman@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/spf13/viper -Version: v1.3.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/spf13/viper@v1.3.2/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/stretchr/objx -Version: v0.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/stretchr/objx@v0.2.0/LICENSE: - -The MIT License - -Copyright (c) 2014 Stretchr, Inc. -Copyright (c) 2017-2018 objx 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/syndtr/gocapability -Version: v0.0.0-20170704070218-db04d3cc01c8 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/syndtr/gocapability@v0.0.0-20170704070218-db04d3cc01c8/LICENSE: - -Copyright 2013 Suryandaru Triandana -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/ugorji/go -Version: v1.1.8 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/ugorji/go@v1.1.8/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2012-2015 Ugorji Nwoke. -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/urfave/cli -Version: v1.22.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urfave/cli@v1.22.1/LICENSE: - -MIT License - -Copyright (c) 2016 Jeremy Saenz & 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/urso/diag -Version: v0.0.0-20200210123136-21b3cc8eb797 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urso/diag@v0.0.0-20200210123136-21b3cc8eb797/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/urso/go-bin -Version: v0.0.0-20180220135811-781c575c9f0e -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urso/go-bin@v0.0.0-20180220135811-781c575c9f0e/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/urso/magetools -Version: v0.0.0-20190919040553-290c89e0c230 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/urso/qcgen -Version: v0.0.0-20180131103024-0b059e7db4f4 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/urso/qcgen@v0.0.0-20180131103024-0b059e7db4f4/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/vbatts/tar-split -Version: v0.11.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/vbatts/tar-split@v0.11.1/LICENSE: - -Copyright (c) 2015 Vincent Batts, Raleigh, NC, USA - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -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. - -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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xdg/stringprep -Version: v1.0.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xdg/stringprep@v1.0.3/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xeipuuv/gojsonpointer -Version: v0.0.0-20190905194746-02993c407bfb -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xeipuuv/gojsonpointer@v0.0.0-20190905194746-02993c407bfb/LICENSE-APACHE-2.0.txt: - - - 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 2015 xeipuuv - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xeipuuv/gojsonreference -Version: v0.0.0-20180127040603-bd5ef7bd5415 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xeipuuv/gojsonreference@v0.0.0-20180127040603-bd5ef7bd5415/LICENSE-APACHE-2.0.txt: - - - 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 2015 xeipuuv - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xeipuuv/gojsonschema -Version: v0.0.0-20181112162635-ac52e6811b56 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xeipuuv/gojsonschema@v0.0.0-20181112162635-ac52e6811b56/LICENSE-APACHE-2.0.txt: - - - 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 2015 xeipuuv - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/xordataexchange/crypt -Version: v0.0.3-0.20170626215501-b2862e3d0a77 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/xordataexchange/crypt@v0.0.3-0.20170626215501-b2862e3d0a77/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 XOR Data Exchange, 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/yuin/gopher-lua -Version: v0.0.0-20170403160031-b402f3114ec7 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/yuin/gopher-lua@v0.0.0-20170403160031-b402f3114ec7/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Yusuke Inuzuka - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : go.elastic.co/fastjson -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.elastic.co/fastjson@v1.1.0/LICENSE: - -Copyright 2018 Elasticsearch BV - -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. - ---- - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : go.opencensus.io -Version: v0.23.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.opencensus.io@v0.23.0/LICENSE: - - - 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. - --------------------------------------------------------------------------------- -Dependency : go.uber.org/goleak -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.uber.org/goleak@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2018 Uber Technologies, 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. - - --------------------------------------------------------------------------------- -Dependency : go.uber.org/tools -Version: v0.0.0-20190618225709-2cfd321de3ee -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/go.uber.org/tools@v0.0.0-20190618225709-2cfd321de3ee/LICENSE: - -Copyright (c) 2017 Uber Technologies, 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. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/exp -Version: v0.0.0-20200224162631-6cc2880d07d6 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/exp@v0.0.0-20200224162631-6cc2880d07d6/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/image -Version: v0.0.0-20190802002840-cff245a6509b -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/image@v0.0.0-20190802002840-cff245a6509b/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/mobile -Version: v0.0.0-20190719004257-d2bd2a29d028 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/mobile@v0.0.0-20190719004257-d2bd2a29d028/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/mod -Version: v0.4.2 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/mod@v0.4.2/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/term -Version: v0.0.0-20210220032956-6a3ed077a48d -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/term@v0.0.0-20210220032956-6a3ed077a48d/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : golang.org/x/xerrors -Version: v0.0.0-20200804184101-5ec99f83aff1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/golang.org/x/xerrors@v0.0.0-20200804184101-5ec99f83aff1/LICENSE: - -Copyright (c) 2019 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : google.golang.org/appengine -Version: v1.6.7 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/google.golang.org/appengine@v1.6.7/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : google.golang.org/grpc/cmd/protoc-gen-go-grpc -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1.0/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/airbrake/gobrake.v2 -Version: v2.0.9 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/airbrake/gobrake.v2@v2.0.9/LICENSE: - -Copyright (c) 2014 The Gobrake Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/alecthomas/kingpin.v2 -Version: v2.2.6 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/alecthomas/kingpin.v2@v2.2.6/COPYING: - -Copyright (C) 2014 Alec 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/check.v1 -Version: v1.0.0-20201130134442-10cb98267c6c -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/check.v1@v1.0.0-20201130134442-10cb98267c6c/LICENSE: - -Gocheck - A rich testing framework for Go - -Copyright (c) 2010-2013 Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/errgo.v2 -Version: v2.1.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/errgo.v2@v2.1.0/LICENSE: - -Copyright © 2013, Roger Peppe -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 this project 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/fsnotify.v1 -Version: v1.4.7 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/fsnotify.v1@v1.4.7/LICENSE: - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2012 fsnotify Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/gemnasium/logrus-airbrake-hook.v2 -Version: v2.1.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/gemnasium/logrus-airbrake-hook.v2@v2.1.2/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Gemnasium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/aescts.v1 -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/aescts.v1@v1.0.1/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/dnsutils.v1 -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/dnsutils.v1@v1.0.1/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/goidentity.v3 -Version: v3.0.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/goidentity.v3@v3.0.0/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/jcmturner/rpc.v1 -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/rpc.v1@v1.1.0/LICENSE: - - 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. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/tomb.v1 -Version: v1.0.0-20141024135613-dd632973f1e7 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/tomb.v1@v1.0.0-20141024135613-dd632973f1e7/LICENSE: - -tomb - support for clean goroutine termination in Go. - -Copyright (c) 2010-2011 - Gustavo Niemeyer - -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 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 OWNER OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : gopkg.in/yaml.v3 -Version: v3.0.0-20210107192922-496545a6307b -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gopkg.in/yaml.v3@v3.0.0-20210107192922-496545a6307b/LICENSE: - - -This project is covered by two different licenses: MIT and Apache. - -#### MIT License #### - -The following files were ported to Go from C files of libyaml, and thus -are still covered by their original MIT license, with the additional -copyright staring in 2011 when the project was ported over: - - apic.go emitterc.go parserc.go readerc.go scannerc.go - writerc.go yamlh.go yamlprivateh.go - -Copyright (c) 2006-2010 Kirill Simonov -Copyright (c) 2006-2011 Kirill Simonov - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -### Apache License ### - -All the remaining project files are covered by the Apache license: - -Copyright (c) 2011-2019 Canonical Ltd - -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. - - --------------------------------------------------------------------------------- -Dependency : gotest.tools/v3 -Version: v3.0.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/gotest.tools/v3@v3.0.3/LICENSE: - -Copyright 2018 gotest.tools authors - -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. - - --------------------------------------------------------------------------------- -Dependency : honnef.co/go/tools -Version: v0.0.1-2020.1.4 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/honnef.co/go/tools@v0.0.1-2020.1.4/LICENSE: - -Copyright (c) 2016 Dominik Honnef - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/gengo -Version: v0.0.0-20200413195148-3a45101e95ac -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/gengo@v0.0.0-20200413195148-3a45101e95ac/LICENSE: - - - 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 2014 The Kubernetes Authors. - - 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. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/klog/v2 -Version: v2.8.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/klog/v2@v2.8.0/LICENSE: - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/kube-openapi -Version: v0.0.0-20210305001622-591a79e4bda7 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/kube-openapi@v0.0.0-20210305001622-591a79e4bda7/LICENSE: - - - 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. - - --------------------------------------------------------------------------------- -Dependency : k8s.io/kubernetes -Version: v1.13.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/k8s.io/kubernetes@v1.13.0/Godeps/LICENSES: - -================================================================================ -= Kubernetes licensed under: = - - - 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. - -= LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/bitbucket.org/bertimus9/systemstat licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Phillip Bond - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/bitbucket.org/bertimus9/systemstat/LICENSE 6f7ba8122a9b3146266dafa39c5b8ee3 -================================================================================ - - -================================================================================ -= vendor/bitbucket.org/ww/goautoneg licensed under: = - -PACKAGE - -package goautoneg -import "bitbucket.org/ww/goautoneg" - -HTTP Content-Type Autonegotiation. - -The functions in this package implement the behaviour specified in -http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html - -Copyright (c) 2011, Open Knowledge Foundation Ltd. -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 the Open Knowledge Foundation Ltd. 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. - - -FUNCTIONS - -func Negotiate(header string, alternatives []string) (content_type string) -Negotiate the most appropriate content_type given the accept header -and a list of alternatives. - -func ParseAccept(header string) (accept []Accept) -Parse an Accept Header string returning a sorted list -of clauses - - -TYPES - -type Accept struct { - Type, SubType string - Q float32 - Params map[string]string -} -Structure to represent a clause in an HTTP Accept Header - - -SUBDIRECTORIES - - .hg - -= vendor/bitbucket.org/ww/goautoneg/README.txt a33eda65f1bc658f358e1d690c6a93d4 -================================================================================ - - -================================================================================ -= vendor/cloud.google.com/go/compute/metadata licensed under: = - - - 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 2014 Google Inc. - - 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. - -= vendor/cloud.google.com/go/LICENSE a873c5645c184d51e0f9b34e1d7cf559 -================================================================================ - - -================================================================================ -= vendor/cloud.google.com/go/internal licensed under: = - - - 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 2014 Google Inc. - - 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. - -= vendor/cloud.google.com/go/LICENSE a873c5645c184d51e0f9b34e1d7cf559 -================================================================================ - - -================================================================================ -= vendor/github.com/armon/circbuf licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Armon Dadgar - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/armon/circbuf/LICENSE d2d77030c0183e3d1e66d26dc1f243be -================================================================================ - - -================================================================================ -= vendor/github.com/asaskevich/govalidator licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Alex Saskevich - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/asaskevich/govalidator/LICENSE 9548240229052f3a5f5bdf14ac19bbe3 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/awserr licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/awsutil licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/client licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/client/metadata licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/corehandlers licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/csm licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/defaults licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/ec2metadata licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/endpoints licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/request licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/session licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/aws/signer/v4 licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/internal/sdkio licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/internal/sdkrand licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/internal/shareddefaults licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/query licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/rest licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/autoscaling licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/ec2 licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/ecr licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/elb licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/elbv2 licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/kms licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/aws/aws-sdk-go/service/sts licensed under: = - - - 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. - -= vendor/github.com/aws/aws-sdk-go/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-10-01/compute licensed under: = - - - 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 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/containerregistry/mgmt/2017-10-01/containerregistry licensed under: = - - - 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 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network licensed under: = - - - 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 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage licensed under: = - - - 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 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/storage licensed under: = - - - 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 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/azure-sdk-for-go/version licensed under: = - - - 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 2016 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/azure-sdk-for-go/LICENSE cce6fd055830ca30ff78fdf077e870d6 -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-ansiterm licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/Azure/go-ansiterm/LICENSE 6000442264015a23894024af9930539b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-ansiterm/winterm licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/Azure/go-ansiterm/LICENSE 6000442264015a23894024af9930539b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/adal licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/azure licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/date licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/to licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/autorest/validation licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/logger licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/Azure/go-autorest/version licensed under: = - - - 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 - - Copyright 2015 Microsoft Corporation - - 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. - -= vendor/github.com/Azure/go-autorest/LICENSE a250e5ac3848f2acadb5adcb9555c18b -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/cmd/gazelle licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/config licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/flag licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/label licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/language licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/language/go licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/language/proto licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/merger licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/pathtools licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/repos licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/resolve licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/rule licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/testtools licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/version licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/walk licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/bazel-gazelle/internal/wspace licensed under: = - - - 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. - -= vendor/github.com/bazelbuild/bazel-gazelle/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/buildtools/build licensed under: = - -Copyright 2016 Google Inc. All Rights Reserved. - -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. - -= vendor/github.com/bazelbuild/buildtools/LICENSE adb52eb384caedba181cd51fbcdf4b99 -================================================================================ - - -================================================================================ -= vendor/github.com/bazelbuild/buildtools/tables licensed under: = - -Copyright 2016 Google Inc. All Rights Reserved. - -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. - -= vendor/github.com/bazelbuild/buildtools/LICENSE adb52eb384caedba181cd51fbcdf4b99 -================================================================================ - - -================================================================================ -= vendor/github.com/beorn7/perks/quantile licensed under: = - -Copyright (C) 2013 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/beorn7/perks/LICENSE 0d0738f37ee8dc0b5f88a32e83c60198 -================================================================================ - - -================================================================================ -= vendor/github.com/blang/semver licensed under: = - -The MIT License - -Copyright (c) 2014 Benedikt Lang - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -= vendor/github.com/blang/semver/LICENSE 5a3ade42a900439691ebc22013660cae -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext licensed under: = - -Copyright 2013 ChaiShushan . 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext/mo licensed under: = - -Copyright 2013 ChaiShushan . 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext/plural licensed under: = - -Copyright 2013 ChaiShushan . 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/chai2010/gettext-go/gettext/po licensed under: = - -Copyright 2013 ChaiShushan . 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/chai2010/gettext-go/LICENSE 87ce3ee0376881b02e75d3d5be2a6ba6 -================================================================================ - - -================================================================================ -= vendor/github.com/client9/misspell licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015-2017 Nick Galbreath - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/client9/misspell/LICENSE 387f6b7d6741c8a7f4f7e3c2bbdf97e4 -================================================================================ - - -================================================================================ -= vendor/github.com/client9/misspell/cmd/misspell licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015-2017 Nick Galbreath - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/client9/misspell/LICENSE 387f6b7d6741c8a7f4f7e3c2bbdf97e4 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/bundle licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/certinfo licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/client licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/crl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/gencrl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/generator licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/health licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/info licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/initca licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/ocsp licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/revoke licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/scan licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/api/signhandler licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/auth licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/bundler licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certdb licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certdb/dbconf licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certdb/sql licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/certinfo licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/bundle licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/certinfo licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/crl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/gencert licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/gencrl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/gencsr licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/genkey licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/info licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocspdump licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocsprefresh licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocspserve licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/ocspsign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/printdefault licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/revoke licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/scan licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/selfsign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/serve licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/sign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cli/version licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cmd/cfssl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/cmd/cfssljson licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/config licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/crl licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/crypto/pkcs7 licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/csr licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/errors licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/helpers licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/helpers/derhelpers licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/info licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/initca licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/log licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/ocsp licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/ocsp/config licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/revoke licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/scan licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/scan/crypto/tls licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/selfsign licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer/local licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer/remote licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/signer/universal licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/cloudflare/cfssl/ubiquity licensed under: = - -Copyright (c) 2014 CloudFlare Inc. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cloudflare/cfssl/LICENSE 9bd1e7022303d9bbc29fda142f3e4fd0 -================================================================================ - - -================================================================================ -= vendor/github.com/clusterhq/flocker-go licensed under: = - - 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 - - Copyright 2014-2016 ClusterHQ - - 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. - -= vendor/github.com/clusterhq/flocker-go/LICENSE d8103d9796cd0e951379d0834edad066 -================================================================================ - - -================================================================================ -= vendor/github.com/codedellemc/goscaleio licensed under: = - -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. - - -= vendor/github.com/codedellemc/goscaleio/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/codedellemc/goscaleio/types/v1 licensed under: = - -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. - - -= vendor/github.com/codedellemc/goscaleio/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/container-storage-interface/spec/lib/go/csi licensed under: = - - 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. - -= vendor/github.com/container-storage-interface/spec/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/console licensed under: = - - 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. - -= vendor/github.com/containerd/console/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/services/containers/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/services/tasks/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/services/version/v1 licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/types licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/api/types/task licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/containers licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/dialer licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/errdefs licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containerd/containerd/namespaces licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/containerd/containerd/LICENSE.code aadc30f9c14d876ded7bedc0afd2d3d7 -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/libcni licensed under: = - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/invoke licensed under: = - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/types licensed under: = - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/types/020 licensed under: = - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/types/current licensed under: = - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/containernetworking/cni/pkg/version licensed under: = - - 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. - - -= vendor/github.com/containernetworking/cni/LICENSE fa818a259cbed7ce8bc2a22d35a464fc -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/bbolt licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Ben Johnson - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/coreos/bbolt/LICENSE 13b2a308eefa10d841e3bf2467dbe07a -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/alarm licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/auth licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/auth/authpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/client licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3 licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3/concurrency licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3/namespace licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/clientv3/naming licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/compactor licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/discovery licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/embed licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/error licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/etcdhttp licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v2http licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v2http/httptypes licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v2v3 licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3client licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3election licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3election/v3electionpb/gw licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3lock licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3lock/v3lockpb/gw licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3rpc licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/auth licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/etcdserverpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/etcdserverpb/gw licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/membership licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/etcdserver/stats licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/integration licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/lease licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/lease/leasehttp licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/lease/leasepb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/mvcc licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/mvcc/backend licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/mvcc/mvccpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/adt licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/contention licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/cors licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/cpuutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/crc licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/debugutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/fileutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/httputil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/idutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/ioutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/logutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/netutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/pathutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/pbutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/runtime licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/schedule licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/srv licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/testutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/tlsutil licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/transport licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/types licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/pkg/wait licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/proxy/grpcproxy licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/proxy/grpcproxy/adapter licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/proxy/grpcproxy/cache licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/raft licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/raft/raftpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/rafthttp licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/snap licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/snap/snappb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/store licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/version licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/wal licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/etcd/wal/walpb licensed under: = - - - 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. - -= vendor/github.com/coreos/etcd/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-oidc licensed under: = - -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. - - -= vendor/github.com/coreos/go-oidc/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-semver/semver licensed under: = - - - 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. - -= vendor/github.com/coreos/go-semver/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/daemon licensed under: = - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/dbus licensed under: = - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/journal licensed under: = - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/go-systemd/util licensed under: = - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - -= vendor/github.com/coreos/go-systemd/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/pkg/capnslog licensed under: = - -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. - - -= vendor/github.com/coreos/pkg/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/pkg/dlopen licensed under: = - -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. - - -= vendor/github.com/coreos/pkg/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/coreos/rkt/api/v1alpha licensed under: = - -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. - -= vendor/github.com/coreos/rkt/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/github.com/cpuguy83/go-md2man/md2man licensed under: = - -The MIT License (MIT) - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/cpuguy83/go-md2man/LICENSE.md 80794f9009df723bbc6fe19234c9f517 -================================================================================ - - -================================================================================ -= vendor/github.com/cyphar/filepath-securejoin licensed under: = - -Copyright (C) 2014-2015 Docker Inc & Go Authors. All rights reserved. -Copyright (C) 2017 SUSE LLC. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/cyphar/filepath-securejoin/LICENSE 8d322afab99e1998dbfcc712f94e824d -================================================================================ - - -================================================================================ -= vendor/github.com/d2g/dhcp4 licensed under: = - -Copyright (c) 2013 Skagerrak Software Limited. 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 Skagerrak Software Limited 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/github.com/d2g/dhcp4/LICENSE 0187683301a45e8ea393bb2ffd7889c8 -================================================================================ - - -================================================================================ -= vendor/github.com/d2g/dhcp4client licensed under: = - -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. - - -= vendor/github.com/d2g/dhcp4client/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/daaku/go.zipexe licensed under: = - -The MIT License (MIT) - -Copyright © 2012-2015 Carlos Castillo - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/daaku/go.zipexe/license 2285ef50c2d5083f5bb92af715e5a378 -================================================================================ - - -================================================================================ -= vendor/github.com/davecgh/go-spew/spew licensed under: = - -ISC License - -Copyright (c) 2012-2016 Dave Collins - -Permission to use, copy, modify, and 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. - -= vendor/github.com/davecgh/go-spew/LICENSE 818c0a1d81cfcfdb7ecd58db268bab7e -================================================================================ - - -================================================================================ -= vendor/github.com/daviddengcn/go-colortext licensed under: = - -BSD License -=========== - -Copyright (c) 2016, David Deng -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 go-colortext 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. - - -MIT License -=========== - -Copyright (c) 2016 David Deng - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/daviddengcn/go-colortext/LICENSE a802db7d9a036fb71c12cf20966510dc -================================================================================ - - -================================================================================ -= vendor/github.com/dgrijalva/jwt-go licensed under: = - -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: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -= vendor/github.com/dgrijalva/jwt-go/LICENSE 276f2f3ba3749d25f6a6f5fb852d462e -================================================================================ - - -================================================================================ -= vendor/github.com/docker/distribution/digestset licensed under: = - -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. - - -= vendor/github.com/docker/distribution/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/distribution/reference licensed under: = - -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. - - -= vendor/github.com/docker/distribution/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/blkiodev licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/container licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/events licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/filters licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/image licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/mount licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/network licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/registry licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/strslice licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/swarm licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/swarm/runtime licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/time licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/versions licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/api/types/volume licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/client licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonlog licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/jsonmessage licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/mount licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/parsers licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/parsers/operatingsystem licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/stdcopy licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/sysinfo licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/term licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/docker/pkg/term/windows licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2013-2017 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/docker/LICENSE 9740d093a080530b5c5c6573df9af45a -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-connections/nat licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-connections/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-connections/sockets licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-connections/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-connections/tlsconfig licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-connections/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/go-units licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2015 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/docker/go-units/LICENSE 04424bc6f5a5be60691b9824d65c2ad8 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/libnetwork/ipvs licensed under: = - -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. - - -= vendor/github.com/docker/libnetwork/LICENSE d2794c0df5b907fdace235a619d80314 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/spdystream licensed under: = - - - 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 - - Copyright 2014-2015 Docker, Inc. - - 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. - -= vendor/github.com/docker/spdystream/LICENSE 246dc1c1661293602d98ff9113c3be48 -================================================================================ - - -================================================================================ -= vendor/github.com/docker/spdystream/spdy licensed under: = - - - 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 - - Copyright 2014-2015 Docker, Inc. - - 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. - -= vendor/github.com/docker/spdystream/LICENSE 246dc1c1661293602d98ff9113c3be48 -================================================================================ - - -================================================================================ -= vendor/github.com/elazarl/go-bindata-assetfs licensed under: = - -Copyright (c) 2014, Elazar Leibovich -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/elazarl/go-bindata-assetfs/LICENSE 722abb44e97dc8f098516e09e5564a6a -================================================================================ - - -================================================================================ -= vendor/github.com/elazarl/goproxy licensed under: = - -Copyright (c) 2012 Elazar Leibovich. 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 Elazar Leibovich. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/elazarl/goproxy/LICENSE e2e14e5f5bd856768da39707ed93cd41 -================================================================================ - - -================================================================================ -= vendor/github.com/emicklei/go-restful licensed under: = - -Copyright (c) 2012,2013 Ernest Micklei - -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. -= vendor/github.com/emicklei/go-restful/LICENSE 2ebc1c12a0f4eae5394522e31961e1de -================================================================================ - - -================================================================================ -= vendor/github.com/emicklei/go-restful-swagger12 licensed under: = - -Copyright (c) 2017 Ernest Micklei - -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. -= vendor/github.com/emicklei/go-restful-swagger12/LICENSE b1ce415d97e837c8677d332b274d4f0b -================================================================================ - - -================================================================================ -= vendor/github.com/emicklei/go-restful/log licensed under: = - -Copyright (c) 2012,2013 Ernest Micklei - -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. -= vendor/github.com/emicklei/go-restful/LICENSE 2ebc1c12a0f4eae5394522e31961e1de -================================================================================ - - -================================================================================ -= vendor/github.com/euank/go-kmsg-parser/kmsgparser licensed under: = - - 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. - -= vendor/github.com/euank/go-kmsg-parser/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/evanphx/json-patch licensed under: = - -Copyright (c) 2014, Evan Phoenix -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 the Evan Phoenix 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 OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/evanphx/json-patch/LICENSE 72c842ec53c3334a81b6d65b6f9025a3 -================================================================================ - - -================================================================================ -= vendor/github.com/exponent-io/jsonpath licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Exponent Labs LLC - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/exponent-io/jsonpath/LICENSE 42f582355f11b1d4bc8615214b7f0c38 -================================================================================ - - -================================================================================ -= vendor/github.com/fatih/camelcase licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Fatih Arslan - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/fatih/camelcase/LICENSE.md 4c59b216ce25dc182cdb837e07ba07c0 -================================================================================ - - -================================================================================ -= vendor/github.com/fsnotify/fsnotify licensed under: = - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2012 fsnotify Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/fsnotify/fsnotify/LICENSE c38914c9a7ab03bb2b96d4baaee10769 -================================================================================ - - -================================================================================ -= vendor/github.com/GeertJohan/go.rice licensed under: = - -Copyright (c) 2013, Geert-Johan Riemer -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/github.com/GeertJohan/go.rice/LICENSE d5ffb28cde0ca932cbab7e1e1d52c20e -================================================================================ - - -================================================================================ -= vendor/github.com/GeertJohan/go.rice/embedded licensed under: = - -Copyright (c) 2013, Geert-Johan Riemer -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -= vendor/github.com/GeertJohan/go.rice/LICENSE d5ffb28cde0ca932cbab7e1e1d52c20e -================================================================================ - - -================================================================================ -= vendor/github.com/ghodss/yaml licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/ghodss/yaml/LICENSE 0ceb9ff3b27d3a8cf451ca3785d73c71 -================================================================================ - - -================================================================================ -= vendor/github.com/globalsign/mgo/bson licensed under: = - -mgo - MongoDB driver for Go - -Copyright (c) 2010-2013 - Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/globalsign/mgo/LICENSE 566e96676859b5704130b80941bc9f1f -================================================================================ - - -================================================================================ -= vendor/github.com/globalsign/mgo/internal/json licensed under: = - -mgo - MongoDB driver for Go - -Copyright (c) 2010-2013 - Gustavo Niemeyer - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/globalsign/mgo/LICENSE 566e96676859b5704130b80941bc9f1f -================================================================================ - - -================================================================================ -= vendor/github.com/go-ini/ini licensed under: = - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - -= vendor/github.com/go-ini/ini/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/analysis licensed under: = - - - 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. - -= vendor/github.com/go-openapi/analysis/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/analysis/internal licensed under: = - - - 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. - -= vendor/github.com/go-openapi/analysis/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/errors licensed under: = - - - 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. - -= vendor/github.com/go-openapi/errors/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/jsonpointer licensed under: = - - - 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. - -= vendor/github.com/go-openapi/jsonpointer/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/jsonreference licensed under: = - - - 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. - -= vendor/github.com/go-openapi/jsonreference/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/loads licensed under: = - - - 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. - -= vendor/github.com/go-openapi/loads/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/runtime licensed under: = - - - 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. - -= vendor/github.com/go-openapi/runtime/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/spec licensed under: = - - - 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. - -= vendor/github.com/go-openapi/spec/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/strfmt licensed under: = - - - 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. - -= vendor/github.com/go-openapi/strfmt/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/swag licensed under: = - - - 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. - -= vendor/github.com/go-openapi/swag/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-openapi/validate licensed under: = - - - 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. - -= vendor/github.com/go-openapi/validate/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/go-ozzo/ozzo-validation licensed under: = - -The MIT License (MIT) -Copyright (c) 2016, Qiang Xue - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or -substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/go-ozzo/ozzo-validation/LICENSE da12d993f2ce14947ad6eec35520b081 -================================================================================ - - -================================================================================ -= vendor/github.com/go-ozzo/ozzo-validation/is licensed under: = - -The MIT License (MIT) -Copyright (c) 2016, Qiang Xue - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or -substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/go-ozzo/ozzo-validation/LICENSE da12d993f2ce14947ad6eec35520b081 -================================================================================ - - -================================================================================ -= vendor/github.com/go-sql-driver/mysql licensed under: = - -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. - -= vendor/github.com/go-sql-driver/mysql/LICENSE 815ca599c9df247a0c7f619bab123dad -================================================================================ - - -================================================================================ -= vendor/github.com/godbus/dbus licensed under: = - -Copyright (c) 2013, Georg Reinke (), Google -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -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. - -= vendor/github.com/godbus/dbus/LICENSE 09042bd5c6c96a2b9e45ddf1bc517eed -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/gogoproto licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/compare licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/defaultcheck licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/description licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/embedcheck licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/enumstringer licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/equal licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/face licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/gostring licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/marshalto licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/oneofcheck licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/populate licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/size licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/stringer licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/testgen licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/union licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/plugin/unmarshal licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/proto licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/generator licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/grpc licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/protoc-gen-gogo/plugin licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/sortkeys licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/types licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/vanity licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/gogo/protobuf/vanity/command licensed under: = - -Protocol Buffers for Go with Gadgets - -Copyright (c) 2013, The GoGo Authors. All rights reserved. -http://github.com/gogo/protobuf - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/gogo/protobuf/LICENSE f76ab0572aa28f537b1508f2f2bc155e -================================================================================ - - -================================================================================ -= vendor/github.com/golang/groupcache/lru licensed under: = - -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: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. - -= vendor/github.com/golang/groupcache/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/mock/gomock licensed under: = - - - 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. - -= vendor/github.com/golang/mock/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/jsonpb licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/proto licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/protoc-gen-go/descriptor licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/any licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/duration licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/struct licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/timestamp licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/golang/protobuf/ptypes/wrappers licensed under: = - -Go support for Protocol Buffers - Google's data interchange format - -Copyright 2010 The Go Authors. All rights reserved. -https://github.com/golang/protobuf - -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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/golang/protobuf/LICENSE 14db3a56c3796a940ba32948a15f97d0 -================================================================================ - - -================================================================================ -= vendor/github.com/google/btree licensed under: = - - - 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. - -= vendor/github.com/google/btree/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/accelerators licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/cache/memory licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/client/v2 licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/collector licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/common licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/containerd licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/crio licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/docker licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/libcontainer licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/mesos licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/raw licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/rkt licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/container/systemd licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/devicemapper licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/events licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/fs licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/info/v1 licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/info/v2 licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/machine licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager/watcher licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager/watcher/raw licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/manager/watcher/rkt licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/metrics licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/storage licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/summary licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/cloudinfo licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/cpuload licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/cpuload/netlink licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/docker licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/oomparser licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/sysfs licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/utils/sysinfo licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/version licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/cadvisor/zfs licensed under: = - - Copyright 2014 The cAdvisor Authors - - 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. - - 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 - -= vendor/github.com/google/cadvisor/LICENSE e7790b946bfacb700e8a8f2baedb3205 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/asn1 licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/client licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/client/configpb licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/jsonclient licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/tls licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/x509 licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/certificate-transparency-go/x509/pkix licensed under: = - - - 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. - -= vendor/github.com/google/certificate-transparency-go/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/gofuzz licensed under: = - - - 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. - -= vendor/github.com/google/gofuzz/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/google/uuid licensed under: = - -Copyright (c) 2009,2014 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/google/uuid/LICENSE 88073b6dd8ec00fe09da59e0b6dfded1 -================================================================================ - - -================================================================================ -= vendor/github.com/googleapis/gnostic/compiler licensed under: = - - - 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. - - -= vendor/github.com/googleapis/gnostic/LICENSE b1e01b26bacfc2232046c90a330332b3 -================================================================================ - - -================================================================================ -= vendor/github.com/googleapis/gnostic/extensions licensed under: = - - - 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. - - -= vendor/github.com/googleapis/gnostic/LICENSE b1e01b26bacfc2232046c90a330332b3 -================================================================================ - - -================================================================================ -= vendor/github.com/googleapis/gnostic/OpenAPIv2 licensed under: = - - - 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. - - -= vendor/github.com/googleapis/gnostic/LICENSE b1e01b26bacfc2232046c90a330332b3 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/extensions/volumeactions licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/v1/volumes licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/v2/volumes licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/blockstorage/v3/volumes licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/common/extensions licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/attachinterfaces licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/volumeattach licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/flavors licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/images licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/servers licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/tenants licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v2/tokens licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v3/extensions/trusts licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/identity/v3/tokens licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/external licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/layer3/floatingips licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/layer3/routers licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/listeners licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/loadbalancers licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/monitors licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/lbaas_v2/pools licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/groups licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/rules licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/networks licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/networking/v2/ports licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/openstack/utils licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gophercloud/gophercloud/pagination licensed under: = - -Copyright 2012-2013 Rackspace, Inc. - -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. - ------- - - 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 - -= vendor/github.com/gophercloud/gophercloud/LICENSE dd19699707373c2ca31531a659130416 -================================================================================ - - -================================================================================ -= vendor/github.com/gorilla/websocket licensed under: = - -Copyright (c) 2013 The Gorilla WebSocket Authors. 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/gorilla/websocket/LICENSE c007b54a1743d596f46b2748d9f8c044 -================================================================================ - - -================================================================================ -= vendor/github.com/gregjones/httpcache licensed under: = - -Copyright © 2012 Greg Jones (greg.jones@gmail.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. -= vendor/github.com/gregjones/httpcache/LICENSE.txt 3cfef421226b2dacde78a4871380ac24 -================================================================================ - - -================================================================================ -= vendor/github.com/gregjones/httpcache/diskcache licensed under: = - -Copyright © 2012 Greg Jones (greg.jones@gmail.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. -= vendor/github.com/gregjones/httpcache/LICENSE.txt 3cfef421226b2dacde78a4871380ac24 -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/go-grpc-middleware licensed under: = - - 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. -= vendor/github.com/grpc-ecosystem/go-grpc-middleware/LICENSE 7ab5c73bb7e4679b16dd7c11b3559acf -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/go-grpc-prometheus licensed under: = - - 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. -= vendor/github.com/grpc-ecosystem/go-grpc-prometheus/LICENSE 7ab5c73bb7e4679b16dd7c11b3559acf -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/grpc-gateway/runtime licensed under: = - -Copyright (c) 2015, Gengo, Inc. -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 Gengo, Inc. 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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/grpc-ecosystem/grpc-gateway/LICENSE.txt c510a2a01572b82d27f28fd4d02ca318 -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/grpc-gateway/runtime/internal licensed under: = - -Copyright (c) 2015, Gengo, Inc. -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 Gengo, Inc. 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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/grpc-ecosystem/grpc-gateway/LICENSE.txt c510a2a01572b82d27f28fd4d02ca318 -================================================================================ - - -================================================================================ -= vendor/github.com/grpc-ecosystem/grpc-gateway/utilities licensed under: = - -Copyright (c) 2015, Gengo, Inc. -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 Gengo, Inc. 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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/grpc-ecosystem/grpc-gateway/LICENSE.txt c510a2a01572b82d27f28fd4d02ca318 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/golang-lru licensed under: = - -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. - -= vendor/github.com/hashicorp/golang-lru/LICENSE f27a50d2e878867827842f2c60e30bfc -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/golang-lru/simplelru licensed under: = - -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. - -= vendor/github.com/hashicorp/golang-lru/LICENSE f27a50d2e878867827842f2c60e30bfc -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/ast licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/parser licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/scanner licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/strconv licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/hcl/token licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/json/parser licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/json/scanner licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/hashicorp/hcl/json/token licensed under: = - -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. - - -= vendor/github.com/hashicorp/hcl/LICENSE b278a92d2c1509760384428817710378 -================================================================================ - - -================================================================================ -= vendor/github.com/heketi/heketi/client/api/go-client licensed under: = - -Heketi code is released under various licenses: - -The REST API client code (in go and python) is released -under a dual license of Apache 2.0 or LGPLv3+. - -The other parts of heketi (server, cli, tests, ...) are released -under a dual license of LGPLv3+ or GPLv2. - -= vendor/github.com/heketi/heketi/LICENSE a58e72c3bda574189508cb90d56fa19f -================================================================================ - - -================================================================================ -= vendor/github.com/heketi/heketi/pkg/glusterfs/api licensed under: = - -Heketi code is released under various licenses: - -The REST API client code (in go and python) is released -under a dual license of Apache 2.0 or LGPLv3+. - -The other parts of heketi (server, cli, tests, ...) are released -under a dual license of LGPLv3+ or GPLv2. - -= vendor/github.com/heketi/heketi/LICENSE a58e72c3bda574189508cb90d56fa19f -================================================================================ - - -================================================================================ -= vendor/github.com/heketi/heketi/pkg/utils licensed under: = - -Heketi code is released under various licenses: - -The REST API client code (in go and python) is released -under a dual license of Apache 2.0 or LGPLv3+. - -The other parts of heketi (server, cli, tests, ...) are released -under a dual license of LGPLv3+ or GPLv2. - -= vendor/github.com/heketi/heketi/LICENSE a58e72c3bda574189508cb90d56fa19f -================================================================================ - - -================================================================================ -= vendor/github.com/imdario/mergo licensed under: = - -Copyright (c) 2013 Dario Castañé. All rights reserved. -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/imdario/mergo/LICENSE ff13e03bb57bf9c52645f2f942afa28b -================================================================================ - - -================================================================================ -= vendor/github.com/inconshreveable/mousetrap licensed under: = - -Copyright 2014 Alan Shreve - -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. - -= vendor/github.com/inconshreveable/mousetrap/LICENSE b23cff9db13f093a4e6ff77105cbd8eb -================================================================================ - - -================================================================================ -= vendor/github.com/JeffAshton/win_pdh licensed under: = - -Copyright (c) 2010 The win_pdh Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -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. -3. The names of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/JeffAshton/win_pdh/LICENSE fadcabe0503181faf8d4a9579bed3b7f -================================================================================ - - -================================================================================ -= vendor/github.com/jmespath/go-jmespath licensed under: = - -Copyright 2015 James Saryerwinnie - -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. - -= vendor/github.com/jmespath/go-jmespath/LICENSE 9abfa8353fce3f2cb28364e1e9016852 -================================================================================ - - -================================================================================ -= vendor/github.com/jmhodges/clock licensed under: = - -The MIT License (MIT) -Copyright © 2014 Jeff Hodges - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the “Software”), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -= vendor/github.com/jmhodges/clock/LICENSE bc91f6bbbc0460d728657b023f3f6596 -================================================================================ - - -================================================================================ -= vendor/github.com/jmoiron/sqlx licensed under: = - - Copyright (c) 2013, Jason Moiron - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following - conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -= vendor/github.com/jmoiron/sqlx/LICENSE 4353e10ea313ec47121dd2c7d89ce6b9 -================================================================================ - - -================================================================================ -= vendor/github.com/jmoiron/sqlx/reflectx licensed under: = - - Copyright (c) 2013, Jason Moiron - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following - conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - - -= vendor/github.com/jmoiron/sqlx/LICENSE 4353e10ea313ec47121dd2c7d89ce6b9 -================================================================================ - - -================================================================================ -= vendor/github.com/jonboulle/clockwork licensed under: = - -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. - -= vendor/github.com/jonboulle/clockwork/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/github.com/json-iterator/go licensed under: = - -MIT License - -Copyright (c) 2016 json-iterator - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/json-iterator/go/LICENSE 0b69744b481d72d30dbf69f84a451cfd -================================================================================ - - -================================================================================ -= vendor/github.com/jteeuwen/go-bindata licensed under: = - -This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication -license. Its contents can be found at: -http://creativecommons.org/publicdomain/zero/1.0 - -= vendor/github.com/jteeuwen/go-bindata/LICENSE 8dcedca69f7a474372829521f37954b1 -================================================================================ - - -================================================================================ -= vendor/github.com/jteeuwen/go-bindata/go-bindata licensed under: = - -This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication -license. Its contents can be found at: -http://creativecommons.org/publicdomain/zero/1.0 - -= vendor/github.com/jteeuwen/go-bindata/LICENSE 8dcedca69f7a474372829521f37954b1 -================================================================================ - - -================================================================================ -= vendor/github.com/kardianos/osext licensed under: = - -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/kardianos/osext/LICENSE 591778525c869cdde0ab5a1bf283cd81 -================================================================================ - - -================================================================================ -= vendor/github.com/karrick/godirwalk licensed under: = - -BSD 2-Clause License - -Copyright (c) 2017, Karrick McDermott -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/karrick/godirwalk/LICENSE 7bea66fc0a31c6329f9392034bee75d2 -================================================================================ - - -================================================================================ -= vendor/github.com/kisielk/sqlstruct licensed under: = - -Copyright 2012 Kamil Kisiel - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/kisielk/sqlstruct/LICENSE bc5911f8d3b8034f564b63d7ea436519 -================================================================================ - - -================================================================================ -= vendor/github.com/kr/fs licensed under: = - -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/kr/fs/LICENSE 591778525c869cdde0ab5a1bf283cd81 -================================================================================ - - -================================================================================ -= vendor/github.com/kr/pretty licensed under: = - -The MIT License (MIT) - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/kr/pretty/License 9d305c2010c6891ee4f3cd42a562f78f -================================================================================ - - -================================================================================ -= vendor/github.com/kr/text licensed under: = - -Copyright 2012 Keith Rarick - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/kr/text/License 449bfedd81a372635934cf9ce004c0cf -================================================================================ - - -================================================================================ -= vendor/github.com/kubernetes/repo-infra/kazel licensed under: = - - 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. - -= vendor/github.com/kubernetes/repo-infra/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/lib/pq licensed under: = - -Copyright (c) 2011-2013, 'pq' Contributors -Portions Copyright (C) 2011 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/lib/pq/LICENSE.md 0eab29964025b358179aa6d8f7db14bf -================================================================================ - - -================================================================================ -= vendor/github.com/lib/pq/oid licensed under: = - -Copyright (c) 2011-2013, 'pq' Contributors -Portions Copyright (C) 2011 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/lib/pq/LICENSE.md 0eab29964025b358179aa6d8f7db14bf -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api/client licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api/client/volume licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/api/spec licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/pkg/parser licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/pkg/units licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/libopenstorage/openstorage/volume licensed under: = - - - 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 - - Copyright 2015 Openstorage.org. - - 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. - -= vendor/github.com/libopenstorage/openstorage/LICENSE 40c3e1c9eacda859a17048003909a2f8 -================================================================================ - - -================================================================================ -= vendor/github.com/magiconair/properties licensed under: = - -goproperties - properties file decoder for Go - -Copyright (c) 2013-2014 - Frank Schroeder - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/magiconair/properties/LICENSE c383a608fb9a0d227953e928803b9631 -================================================================================ - - -================================================================================ -= vendor/github.com/mailru/easyjson/buffer licensed under: = - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/mailru/easyjson/LICENSE 819e81c2ec13e1bbc47dc5e90bb4d88b -================================================================================ - - -================================================================================ -= vendor/github.com/mailru/easyjson/jlexer licensed under: = - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/mailru/easyjson/LICENSE 819e81c2ec13e1bbc47dc5e90bb4d88b -================================================================================ - - -================================================================================ -= vendor/github.com/mailru/easyjson/jwriter licensed under: = - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/mailru/easyjson/LICENSE 819e81c2ec13e1bbc47dc5e90bb4d88b -================================================================================ - - -================================================================================ -= vendor/github.com/MakeNowJust/heredoc licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014-2017 TSUYUSATO Kitsune - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/MakeNowJust/heredoc/LICENSE 59c4411f6d7dfdaa85623e672d3d4438 -================================================================================ - - -================================================================================ -= vendor/github.com/marstr/guid licensed under: = - -MIT License - -Copyright (c) 2016 Martin Strobel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/marstr/guid/LICENSE.txt 356484d12e6ad8a7c2d360b236e9a9c8 -================================================================================ - - -================================================================================ -= vendor/github.com/mattn/go-shellwords licensed under: = - -The MIT License (MIT) - -Copyright (c) 2017 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/mattn/go-shellwords/LICENSE e5116fc268f5118168ff06a271b50ef9 -================================================================================ - - -================================================================================ -= vendor/github.com/mattn/go-sqlite3 licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/mattn/go-sqlite3/LICENSE 2b7590a6661bc1940f50329c495898c6 -================================================================================ - - -================================================================================ -= vendor/github.com/matttproud/golang_protobuf_extensions/pbutil licensed under: = - - 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. - -= vendor/github.com/matttproud/golang_protobuf_extensions/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/agent licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/agent/calls licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/client licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/debug licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/codecs licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/framing licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/json licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/encoding/proto licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/httpcli licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/httpcli/apierrors licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/recordio licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mesos/mesos-go/api/v1/lib/roles licensed under: = - -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. -= vendor/github.com/mesos/mesos-go/LICENSE 6c4db32a2fa8717faffa1d4f10136f47 -================================================================================ - - -================================================================================ -= vendor/github.com/mholt/caddy/caddyfile licensed under: = - - 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. - -= vendor/github.com/mholt/caddy/LICENSE.txt e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/Microsoft/go-winio licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/Microsoft/go-winio/LICENSE 69205ff73858f2c22b2ca135b557e8ef -================================================================================ - - -================================================================================ -= vendor/github.com/Microsoft/hcsshim licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/Microsoft/hcsshim/LICENSE d4c2cbbea5ee1e7c86dff68a7073718e -================================================================================ - - -================================================================================ -= vendor/github.com/miekg/dns licensed under: = - -Extensions of the original work are copyright (c) 2011 Miek Gieben - -As this is fork of the official Go code the same license applies: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -= vendor/github.com/miekg/dns/LICENSE 147353de6868a20caa562d26eab7b3c5 -================================================================================ - - -================================================================================ -= vendor/github.com/mindprince/gonvml licensed under: = - - - 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. - -= vendor/github.com/mindprince/gonvml/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/mistifyio/go-zfs licensed under: = - -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 (c) 2014, OmniTI Computer Consulting, Inc. - - 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. -= vendor/github.com/mistifyio/go-zfs/LICENSE cce9462224bfb44c1866ef7bd5eddf54 -================================================================================ - - -================================================================================ -= vendor/github.com/mitchellh/go-wordwrap licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/mitchellh/go-wordwrap/LICENSE.md 56da355a12d4821cda57b8f23ec34bc4 -================================================================================ - - -================================================================================ -= vendor/github.com/mitchellh/mapstructure licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/mitchellh/mapstructure/LICENSE 3f7765c3d4f58e1f84c4313cecf0f5bd -================================================================================ - - -================================================================================ -= vendor/github.com/modern-go/concurrent licensed under: = - - 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. - -= vendor/github.com/modern-go/concurrent/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/modern-go/reflect2 licensed under: = - - 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. - -= vendor/github.com/modern-go/reflect2/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/mohae/deepcopy licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Joel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/mohae/deepcopy/LICENSE 268dc9c546e3de67a93c1d12a039d702 -================================================================================ - - -================================================================================ -= vendor/github.com/mrunalp/fileutils licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/mrunalp/fileutils/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/mvdan/xurls licensed under: = - -Copyright (c) 2015, Daniel Martí. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/mvdan/xurls/LICENSE d459301ff3fc917904837249508d99af -================================================================================ - - -================================================================================ -= vendor/github.com/mxk/go-flowrate/flowrate licensed under: = - -Copyright (c) 2014 The Go-FlowRate Authors. 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 the go-flowrate project 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/mxk/go-flowrate/LICENSE 781f3c14fa867bae781c9e409831f954 -================================================================================ - - -================================================================================ -= vendor/github.com/Nvveen/Gotty licensed under: = - -Copyright (c) 2012, Neal van Veen (nealvanveen@gmail.com) -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -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 OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(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 the FreeBSD Project. - -= vendor/github.com/Nvveen/Gotty/LICENSE ab11220c6af5f3758ccae7bf525f8dec -================================================================================ - - -================================================================================ -= vendor/github.com/NYTimes/gziphandler licensed under: = - -Copyright (c) 2015 The New York Times Company - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library 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. - -= vendor/github.com/NYTimes/gziphandler/LICENSE.md e30b94cbe70132b181f72f953fbb3c82 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/config licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/convert licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/interrupthandler licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/nodot licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/testrunner licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/testsuite licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/ginkgo/watch licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/codelocation licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/containernode licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/failer licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/leafnodes licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/remote licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/spec licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/specrunner licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/spec_iterator licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/suite licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/testingtproxy licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/internal/writer licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters/stenographer licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/ginkgo/types licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/ginkgo/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/format licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/gstruct licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/gstruct/errors licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/assertion licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/asyncassertion licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/oraclematcher licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/internal/testingtsupport licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/edge licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/node licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/matchers/support/goraph/util licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/onsi/gomega/types licensed under: = - -Copyright (c) 2013-2014 Onsi Fakhouri - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/onsi/gomega/LICENSE 570603114d52313cb86c0206401c9af7 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/go-digest licensed under: = - - - Apache License - Version 2.0, January 2004 - https://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 - - Copyright 2016 Docker, Inc. - - 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 - - https://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. - -= vendor/github.com/opencontainers/go-digest/LICENSE.code 9cd86830b557232ce55e2a6b47387471 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/image-spec/specs-go licensed under: = - - - 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 - - Copyright 2016 The Linux Foundation. - - 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. - -= vendor/github.com/opencontainers/image-spec/LICENSE 27ef03aa2da6e424307f102e8b42621d -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/image-spec/specs-go/v1 licensed under: = - - - 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 - - Copyright 2016 The Linux Foundation. - - 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. - -= vendor/github.com/opencontainers/image-spec/LICENSE 27ef03aa2da6e424307f102e8b42621d -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/apparmor licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/cgroups licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/cgroups/systemd licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/configs licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/configs/validate licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/criurpc licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/intelrdt licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/keys licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/mount licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/seccomp licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/stacktrace licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/system licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/user licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runc/libcontainer/utils licensed under: = - - - 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 - - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/opencontainers/runc/LICENSE 435b266b3899aa8a959f17d41c56def8 -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/runtime-spec/specs-go licensed under: = - - - 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 - - Copyright 2015 The Linux Foundation. - - 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. - -= vendor/github.com/opencontainers/runtime-spec/LICENSE b355a61a394a504dacde901c958f662c -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/selinux/go-selinux licensed under: = - - 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. - -= vendor/github.com/opencontainers/selinux/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/opencontainers/selinux/go-selinux/label licensed under: = - - 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. - -= vendor/github.com/opencontainers/selinux/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/github.com/pborman/uuid licensed under: = - -Copyright (c) 2009,2014 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pborman/uuid/LICENSE 88073b6dd8ec00fe09da59e0b6dfded1 -================================================================================ - - -================================================================================ -= vendor/github.com/pelletier/go-toml licensed under: = - -The MIT License (MIT) - -Copyright (c) 2013 - 2017 Thomas Pelletier, Eric Anderton - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/github.com/pelletier/go-toml/LICENSE dc9ea87a81f62b8871b2a4158edbfde6 -================================================================================ - - -================================================================================ -= vendor/github.com/peterbourgon/diskv licensed under: = - -Copyright (c) 2011-2012 Peter Bourgon - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/peterbourgon/diskv/LICENSE f9f3e815fc84aa04c4f4db33c553eef9 -================================================================================ - - -================================================================================ -= vendor/github.com/pkg/errors licensed under: = - -Copyright (c) 2015, Dave Cheney -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pkg/errors/LICENSE 6fe682a02df52c6653f33bd0f7126b5a -================================================================================ - - -================================================================================ -= vendor/github.com/pkg/sftp licensed under: = - -Copyright (c) 2013, Dave Cheney -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pkg/sftp/LICENSE 452fc5cc5a9127a0e828d73423d45035 -================================================================================ - - -================================================================================ -= vendor/github.com/pmezard/go-difflib/difflib licensed under: = - -Copyright (c) 2013, Patrick Mezard -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. - The names of its 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 -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/pmezard/go-difflib/LICENSE e9a2ebb8de779a07500ddecca806145e -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/cachecontrol licensed under: = - - - 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. - -= vendor/github.com/pquerna/cachecontrol/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/cachecontrol/cacheobject licensed under: = - - - 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. - -= vendor/github.com/pquerna/cachecontrol/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/ffjson/fflib/v1 licensed under: = - - - 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. - -= vendor/github.com/pquerna/ffjson/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/pquerna/ffjson/fflib/v1/internal licensed under: = - - - 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. - -= vendor/github.com/pquerna/ffjson/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/client_golang/prometheus licensed under: = - - 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. - -= vendor/github.com/prometheus/client_golang/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/client_golang/prometheus/promhttp licensed under: = - - 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. - -= vendor/github.com/prometheus/client_golang/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/client_model/go licensed under: = - - 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. - -= vendor/github.com/prometheus/client_model/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/common/expfmt licensed under: = - - 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. - -= vendor/github.com/prometheus/common/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg licensed under: = - - 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. - -= vendor/github.com/prometheus/common/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/common/model licensed under: = - - 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. - -= vendor/github.com/prometheus/common/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/procfs licensed under: = - - 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. - -= vendor/github.com/prometheus/procfs/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/prometheus/procfs/xfs licensed under: = - - 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. - -= vendor/github.com/prometheus/procfs/LICENSE 86d3f3a95c324c9479bd8986968f4327 -================================================================================ - - -================================================================================ -= vendor/github.com/PuerkitoBio/purell licensed under: = - -Copyright (c) 2012, Martin Angers -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 the author 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. - -= vendor/github.com/PuerkitoBio/purell/LICENSE fb8b39492731abb9a3d68575f3eedbfa -================================================================================ - - -================================================================================ -= vendor/github.com/PuerkitoBio/urlesc licensed under: = - -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/PuerkitoBio/urlesc/LICENSE 591778525c869cdde0ab5a1bf283cd81 -================================================================================ - - -================================================================================ -= vendor/github.com/quobyte/api licensed under: = - - -Copyright (c) 2016, Quobyte Inc. -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 quobyte-automation 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. - -= vendor/github.com/quobyte/api/LICENSE beacc5ea3bcda24bdcec545022dbb0b4 -================================================================================ - - -================================================================================ -= vendor/github.com/rancher/go-rancher/client licensed under: = - - - 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 - -= vendor/github.com/rancher/go-rancher/LICENSE 2ee41112a44fe7014dce33e26468ba93 -================================================================================ - - -================================================================================ -= vendor/github.com/renstrom/dedent licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Peter Renström - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/renstrom/dedent/LICENSE 285693e07a6e1fd790cb3f3b8b5127db -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry/backoff licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry/jitter licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/Rican7/retry/strategy licensed under: = - -Copyright (C) 2016 Trevor N. Suarez (Rican7) - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/Rican7/retry/LICENSE 6421d9994f58f630cd4dd33e88991ccc -================================================================================ - - -================================================================================ -= vendor/github.com/robfig/cron licensed under: = - -Copyright (C) 2012 Rob Figueiredo -All Rights Reserved. - -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. - -= vendor/github.com/robfig/cron/LICENSE d924a63cb54a2a6c4bd28c50b2b0af59 -================================================================================ - - -================================================================================ -= vendor/github.com/rubiojr/go-vhd/vhd licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Sergio Rubio - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/rubiojr/go-vhd/LICENSE 9ce5db55ba47444787183e59733e1977 -================================================================================ - - -================================================================================ -= vendor/github.com/russross/blackfriday licensed under: = - -Blackfriday is distributed under the Simplified BSD License: - -> Copyright © 2011 Russ Ross -> All rights reserved. -> -> Redistribution and use in source and binary forms, with or without -> modification, are permitted provided that the following conditions -> are met: -> -> 1. Redistributions of source code must retain the above copyright -> notice, this list of conditions and the following disclaimer. -> -> 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. - -= vendor/github.com/russross/blackfriday/LICENSE.txt ecf8a8a60560c35a862a4a545f2db1b3 -================================================================================ - - -================================================================================ -= vendor/github.com/satori/go.uuid licensed under: = - -Copyright (C) 2013-2018 by Maxim Bublis - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/satori/go.uuid/LICENSE ae4ba217c6e20c2d8f48f69966b9121b -================================================================================ - - -================================================================================ -= vendor/github.com/seccomp/libseccomp-golang licensed under: = - -Copyright (c) 2015 Matthew Heon -Copyright (c) 2015 Paul Moore -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/seccomp/libseccomp-golang/LICENSE 343b433e752e8b44a543cdf61f14b628 -================================================================================ - - -================================================================================ -= vendor/github.com/shurcooL/sanitized_anchor_name licensed under: = - -Copyright (c) 2015 Dmitri Shuralyov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/shurcooL/sanitized_anchor_name/LICENSE bee2c3aa5bd0f265ffbd193eb18ca30d -================================================================================ - - -================================================================================ -= vendor/github.com/sigma/go-inotify licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/sigma/go-inotify/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/github.com/sirupsen/logrus licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Simon Eskildsen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -= vendor/github.com/sirupsen/logrus/LICENSE 8dadfef729c08ec4e631c4f6fc5d43a0 -================================================================================ - - -================================================================================ -= vendor/github.com/soheilhy/cmux licensed under: = - - - 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. - -= vendor/github.com/soheilhy/cmux/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/afero licensed under: = - - 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. - -= vendor/github.com/spf13/afero/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/afero/mem licensed under: = - - 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. - -= vendor/github.com/spf13/afero/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/afero/sftp licensed under: = - - 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. - -= vendor/github.com/spf13/afero/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/cast licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/spf13/cast/LICENSE 67fac7567cbf6ba946e5576d590b1ed4 -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/cobra licensed under: = - - 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. - -= vendor/github.com/spf13/cobra/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/cobra/doc licensed under: = - - 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. - -= vendor/github.com/spf13/cobra/LICENSE.txt 920d76114a32b0fb75b3f2718c5a91be -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/jwalterweatherman licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/spf13/jwalterweatherman/LICENSE 67fac7567cbf6ba946e5576d590b1ed4 -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/pflag licensed under: = - -Copyright (c) 2012 Alex Ogier. All rights reserved. -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/spf13/pflag/LICENSE 1e8b7dc8b906737639131047a590f21d -================================================================================ - - -================================================================================ -= vendor/github.com/spf13/viper licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Steve Francia - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/github.com/spf13/viper/LICENSE 67fac7567cbf6ba946e5576d590b1ed4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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-2017, go-dockerclient authors -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api/netutil licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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-2017, go-dockerclient authors -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api/serror licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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-2017, go-dockerclient authors -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/storageos/go-api/types licensed under: = - -MIT License - -Copyright (c) 2015-2017 StorageOS - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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-2017, go-dockerclient authors -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/storageos/go-api/LICENCE d8f852a0f38554263e64363f57b07fc4 -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/objx licensed under: = - -objx - by Mat Ryer and Tyler Bunnell - -The MIT License (MIT) - -Copyright (c) 2014 Stretchr, 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. - -= vendor/github.com/stretchr/objx/LICENSE.md 21e79cfe7201b9b64535bfae0895795b -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/testify/assert licensed under: = - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/stretchr/testify/LICENSE 39cd1d751bc25944831de86496e3cf68 -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/testify/mock licensed under: = - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/stretchr/testify/LICENSE 39cd1d751bc25944831de86496e3cf68 -================================================================================ - - -================================================================================ -= vendor/github.com/stretchr/testify/require licensed under: = - -Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell - -Please consider promoting this project if you find it useful. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE -OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/stretchr/testify/LICENSE 39cd1d751bc25944831de86496e3cf68 -================================================================================ - - -================================================================================ -= vendor/github.com/syndtr/gocapability/capability licensed under: = - -Copyright 2013 Suryandaru Triandana -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/github.com/syndtr/gocapability/LICENSE a7304f5073e7be4ba7bffabbf9f2bbca -================================================================================ - - -================================================================================ -= vendor/github.com/tmc/grpc-websocket-proxy/wsproxy licensed under: = - -Copyright (C) 2016 Travis Cline - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -= vendor/github.com/tmc/grpc-websocket-proxy/LICENSE 0894f9b225c28f0896b4bab675a2e19a -================================================================================ - - -================================================================================ -= vendor/github.com/ugorji/go/codec licensed under: = - -The MIT License (MIT) - -Copyright (c) 2012-2015 Ugorji Nwoke. -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. - -= vendor/github.com/ugorji/go/LICENSE a03c0693c900925da5789db4e72da142 -================================================================================ - - -================================================================================ -= vendor/github.com/vishvananda/netlink licensed under: = - - - 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 - - Copyright 2014 Vishvananda Ishaya. - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/vishvananda/netlink/LICENSE 2ade771c7d7211af507864e8dd520529 -================================================================================ - - -================================================================================ -= vendor/github.com/vishvananda/netlink/nl licensed under: = - - - 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 - - Copyright 2014 Vishvananda Ishaya. - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/vishvananda/netlink/LICENSE 2ade771c7d7211af507864e8dd520529 -================================================================================ - - -================================================================================ -= vendor/github.com/vishvananda/netns licensed under: = - - - 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 - - Copyright 2014 Vishvananda Ishaya. - Copyright 2014 Docker, Inc. - - 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. - -= vendor/github.com/vishvananda/netns/LICENSE 2ade771c7d7211af507864e8dd520529 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/find licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/list licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup/methods licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup/simulator licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/lookup/types licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/nfc licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/object licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/pbm licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/pbm/methods licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/pbm/types licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/property licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/session licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/simulator licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/simulator/esx licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/simulator/vpx licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/sts licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/sts/internal licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/sts/simulator licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/task licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/internal licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/rest licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/simulator licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vapi/tags licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25 licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/debug licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/methods licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/mo licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/progress licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/soap licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/types licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/govmomi/vim25/xml licensed under: = - - - 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. - -= vendor/github.com/vmware/govmomi/LICENSE.txt 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/photon-controller-go-sdk/photon licensed under: = - - 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. - - - -= vendor/github.com/vmware/photon-controller-go-sdk/LICENSE 0de60303c844eac44e45012dac1987de -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/photon-controller-go-sdk/photon/lightwave licensed under: = - - 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. - - - -= vendor/github.com/vmware/photon-controller-go-sdk/LICENSE 0de60303c844eac44e45012dac1987de -================================================================================ - - -================================================================================ -= vendor/github.com/vmware/photon-controller-go-sdk/SSPI licensed under: = - - 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. - - - -= vendor/github.com/vmware/photon-controller-go-sdk/LICENSE 0de60303c844eac44e45012dac1987de -================================================================================ - - -================================================================================ -= vendor/github.com/xanzy/go-cloudstack/cloudstack licensed under: = - -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. - -= vendor/github.com/xanzy/go-cloudstack/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/github.com/xiang90/probing licensed under: = - -The MIT License (MIT) - -Copyright (c) 2015 Xiang Li - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -= vendor/github.com/xiang90/probing/LICENSE 61b57bfd44f7924c8a12cd72d3aa1e93 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/atomic licensed under: = - -Copyright (c) 2016 Uber Technologies, 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. - -= vendor/go.uber.org/atomic/LICENSE.txt 1caee86519456feda989f8a838102b50 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/multierr licensed under: = - -Copyright (c) 2017 Uber Technologies, 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. - -= vendor/go.uber.org/multierr/LICENSE.txt f65b21a547112d1bc7b11b90f9b31997 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, 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. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/buffer licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, 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. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/internal/bufferpool licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, 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. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/internal/color licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, 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. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/internal/exit licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, 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. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/go.uber.org/zap/zapcore licensed under: = - -Copyright (c) 2016-2017 Uber Technologies, 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. - -= vendor/go.uber.org/zap/LICENSE.txt 5e8153e456a82529ea845e0d511abb69 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/bcrypt licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/blowfish licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/cryptobyte licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/cryptobyte/asn1 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/curve25519 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ed25519 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ed25519/internal/edwards25519 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/internal/chacha20 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/internal/subtle licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/nacl/secretbox licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ocsp licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/pkcs12 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/pkcs12/internal/rc2 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/poly1305 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/salsa20/salsa licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ssh licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/crypto/ssh/terminal licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/crypto/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/context licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/context/ctxhttp licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/html licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/html/atom licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/http2 licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/http2/hpack licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/idna licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/internal/timeseries licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/lex/httplex licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/proxy licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/trace licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/net/websocket licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/net/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2 licensed under: = - -Copyright (c) 2009 The oauth2 Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/google licensed under: = - -Copyright (c) 2009 The oauth2 Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/internal licensed under: = - -Copyright (c) 2009 The oauth2 Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/jws licensed under: = - -Copyright (c) 2009 The oauth2 Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/oauth2/jwt licensed under: = - -Copyright (c) 2009 The oauth2 Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/oauth2/LICENSE 704b1e0c436dbf193e7dcbd4cf06ec81 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/unix licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/windows licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/windows/registry licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/sys/windows/svc licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/sys/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/cases licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding/internal licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding/internal/identifier licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/encoding/unicode licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/internal licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/internal/tag licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/internal/utf8internal licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/language licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/runes licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/secure/bidirule licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/secure/precis licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/transform licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/unicode/bidi licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/unicode/norm licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/text/width licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/text/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/time/rate licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/time/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/benchmark/parse licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/container/intsets licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/go/ast/astutil licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/go/vcs licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/golang.org/x/tools/imports licensed under: = - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/golang.org/x/tools/LICENSE 5d4950ecb7b26d2c5e4e7b4e0dd74707 -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/blas licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/blas/blas64 licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/blas/gonum licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/floats licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/encoding licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/encoding/dot licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/ast licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/astx licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/errors licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/lexer licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/parser licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/formats/dot/internal/token licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/internal/ordered licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/internal/set licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/internal/uid licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/graph/simple licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/asm/c128 licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/asm/f32 licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/asm/f64 licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/internal/math32 licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/lapack licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/lapack/gonum licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/lapack/lapack64 licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/gonum.org/v1/gonum/mat licensed under: = - -Copyright ©2013 The Gonum Authors. 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 the gonum project nor the names of its authors and - 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. -= vendor/gonum.org/v1/gonum/LICENSE 665e67d07d85e236cceb8de602c6255a -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/compute/v0.alpha licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/compute/v0.beta licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/compute/v1 licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/container/v1 licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/gensupport licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/googleapi licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/googleapi/internal/uritemplates licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/logging/v2beta1 licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/monitoring/v3 licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/pubsub/v1 licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/api/tpu/v1 licensed under: = - -Copyright (c) 2011 Google Inc. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/google.golang.org/api/LICENSE a651bb3d8b1c412632e28823bb432b40 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/genproto/googleapis/rpc/status licensed under: = - - - 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. - -= vendor/google.golang.org/genproto/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/balancer licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/balancer/base licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/balancer/roundrobin licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/codes licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/connectivity licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/credentials licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/encoding licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/encoding/proto licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/grpclb/grpc_lb_v1/messages licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/grpclog licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/health licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/health/grpc_health_v1 licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal/backoff licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal/channelz licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/internal/grpcrand licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/keepalive licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/metadata licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/naming licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/peer licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/resolver licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/resolver/dns licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/resolver/passthrough licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/stats licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/status licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/tap licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/google.golang.org/grpc/transport licensed under: = - - - 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. - -= vendor/google.golang.org/grpc/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1 licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1/scanner licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1/token licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/gcfg.v1/types licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/gcfg.v1/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/inf.v0 licensed under: = - -Copyright (c) 2012 Péter Surányi. Portions Copyright (c) 2009 The Go -Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/inf.v0/LICENSE 13cea479df204c85485b5db6eb1bc9d5 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/natefinch/lumberjack.v2 licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Nate Finch - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -= vendor/gopkg.in/natefinch/lumberjack.v2/LICENSE 574cdb55b81249478f5af5f789e9e29f -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2 licensed under: = - - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2/cipher licensed under: = - - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2/json licensed under: = - - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/square/go-jose.v2/jwt licensed under: = - - - 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. - -= vendor/gopkg.in/square/go-jose.v2/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/warnings.v0 licensed under: = - -Copyright (c) 2016 Péter Surányi. - -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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/gopkg.in/warnings.v0/LICENSE c6775875c9d604beb22447dfae3d7049 -================================================================================ - - -================================================================================ -= vendor/gopkg.in/yaml.v2 licensed under: = - - 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. - -= vendor/gopkg.in/yaml.v2/LICENSE e3fc50a88d0a364313df4b21ef20c29e -================================================================================ - - -================================================================================ -= vendor/k8s.io/gengo/args licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/aescts/v2 +Version: v2.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/aescts/v2@v2.0.0/LICENSE: Apache License Version 2.0, January 2004 @@ -153516,7 +28830,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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 "[]" + 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 @@ -153524,7 +28838,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -153538,13 +28852,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/examples/deepcopy-gen/generators licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/dnsutils/v2 +Version: v2.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/dnsutils/v2@v2.0.0/LICENSE: Apache License Version 2.0, January 2004 @@ -153734,7 +29049,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -153748,13 +29063,51 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/gofork +Version: v1.0.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/gengo/examples/defaulter-gen/generators licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gofork@v1.0.0/LICENSE: +Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/goidentity/v6 +Version: v6.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/goidentity/v6@v6.0.1/LICENSE: Apache License Version 2.0, January 2004 @@ -153936,7 +29289,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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 "[]" + 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 @@ -153944,7 +29297,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -153958,13 +29311,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/examples/import-boss/generators licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/gokrb5/v8 +Version: v8.4.2 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/gokrb5/v8@v8.4.2/LICENSE: Apache License Version 2.0, January 2004 @@ -154146,7 +29500,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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 "[]" + 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 @@ -154154,7 +29508,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -154168,13 +29522,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/examples/set-gen/generators licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/jcmturner/rpc/v2 +Version: v2.0.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/jcmturner/rpc/v2@v2.0.3/LICENSE: Apache License Version 2.0, January 2004 @@ -154364,7 +29719,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -154378,433 +29733,554 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/jmespath/go-jmespath +Version: v0.0.0-20180206201540-c2b33e8439af +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/gengo/examples/set-gen/sets licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/jmespath/go-jmespath@v0.0.0-20180206201540-c2b33e8439af/LICENSE: +Copyright 2015 James Saryerwinnie - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +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 - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + http://www.apache.org/licenses/LICENSE-2.0 - 1. Definitions. +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. - "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. +-------------------------------------------------------------------------------- +Dependency : github.com/joho/godotenv +Version: v1.3.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "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. +Contents of probable licence file $GOMODCACHE/github.com/joho/godotenv@v1.3.0/LICENCE: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +Copyright (c) 2013 John Barton - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +MIT License - "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. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - "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). +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - "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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - "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. +-------------------------------------------------------------------------------- +Dependency : github.com/jpillora/backoff +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 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. +Contents of probable licence file $GOMODCACHE/github.com/jpillora/backoff@v1.0.0/LICENSE: - 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: +The MIT License (MIT) + +Copyright (c) 2017 Jaime Pillora + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/json-iterator/go +Version: v1.1.10 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/json-iterator/go@v1.1.10/LICENSE: + +MIT License + +Copyright (c) 2016 json-iterator + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/jstemmer/go-junit-report +Version: v0.9.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/jstemmer/go-junit-report@v0.9.1/LICENSE: + +Copyright (c) 2012 Joel Stemmer + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/jtolds/gls +Version: v4.20.0+incompatible +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/jtolds/gls@v4.20.0+incompatible/LICENSE: + +Copyright (c) 2013, Space Monkey, 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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/karrick/godirwalk +Version: v1.15.6 +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/karrick/godirwalk@v1.15.6/LICENSE: + +BSD 2-Clause License + +Copyright (c) 2017, Karrick McDermott +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. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/klauspost/compress +Version: v1.12.3 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/klauspost/compress@v1.12.3/LICENSE: + +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2019 Klaus Post. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/konsorten/go-windows-terminal-sequences +Version: v1.0.2 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/konsorten/go-windows-terminal-sequences@v1.0.2/LICENSE: + +(The MIT License) + +Copyright (c) 2017 marvin + konsorten GmbH (open-source@konsorten.de) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/kr/logfmt +Version: v0.0.0-20140226030751-b84e30acd515 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/kr/logfmt@v0.0.0-20140226030751-b84e30acd515/Readme: + +Go package for parsing (and, eventually, generating) +log lines in the logfmt style. + +See http://godoc.org/github.com/kr/logfmt for format, and other documentation and examples. + +Copyright (C) 2013 Keith Rarick, Blake Mizerany + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/kr/pretty +Version: v0.2.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/kr/pretty@v0.2.1/License: + +Copyright 2012 Keith Rarick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/kr/text +Version: v0.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/kr/text@v0.2.0/License: + +Copyright 2012 Keith Rarick + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - (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 +-------------------------------------------------------------------------------- +Dependency : github.com/mailru/easyjson +Version: v0.7.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - (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 +Contents of probable licence file $GOMODCACHE/github.com/mailru/easyjson@v0.7.1/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. +Copyright (c) 2016 Mail.Ru Group - 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. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - 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. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - 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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 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. +-------------------------------------------------------------------------------- +Dependency : github.com/markbates/pkger +Version: v0.17.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 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. +Contents of probable licence file $GOMODCACHE/github.com/markbates/pkger@v0.17.0/LICENSE: - END OF TERMS AND CONDITIONS +The MIT License (MIT) - APPENDIX: How to apply the Apache License to your work. +Copyright (c) 2019 Mark Bates - 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. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/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 The Kubernetes Authors. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 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 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION 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://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. +-------------------------------------------------------------------------------- +Dependency : github.com/martini-contrib/render +Version: v0.0.0-20150707142108-ec18f8345a11 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +Contents of probable licence file $GOMODCACHE/github.com/martini-contrib/render@v0.0.0-20150707142108-ec18f8345a11/LICENSE: +The MIT License (MIT) -================================================================================ -= vendor/k8s.io/gengo/generator licensed under: = +Copyright (c) 2013 Jeremy Saenz +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-ieproxy +Version: v0.0.0-20191113090002-7c0f6868bffe +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-ieproxy@v0.0.0-20191113090002-7c0f6868bffe/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. +MIT License - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +Copyright (c) 2014 mattn +Copyright (c) 2017 oliverpool +Copyright (c) 2019 Adele Reed - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "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). +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - "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." +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-isatty +Version: v0.0.12 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "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. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-isatty@v0.0.12/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. +Copyright (c) Yasuhiro MATSUMOTO - 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. +MIT License (Expat) - 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: +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - (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. +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-runewidth +Version: v0.0.9 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 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. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-runewidth@v0.0.9/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. +The MIT License (MIT) - 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 (c) 2016 Yasuhiro Matsumoto - 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. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +-------------------------------------------------------------------------------- +Dependency : github.com/mattn/go-sqlite3 +Version: v1.9.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 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. +Contents of probable licence file $GOMODCACHE/github.com/mattn/go-sqlite3@v1.9.0/LICENSE: - Copyright 2014 The Kubernetes Authors. +The MIT License (MIT) - 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 +Copyright (c) 2014 Yasuhiro Matsumoto - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following 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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -================================================================================ -= vendor/k8s.io/gengo/namer licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/matttproud/golang_protobuf_extensions +Version: v1.0.2-0.20181231171920-c182affec369 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/matttproud/golang_protobuf_extensions@v1.0.2-0.20181231171920-c182affec369/LICENSE: Apache License Version 2.0, January 2004 @@ -154986,7 +30462,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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 "[]" + 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 @@ -154994,7 +30470,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -155008,12 +30484,107 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/mitchellh/go-homedir +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-homedir@v1.1.0/LICENSE: -================================================================================ -= vendor/k8s.io/gengo/parser licensed under: = +The MIT License (MIT) + +Copyright (c) 2013 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/mitchellh/go-testing-interface +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-testing-interface@v1.0.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2016 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/mitchellh/iochan +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/iochan@v1.0.0/LICENSE.md: + +The MIT License (MIT) + +Copyright (c) 2015 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/moby/spdystream +Version: v0.2.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/moby/spdystream@v0.2.0/LICENSE: Apache License @@ -155204,7 +30775,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -155218,13 +30789,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ - -================================================================================ -= vendor/k8s.io/gengo/types licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/modern-go/concurrent +Version: v0.0.0-20180306012644-bacd9c7ef1dd +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/modern-go/concurrent@v0.0.0-20180306012644-bacd9c7ef1dd/LICENSE: Apache License Version 2.0, January 2004 @@ -155414,7 +30986,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014 The Kubernetes Authors. + 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. @@ -155428,14 +31000,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/gengo/LICENSE ad09685d909e7a9f763d2bb62d4bd6fb -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/modern-go/reflect2 +Version: v1.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/heapster/metrics/api/v1/types licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/modern-go/reflect2@v1.0.1/LICENSE: -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -155615,7 +31189,7 @@ Apache 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 "{}" + 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 @@ -155623,7 +31197,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright {yyyy} {name of copyright owner} + 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. @@ -155637,216 +31211,110 @@ Apache License See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/heapster/LICENSE 136e4f49dbf29942c572a3a8f6e88a77 -================================================================================ - - -================================================================================ -= vendor/k8s.io/klog licensed under: = - -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. +-------------------------------------------------------------------------------- +Dependency : github.com/morikuni/aec +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -4. Redistribution. +Contents of probable licence file $GOMODCACHE/github.com/morikuni/aec@v1.0.0/LICENSE: -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: +The MIT License (MIT) -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. +Copyright (c) 2016 Taihei Morikuni -5. Submission of Contributions. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -6. Trademarks. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -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. +-------------------------------------------------------------------------------- +Dependency : github.com/onsi/ginkgo +Version: v1.11.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -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. +Contents of probable licence file $GOMODCACHE/github.com/onsi/ginkgo@v1.11.0/LICENSE: -8. Limitation of Liability. +Copyright (c) 2013-2014 Onsi Fakhouri -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. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: -9. Accepting Warranty or Additional Liability. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -END OF TERMS AND CONDITIONS -APPENDIX: How to apply the Apache License to your work +-------------------------------------------------------------------------------- +Dependency : github.com/onsi/gomega +Version: v1.7.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -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. +Contents of probable licence file $GOMODCACHE/github.com/onsi/gomega@v1.7.0/LICENSE: - Copyright [yyyy] [name of copyright owner] +Copyright (c) 2013-2014 Onsi Fakhouri - 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 +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: - http://www.apache.org/licenses/LICENSE-2.0 +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. - 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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -= vendor/k8s.io/klog/LICENSE 19cbd64715b51267a47bf3750cc6a8a5 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/opencontainers/go-digest +Version: v1.0.0-rc1.0.20190228220655-ac19fd6e7483 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/cmd/openapi-gen licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/opencontainers/go-digest@v1.0.0-rc1.0.20190228220655-ac19fd6e7483/LICENSE: Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -156021,18 +31489,208 @@ third-party archives. END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. + Copyright 2016 Docker, Inc. - 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. + 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 - Copyright [yyyy] [name of copyright owner] + https://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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/opencontainers/image-spec +Version: v1.0.2-0.20190823105129-775207bd45b6 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/opencontainers/image-spec@v1.0.2-0.20190823105129-775207bd45b6/LICENSE: + + + 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 + + Copyright 2016 The Linux Foundation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -156046,12 +31704,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/opencontainers/runc +Version: v1.0.0-rc9 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/cmd/openapi-gen/args licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/opencontainers/runc@v1.0.0-rc9/LICENSE: Apache License @@ -156231,18 +31891,7 @@ third-party archives. 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] + Copyright 2014 Docker, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -156256,12 +31905,31 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/otiai10/mint +Version: v1.3.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/aggregator licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/otiai10/mint@v1.3.1/LICENSE: + +Copyright 2017 otiai10 (Hiromu OCHIAI) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/oxtoacart/bpool +Version: v0.0.0-20150712133111-4e1c5567d7c2 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/oxtoacart/bpool@v0.0.0-20150712133111-4e1c5567d7c2/LICENSE: Apache License @@ -156452,7 +32120,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2014 Percy Wegmann Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -156466,13 +32134,52 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/pierrec/lz4 +Version: v2.6.0+incompatible +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/builder licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/pierrec/lz4@v2.6.0+incompatible/LICENSE: +Copyright (c) 2015, Pierre Curto +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 xxHash 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. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/prometheus/client_golang +Version: v1.1.1-0.20190913103102-20428fa0bffc +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/prometheus/client_golang@v1.1.1-0.20190913103102-20428fa0bffc/LICENSE: Apache License Version 2.0, January 2004 @@ -156676,13 +32383,22 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/samuel/go-parser +Version: v0.0.0-20130731160455-ca8abbf65d0e +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/common licensed under: = +No licence file provided. + +-------------------------------------------------------------------------------- +Dependency : github.com/sanathkr/go-yaml +Version: v0.0.0-20170819195128-ed9d249f429b +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/sanathkr/go-yaml@v0.0.0-20170819195128-ed9d249f429b/LICENSE: Apache License Version 2.0, January 2004 @@ -156864,7 +32580,7 @@ third-party archives. 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 "[]" + 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 @@ -156872,7 +32588,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + 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. @@ -156886,13 +32602,365 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/sanathkr/yaml +Version: v1.0.1-0.20170819201035-0056894fa522 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/generators licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/sanathkr/yaml@v1.0.1-0.20170819201035-0056894fa522/LICENSE: + +The MIT License (MIT) +Copyright (c) 2014 Sam Ghods + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION 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 The Go Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/santhosh-tekuri/jsonschema +Version: v1.2.4 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/santhosh-tekuri/jsonschema@v1.2.4/LICENSE: + +Copyright (c) 2017 Santhosh Kumar Tekuri. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------------------- +Dependency : github.com/satori/go.uuid +Version: v1.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/satori/go.uuid@v1.2.0/LICENSE: + +Copyright (C) 2013-2018 by Maxim Bublis + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/sergi/go-diff +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/sergi/go-diff@v1.1.0/LICENSE: + +Copyright (c) 2012-2016 The go-diff Authors. 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. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/sirupsen/logrus +Version: v1.4.2 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/sirupsen/logrus@v1.4.2/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014 Simon Eskildsen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/smartystreets/assertions +Version: v0.0.0-20180927180507-b2de0cb4f26d +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/smartystreets/assertions@v0.0.0-20180927180507-b2de0cb4f26d/LICENSE.md: + +Copyright (c) 2016 SmartyStreets, LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +NOTE: Various optional and subordinate components carry their own licensing +requirements and restrictions. Use of those components is subject to the terms +and conditions outlined the respective license of each component. + + +-------------------------------------------------------------------------------- +Dependency : github.com/smartystreets/goconvey +Version: v0.0.0-20190330032615-68dc04aab96a +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/smartystreets/goconvey@v0.0.0-20190330032615-68dc04aab96a/LICENSE.md: + +Copyright (c) 2016 SmartyStreets, LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +NOTE: Various optional and subordinate components carry their own licensing +requirements and restrictions. Use of those components is subject to the terms +and conditions outlined the respective license of each component. + + +-------------------------------------------------------------------------------- +Dependency : github.com/spaolacci/murmur3 +Version: v1.1.0 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/spaolacci/murmur3@v1.1.0/LICENSE: + +Copyright 2013, Sébastien Paolacci. +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 the library 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 BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/stretchr/objx +Version: v0.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/stretchr/objx@v0.2.0/LICENSE: + +The MIT License + +Copyright (c) 2014 Stretchr, Inc. +Copyright (c) 2017-2018 objx 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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/ugorji/go +Version: v1.1.8 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/ugorji/go@v1.1.8/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2012-2015 Ugorji Nwoke. +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. + + +-------------------------------------------------------------------------------- +Dependency : github.com/urso/diag +Version: v0.0.0-20200210123136-21b3cc8eb797 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/urso/diag@v0.0.0-20200210123136-21b3cc8eb797/LICENSE: Apache License Version 2.0, January 2004 @@ -157096,13 +33164,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/generators/rules licensed under: = +-------------------------------------------------------------------------------- +Dependency : github.com/urso/go-bin +Version: v0.0.0-20180220135811-781c575c9f0e +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/urso/go-bin@v0.0.0-20180220135811-781c575c9f0e/LICENSE: Apache License Version 2.0, January 2004 @@ -157306,13 +33375,22 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/urso/magetools +Version: v0.0.0-20190919040553-290c89e0c230 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/handler licensed under: = +No licence file provided. + +-------------------------------------------------------------------------------- +Dependency : github.com/urso/qcgen +Version: v0.0.0-20180131103024-0b059e7db4f4 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/urso/qcgen@v0.0.0-20180131103024-0b059e7db4f4/LICENSE: Apache License Version 2.0, January 2004 @@ -157516,12 +33594,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : github.com/xdg/stringprep +Version: v1.0.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util licensed under: = +Contents of probable licence file $GOMODCACHE/github.com/xdg/stringprep@v1.0.3/LICENSE: Apache License @@ -157699,39 +33779,78 @@ third-party archives. 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. +-------------------------------------------------------------------------------- +Dependency : github.com/yuin/gopher-lua +Version: v0.0.0-20170403160031-b402f3114ec7 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 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. +Contents of probable licence file $GOMODCACHE/github.com/yuin/gopher-lua@v0.0.0-20170403160031-b402f3114ec7/LICENSE: - Copyright [yyyy] [name of copyright owner] +The MIT License (MIT) - 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 +Copyright (c) 2015 Yusuke Inuzuka - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following 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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/proto licensed under: = +-------------------------------------------------------------------------------- +Dependency : go.elastic.co/fastjson +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/go.elastic.co/fastjson@v1.1.0/LICENSE: + +Copyright 2018 Elasticsearch BV + +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. + +--- + +Copyright (c) 2016 Mail.Ru Group + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : go.opencensus.io +Version: v0.23.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/go.opencensus.io@v0.23.0/LICENSE: Apache License @@ -157936,12 +34055,184 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : go.uber.org/goleak +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/go.uber.org/goleak@v1.0.0/LICENSE: -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/proto/testing licensed under: = +The MIT License (MIT) + +Copyright (c) 2018 Uber Technologies, 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. + + +-------------------------------------------------------------------------------- +Dependency : go.uber.org/tools +Version: v0.0.0-20190618225709-2cfd321de3ee +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/go.uber.org/tools@v0.0.0-20190618225709-2cfd321de3ee/LICENSE: + +Copyright (c) 2017 Uber Technologies, 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. + + +-------------------------------------------------------------------------------- +Dependency : golang.org/x/mod +Version: v0.4.2 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/golang.org/x/mod@v0.4.2/LICENSE: + +Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : golang.org/x/term +Version: v0.0.0-20210220032956-6a3ed077a48d +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/golang.org/x/term@v0.0.0-20210220032956-6a3ed077a48d/LICENSE: + +Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : golang.org/x/xerrors +Version: v0.0.0-20200804184101-5ec99f83aff1 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/golang.org/x/xerrors@v0.0.0-20200804184101-5ec99f83aff1/LICENSE: + +Copyright (c) 2019 The Go Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : google.golang.org/appengine +Version: v1.6.7 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/google.golang.org/appengine@v1.6.7/LICENSE: Apache License @@ -158146,13 +34437,87 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : gopkg.in/check.v1 +Version: v1.0.0-20201130134442-10cb98267c6c +Licence type (autodetected): BSD-2-Clause +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/proto/validation licensed under: = +Contents of probable licence file $GOMODCACHE/gopkg.in/check.v1@v1.0.0-20201130134442-10cb98267c6c/LICENSE: + +Gocheck - A rich testing framework for Go + +Copyright (c) 2010-2013 Gustavo Niemeyer + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +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 OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/fsnotify.v1 +Version: v1.4.7 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gopkg.in/fsnotify.v1@v1.4.7/LICENSE: + +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2012 fsnotify Authors. 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 Google Inc. 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 +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/aescts.v1 +Version: v1.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/aescts.v1@v1.0.1/LICENSE: Apache License Version 2.0, January 2004 @@ -158334,7 +34699,7 @@ third-party archives. 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 "[]" + 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 @@ -158342,7 +34707,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + 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. @@ -158356,13 +34721,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/k8s.io/kube-openapi/pkg/util/sets licensed under: = +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/dnsutils.v1 +Version: v1.0.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/dnsutils.v1@v1.0.1/LICENSE: Apache License Version 2.0, January 2004 @@ -158566,13 +34932,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/kube-openapi/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - -================================================================================ -= vendor/k8s.io/utils/clock licensed under: = +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/goidentity.v3 +Version: v3.0.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/goidentity.v3@v3.0.0/LICENSE: Apache License Version 2.0, January 2004 @@ -158754,7 +35121,7 @@ third-party archives. 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 "[]" + 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 @@ -158762,7 +35129,7 @@ third-party archives. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + 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. @@ -158776,13 +35143,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : gopkg.in/jcmturner/rpc.v1 +Version: v1.1.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/utils/exec licensed under: = - +Contents of probable licence file $GOMODCACHE/gopkg.in/jcmturner/rpc.v1@v1.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -158980,207 +35348,350 @@ third-party archives. 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. + 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. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/tomb.v1 +Version: v1.0.0-20141024135613-dd632973f1e7 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gopkg.in/tomb.v1@v1.0.0-20141024135613-dd632973f1e7/LICENSE: + +tomb - support for clean goroutine termination in Go. + +Copyright (c) 2010-2011 - Gustavo Niemeyer + +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 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 OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : gopkg.in/yaml.v3 +Version: v3.0.0-20210107192922-496545a6307b +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gopkg.in/yaml.v3@v3.0.0-20210107192922-496545a6307b/LICENSE: + + +This project is covered by two different licenses: MIT and Apache. + +#### MIT License #### + +The following files were ported to Go from C files of libyaml, and thus +are still covered by their original MIT license, with the additional +copyright staring in 2011 when the project was ported over: + + apic.go emitterc.go parserc.go readerc.go scannerc.go + writerc.go yamlh.go yamlprivateh.go + +Copyright (c) 2006-2010 Kirill Simonov +Copyright (c) 2006-2011 Kirill Simonov + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +### Apache License ### + +All the remaining project files are covered by the Apache license: + +Copyright (c) 2011-2019 Canonical Ltd + +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. + + +-------------------------------------------------------------------------------- +Dependency : gotest.tools/v3 +Version: v3.0.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/gotest.tools/v3@v3.0.3/LICENSE: + +Copyright 2018 gotest.tools authors + +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. + + +-------------------------------------------------------------------------------- +Dependency : honnef.co/go/tools +Version: v0.0.1-2020.1.4 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/honnef.co/go/tools@v0.0.1-2020.1.4/LICENSE: + +Copyright (c) 2016 Dominik Honnef + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : k8s.io/klog/v2 +Version: v2.8.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/k8s.io/klog/v2@v2.8.0/LICENSE: -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -================================================================================ -= vendor/k8s.io/utils/exec/testing licensed under: = +1. Definitions. +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +"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. - 1. Definitions. +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. - "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. +"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. - "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. +"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). - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +"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. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +"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." - "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. +"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. - "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. +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. - "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." +3. Grant of Patent License. - "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. +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. - 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. +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: - 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: +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +5. Submission of Contributions. - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +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. - (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 +6. Trademarks. - (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. +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. - 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. +7. Disclaimer of Warranty. - 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. +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. - 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. +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. - 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. - 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. +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 +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 [yyyy] [name of copyright owner] @@ -159188,7 +35699,7 @@ third-party archives. 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 + 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, @@ -159196,12 +35707,14 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ +-------------------------------------------------------------------------------- +Dependency : k8s.io/kube-openapi +Version: v0.0.0-20210305001622-591a79e4bda7 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- -================================================================================ -= vendor/k8s.io/utils/pointer licensed under: = +Contents of probable licence file $GOMODCACHE/k8s.io/kube-openapi@v0.0.0-20210305001622-591a79e4bda7/LICENSE: Apache License @@ -159406,93 +35919,6 @@ third-party archives. See the License for the specific language governing permissions and limitations under the License. -= vendor/k8s.io/utils/LICENSE 3b83ef96387f14655fc854ddc3c6bd57 -================================================================================ - - -================================================================================ -= vendor/sigs.k8s.io/yaml licensed under: = - -The MIT License (MIT) - -Copyright (c) 2014 Sam Ghods - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -= vendor/sigs.k8s.io/yaml/LICENSE 0ceb9ff3b27d3a8cf451ca3785d73c71 -================================================================================ - - -================================================================================ -= vendor/vbom.ml/util/sortorder licensed under: = - -The MIT License (MIT) -Copyright (c) 2015 Frits van Bommel -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -= vendor/vbom.ml/util/LICENSE 9f7e1d7e8f527330ebb5f4c32e0f3e40 -================================================================================ - - -------------------------------------------------------------------------------- Dependency : k8s.io/utils @@ -159706,117 +36132,6 @@ Contents of probable licence file $GOMODCACHE/k8s.io/utils@v0.0.0-20201110183641 limitations under the License. --------------------------------------------------------------------------------- -Dependency : rsc.io/binaryregexp -Version: v0.2.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/rsc.io/binaryregexp@v0.2.0/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : rsc.io/quote/v3 -Version: v3.1.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/rsc.io/quote/v3@v3.1.0/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : rsc.io/sampler -Version: v1.3.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/rsc.io/sampler@v1.3.0/LICENSE: - -Copyright (c) 2009 The Go Authors. 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 Google Inc. 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 -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -------------------------------------------------------------------------------- Dependency : sigs.k8s.io/structured-merge-diff/v4 Version: v4.1.0 diff --git a/auditbeat/Dockerfile b/auditbeat/Dockerfile index 1cc82d4f945..50975c2e0a1 100644 --- a/auditbeat/Dockerfile +++ b/auditbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ @@ -7,6 +7,7 @@ RUN \ python3-pip \ python3-venv \ librpm-dev \ + iproute2 \ && rm -rf /var/lib/apt/lists/* RUN pip3 install --upgrade pip==20.1.1 diff --git a/auditbeat/magefile.go b/auditbeat/magefile.go index bc99856a890..6b712d92512 100644 --- a/auditbeat/magefile.go +++ b/auditbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/auditbeat/module/auditd/audit_unsupported.go b/auditbeat/module/auditd/audit_unsupported.go index 94761612928..95aeccbec14 100644 --- a/auditbeat/module/auditd/audit_unsupported.go +++ b/auditbeat/module/auditd/audit_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package auditd diff --git a/auditbeat/module/auditd/golden_files_test.go b/auditbeat/module/auditd/golden_files_test.go index adea4781612..79bf4a85546 100644 --- a/auditbeat/module/auditd/golden_files_test.go +++ b/auditbeat/module/auditd/golden_files_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package auditd diff --git a/auditbeat/module/file_integrity/eventreader_fsevents.go b/auditbeat/module/file_integrity/eventreader_fsevents.go index 064c46c101f..f0c2d1aa565 100644 --- a/auditbeat/module/file_integrity/eventreader_fsevents.go +++ b/auditbeat/module/file_integrity/eventreader_fsevents.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package file_integrity diff --git a/auditbeat/module/file_integrity/eventreader_fsnotify.go b/auditbeat/module/file_integrity/eventreader_fsnotify.go index b80085f4b2d..252c71d349e 100644 --- a/auditbeat/module/file_integrity/eventreader_fsnotify.go +++ b/auditbeat/module/file_integrity/eventreader_fsnotify.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || freebsd || openbsd || netbsd || windows // +build linux freebsd openbsd netbsd windows package file_integrity diff --git a/auditbeat/module/file_integrity/eventreader_unsupported.go b/auditbeat/module/file_integrity/eventreader_unsupported.go index 53034833846..5fa39b2fa2c 100644 --- a/auditbeat/module/file_integrity/eventreader_unsupported.go +++ b/auditbeat/module/file_integrity/eventreader_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !freebsd && !openbsd && !netbsd && !windows && !darwin // +build !linux,!freebsd,!openbsd,!netbsd,!windows,!darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_bsd.go b/auditbeat/module/file_integrity/fileinfo_bsd.go index 6d9120ad533..3f7d3c9af93 100644 --- a/auditbeat/module/file_integrity/fileinfo_bsd.go +++ b/auditbeat/module/file_integrity/fileinfo_bsd.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build freebsd || openbsd || netbsd || darwin // +build freebsd openbsd netbsd darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_linux.go b/auditbeat/module/file_integrity/fileinfo_linux.go index b17c6c824aa..38bf03a824d 100644 --- a/auditbeat/module/file_integrity/fileinfo_linux.go +++ b/auditbeat/module/file_integrity/fileinfo_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_other_test.go b/auditbeat/module/file_integrity/fileinfo_other_test.go index d4acbb1781b..ad8fc446127 100644 --- a/auditbeat/module/file_integrity/fileinfo_other_test.go +++ b/auditbeat/module/file_integrity/fileinfo_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_posix.go b/auditbeat/module/file_integrity/fileinfo_posix.go index 3e6d5e6e868..a49cf1e5bd6 100644 --- a/auditbeat/module/file_integrity/fileinfo_posix.go +++ b/auditbeat/module/file_integrity/fileinfo_posix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || freebsd || openbsd || netbsd || darwin // +build linux freebsd openbsd netbsd darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileinfo_windows.go b/auditbeat/module/file_integrity/fileinfo_windows.go index 7c3ff0e3fdf..4c3e8f1f357 100644 --- a/auditbeat/module/file_integrity/fileinfo_windows.go +++ b/auditbeat/module/file_integrity/fileinfo_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file_integrity diff --git a/auditbeat/module/file_integrity/fileorigin_darwin.go b/auditbeat/module/file_integrity/fileorigin_darwin.go index f6cb2803330..6efae8bd856 100644 --- a/auditbeat/module/file_integrity/fileorigin_darwin.go +++ b/auditbeat/module/file_integrity/fileorigin_darwin.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileorigin_other.go b/auditbeat/module/file_integrity/fileorigin_other.go index ad4f062ddaf..f632b78046f 100644 --- a/auditbeat/module/file_integrity/fileorigin_other.go +++ b/auditbeat/module/file_integrity/fileorigin_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !darwin // +build !darwin package file_integrity diff --git a/auditbeat/module/file_integrity/fileorigin_test.go b/auditbeat/module/file_integrity/fileorigin_test.go index 0ea5d8f6e9f..6c2576b0419 100644 --- a/auditbeat/module/file_integrity/fileorigin_test.go +++ b/auditbeat/module/file_integrity/fileorigin_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package file_integrity diff --git a/auditbeat/module/file_integrity/monitor/filetree_test.go b/auditbeat/module/file_integrity/monitor/filetree_test.go index 33afed03556..9b7a6650035 100644 --- a/auditbeat/module/file_integrity/monitor/filetree_test.go +++ b/auditbeat/module/file_integrity/monitor/filetree_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitor diff --git a/auditbeat/module/file_integrity/monitor/monitor_test.go b/auditbeat/module/file_integrity/monitor/monitor_test.go index 117d25cb1b9..3842948ce0b 100644 --- a/auditbeat/module/file_integrity/monitor/monitor_test.go +++ b/auditbeat/module/file_integrity/monitor/monitor_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitor diff --git a/filebeat/Dockerfile b/filebeat/Dockerfile index 01d3d1455d6..13836b19c51 100644 --- a/filebeat/Dockerfile +++ b/filebeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/filebeat/config/config_test.go b/filebeat/config/config_test.go index 7d148a272f8..24bb0774b1e 100644 --- a/filebeat/config/config_test.go +++ b/filebeat/config/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package config diff --git a/filebeat/fileset/compatibility_test.go b/filebeat/fileset/compatibility_test.go index 560af3940ab..82e584b046f 100644 --- a/filebeat/fileset/compatibility_test.go +++ b/filebeat/fileset/compatibility_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/fileset/fileset_test.go b/filebeat/fileset/fileset_test.go index 430d71e0db7..d87f99947e9 100644 --- a/filebeat/fileset/fileset_test.go +++ b/filebeat/fileset/fileset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/fileset/modules_integration_test.go b/filebeat/fileset/modules_integration_test.go index 4d5a79a9426..6b9e86cac84 100644 --- a/filebeat/fileset/modules_integration_test.go +++ b/filebeat/fileset/modules_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package fileset diff --git a/filebeat/fileset/modules_test.go b/filebeat/fileset/modules_test.go index 7fe2e32aaab..d023c0aec83 100644 --- a/filebeat/fileset/modules_test.go +++ b/filebeat/fileset/modules_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/fileset/pipelines_test.go b/filebeat/fileset/pipelines_test.go index f3d9e2d5a07..c7adf9cf78a 100644 --- a/filebeat/fileset/pipelines_test.go +++ b/filebeat/fileset/pipelines_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileset diff --git a/filebeat/harvester/util_test.go b/filebeat/harvester/util_test.go index eb2017d8e0f..859bfe1e110 100644 --- a/filebeat/harvester/util_test.go +++ b/filebeat/harvester/util_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package harvester diff --git a/filebeat/input/container/input_test.go b/filebeat/input/container/input_test.go index 8d898dd594a..068f7400f98 100644 --- a/filebeat/input/container/input_test.go +++ b/filebeat/input/container/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package container diff --git a/filebeat/input/default-inputs/inputs_other.go b/filebeat/input/default-inputs/inputs_other.go index 13f4abeb7c8..147763e40d1 100644 --- a/filebeat/input/default-inputs/inputs_other.go +++ b/filebeat/input/default-inputs/inputs_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !linux // +build !windows,!linux package inputs diff --git a/filebeat/input/docker/input_test.go b/filebeat/input/docker/input_test.go index bff4152a768..8459894aba7 100644 --- a/filebeat/input/docker/input_test.go +++ b/filebeat/input/docker/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package docker diff --git a/filebeat/input/file/glob_other_test.go b/filebeat/input/file/glob_other_test.go index 2f1080b2dcf..5502d035d4d 100644 --- a/filebeat/input/file/glob_other_test.go +++ b/filebeat/input/file/glob_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/filebeat/input/file/glob_windows_test.go b/filebeat/input/file/glob_windows_test.go index 5b3e51891c7..8ba33bd9dda 100644 --- a/filebeat/input/file/glob_windows_test.go +++ b/filebeat/input/file/glob_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file diff --git a/filebeat/input/file/identifier_inode_deviceid.go b/filebeat/input/file/identifier_inode_deviceid.go index f5e191744d6..ef2e97bb786 100644 --- a/filebeat/input/file/identifier_inode_deviceid.go +++ b/filebeat/input/file/identifier_inode_deviceid.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/filebeat/input/file/identifier_inode_deviceid_windows.go b/filebeat/input/file/identifier_inode_deviceid_windows.go index 9fb1152a33c..7a9a743d2d4 100644 --- a/filebeat/input/file/identifier_inode_deviceid_windows.go +++ b/filebeat/input/file/identifier_inode_deviceid_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file diff --git a/filebeat/input/file/identifier_test.go b/filebeat/input/file/identifier_test.go index f47f4a37fb9..8990f16ea28 100644 --- a/filebeat/input/file/identifier_test.go +++ b/filebeat/input/file/identifier_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/filebeat/input/file/identifier_test_windows.go b/filebeat/input/file/identifier_test_windows.go index 544dbad2546..8048454ec06 100644 --- a/filebeat/input/file/identifier_test_windows.go +++ b/filebeat/input/file/identifier_test_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package file diff --git a/filebeat/input/file/states_test.go b/filebeat/input/file/states_test.go index 000e4c2082f..5e1fb3890b5 100644 --- a/filebeat/input/file/states_test.go +++ b/filebeat/input/file/states_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package file diff --git a/filebeat/input/filestream/example_inputs_integration_test.go b/filebeat/input/filestream/example_inputs_integration_test.go index 1973ef9a6d2..b807fa5ccbb 100644 --- a/filebeat/input/filestream/example_inputs_integration_test.go +++ b/filebeat/input/filestream/example_inputs_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package filestream diff --git a/filebeat/input/filestream/filestream_test_non_windows.go b/filebeat/input/filestream/filestream_test_non_windows.go index 9c2b33ed3de..dfc89754f7f 100644 --- a/filebeat/input/filestream/filestream_test_non_windows.go +++ b/filebeat/input/filestream/filestream_test_non_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/fswatch_test_non_windows.go b/filebeat/input/filestream/fswatch_test_non_windows.go index 8c3cbd03c71..ec8045f7c53 100644 --- a/filebeat/input/filestream/fswatch_test_non_windows.go +++ b/filebeat/input/filestream/fswatch_test_non_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/identifier_inode_deviceid.go b/filebeat/input/filestream/identifier_inode_deviceid.go index 291bc0ad357..6749afbe9e3 100644 --- a/filebeat/input/filestream/identifier_inode_deviceid.go +++ b/filebeat/input/filestream/identifier_inode_deviceid.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/identifier_inode_deviceid_windows.go b/filebeat/input/filestream/identifier_inode_deviceid_windows.go index 4ee8d866124..3e40d1d4728 100644 --- a/filebeat/input/filestream/identifier_inode_deviceid_windows.go +++ b/filebeat/input/filestream/identifier_inode_deviceid_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package filestream diff --git a/filebeat/input/filestream/identifier_test_non_windows.go b/filebeat/input/filestream/identifier_test_non_windows.go index cd8c25260dc..ee6d6688e0d 100644 --- a/filebeat/input/filestream/identifier_test_non_windows.go +++ b/filebeat/input/filestream/identifier_test_non_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package filestream diff --git a/filebeat/input/filestream/input_integration_test.go b/filebeat/input/filestream/input_integration_test.go index 431c6c6458d..bcdb7b7f95c 100644 --- a/filebeat/input/filestream/input_integration_test.go +++ b/filebeat/input/filestream/input_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package filestream diff --git a/filebeat/input/filestream/parsers_integration_test.go b/filebeat/input/filestream/parsers_integration_test.go index f76a227bab6..11852452366 100644 --- a/filebeat/input/filestream/parsers_integration_test.go +++ b/filebeat/input/filestream/parsers_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package filestream diff --git a/filebeat/input/input_test.go b/filebeat/input/input_test.go index 53f3346c142..3e815e23d3a 100644 --- a/filebeat/input/input_test.go +++ b/filebeat/input/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package input diff --git a/filebeat/input/journald/config.go b/filebeat/input/journald/config.go index ef2cce11435..6704dabfc02 100644 --- a/filebeat/input/journald/config.go +++ b/filebeat/input/journald/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo && withjournald // +build linux,cgo,withjournald package journald diff --git a/filebeat/input/journald/conv.go b/filebeat/input/journald/conv.go index b8c95210c2c..a9785cf49f6 100644 --- a/filebeat/input/journald/conv.go +++ b/filebeat/input/journald/conv.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo && withjournald // +build linux,cgo,withjournald package journald diff --git a/filebeat/input/journald/input.go b/filebeat/input/journald/input.go index d907aa4b8c0..74bd0983d23 100644 --- a/filebeat/input/journald/input.go +++ b/filebeat/input/journald/input.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo && withjournald // +build linux,cgo,withjournald package journald diff --git a/filebeat/input/journald/input_stub.go b/filebeat/input/journald/input_stub.go index 4eada4569c5..efe2be45b21 100644 --- a/filebeat/input/journald/input_stub.go +++ b/filebeat/input/journald/input_stub.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux || !cgo || !withjournald // +build !linux !cgo !withjournald package journald diff --git a/filebeat/input/kafka/input_test.go b/filebeat/input/kafka/input_test.go index a239149cb48..66e78630200 100644 --- a/filebeat/input/kafka/input_test.go +++ b/filebeat/input/kafka/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package kafka diff --git a/filebeat/input/kafka/kafka_integration_test.go b/filebeat/input/kafka/kafka_integration_test.go index 2f168eb6daf..cb3f3526c99 100644 --- a/filebeat/input/kafka/kafka_integration_test.go +++ b/filebeat/input/kafka/kafka_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package kafka diff --git a/filebeat/input/log/config_test.go b/filebeat/input/log/config_test.go index f8160a830f7..e5c27ad3d77 100644 --- a/filebeat/input/log/config_test.go +++ b/filebeat/input/log/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/log/harvester_test.go b/filebeat/input/log/harvester_test.go index dba61b5d0ea..d95d797c129 100644 --- a/filebeat/input/log/harvester_test.go +++ b/filebeat/input/log/harvester_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/log/input_other_test.go b/filebeat/input/log/input_other_test.go index 552979af1b9..9e083990226 100644 --- a/filebeat/input/log/input_other_test.go +++ b/filebeat/input/log/input_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !integration // +build !windows,!integration package log diff --git a/filebeat/input/log/input_test.go b/filebeat/input/log/input_test.go index 471aaf549f2..4741d7047d3 100644 --- a/filebeat/input/log/input_test.go +++ b/filebeat/input/log/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/log/prospector_windows_test.go b/filebeat/input/log/prospector_windows_test.go index 2b60fac4c64..b1c1e8d39bd 100644 --- a/filebeat/input/log/prospector_windows_test.go +++ b/filebeat/input/log/prospector_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package log diff --git a/filebeat/input/mqtt/mqtt_integration_test.go b/filebeat/input/mqtt/mqtt_integration_test.go index 60b8c595afc..553bd60706b 100644 --- a/filebeat/input/mqtt/mqtt_integration_test.go +++ b/filebeat/input/mqtt/mqtt_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package mqtt diff --git a/filebeat/input/redis/input_test.go b/filebeat/input/redis/input_test.go index b480c539efe..54342e5d922 100644 --- a/filebeat/input/redis/input_test.go +++ b/filebeat/input/redis/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package redis diff --git a/filebeat/input/stdin/input_test.go b/filebeat/input/stdin/input_test.go index 73183a30887..07efc555f58 100644 --- a/filebeat/input/stdin/input_test.go +++ b/filebeat/input/stdin/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stdin diff --git a/filebeat/input/udp/input_test.go b/filebeat/input/udp/input_test.go index 8a6f1cad039..3046b2d62e5 100644 --- a/filebeat/input/udp/input_test.go +++ b/filebeat/input/udp/input_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package udp diff --git a/filebeat/inputsource/unix/config_test.go b/filebeat/inputsource/unix/config_test.go index c57e654f812..f92471f7578 100644 --- a/filebeat/inputsource/unix/config_test.go +++ b/filebeat/inputsource/unix/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package unix diff --git a/filebeat/magefile.go b/filebeat/magefile.go index 8e55f6e0d4d..43804fdb095 100644 --- a/filebeat/magefile.go +++ b/filebeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/filebeat/registrar/migrate_bench_test.go b/filebeat/registrar/migrate_bench_test.go index 2a1ba7820cb..b5edd8122bd 100644 --- a/filebeat/registrar/migrate_bench_test.go +++ b/filebeat/registrar/migrate_bench_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin // +build linux darwin package registrar diff --git a/generator/_templates/beat/{beat}/config/config_test.go b/generator/_templates/beat/{beat}/config/config_test.go index d177de3ab82..8abe696e7e0 100644 --- a/generator/_templates/beat/{beat}/config/config_test.go +++ b/generator/_templates/beat/{beat}/config/config_test.go @@ -1,3 +1,4 @@ +//go:build !integration // +build !integration package config diff --git a/generator/_templates/beat/{beat}/magefile.go b/generator/_templates/beat/{beat}/magefile.go index b8dd789f418..001e33ee255 100644 --- a/generator/_templates/beat/{beat}/magefile.go +++ b/generator/_templates/beat/{beat}/magefile.go @@ -1,3 +1,4 @@ +//go:build mage // +build mage package main diff --git a/generator/_templates/beat/{beat}/tools/tools.go b/generator/_templates/beat/{beat}/tools/tools.go index 9b553081ae3..9c1319194d0 100644 --- a/generator/_templates/beat/{beat}/tools/tools.go +++ b/generator/_templates/beat/{beat}/tools/tools.go @@ -1,3 +1,4 @@ +//go:build tools // +build tools // This package contains the tool dependencies of the project. diff --git a/generator/_templates/metricbeat/{beat}/magefile.go b/generator/_templates/metricbeat/{beat}/magefile.go index c05ac7623b3..701f4b2a478 100644 --- a/generator/_templates/metricbeat/{beat}/magefile.go +++ b/generator/_templates/metricbeat/{beat}/magefile.go @@ -1,3 +1,4 @@ +//go:build mage // +build mage package main diff --git a/generator/_templates/metricbeat/{beat}/tools/tools.go b/generator/_templates/metricbeat/{beat}/tools/tools.go index 9b553081ae3..9c1319194d0 100644 --- a/generator/_templates/metricbeat/{beat}/tools/tools.go +++ b/generator/_templates/metricbeat/{beat}/tools/tools.go @@ -1,3 +1,4 @@ +//go:build tools // +build tools // This package contains the tool dependencies of the project. diff --git a/go.mod b/go.mod index e4194dde3dc..20cd451a630 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/elastic/beats/v7 -go 1.16 +go 1.17 require ( cloud.google.com/go v0.83.0 @@ -168,13 +168,13 @@ require ( go.uber.org/zap v1.14.0 golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 - golang.org/x/net v0.0.0-20210614182718-04defd469f4e + golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c golang.org/x/sync v0.0.0-20210220032951-036812b2e83c - golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c + golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e golang.org/x/text v0.3.6 golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba - golang.org/x/tools v0.1.2 + golang.org/x/tools v0.1.6 google.golang.org/api v0.47.0 google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c google.golang.org/grpc v1.38.0 @@ -195,6 +195,99 @@ require ( k8s.io/client-go v0.21.1 ) +require ( + code.cloudfoundry.org/gofileutils v0.0.0-20170111115228-4d0c80011a0f // indirect + github.com/Azure/azure-amqp-common-go/v3 v3.0.0 // indirect + github.com/Azure/azure-pipeline-go v0.2.1 // indirect + github.com/Azure/go-amqp v0.12.6 // indirect + github.com/Azure/go-autorest v14.2.0+incompatible // indirect + github.com/Azure/go-autorest/autorest/azure/cli v0.3.1 // indirect + github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect + github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect + github.com/Azure/go-autorest/logger v0.2.1 // indirect + github.com/Azure/go-autorest/tracing v0.6.0 // indirect + github.com/BurntSushi/toml v0.3.1 // indirect + github.com/Microsoft/hcsshim v0.8.7 // indirect + github.com/apache/thrift v0.13.1-0.20200603211036-eac4d0c79a5f // indirect + github.com/armon/go-radix v1.0.0 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash v1.1.0 // indirect + github.com/containerd/containerd v1.3.3 // indirect + github.com/containerd/continuity v0.0.0-20200107194136-26c1120b8d41 // indirect + github.com/cyphar/filepath-securejoin v0.2.2 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/dgraph-io/ristretto v0.1.0 // indirect + github.com/dimchansky/utfbom v1.1.0 // indirect + github.com/docker/distribution v2.7.1+incompatible // indirect + github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect + github.com/eapache/queue v1.1.0 // indirect + github.com/evanphx/json-patch v4.9.0+incompatible // indirect + github.com/go-logr/logr v0.4.0 // indirect + github.com/gobuffalo/here v0.6.0 // indirect + github.com/godbus/dbus/v5 v5.0.3 // indirect + github.com/golang-jwt/jwt/v4 v4.0.0 // indirect + github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect + github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect + github.com/google/gofuzz v1.1.0 // indirect + github.com/google/licenseclassifier v0.0.0-20200402202327-879cb1424de0 // indirect + github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect + github.com/googleapis/gax-go/v2 v2.0.5 // indirect + github.com/googleapis/gnostic v0.4.1 // indirect + github.com/gorilla/websocket v1.4.2 // indirect + github.com/hashicorp/cronexpr v1.1.0 // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.1 // indirect + github.com/hashicorp/go-rootcerts v1.0.2 // indirect + github.com/hashicorp/go-uuid v1.0.2 // indirect + github.com/hashicorp/go-version v1.0.0 // indirect + github.com/imdario/mergo v0.3.6 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/jcmturner/aescts/v2 v2.0.0 // indirect + github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect + github.com/jcmturner/gofork v1.0.0 // indirect + github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect + github.com/jcmturner/rpc/v2 v2.0.3 // indirect + github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect + github.com/json-iterator/go v1.1.10 // indirect + github.com/jstemmer/go-junit-report v0.9.1 // indirect + github.com/karrick/godirwalk v1.15.6 // indirect + github.com/klauspost/compress v1.12.3 // indirect + github.com/markbates/pkger v0.17.0 // indirect + github.com/mattn/go-isatty v0.0.12 // indirect + github.com/mattn/go-runewidth v0.0.9 // indirect + github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/mitchellh/iochan v1.0.0 // indirect + github.com/moby/spdystream v0.2.0 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.1 // indirect + github.com/opencontainers/runc v1.0.0-rc9 // indirect + github.com/pierrec/lz4 v2.6.0+incompatible // indirect + github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b // indirect + github.com/santhosh-tekuri/jsonschema v1.2.4 // indirect + github.com/sergi/go-diff v1.1.0 // indirect + github.com/sirupsen/logrus v1.4.2 // indirect + github.com/stretchr/objx v0.2.0 // indirect + github.com/urso/diag v0.0.0-20200210123136-21b3cc8eb797 // indirect + github.com/urso/go-bin v0.0.0-20180220135811-781c575c9f0e // indirect + github.com/urso/magetools v0.0.0-20190919040553-290c89e0c230 // indirect + github.com/xdg/stringprep v1.0.3 // indirect + go.elastic.co/fastjson v1.1.0 // indirect + go.opencensus.io v0.23.0 // indirect + go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect + golang.org/x/mod v0.4.2 // indirect + golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect + golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + google.golang.org/appengine v1.6.7 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect + honnef.co/go/tools v0.0.1-2020.1.4 // indirect + k8s.io/klog/v2 v2.8.0 // indirect + k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect + k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.1.0 // indirect + sigs.k8s.io/yaml v1.2.0 // indirect +) + replace ( github.com/Microsoft/go-winio => github.com/bi-zone/go-winio v0.4.15 github.com/Shopify/sarama => github.com/elastic/sarama v1.19.1-0.20210823122811-11c3ef800752 @@ -209,5 +302,4 @@ replace ( github.com/google/gopacket => github.com/adriansr/gopacket v1.1.18-0.20200327165309-dd62abfa8a41 github.com/insomniacslk/dhcp => github.com/elastic/dhcp v0.0.0-20200227161230-57ec251c7eb3 // indirect github.com/tonistiigi/fifo => github.com/containerd/fifo v0.0.0-20190816180239-bda0ff6ed73c - golang.org/x/tools => golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0 // release 1.14 ) diff --git a/go.sum b/go.sum index 8c4f650587a..25338202f7c 100644 --- a/go.sum +++ b/go.sum @@ -836,6 +836,12 @@ github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1: github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= github.com/xeipuuv/gojsonschema v0.0.0-20181112162635-ac52e6811b56/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7 h1:0gYLpmzecnaDCoeWxSfEJ7J1b6B/67+NV++4HKQXx+Y= github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7/go.mod h1:aEV29XrmTYFr3CiRxZeGHpkvbwq+prZduBqMaascyCU= go.elastic.co/apm v1.7.2/go.mod h1:tCw6CkOJgkWnzEthFN9HUP1uL3Gjc/Ur6m7gRPLaoH0= @@ -959,6 +965,7 @@ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= @@ -969,9 +976,11 @@ golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210224082022-3d97a244fca7/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210614182718-04defd469f4e h1:XpT3nA5TvE525Ne3hInMh6+GETgn27Zfm9dxsThnX2Q= golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d h1:20cMwl2fHAzkJMEA+8J4JgqBQcQGzbisXo31MIeenXI= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190130055435-99b60b757ec1/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1053,18 +1062,21 @@ golang.org/x/sys v0.0.0-20201015000850-e3ed0017c211/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c h1:F1jZWGFhYfh0Ci55sIpILtKKK8p3i2/krTr0H1rg74I= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e h1:WUoyKPm6nCo1BnNUvPGnFG3T5DUVem42yDJZZ4CNxMA= +golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d h1:SZxvLBoTP5yHO3Frd4z4vrF+DBX9vMVanchswa69toE= @@ -1083,8 +1095,69 @@ golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxb golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba h1:O8mE0/t419eoIwhTFpKVkHiTs/Igowgfkj25AcZrtiE= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0 h1:6txNFSnY+tteYoO+hf01EpdYcYZiurdC9MDIrcUzEu4= -golang.org/x/tools v0.0.0-20200602230032-c00d67ef29d0/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200216192241-b320d3a0f5a2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200509030707-2212a7e161a5/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.6 h1:SIasE1FVIQOWz2GEAHFOmoW7xchJcqlucjSULTL0Ag4= +golang.org/x/tools v0.1.6/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/heartbeat/Dockerfile b/heartbeat/Dockerfile index 12a8db29678..1d2bab491cc 100644 --- a/heartbeat/Dockerfile +++ b/heartbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/journalbeat/Dockerfile b/journalbeat/Dockerfile index 0cb48807b16..354718af081 100644 --- a/journalbeat/Dockerfile +++ b/journalbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/journalbeat/checkpoint/checkpoint_test.go b/journalbeat/checkpoint/checkpoint_test.go index 75d60951664..6f6aa780d9a 100644 --- a/journalbeat/checkpoint/checkpoint_test.go +++ b/journalbeat/checkpoint/checkpoint_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package checkpoint diff --git a/journalbeat/checkpoint/file_unix.go b/journalbeat/checkpoint/file_unix.go index ee3201d6100..248b5301955 100644 --- a/journalbeat/checkpoint/file_unix.go +++ b/journalbeat/checkpoint/file_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package checkpoint diff --git a/journalbeat/cmd/instance/metrics.go b/journalbeat/cmd/instance/metrics.go index 7b569da8dd2..3d75426c809 100644 --- a/journalbeat/cmd/instance/metrics.go +++ b/journalbeat/cmd/instance/metrics.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package instance diff --git a/journalbeat/cmd/instance/metrics_other.go b/journalbeat/cmd/instance/metrics_other.go index 16c5b639cb8..990d5f06b09 100644 --- a/journalbeat/cmd/instance/metrics_other.go +++ b/journalbeat/cmd/instance/metrics_other.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !linux !cgo +//go:build !linux || !cgo +// +build !linux !cgo package instance diff --git a/journalbeat/magefile.go b/journalbeat/magefile.go index 826e19ff138..0ba6de46d4b 100644 --- a/journalbeat/magefile.go +++ b/journalbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/journalbeat/pkg/journalfield/conv_test.go b/journalbeat/pkg/journalfield/conv_test.go index 6625d8e1dc1..9d0be66bbe5 100644 --- a/journalbeat/pkg/journalfield/conv_test.go +++ b/journalbeat/pkg/journalfield/conv_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package journalfield diff --git a/journalbeat/pkg/journalfield/default.go b/journalbeat/pkg/journalfield/default.go index 0ec1be4af6b..7573eb4156d 100644 --- a/journalbeat/pkg/journalfield/default.go +++ b/journalbeat/pkg/journalfield/default.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package journalfield diff --git a/journalbeat/pkg/journalfield/default_other.go b/journalbeat/pkg/journalfield/default_other.go index 5e25ccbf134..22085a0e3d3 100644 --- a/journalbeat/pkg/journalfield/default_other.go +++ b/journalbeat/pkg/journalfield/default_other.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !linux !cgo +//go:build !linux || !cgo +// +build !linux !cgo package journalfield diff --git a/journalbeat/pkg/journalfield/matcher_test.go b/journalbeat/pkg/journalfield/matcher_test.go index 9ce8c63c8a4..82832f3297a 100644 --- a/journalbeat/pkg/journalfield/matcher_test.go +++ b/journalbeat/pkg/journalfield/matcher_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package journalfield diff --git a/journalbeat/pkg/journalread/reader.go b/journalbeat/pkg/journalread/reader.go index 440eeb51de3..ab359f141f4 100644 --- a/journalbeat/pkg/journalread/reader.go +++ b/journalbeat/pkg/journalread/reader.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux && cgo // +build linux,cgo package journalread diff --git a/journalbeat/reader/fields.go b/journalbeat/reader/fields.go index 0b6efc3cdc8..7076a92a19d 100644 --- a/journalbeat/reader/fields.go +++ b/journalbeat/reader/fields.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package reader diff --git a/journalbeat/reader/journal.go b/journalbeat/reader/journal.go index 10aa382a142..93fc3963348 100644 --- a/journalbeat/reader/journal.go +++ b/journalbeat/reader/journal.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,cgo +//go:build linux && cgo +// +build linux,cgo package reader diff --git a/journalbeat/reader/journal_other.go b/journalbeat/reader/journal_other.go index 26f0a7b5f1f..a44d1a07db0 100644 --- a/journalbeat/reader/journal_other.go +++ b/journalbeat/reader/journal_other.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !linux !cgo +//go:build !linux || !cgo +// +build !linux !cgo package reader diff --git a/libbeat/Dockerfile b/libbeat/Dockerfile index 637aca6036c..fe9b4e01a2c 100644 --- a/libbeat/Dockerfile +++ b/libbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/libbeat/api/make_listener_posix.go b/libbeat/api/make_listener_posix.go index 422a1c54291..17b87135fb9 100644 --- a/libbeat/api/make_listener_posix.go +++ b/libbeat/api/make_listener_posix.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !windows +//go:build !windows +// +build !windows package api diff --git a/libbeat/api/make_listener_windows.go b/libbeat/api/make_listener_windows.go index adc9dff4efd..c23f2ab29e6 100644 --- a/libbeat/api/make_listener_windows.go +++ b/libbeat/api/make_listener_windows.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package api diff --git a/libbeat/api/npipe/listener_windows.go b/libbeat/api/npipe/listener_windows.go index 415079ef383..1b0c6f77bef 100644 --- a/libbeat/api/npipe/listener_windows.go +++ b/libbeat/api/npipe/listener_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package npipe diff --git a/libbeat/api/npipe/listener_windows_test.go b/libbeat/api/npipe/listener_windows_test.go index 486bb832d34..5c24d8e86b1 100644 --- a/libbeat/api/npipe/listener_windows_test.go +++ b/libbeat/api/npipe/listener_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package npipe diff --git a/libbeat/api/npipe/listerner_posix.go b/libbeat/api/npipe/listerner_posix.go index ee93e1c23a0..3506c308b8e 100644 --- a/libbeat/api/npipe/listerner_posix.go +++ b/libbeat/api/npipe/listerner_posix.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !windows +//go:build !windows +// +build !windows package npipe diff --git a/libbeat/api/server_windows_test.go b/libbeat/api/server_windows_test.go index 51efc0f1f81..6668ba38a08 100644 --- a/libbeat/api/server_windows_test.go +++ b/libbeat/api/server_windows_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package api diff --git a/libbeat/autodiscover/providers/docker/config.go b/libbeat/autodiscover/providers/docker/config.go index 0af6c2791dd..1fb66cef2b3 100644 --- a/libbeat/autodiscover/providers/docker/config.go +++ b/libbeat/autodiscover/providers/docker/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/autodiscover/providers/docker/docker.go b/libbeat/autodiscover/providers/docker/docker.go index 0af879f9763..00ff4919f1e 100644 --- a/libbeat/autodiscover/providers/docker/docker.go +++ b/libbeat/autodiscover/providers/docker/docker.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/autodiscover/providers/docker/docker_integration_test.go b/libbeat/autodiscover/providers/docker/docker_integration_test.go index 898f3cd254c..28e9d98c0f3 100644 --- a/libbeat/autodiscover/providers/docker/docker_integration_test.go +++ b/libbeat/autodiscover/providers/docker/docker_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package docker diff --git a/libbeat/autodiscover/providers/kubernetes/config.go b/libbeat/autodiscover/providers/kubernetes/config.go index 82e115527aa..5d013aca4ac 100644 --- a/libbeat/autodiscover/providers/kubernetes/config.go +++ b/libbeat/autodiscover/providers/kubernetes/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package kubernetes diff --git a/libbeat/autodiscover/providers/kubernetes/kubernetes.go b/libbeat/autodiscover/providers/kubernetes/kubernetes.go index e09c457d340..1c885b56511 100644 --- a/libbeat/autodiscover/providers/kubernetes/kubernetes.go +++ b/libbeat/autodiscover/providers/kubernetes/kubernetes.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package kubernetes diff --git a/libbeat/cfgfile/cfgfile_test.go b/libbeat/cfgfile/cfgfile_test.go index a5e0900f290..81f530b8956 100644 --- a/libbeat/cfgfile/cfgfile_test.go +++ b/libbeat/cfgfile/cfgfile_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package cfgfile diff --git a/libbeat/cfgfile/reload_test.go b/libbeat/cfgfile/reload_test.go index d52b4f293ff..d98f5ddc1b9 100644 --- a/libbeat/cfgfile/reload_test.go +++ b/libbeat/cfgfile/reload_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package cfgfile diff --git a/libbeat/cmd/instance/beat_test.go b/libbeat/cmd/instance/beat_test.go index e05b4ddb87a..ea23e2dd0aa 100644 --- a/libbeat/cmd/instance/beat_test.go +++ b/libbeat/cmd/instance/beat_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package instance diff --git a/libbeat/cmd/instance/imports_docker.go b/libbeat/cmd/instance/imports_docker.go index 12d379714ed..c4fa957c8d3 100644 --- a/libbeat/cmd/instance/imports_docker.go +++ b/libbeat/cmd/instance/imports_docker.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package instance diff --git a/libbeat/cmd/instance/locker_test.go b/libbeat/cmd/instance/locker_test.go index 7e15517edb5..5ad22f91e49 100644 --- a/libbeat/cmd/instance/locker_test.go +++ b/libbeat/cmd/instance/locker_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package instance diff --git a/libbeat/cmd/instance/metrics/metrics.go b/libbeat/cmd/instance/metrics/metrics.go index 8865b4967c9..0df87a522f3 100644 --- a/libbeat/cmd/instance/metrics/metrics.go +++ b/libbeat/cmd/instance/metrics/metrics.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (darwin && cgo) || (freebsd && cgo) || linux || windows // +build darwin,cgo freebsd,cgo linux windows package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_file_descriptors.go b/libbeat/cmd/instance/metrics/metrics_file_descriptors.go index 14ce5e1e65d..6524cff8c09 100644 --- a/libbeat/cmd/instance/metrics/metrics_file_descriptors.go +++ b/libbeat/cmd/instance/metrics/metrics_file_descriptors.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || (freebsd && cgo) // +build linux freebsd,cgo package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go b/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go index b0cc8b2b8d6..0a3d3943692 100644 --- a/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go +++ b/libbeat/cmd/instance/metrics/metrics_file_descriptors_stub.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && (!freebsd || !cgo) // +build !linux // +build !freebsd !cgo diff --git a/libbeat/cmd/instance/metrics/metrics_handles.go b/libbeat/cmd/instance/metrics/metrics_handles.go index 5de41f7d70b..0ace3016e61 100644 --- a/libbeat/cmd/instance/metrics/metrics_handles.go +++ b/libbeat/cmd/instance/metrics/metrics_handles.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_handles_stub.go b/libbeat/cmd/instance/metrics/metrics_handles_stub.go index fa54b75fecd..5cdfe9fde8c 100644 --- a/libbeat/cmd/instance/metrics/metrics_handles_stub.go +++ b/libbeat/cmd/instance/metrics/metrics_handles_stub.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package metrics diff --git a/libbeat/cmd/instance/metrics/metrics_other.go b/libbeat/cmd/instance/metrics/metrics_other.go index 459d2fcbc68..60cf1776e62 100644 --- a/libbeat/cmd/instance/metrics/metrics_other.go +++ b/libbeat/cmd/instance/metrics/metrics_other.go @@ -15,9 +15,11 @@ // specific language governing permissions and limitations // under the License. +//go:build (!darwin || !cgo) && (!freebsd || !cgo) && !linux && !windows // +build !darwin !cgo // +build !freebsd !cgo -// +build !linux,!windows +// +build !linux +// +build !windows package metrics diff --git a/libbeat/cmd/instance/umask_other.go b/libbeat/cmd/instance/umask_other.go index e3af909f785..ba9245a7f4a 100644 --- a/libbeat/cmd/instance/umask_other.go +++ b/libbeat/cmd/instance/umask_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package instance diff --git a/libbeat/cmd/platformcheck/platformcheck.go b/libbeat/cmd/platformcheck/platformcheck.go index e3ccc50ad06..8823ba9f896 100644 --- a/libbeat/cmd/platformcheck/platformcheck.go +++ b/libbeat/cmd/platformcheck/platformcheck.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || windows // +build linux windows package platformcheck diff --git a/libbeat/cmd/platformcheck/platformcheck_other.go b/libbeat/cmd/platformcheck/platformcheck_other.go index 5ef8d3e8090..502b555821c 100644 --- a/libbeat/cmd/platformcheck/platformcheck_other.go +++ b/libbeat/cmd/platformcheck/platformcheck_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package platformcheck diff --git a/libbeat/common/atomic/atomic32.go b/libbeat/common/atomic/atomic32.go index 17c41392e69..2f776a71693 100644 --- a/libbeat/common/atomic/atomic32.go +++ b/libbeat/common/atomic/atomic32.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build 386 || arm || mips || mipsle // +build 386 arm mips mipsle package atomic diff --git a/libbeat/common/atomic/atomic64.go b/libbeat/common/atomic/atomic64.go index 5d7de52026a..8e1a2a0be06 100644 --- a/libbeat/common/atomic/atomic64.go +++ b/libbeat/common/atomic/atomic64.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build amd64 || arm64 || ppc64 || ppc64le || mips64 || mips64le || s390x // +build amd64 arm64 ppc64 ppc64le mips64 mips64le s390x package atomic diff --git a/libbeat/common/bytes_test.go b/libbeat/common/bytes_test.go index b3738f510c0..a75f4067be3 100644 --- a/libbeat/common/bytes_test.go +++ b/libbeat/common/bytes_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/cache_test.go b/libbeat/common/cache_test.go index eb88bda845f..9ab6d1617e7 100644 --- a/libbeat/common/cache_test.go +++ b/libbeat/common/cache_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/capabilities_linux.go b/libbeat/common/capabilities_linux.go index e05cf99fb72..46d30df8e6d 100644 --- a/libbeat/common/capabilities_linux.go +++ b/libbeat/common/capabilities_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package common diff --git a/libbeat/common/csv_test.go b/libbeat/common/csv_test.go index cc4e62819fe..5bf6a6d3f7a 100644 --- a/libbeat/common/csv_test.go +++ b/libbeat/common/csv_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/datetime_test.go b/libbeat/common/datetime_test.go index f9c2dfab512..7fb071b2e5c 100644 --- a/libbeat/common/datetime_test.go +++ b/libbeat/common/datetime_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/docker/client.go b/libbeat/common/docker/client.go index de29a0f8c22..9efa89aac67 100644 --- a/libbeat/common/docker/client.go +++ b/libbeat/common/docker/client.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/common/docker/client_test.go b/libbeat/common/docker/client_test.go index 1395ea5465d..af6f7c6d089 100644 --- a/libbeat/common/docker/client_test.go +++ b/libbeat/common/docker/client_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && (linux || darwin || windows) // +build integration // +build linux darwin windows diff --git a/libbeat/common/docker/watcher.go b/libbeat/common/docker/watcher.go index 5b490b1e13e..b500e73775e 100644 --- a/libbeat/common/docker/watcher.go +++ b/libbeat/common/docker/watcher.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/common/docker/watcher_test.go b/libbeat/common/docker/watcher_test.go index a0de0567af4..e7908e3fe2b 100644 --- a/libbeat/common/docker/watcher_test.go +++ b/libbeat/common/docker/watcher_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/libbeat/common/encoding/xml/decode_test.go b/libbeat/common/encoding/xml/decode_test.go index 9dd585ac6d7..2e975cd4b99 100644 --- a/libbeat/common/encoding/xml/decode_test.go +++ b/libbeat/common/encoding/xml/decode_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package xml diff --git a/libbeat/common/file/file_other.go b/libbeat/common/file/file_other.go index 86aa193f21b..f57fd01309a 100644 --- a/libbeat/common/file/file_other.go +++ b/libbeat/common/file/file_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/libbeat/common/file/file_other_test.go b/libbeat/common/file/file_other_test.go index efc60b340db..4e07b7facbc 100644 --- a/libbeat/common/file/file_other_test.go +++ b/libbeat/common/file/file_other_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !integration // +build !windows,!integration package file diff --git a/libbeat/common/file/file_windows_test.go b/libbeat/common/file/file_windows_test.go index b2f732712fb..72bceea0b18 100644 --- a/libbeat/common/file/file_windows_test.go +++ b/libbeat/common/file/file_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package file diff --git a/libbeat/common/file/fileinfo_test.go b/libbeat/common/file/fileinfo_test.go index 9df25ba638a..1ca6507b8a8 100644 --- a/libbeat/common/file/fileinfo_test.go +++ b/libbeat/common/file/fileinfo_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !openbsd // +build !windows,!openbsd // Test for openbsd are excluded here as info.GID() returns 0 instead of the actual value diff --git a/libbeat/common/file/fileinfo_unix.go b/libbeat/common/file/fileinfo_unix.go index 07e4288307e..9a0ce88e4e8 100644 --- a/libbeat/common/file/fileinfo_unix.go +++ b/libbeat/common/file/fileinfo_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/libbeat/common/file/helper_other.go b/libbeat/common/file/helper_other.go index 6347b7b2880..a2fdee7ec94 100644 --- a/libbeat/common/file/helper_other.go +++ b/libbeat/common/file/helper_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !aix && !windows // +build !aix,!windows package file diff --git a/libbeat/common/file/helper_test.go b/libbeat/common/file/helper_test.go index 201551b457c..2a936e7994d 100644 --- a/libbeat/common/file/helper_test.go +++ b/libbeat/common/file/helper_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package file diff --git a/libbeat/common/file/stderr_other.go b/libbeat/common/file/stderr_other.go index 408e1f1fe97..d6454ee6804 100644 --- a/libbeat/common/file/stderr_other.go +++ b/libbeat/common/file/stderr_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package file diff --git a/libbeat/common/mapstr_test.go b/libbeat/common/mapstr_test.go index e1ffb8f5ee4..3847d2eda46 100644 --- a/libbeat/common/mapstr_test.go +++ b/libbeat/common/mapstr_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/net_test.go b/libbeat/common/net_test.go index d67c411c76c..5bfd7fb2666 100644 --- a/libbeat/common/net_test.go +++ b/libbeat/common/net_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/streambuf/ascii_test.go b/libbeat/common/streambuf/ascii_test.go index 3ec25c80f0c..833acf69b41 100644 --- a/libbeat/common/streambuf/ascii_test.go +++ b/libbeat/common/streambuf/ascii_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/streambuf/io_test.go b/libbeat/common/streambuf/io_test.go index dcbfb4a232a..604630b7ae4 100644 --- a/libbeat/common/streambuf/io_test.go +++ b/libbeat/common/streambuf/io_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/streambuf/net_test.go b/libbeat/common/streambuf/net_test.go index c3ddcb1a3a4..996d2f0ec2a 100644 --- a/libbeat/common/streambuf/net_test.go +++ b/libbeat/common/streambuf/net_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/streambuf/streambuf_test.go b/libbeat/common/streambuf/streambuf_test.go index b21b1a3f03d..8b40c6b08c5 100644 --- a/libbeat/common/streambuf/streambuf_test.go +++ b/libbeat/common/streambuf/streambuf_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package streambuf diff --git a/libbeat/common/transport/tlscommon/tls_test.go b/libbeat/common/transport/tlscommon/tls_test.go index 5d610af5bf4..7788b65626b 100644 --- a/libbeat/common/transport/tlscommon/tls_test.go +++ b/libbeat/common/transport/tlscommon/tls_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tlscommon diff --git a/libbeat/common/transport/tlscommon/versions_default.go b/libbeat/common/transport/tlscommon/versions_default.go index 77eff7375eb..2d5180864c6 100644 --- a/libbeat/common/transport/tlscommon/versions_default.go +++ b/libbeat/common/transport/tlscommon/versions_default.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build go1.13 // +build go1.13 package tlscommon diff --git a/libbeat/common/transport/tlscommon/versions_legacy.go b/libbeat/common/transport/tlscommon/versions_legacy.go index 4d1a7c72263..18d557a2495 100644 --- a/libbeat/common/transport/tlscommon/versions_legacy.go +++ b/libbeat/common/transport/tlscommon/versions_legacy.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !go1.13 // +build !go1.13 package tlscommon diff --git a/libbeat/common/tuples_test.go b/libbeat/common/tuples_test.go index d111cc62e67..a9292543635 100644 --- a/libbeat/common/tuples_test.go +++ b/libbeat/common/tuples_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/common/url_test.go b/libbeat/common/url_test.go index 1a8f5519b1d..340be8c271a 100644 --- a/libbeat/common/url_test.go +++ b/libbeat/common/url_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package common diff --git a/libbeat/docs/version.asciidoc b/libbeat/docs/version.asciidoc index 78390e58d22..18975272bc4 100644 --- a/libbeat/docs/version.asciidoc +++ b/libbeat/docs/version.asciidoc @@ -1,6 +1,6 @@ :stack-version: 8.0.0 :doc-branch: master -:go-version: 1.16.6 +:go-version: 1.17.1 :release-state: unreleased :python: 3.7 :docker: 1.12 diff --git a/libbeat/esleg/eslegclient/api_integration_test.go b/libbeat/esleg/eslegclient/api_integration_test.go index 986f012fa04..1a5b7c229f4 100644 --- a/libbeat/esleg/eslegclient/api_integration_test.go +++ b/libbeat/esleg/eslegclient/api_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package eslegclient diff --git a/libbeat/esleg/eslegclient/api_mock_test.go b/libbeat/esleg/eslegclient/api_mock_test.go index cfb9b9b722b..0ae6036967a 100644 --- a/libbeat/esleg/eslegclient/api_mock_test.go +++ b/libbeat/esleg/eslegclient/api_mock_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package eslegclient diff --git a/libbeat/esleg/eslegclient/bulkapi_integration_test.go b/libbeat/esleg/eslegclient/bulkapi_integration_test.go index d2201b6e8bd..6c57d55187a 100644 --- a/libbeat/esleg/eslegclient/bulkapi_integration_test.go +++ b/libbeat/esleg/eslegclient/bulkapi_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package eslegclient diff --git a/libbeat/esleg/eslegclient/bulkapi_mock_test.go b/libbeat/esleg/eslegclient/bulkapi_mock_test.go index 3f5c48b731e..895bd6df282 100644 --- a/libbeat/esleg/eslegclient/bulkapi_mock_test.go +++ b/libbeat/esleg/eslegclient/bulkapi_mock_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package eslegclient diff --git a/libbeat/esleg/eslegclient/connection_integration_test.go b/libbeat/esleg/eslegclient/connection_integration_test.go index b1a80a4a996..cf162cf1f9c 100644 --- a/libbeat/esleg/eslegclient/connection_integration_test.go +++ b/libbeat/esleg/eslegclient/connection_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package eslegclient diff --git a/libbeat/esleg/eslegclient/url_test.go b/libbeat/esleg/eslegclient/url_test.go index 8e444a660e4..a8a5912f1c1 100644 --- a/libbeat/esleg/eslegclient/url_test.go +++ b/libbeat/esleg/eslegclient/url_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package eslegclient diff --git a/libbeat/idxmgmt/ilm/client_handler_integration_test.go b/libbeat/idxmgmt/ilm/client_handler_integration_test.go index 4d1e6f5ed64..e8a7d7be713 100644 --- a/libbeat/idxmgmt/ilm/client_handler_integration_test.go +++ b/libbeat/idxmgmt/ilm/client_handler_integration_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build integration +//go:build integration +// +build integration package ilm_test diff --git a/libbeat/licenser/elastic_fetcher_integration_test.go b/libbeat/licenser/elastic_fetcher_integration_test.go index ba1dd21a630..c12f6651bfe 100644 --- a/libbeat/licenser/elastic_fetcher_integration_test.go +++ b/libbeat/licenser/elastic_fetcher_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package licenser diff --git a/libbeat/logp/eventlog_unsupported.go b/libbeat/logp/eventlog_unsupported.go index b37c57da5b1..f63308170b7 100644 --- a/libbeat/logp/eventlog_unsupported.go +++ b/libbeat/logp/eventlog_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package logp diff --git a/libbeat/logp/global.go b/libbeat/logp/global.go index 584379c71a5..7a836aae026 100644 --- a/libbeat/logp/global.go +++ b/libbeat/logp/global.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !nologpglobal +//go:build !nologpglobal +// +build !nologpglobal package logp diff --git a/libbeat/logp/global_test.go b/libbeat/logp/global_test.go index 400dc0a34e4..b0df4262805 100644 --- a/libbeat/logp/global_test.go +++ b/libbeat/logp/global_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !nologpglobal +//go:build !nologpglobal +// +build !nologpglobal package logp diff --git a/libbeat/logp/syslog_unix.go b/libbeat/logp/syslog_unix.go index 45f70ebe47b..c6d28bde039 100644 --- a/libbeat/logp/syslog_unix.go +++ b/libbeat/logp/syslog_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows && !nacl && !plan9 // +build !windows,!nacl,!plan9 package logp diff --git a/libbeat/logp/syslog_unsupported.go b/libbeat/logp/syslog_unsupported.go index 222146cd1c3..677ded92d8d 100644 --- a/libbeat/logp/syslog_unsupported.go +++ b/libbeat/logp/syslog_unsupported.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows || nacl || plan9 // +build windows nacl plan9 package logp diff --git a/libbeat/magefile.go b/libbeat/magefile.go index 67e84e63be3..eddc4f5e7aa 100644 --- a/libbeat/magefile.go +++ b/libbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go b/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go index 646f3ccbf5e..c56c903cfc8 100644 --- a/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go +++ b/libbeat/metric/system/cgroup/cgv2/io_helper_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package cgv2 diff --git a/libbeat/metric/system/cgroup/cgv2/io_helper_other.go b/libbeat/metric/system/cgroup/cgv2/io_helper_other.go index 66758171e52..0897c0e883c 100644 --- a/libbeat/metric/system/cgroup/cgv2/io_helper_other.go +++ b/libbeat/metric/system/cgroup/cgv2/io_helper_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package cgv2 diff --git a/libbeat/metric/system/cpu/cpu.go b/libbeat/metric/system/cpu/cpu.go index fc14652e6ac..24523366413 100644 --- a/libbeat/metric/system/cpu/cpu.go +++ b/libbeat/metric/system/cpu/cpu.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package cpu diff --git a/libbeat/metric/system/diskio/disk_performance_386.go b/libbeat/metric/system/diskio/disk_performance_386.go index cdc9dfc4995..e05dc825004 100644 --- a/libbeat/metric/system/diskio/disk_performance_386.go +++ b/libbeat/metric/system/diskio/disk_performance_386.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/disk_performance_amd64.go b/libbeat/metric/system/diskio/disk_performance_amd64.go index 9a0388a6b24..d925d99d19c 100644 --- a/libbeat/metric/system/diskio/disk_performance_amd64.go +++ b/libbeat/metric/system/diskio/disk_performance_amd64.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat.go b/libbeat/metric/system/diskio/diskstat.go index 3cea37c552a..001f0725da1 100644 --- a/libbeat/metric/system/diskio/diskstat.go +++ b/libbeat/metric/system/diskio/diskstat.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat_linux.go b/libbeat/metric/system/diskio/diskstat_linux.go index 964fbf7663d..fbcd6a47904 100644 --- a/libbeat/metric/system/diskio/diskstat_linux.go +++ b/libbeat/metric/system/diskio/diskstat_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package diskio diff --git a/libbeat/metric/system/diskio/diskstat_linux_test.go b/libbeat/metric/system/diskio/diskstat_linux_test.go index 74c0bef231e..001914097f9 100644 --- a/libbeat/metric/system/diskio/diskstat_linux_test.go +++ b/libbeat/metric/system/diskio/diskstat_linux_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build !integration -// +build linux +//go:build !integration && linux +// +build !integration,linux package diskio diff --git a/libbeat/metric/system/diskio/diskstat_other.go b/libbeat/metric/system/diskio/diskstat_other.go index ad5208b1b4f..8c53d24aea5 100644 --- a/libbeat/metric/system/diskio/diskstat_other.go +++ b/libbeat/metric/system/diskio/diskstat_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (darwin && cgo) || freebsd // +build darwin,cgo freebsd package diskio diff --git a/libbeat/metric/system/diskio/diskstat_windows.go b/libbeat/metric/system/diskio/diskstat_windows.go index 665caab9130..389e928052d 100644 --- a/libbeat/metric/system/diskio/diskstat_windows.go +++ b/libbeat/metric/system/diskio/diskstat_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat_windows_helper.go b/libbeat/metric/system/diskio/diskstat_windows_helper.go index 5d9072fda42..50c30288ff5 100644 --- a/libbeat/metric/system/diskio/diskstat_windows_helper.go +++ b/libbeat/metric/system/diskio/diskstat_windows_helper.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package diskio diff --git a/libbeat/metric/system/diskio/diskstat_windows_test.go b/libbeat/metric/system/diskio/diskstat_windows_test.go index 6218e881346..6d363ea5883 100644 --- a/libbeat/metric/system/diskio/diskstat_windows_test.go +++ b/libbeat/metric/system/diskio/diskstat_windows_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build !integration -// +build windows +//go:build !integration && windows +// +build !integration,windows package diskio diff --git a/libbeat/metric/system/numcpu/cpu_bsd.go b/libbeat/metric/system/numcpu/cpu_bsd.go index 1b0c4142ed4..a3dcb2f82ee 100644 --- a/libbeat/metric/system/numcpu/cpu_bsd.go +++ b/libbeat/metric/system/numcpu/cpu_bsd.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build openbsd || freebsd // +build openbsd freebsd package numcpu diff --git a/libbeat/metric/system/numcpu/cpu_cgo.go b/libbeat/metric/system/numcpu/cpu_cgo.go index fe6da963daf..0fded10405c 100644 --- a/libbeat/metric/system/numcpu/cpu_cgo.go +++ b/libbeat/metric/system/numcpu/cpu_cgo.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (freebsd && !cgo) || (openbsd && !cgo) // +build freebsd,!cgo openbsd,!cgo package numcpu diff --git a/libbeat/metric/system/numcpu/cpu_other.go b/libbeat/metric/system/numcpu/cpu_other.go index 9e7bca21d6f..5737d423382 100644 --- a/libbeat/metric/system/numcpu/cpu_other.go +++ b/libbeat/metric/system/numcpu/cpu_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !freebsd && !openbsd && !windows // +build !linux,!freebsd,!openbsd,!windows package numcpu diff --git a/libbeat/metric/system/process/process.go b/libbeat/metric/system/process/process.go index b28cf073827..3c001ab9031 100644 --- a/libbeat/metric/system/process/process.go +++ b/libbeat/metric/system/process/process.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process diff --git a/libbeat/metric/system/process/process_other.go b/libbeat/metric/system/process/process_other.go index b0132cdf559..1c29c2df46b 100644 --- a/libbeat/metric/system/process/process_other.go +++ b/libbeat/metric/system/process/process_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package process diff --git a/libbeat/metric/system/process/process_test.go b/libbeat/metric/system/process/process_test.go index 712b7808547..bbd65ed3394 100644 --- a/libbeat/metric/system/process/process_test.go +++ b/libbeat/metric/system/process/process_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration && (darwin || freebsd || linux || windows) // +build !integration // +build darwin freebsd linux windows diff --git a/libbeat/monitoring/opts_test.go b/libbeat/monitoring/opts_test.go index b8e0697066e..094c5c23717 100644 --- a/libbeat/monitoring/opts_test.go +++ b/libbeat/monitoring/opts_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitoring diff --git a/libbeat/monitoring/registry_test.go b/libbeat/monitoring/registry_test.go index 4882e93160e..826ce3bd3e8 100644 --- a/libbeat/monitoring/registry_test.go +++ b/libbeat/monitoring/registry_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitoring diff --git a/libbeat/monitoring/visitor_expvar_test.go b/libbeat/monitoring/visitor_expvar_test.go index bcc0ab4083f..fe77e15b1e7 100644 --- a/libbeat/monitoring/visitor_expvar_test.go +++ b/libbeat/monitoring/visitor_expvar_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package monitoring diff --git a/libbeat/outputs/console/console_test.go b/libbeat/outputs/console/console_test.go index ce3b414448d..9a4b9a9439c 100644 --- a/libbeat/outputs/console/console_test.go +++ b/libbeat/outputs/console/console_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package console diff --git a/libbeat/outputs/elasticsearch/bulk_test.go b/libbeat/outputs/elasticsearch/bulk_test.go index 30a44a5c14b..6699d7bd189 100644 --- a/libbeat/outputs/elasticsearch/bulk_test.go +++ b/libbeat/outputs/elasticsearch/bulk_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package elasticsearch diff --git a/libbeat/outputs/elasticsearch/client_integration_test.go b/libbeat/outputs/elasticsearch/client_integration_test.go index 2ad6a1c79b5..2b05f8a3cdb 100644 --- a/libbeat/outputs/elasticsearch/client_integration_test.go +++ b/libbeat/outputs/elasticsearch/client_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package elasticsearch diff --git a/libbeat/outputs/elasticsearch/client_test.go b/libbeat/outputs/elasticsearch/client_test.go index 02be8038c40..2a03d10481d 100644 --- a/libbeat/outputs/elasticsearch/client_test.go +++ b/libbeat/outputs/elasticsearch/client_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package elasticsearch diff --git a/libbeat/outputs/fileout/file_test.go b/libbeat/outputs/fileout/file_test.go index 60eadd2f9c1..172958190fa 100644 --- a/libbeat/outputs/fileout/file_test.go +++ b/libbeat/outputs/fileout/file_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package fileout diff --git a/libbeat/outputs/kafka/kafka_integration_test.go b/libbeat/outputs/kafka/kafka_integration_test.go index af46aa65c73..0cc751d99b9 100644 --- a/libbeat/outputs/kafka/kafka_integration_test.go +++ b/libbeat/outputs/kafka/kafka_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package kafka diff --git a/libbeat/outputs/kafka/partition_test.go b/libbeat/outputs/kafka/partition_test.go index 7e8bcf4af28..81ded3009d0 100644 --- a/libbeat/outputs/kafka/partition_test.go +++ b/libbeat/outputs/kafka/partition_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package kafka diff --git a/libbeat/outputs/logstash/async_test.go b/libbeat/outputs/logstash/async_test.go index 04d97d8c40b..c1fb80b68e8 100644 --- a/libbeat/outputs/logstash/async_test.go +++ b/libbeat/outputs/logstash/async_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/logstash/client_test.go b/libbeat/outputs/logstash/client_test.go index c657b922e2c..424ffa6b3ce 100644 --- a/libbeat/outputs/logstash/client_test.go +++ b/libbeat/outputs/logstash/client_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/logstash/logstash_integration_test.go b/libbeat/outputs/logstash/logstash_integration_test.go index 23db3b37614..e76f4703e67 100644 --- a/libbeat/outputs/logstash/logstash_integration_test.go +++ b/libbeat/outputs/logstash/logstash_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package logstash diff --git a/libbeat/outputs/logstash/sync_test.go b/libbeat/outputs/logstash/sync_test.go index 3ba9e682232..ab95b456d2f 100644 --- a/libbeat/outputs/logstash/sync_test.go +++ b/libbeat/outputs/logstash/sync_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/logstash/window_test.go b/libbeat/outputs/logstash/window_test.go index ab5e64f8508..6886df6e722 100644 --- a/libbeat/outputs/logstash/window_test.go +++ b/libbeat/outputs/logstash/window_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package logstash diff --git a/libbeat/outputs/redis/redis_integration_test.go b/libbeat/outputs/redis/redis_integration_test.go index 3e146cad912..bc1f09f8bc5 100644 --- a/libbeat/outputs/redis/redis_integration_test.go +++ b/libbeat/outputs/redis/redis_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package redis diff --git a/libbeat/plugin/cli.go b/libbeat/plugin/cli.go index 221a163d064..185cfe73997 100644 --- a/libbeat/plugin/cli.go +++ b/libbeat/plugin/cli.go @@ -15,8 +15,9 @@ // specific language governing permissions and limitations // under the License. -//+build linux,go1.8 darwin,go1.10 -//+build cgo +//go:build ((linux && go1.8) || (darwin && go1.10)) && cgo +// +build linux,go1.8 darwin,go1.10 +// +build cgo package plugin diff --git a/libbeat/plugin/cli_stub.go b/libbeat/plugin/cli_stub.go index 3be1dc33250..e920154ec1e 100644 --- a/libbeat/plugin/cli_stub.go +++ b/libbeat/plugin/cli_stub.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo +//go:build (linux && !go1.8) || (darwin && !go1.10) || (!linux && !darwin) || !cgo +// +build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo package plugin diff --git a/libbeat/plugin/load.go b/libbeat/plugin/load.go index f07174309e3..0f9a772bc81 100644 --- a/libbeat/plugin/load.go +++ b/libbeat/plugin/load.go @@ -15,8 +15,9 @@ // specific language governing permissions and limitations // under the License. -//+build linux,go1.8 darwin,go1.10 -//+build cgo +//go:build ((linux && go1.8) || (darwin && go1.10)) && cgo +// +build linux,go1.8 darwin,go1.10 +// +build cgo package plugin diff --git a/libbeat/plugin/load_stub.go b/libbeat/plugin/load_stub.go index 829292bf13f..96e1468af07 100644 --- a/libbeat/plugin/load_stub.go +++ b/libbeat/plugin/load_stub.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo +//go:build (linux && !go1.8) || (darwin && !go1.10) || (!linux && !darwin) || !cgo +// +build linux,!go1.8 darwin,!go1.10 !linux,!darwin !cgo package plugin diff --git a/libbeat/processors/add_docker_metadata/add_docker_metadata.go b/libbeat/processors/add_docker_metadata/add_docker_metadata.go index 1756dfcfe31..ddea3c85b29 100644 --- a/libbeat/processors/add_docker_metadata/add_docker_metadata.go +++ b/libbeat/processors/add_docker_metadata/add_docker_metadata.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_docker_metadata diff --git a/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go b/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go index 91d3315a401..95fa68e3023 100644 --- a/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go +++ b/libbeat/processors/add_docker_metadata/add_docker_metadata_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (linux || darwin || windows) && integration // +build linux darwin windows // +build integration diff --git a/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go b/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go index 625d5a6ec12..eeb41129cfe 100644 --- a/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go +++ b/libbeat/processors/add_docker_metadata/add_docker_metadata_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (linux || darwin || windows) && !integration // +build linux darwin windows // +build !integration diff --git a/libbeat/processors/add_docker_metadata/config.go b/libbeat/processors/add_docker_metadata/config.go index 89e97fa9af4..a9fc1bc255f 100644 --- a/libbeat/processors/add_docker_metadata/config.go +++ b/libbeat/processors/add_docker_metadata/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_docker_metadata diff --git a/libbeat/processors/add_kubernetes_metadata/cache.go b/libbeat/processors/add_kubernetes_metadata/cache.go index 5de52efdc1b..95e6fd19b24 100644 --- a/libbeat/processors/add_kubernetes_metadata/cache.go +++ b/libbeat/processors/add_kubernetes_metadata/cache.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_kubernetes_metadata diff --git a/libbeat/processors/add_kubernetes_metadata/kubernetes.go b/libbeat/processors/add_kubernetes_metadata/kubernetes.go index 5fc0de08171..2f68d6cb044 100644 --- a/libbeat/processors/add_kubernetes_metadata/kubernetes.go +++ b/libbeat/processors/add_kubernetes_metadata/kubernetes.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package add_kubernetes_metadata diff --git a/libbeat/processors/add_process_metadata/gosigar_provider.go b/libbeat/processors/add_process_metadata/gosigar_provider.go index 5a98ea7ec25..38fd56b79c4 100644 --- a/libbeat/processors/add_process_metadata/gosigar_provider.go +++ b/libbeat/processors/add_process_metadata/gosigar_provider.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package add_process_metadata diff --git a/libbeat/processors/decode_xml_wineventlog/decoder.go b/libbeat/processors/decode_xml_wineventlog/decoder.go index c1b7843b18d..51ad30d2b24 100644 --- a/libbeat/processors/decode_xml_wineventlog/decoder.go +++ b/libbeat/processors/decode_xml_wineventlog/decoder.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package decode_xml_wineventlog diff --git a/libbeat/processors/decode_xml_wineventlog/decoder_windows.go b/libbeat/processors/decode_xml_wineventlog/decoder_windows.go index 3b3f7bf3599..0ee26dbf068 100644 --- a/libbeat/processors/decode_xml_wineventlog/decoder_windows.go +++ b/libbeat/processors/decode_xml_wineventlog/decoder_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package decode_xml_wineventlog diff --git a/libbeat/processors/translate_sid/translatesid.go b/libbeat/processors/translate_sid/translatesid.go index 5a7cfcf5fb7..ece511cb24b 100644 --- a/libbeat/processors/translate_sid/translatesid.go +++ b/libbeat/processors/translate_sid/translatesid.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package translate_sid diff --git a/libbeat/processors/translate_sid/translatesid_test.go b/libbeat/processors/translate_sid/translatesid_test.go index bd9ba9e1404..267e726250d 100644 --- a/libbeat/processors/translate_sid/translatesid_test.go +++ b/libbeat/processors/translate_sid/translatesid_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package translate_sid diff --git a/libbeat/publisher/pipeline/stress/stress_test.go b/libbeat/publisher/pipeline/stress/stress_test.go index 04f39e49afd..b12af68681f 100644 --- a/libbeat/publisher/pipeline/stress/stress_test.go +++ b/libbeat/publisher/pipeline/stress/stress_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build stresstest // +build stresstest package stress_test diff --git a/libbeat/reader/multiline/multiline_test.go b/libbeat/reader/multiline/multiline_test.go index 93d36151fa7..e448b9c64a0 100644 --- a/libbeat/reader/multiline/multiline_test.go +++ b/libbeat/reader/multiline/multiline_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package multiline diff --git a/libbeat/reader/readfile/encoding/utf16_test.go b/libbeat/reader/readfile/encoding/utf16_test.go index e38fa7b5851..848d83e4a6b 100644 --- a/libbeat/reader/readfile/encoding/utf16_test.go +++ b/libbeat/reader/readfile/encoding/utf16_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package encoding diff --git a/libbeat/reader/readfile/limit_test.go b/libbeat/reader/readfile/limit_test.go index 08639495952..4acbb58324d 100644 --- a/libbeat/reader/readfile/limit_test.go +++ b/libbeat/reader/readfile/limit_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package readfile diff --git a/libbeat/reader/readfile/line_test.go b/libbeat/reader/readfile/line_test.go index 4f20e4de161..e198a7a342e 100644 --- a/libbeat/reader/readfile/line_test.go +++ b/libbeat/reader/readfile/line_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package readfile diff --git a/libbeat/reader/readfile/strip_newline_test.go b/libbeat/reader/readfile/strip_newline_test.go index 673fceb8c7f..3b3a7cd853d 100644 --- a/libbeat/reader/readfile/strip_newline_test.go +++ b/libbeat/reader/readfile/strip_newline_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package readfile diff --git a/libbeat/service/service_unix.go b/libbeat/service/service_unix.go index 68851d7e54f..245e4cab113 100644 --- a/libbeat/service/service_unix.go +++ b/libbeat/service/service_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package service diff --git a/libbeat/statestore/backend/memlog/util_other.go b/libbeat/statestore/backend/memlog/util_other.go index f975924853a..48049bfe507 100644 --- a/libbeat/statestore/backend/memlog/util_other.go +++ b/libbeat/statestore/backend/memlog/util_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || dragonfly || freebsd || netbsd || openbsd || solaris // +build linux dragonfly freebsd netbsd openbsd solaris package memlog diff --git a/libbeat/template/load_integration_test.go b/libbeat/template/load_integration_test.go index 186c0070c5d..371991810e4 100644 --- a/libbeat/template/load_integration_test.go +++ b/libbeat/template/load_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package template diff --git a/libbeat/template/template_test.go b/libbeat/template/template_test.go index d307d17f1fe..b969c4da670 100644 --- a/libbeat/template/template_test.go +++ b/libbeat/template/template_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package template diff --git a/metricbeat/Dockerfile b/metricbeat/Dockerfile index 20bbbbbe526..6ae72a605ac 100644 --- a/metricbeat/Dockerfile +++ b/metricbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt update \ diff --git a/metricbeat/helper/dialer/dialer_posix.go b/metricbeat/helper/dialer/dialer_posix.go index 400249a7b60..37c1a1af85c 100644 --- a/metricbeat/helper/dialer/dialer_posix.go +++ b/metricbeat/helper/dialer/dialer_posix.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !windows +//go:build !windows +// +build !windows package dialer diff --git a/metricbeat/helper/dialer/dialer_windows.go b/metricbeat/helper/dialer/dialer_windows.go index 35f88c5bcfc..95c72cefaad 100644 --- a/metricbeat/helper/dialer/dialer_windows.go +++ b/metricbeat/helper/dialer/dialer_windows.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package dialer diff --git a/metricbeat/helper/http_windows_test.go b/metricbeat/helper/http_windows_test.go index 2f7f47a5085..57872048f95 100644 --- a/metricbeat/helper/http_windows_test.go +++ b/metricbeat/helper/http_windows_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build windows +//go:build windows +// +build windows package helper diff --git a/metricbeat/helper/server/http/http_test.go b/metricbeat/helper/server/http/http_test.go index 7b7a0a2c7f3..453e1fea486 100644 --- a/metricbeat/helper/server/http/http_test.go +++ b/metricbeat/helper/server/http/http_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package http diff --git a/metricbeat/helper/server/tcp/tcp_test.go b/metricbeat/helper/server/tcp/tcp_test.go index 637dba54159..49eef6cfe87 100644 --- a/metricbeat/helper/server/tcp/tcp_test.go +++ b/metricbeat/helper/server/tcp/tcp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tcp diff --git a/metricbeat/helper/server/udp/udp_test.go b/metricbeat/helper/server/udp/udp_test.go index 2ead3294237..559ec6520ec 100644 --- a/metricbeat/helper/server/udp/udp_test.go +++ b/metricbeat/helper/server/udp/udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package udp diff --git a/metricbeat/helper/socket/netlink.go b/metricbeat/helper/socket/netlink.go index 130c147a49c..90597909c7a 100644 --- a/metricbeat/helper/socket/netlink.go +++ b/metricbeat/helper/socket/netlink.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/helper/socket/ptable.go b/metricbeat/helper/socket/ptable.go index 37ad99b79c5..1aea516b235 100644 --- a/metricbeat/helper/socket/ptable.go +++ b/metricbeat/helper/socket/ptable.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package socket diff --git a/metricbeat/helper/socket/ptable_linux.go b/metricbeat/helper/socket/ptable_linux.go index f08e9fe6144..af248dfd7fb 100644 --- a/metricbeat/helper/socket/ptable_linux.go +++ b/metricbeat/helper/socket/ptable_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/helper/socket/ptable_other.go b/metricbeat/helper/socket/ptable_other.go index 447ba24448c..c74f0c0b7ea 100644 --- a/metricbeat/helper/socket/ptable_other.go +++ b/metricbeat/helper/socket/ptable_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package socket diff --git a/metricbeat/helper/windows/pdh/defs_pdh_windows.go b/metricbeat/helper/windows/pdh/defs_pdh_windows.go index bcc62c4ffd1..b98c4247e03 100644 --- a/metricbeat/helper/windows/pdh/defs_pdh_windows.go +++ b/metricbeat/helper/windows/pdh/defs_pdh_windows.go @@ -18,6 +18,7 @@ // go run mkpdh_defs.go // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT +//go:build ignore // +build ignore package pdh diff --git a/metricbeat/helper/windows/pdh/mkpdh_defs.go b/metricbeat/helper/windows/pdh/mkpdh_defs.go index fd71b98bb27..d7cdebf117e 100644 --- a/metricbeat/helper/windows/pdh/mkpdh_defs.go +++ b/metricbeat/helper/windows/pdh/mkpdh_defs.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package main diff --git a/metricbeat/helper/windows/pdh/pdh_query_windows.go b/metricbeat/helper/windows/pdh/pdh_query_windows.go index aa14553f7dd..6d0c3ebc907 100644 --- a/metricbeat/helper/windows/pdh/pdh_query_windows.go +++ b/metricbeat/helper/windows/pdh/pdh_query_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package pdh diff --git a/metricbeat/helper/windows/pdh/pdh_windows.go b/metricbeat/helper/windows/pdh/pdh_windows.go index 52b7c9d2d3e..28c2e0224af 100644 --- a/metricbeat/helper/windows/pdh/pdh_windows.go +++ b/metricbeat/helper/windows/pdh/pdh_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package pdh diff --git a/metricbeat/helper/windows/run.go b/metricbeat/helper/windows/run.go index b240d5ec479..0a442267ec9 100644 --- a/metricbeat/helper/windows/run.go +++ b/metricbeat/helper/windows/run.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore // This is a simple wrapper to set the GOARCH environment variable, execute the diff --git a/metricbeat/internal/metrics/cpu/metrics_openbsd.go b/metricbeat/internal/metrics/cpu/metrics_openbsd.go index 5768008a3c6..b0d386bc3fe 100644 --- a/metricbeat/internal/metrics/cpu/metrics_openbsd.go +++ b/metricbeat/internal/metrics/cpu/metrics_openbsd.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build openbsd // +build openbsd package cpu diff --git a/metricbeat/internal/metrics/cpu/metrics_procfs_common.go b/metricbeat/internal/metrics/cpu/metrics_procfs_common.go index 5f368f9c702..3d5b36b5d74 100644 --- a/metricbeat/internal/metrics/cpu/metrics_procfs_common.go +++ b/metricbeat/internal/metrics/cpu/metrics_procfs_common.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build freebsd || linux // +build freebsd linux package cpu diff --git a/metricbeat/internal/metrics/memory/memory_test.go b/metricbeat/internal/metrics/memory/memory_test.go index fac1232e2ca..bb350a29678 100644 --- a/metricbeat/internal/metrics/memory/memory_test.go +++ b/metricbeat/internal/metrics/memory/memory_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration && (darwin || freebsd || linux || openbsd || windows) // +build !integration // +build darwin freebsd linux openbsd windows diff --git a/metricbeat/magefile.go b/metricbeat/magefile.go index f35d81009e4..f280bf6741f 100644 --- a/metricbeat/magefile.go +++ b/metricbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/metricbeat/mb/event_test.go b/metricbeat/mb/event_test.go index 50d6857c777..89cd8ac5a1b 100644 --- a/metricbeat/mb/event_test.go +++ b/metricbeat/mb/event_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/lightmodules_test.go b/metricbeat/mb/lightmodules_test.go index 389cc2433c6..f74764b7423 100644 --- a/metricbeat/mb/lightmodules_test.go +++ b/metricbeat/mb/lightmodules_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/mb_test.go b/metricbeat/mb/mb_test.go index f0dedec348c..a03a931bf60 100644 --- a/metricbeat/mb/mb_test.go +++ b/metricbeat/mb/mb_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/module/example_test.go b/metricbeat/mb/module/example_test.go index f07b5edae56..94a014f008c 100644 --- a/metricbeat/mb/module/example_test.go +++ b/metricbeat/mb/module/example_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package module_test diff --git a/metricbeat/mb/module/runner_test.go b/metricbeat/mb/module/runner_test.go index a6396f63ff5..f9e56398d0d 100644 --- a/metricbeat/mb/module/runner_test.go +++ b/metricbeat/mb/module/runner_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package module_test diff --git a/metricbeat/mb/module/wrapper_test.go b/metricbeat/mb/module/wrapper_test.go index 8fcc0230bc9..130ddb9e249 100644 --- a/metricbeat/mb/module/wrapper_test.go +++ b/metricbeat/mb/module/wrapper_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package module_test diff --git a/metricbeat/mb/registry_test.go b/metricbeat/mb/registry_test.go index 98ed4ce8605..a8da638faa7 100644 --- a/metricbeat/mb/registry_test.go +++ b/metricbeat/mb/registry_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mb diff --git a/metricbeat/mb/testing/data/data_test.go b/metricbeat/mb/testing/data/data_test.go index b81b8142676..36fe1b93a5d 100644 --- a/metricbeat/mb/testing/data/data_test.go +++ b/metricbeat/mb/testing/data/data_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !windows && !386 // +build !windows,!386 package data diff --git a/metricbeat/mb/testing/lightmodules_test.go b/metricbeat/mb/testing/lightmodules_test.go index a20f220acc7..b07cedefc63 100644 --- a/metricbeat/mb/testing/lightmodules_test.go +++ b/metricbeat/mb/testing/lightmodules_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package testing diff --git a/metricbeat/module/aerospike/namespace/namespace_integration_test.go b/metricbeat/module/aerospike/namespace/namespace_integration_test.go index 547a49986a6..dc921909ee0 100644 --- a/metricbeat/module/aerospike/namespace/namespace_integration_test.go +++ b/metricbeat/module/aerospike/namespace/namespace_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package namespace diff --git a/metricbeat/module/apache/status/status_integration_test.go b/metricbeat/module/apache/status/status_integration_test.go index b441f63e351..4a6ac7245ef 100644 --- a/metricbeat/module/apache/status/status_integration_test.go +++ b/metricbeat/module/apache/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/apache/status/status_test.go b/metricbeat/module/apache/status/status_test.go index 464defd4623..41eef7d2690 100644 --- a/metricbeat/module/apache/status/status_test.go +++ b/metricbeat/module/apache/status/status_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package status diff --git a/metricbeat/module/beat/beat_integration_test.go b/metricbeat/module/beat/beat_integration_test.go index d96bba4be0f..d14dbdefb5e 100644 --- a/metricbeat/module/beat/beat_integration_test.go +++ b/metricbeat/module/beat/beat_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package beat_test diff --git a/metricbeat/module/beat/state/data_test.go b/metricbeat/module/beat/state/data_test.go index 606853c0206..74c581e3e89 100644 --- a/metricbeat/module/beat/state/data_test.go +++ b/metricbeat/module/beat/state/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state diff --git a/metricbeat/module/beat/stats/data_test.go b/metricbeat/module/beat/stats/data_test.go index 2a2feb408a4..24b97dc4d9f 100644 --- a/metricbeat/module/beat/stats/data_test.go +++ b/metricbeat/module/beat/stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stats diff --git a/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go b/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go index d8ac306bf02..47a2cffe9fb 100644 --- a/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go +++ b/metricbeat/module/ceph/cluster_disk/cluster_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package cluster_disk diff --git a/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go b/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go index 3546f867953..cf4401f3cd8 100644 --- a/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go +++ b/metricbeat/module/ceph/cluster_health/cluster_health_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package cluster_health diff --git a/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go b/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go index 72a07943f23..c1d09d89415 100644 --- a/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go +++ b/metricbeat/module/ceph/cluster_status/cluster_status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package cluster_status diff --git a/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go b/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go index bb7f21f4d70..b5086ce3a34 100644 --- a/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go +++ b/metricbeat/module/ceph/mgr_cluster_disk/mgr_cluster_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_cluster_disk diff --git a/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go b/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go index 3ab6a31574b..400ec268883 100644 --- a/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go +++ b/metricbeat/module/ceph/mgr_cluster_health/mgr_cluster_health_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_cluster_health diff --git a/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go b/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go index a187bfefe9f..bec24da0841 100644 --- a/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go +++ b/metricbeat/module/ceph/mgr_osd_perf/mgr_osd_perf_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_osd_perf diff --git a/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go b/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go index 3dcfb120442..9cd1d031c6f 100644 --- a/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go +++ b/metricbeat/module/ceph/mgr_osd_pool_stats/mgr_osd_pool_stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_osd_pool_stats diff --git a/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go b/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go index 3ecab4bdb45..5cff0117793 100644 --- a/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go +++ b/metricbeat/module/ceph/mgr_osd_tree/mgr_osd_tree_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_osd_tree diff --git a/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go b/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go index e1e625521b8..3518e9b0694 100644 --- a/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go +++ b/metricbeat/module/ceph/mgr_pool_disk/mgr_pool_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package mgr_pool_disk diff --git a/metricbeat/module/ceph/osd_df/osd_df_integration_test.go b/metricbeat/module/ceph/osd_df/osd_df_integration_test.go index 6735749bd70..f4c0d77b1ee 100644 --- a/metricbeat/module/ceph/osd_df/osd_df_integration_test.go +++ b/metricbeat/module/ceph/osd_df/osd_df_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package osd_df diff --git a/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go b/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go index 69d7e3ed7e3..afdd52ab077 100644 --- a/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go +++ b/metricbeat/module/ceph/osd_tree/osd_tree_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package osd_tree diff --git a/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go b/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go index 002acbf0c6a..6f9bd2320b5 100644 --- a/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go +++ b/metricbeat/module/ceph/pool_disk/pool_disk_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package pool_disk diff --git a/metricbeat/module/consul/agent/agent_integration_test.go b/metricbeat/module/consul/agent/agent_integration_test.go index e4e4a585e30..82721f5df16 100644 --- a/metricbeat/module/consul/agent/agent_integration_test.go +++ b/metricbeat/module/consul/agent/agent_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package agent diff --git a/metricbeat/module/consul/agent/agent_test.go b/metricbeat/module/consul/agent/agent_test.go index 8e47bd0b9cd..10d7933d121 100644 --- a/metricbeat/module/consul/agent/agent_test.go +++ b/metricbeat/module/consul/agent/agent_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package agent diff --git a/metricbeat/module/consul/agent/data_integration_test.go b/metricbeat/module/consul/agent/data_integration_test.go index b93677235c7..0f6c71557d6 100644 --- a/metricbeat/module/consul/agent/data_integration_test.go +++ b/metricbeat/module/consul/agent/data_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package agent diff --git a/metricbeat/module/couchbase/bucket/bucket_integration_test.go b/metricbeat/module/couchbase/bucket/bucket_integration_test.go index 4311b07f06b..8782b0688ab 100644 --- a/metricbeat/module/couchbase/bucket/bucket_integration_test.go +++ b/metricbeat/module/couchbase/bucket/bucket_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package bucket diff --git a/metricbeat/module/couchbase/bucket/bucket_test.go b/metricbeat/module/couchbase/bucket/bucket_test.go index 0d39b4bb5fe..b90dcb02bf0 100644 --- a/metricbeat/module/couchbase/bucket/bucket_test.go +++ b/metricbeat/module/couchbase/bucket/bucket_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package bucket diff --git a/metricbeat/module/couchbase/cluster/cluster_integration_test.go b/metricbeat/module/couchbase/cluster/cluster_integration_test.go index 11b136f0bb3..0cdd158a844 100644 --- a/metricbeat/module/couchbase/cluster/cluster_integration_test.go +++ b/metricbeat/module/couchbase/cluster/cluster_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package cluster diff --git a/metricbeat/module/couchbase/cluster/cluster_test.go b/metricbeat/module/couchbase/cluster/cluster_test.go index 8a7c6f5338c..98c1350563d 100644 --- a/metricbeat/module/couchbase/cluster/cluster_test.go +++ b/metricbeat/module/couchbase/cluster/cluster_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package cluster diff --git a/metricbeat/module/couchbase/node/node_integration_test.go b/metricbeat/module/couchbase/node/node_integration_test.go index 63c47e1c565..753045f4026 100644 --- a/metricbeat/module/couchbase/node/node_integration_test.go +++ b/metricbeat/module/couchbase/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package node diff --git a/metricbeat/module/couchbase/node/node_test.go b/metricbeat/module/couchbase/node/node_test.go index b99a2c0b76f..7972c6f35e9 100644 --- a/metricbeat/module/couchbase/node/node_test.go +++ b/metricbeat/module/couchbase/node/node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/couchdb/server/server_integration_test.go b/metricbeat/module/couchdb/server/server_integration_test.go index c3fc3976e96..668fbd996aa 100644 --- a/metricbeat/module/couchdb/server/server_integration_test.go +++ b/metricbeat/module/couchdb/server/server_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package server diff --git a/metricbeat/module/docker/container/container.go b/metricbeat/module/docker/container/container.go index 04c4f123b79..37a5e03f525 100644 --- a/metricbeat/module/docker/container/container.go +++ b/metricbeat/module/docker/container/container.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package container diff --git a/metricbeat/module/docker/container/container_integration_test.go b/metricbeat/module/docker/container/container_integration_test.go index 47b9dff36f6..1ca5aeb15e6 100644 --- a/metricbeat/module/docker/container/container_integration_test.go +++ b/metricbeat/module/docker/container/container_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package container diff --git a/metricbeat/module/docker/cpu/cpu.go b/metricbeat/module/docker/cpu/cpu.go index 0f13fab2248..07c31c63d0c 100644 --- a/metricbeat/module/docker/cpu/cpu.go +++ b/metricbeat/module/docker/cpu/cpu.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package cpu diff --git a/metricbeat/module/docker/cpu/cpu_integration_test.go b/metricbeat/module/docker/cpu/cpu_integration_test.go index 7ef25eb1a4b..531f4355817 100644 --- a/metricbeat/module/docker/cpu/cpu_integration_test.go +++ b/metricbeat/module/docker/cpu/cpu_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package cpu diff --git a/metricbeat/module/docker/diskio/diskio.go b/metricbeat/module/docker/diskio/diskio.go index 6106c52322e..0d59ae91f78 100644 --- a/metricbeat/module/docker/diskio/diskio.go +++ b/metricbeat/module/docker/diskio/diskio.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package diskio diff --git a/metricbeat/module/docker/diskio/diskio_integration_test.go b/metricbeat/module/docker/diskio/diskio_integration_test.go index 0c5cd6a27c6..9fa872becd1 100644 --- a/metricbeat/module/docker/diskio/diskio_integration_test.go +++ b/metricbeat/module/docker/diskio/diskio_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package diskio diff --git a/metricbeat/module/docker/docker.go b/metricbeat/module/docker/docker.go index b4a7b91a1cf..2f12650e587 100644 --- a/metricbeat/module/docker/docker.go +++ b/metricbeat/module/docker/docker.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package docker diff --git a/metricbeat/module/docker/event/event.go b/metricbeat/module/docker/event/event.go index ad9421cb8f0..b752666db9e 100644 --- a/metricbeat/module/docker/event/event.go +++ b/metricbeat/module/docker/event/event.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package event diff --git a/metricbeat/module/docker/event/event_integration_test.go b/metricbeat/module/docker/event/event_integration_test.go index 5d4b7ce7989..27b4927f5f0 100644 --- a/metricbeat/module/docker/event/event_integration_test.go +++ b/metricbeat/module/docker/event/event_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package event diff --git a/metricbeat/module/docker/healthcheck/healthcheck.go b/metricbeat/module/docker/healthcheck/healthcheck.go index 1033af8d692..82860cf6009 100644 --- a/metricbeat/module/docker/healthcheck/healthcheck.go +++ b/metricbeat/module/docker/healthcheck/healthcheck.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package healthcheck diff --git a/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go b/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go index 2f0012ef5e4..c1240bbb67d 100644 --- a/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go +++ b/metricbeat/module/docker/healthcheck/healthcheck_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package healthcheck diff --git a/metricbeat/module/docker/image/image_integration_test.go b/metricbeat/module/docker/image/image_integration_test.go index 1dd56b6d177..181bb6fcc15 100644 --- a/metricbeat/module/docker/image/image_integration_test.go +++ b/metricbeat/module/docker/image/image_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package image diff --git a/metricbeat/module/docker/info/info_integration_test.go b/metricbeat/module/docker/info/info_integration_test.go index 3ec84b09128..1b3b35e6bba 100644 --- a/metricbeat/module/docker/info/info_integration_test.go +++ b/metricbeat/module/docker/info/info_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package info diff --git a/metricbeat/module/docker/memory/memory.go b/metricbeat/module/docker/memory/memory.go index 697dc143eb9..94f1c6b68af 100644 --- a/metricbeat/module/docker/memory/memory.go +++ b/metricbeat/module/docker/memory/memory.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package memory diff --git a/metricbeat/module/docker/memory/memory_integration_test.go b/metricbeat/module/docker/memory/memory_integration_test.go index 6d21e07eb72..fab2f5558d1 100644 --- a/metricbeat/module/docker/memory/memory_integration_test.go +++ b/metricbeat/module/docker/memory/memory_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package memory diff --git a/metricbeat/module/docker/network/network.go b/metricbeat/module/docker/network/network.go index 04e67c95412..0659594439f 100644 --- a/metricbeat/module/docker/network/network.go +++ b/metricbeat/module/docker/network/network.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux || darwin || windows // +build linux darwin windows package network diff --git a/metricbeat/module/docker/network/network_integration_test.go b/metricbeat/module/docker/network/network_integration_test.go index 418d057e247..1a14b2d6137 100644 --- a/metricbeat/module/docker/network/network_integration_test.go +++ b/metricbeat/module/docker/network/network_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package network diff --git a/metricbeat/module/docker/network_summary/config.go b/metricbeat/module/docker/network_summary/config.go index 62e355113b6..56d9c04376c 100644 --- a/metricbeat/module/docker/network_summary/config.go +++ b/metricbeat/module/docker/network_summary/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package network_summary diff --git a/metricbeat/module/docker/network_summary/helper.go b/metricbeat/module/docker/network_summary/helper.go index adb0fdcc75c..a314e7c8f64 100644 --- a/metricbeat/module/docker/network_summary/helper.go +++ b/metricbeat/module/docker/network_summary/helper.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package network_summary diff --git a/metricbeat/module/docker/network_summary/network_summary.go b/metricbeat/module/docker/network_summary/network_summary.go index 8ed3d4c87ef..c437b4e12f4 100644 --- a/metricbeat/module/docker/network_summary/network_summary.go +++ b/metricbeat/module/docker/network_summary/network_summary.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package network_summary diff --git a/metricbeat/module/docker/network_summary/network_summary_test.go b/metricbeat/module/docker/network_summary/network_summary_test.go index fdf6d100f72..59266bf9666 100644 --- a/metricbeat/module/docker/network_summary/network_summary_test.go +++ b/metricbeat/module/docker/network_summary/network_summary_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration || linux // +build integration linux package network_summary diff --git a/metricbeat/module/dropwizard/collector/collector_integration_test.go b/metricbeat/module/dropwizard/collector/collector_integration_test.go index 470cabd18e8..2526446b0eb 100644 --- a/metricbeat/module/dropwizard/collector/collector_integration_test.go +++ b/metricbeat/module/dropwizard/collector/collector_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package collector diff --git a/metricbeat/module/dropwizard/collector/collector_test.go b/metricbeat/module/dropwizard/collector/collector_test.go index 181b6e0812e..a488d94998b 100644 --- a/metricbeat/module/dropwizard/collector/collector_test.go +++ b/metricbeat/module/dropwizard/collector/collector_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collector diff --git a/metricbeat/module/elasticsearch/ccr/data_test.go b/metricbeat/module/elasticsearch/ccr/data_test.go index 155d4a6fc01..9557e772ee4 100644 --- a/metricbeat/module/elasticsearch/ccr/data_test.go +++ b/metricbeat/module/elasticsearch/ccr/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package ccr diff --git a/metricbeat/module/elasticsearch/cluster_stats/data_test.go b/metricbeat/module/elasticsearch/cluster_stats/data_test.go index 4e2c24f2953..a603af03f9a 100644 --- a/metricbeat/module/elasticsearch/cluster_stats/data_test.go +++ b/metricbeat/module/elasticsearch/cluster_stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package cluster_stats diff --git a/metricbeat/module/elasticsearch/elasticsearch_integration_test.go b/metricbeat/module/elasticsearch/elasticsearch_integration_test.go index 36c4703564f..ddea977d7ce 100644 --- a/metricbeat/module/elasticsearch/elasticsearch_integration_test.go +++ b/metricbeat/module/elasticsearch/elasticsearch_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package elasticsearch_test diff --git a/metricbeat/module/elasticsearch/enrich/data_test.go b/metricbeat/module/elasticsearch/enrich/data_test.go index 12b6a804685..b2930c6b79a 100644 --- a/metricbeat/module/elasticsearch/enrich/data_test.go +++ b/metricbeat/module/elasticsearch/enrich/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package enrich diff --git a/metricbeat/module/elasticsearch/index/data_test.go b/metricbeat/module/elasticsearch/index/data_test.go index 7008e181712..fe339f395f5 100644 --- a/metricbeat/module/elasticsearch/index/data_test.go +++ b/metricbeat/module/elasticsearch/index/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package index diff --git a/metricbeat/module/elasticsearch/index_recovery/data_test.go b/metricbeat/module/elasticsearch/index_recovery/data_test.go index 0cfd576237d..c6039b5559d 100644 --- a/metricbeat/module/elasticsearch/index_recovery/data_test.go +++ b/metricbeat/module/elasticsearch/index_recovery/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package index_recovery diff --git a/metricbeat/module/elasticsearch/index_summary/data_test.go b/metricbeat/module/elasticsearch/index_summary/data_test.go index c29be3854be..3383b0a6d76 100644 --- a/metricbeat/module/elasticsearch/index_summary/data_test.go +++ b/metricbeat/module/elasticsearch/index_summary/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package index_summary diff --git a/metricbeat/module/elasticsearch/ml_job/data_test.go b/metricbeat/module/elasticsearch/ml_job/data_test.go index 71ea0205aed..03ede2a7238 100644 --- a/metricbeat/module/elasticsearch/ml_job/data_test.go +++ b/metricbeat/module/elasticsearch/ml_job/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package ml_job diff --git a/metricbeat/module/elasticsearch/node/data_test.go b/metricbeat/module/elasticsearch/node/data_test.go index 2d45181d48b..acc1a409a1d 100644 --- a/metricbeat/module/elasticsearch/node/data_test.go +++ b/metricbeat/module/elasticsearch/node/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/elasticsearch/node/node_test.go b/metricbeat/module/elasticsearch/node/node_test.go index 0b843fc0477..b378db863a4 100644 --- a/metricbeat/module/elasticsearch/node/node_test.go +++ b/metricbeat/module/elasticsearch/node/node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/elasticsearch/node_stats/data_test.go b/metricbeat/module/elasticsearch/node_stats/data_test.go index a48e3106889..5c2e8b21d0b 100644 --- a/metricbeat/module/elasticsearch/node_stats/data_test.go +++ b/metricbeat/module/elasticsearch/node_stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node_stats diff --git a/metricbeat/module/elasticsearch/pending_tasks/data_test.go b/metricbeat/module/elasticsearch/pending_tasks/data_test.go index 2ad0624e0a5..a1bf1a220d4 100644 --- a/metricbeat/module/elasticsearch/pending_tasks/data_test.go +++ b/metricbeat/module/elasticsearch/pending_tasks/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pending_tasks diff --git a/metricbeat/module/elasticsearch/testing.go b/metricbeat/module/elasticsearch/testing.go index 0fd49e0a262..f76e95ed0e7 100644 --- a/metricbeat/module/elasticsearch/testing.go +++ b/metricbeat/module/elasticsearch/testing.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package elasticsearch diff --git a/metricbeat/module/envoyproxy/server/server_integration_test.go b/metricbeat/module/envoyproxy/server/server_integration_test.go index 24e331be8c0..12f8b783e86 100644 --- a/metricbeat/module/envoyproxy/server/server_integration_test.go +++ b/metricbeat/module/envoyproxy/server/server_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package server diff --git a/metricbeat/module/etcd/leader/leader_integration_test.go b/metricbeat/module/etcd/leader/leader_integration_test.go index fb881441045..11a331405ca 100644 --- a/metricbeat/module/etcd/leader/leader_integration_test.go +++ b/metricbeat/module/etcd/leader/leader_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package leader diff --git a/metricbeat/module/etcd/metrics/metrics_integration_test.go b/metricbeat/module/etcd/metrics/metrics_integration_test.go index 89167b7c1ed..a3ec98e0efa 100644 --- a/metricbeat/module/etcd/metrics/metrics_integration_test.go +++ b/metricbeat/module/etcd/metrics/metrics_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package metrics diff --git a/metricbeat/module/etcd/metrics/metrics_test.go b/metricbeat/module/etcd/metrics/metrics_test.go index c3ce0d490b0..8186acef860 100644 --- a/metricbeat/module/etcd/metrics/metrics_test.go +++ b/metricbeat/module/etcd/metrics/metrics_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package metrics diff --git a/metricbeat/module/etcd/self/self_integration_test.go b/metricbeat/module/etcd/self/self_integration_test.go index dfbfff22f15..6c8938dc102 100644 --- a/metricbeat/module/etcd/self/self_integration_test.go +++ b/metricbeat/module/etcd/self/self_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package self diff --git a/metricbeat/module/etcd/store/store_integration_test.go b/metricbeat/module/etcd/store/store_integration_test.go index ad455c4eafb..0caa466d577 100644 --- a/metricbeat/module/etcd/store/store_integration_test.go +++ b/metricbeat/module/etcd/store/store_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package store diff --git a/metricbeat/module/golang/expvar/expvar_integration_test.go b/metricbeat/module/golang/expvar/expvar_integration_test.go index 2e722225cbd..a2baddb3208 100644 --- a/metricbeat/module/golang/expvar/expvar_integration_test.go +++ b/metricbeat/module/golang/expvar/expvar_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package expvar diff --git a/metricbeat/module/golang/heap/heap_integration_test.go b/metricbeat/module/golang/heap/heap_integration_test.go index 8214a11c686..31a0b7b7491 100644 --- a/metricbeat/module/golang/heap/heap_integration_test.go +++ b/metricbeat/module/golang/heap/heap_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package heap diff --git a/metricbeat/module/graphite/server/data_test.go b/metricbeat/module/graphite/server/data_test.go index 066b0a1d868..208d7d30d2c 100644 --- a/metricbeat/module/graphite/server/data_test.go +++ b/metricbeat/module/graphite/server/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package server diff --git a/metricbeat/module/graphite/server/tree_test.go b/metricbeat/module/graphite/server/tree_test.go index de2c6ebd837..69d9bc7eee7 100644 --- a/metricbeat/module/graphite/server/tree_test.go +++ b/metricbeat/module/graphite/server/tree_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package server diff --git a/metricbeat/module/haproxy/info/info_integration_test.go b/metricbeat/module/haproxy/info/info_integration_test.go index aaa653e9791..789ee2738f8 100644 --- a/metricbeat/module/haproxy/info/info_integration_test.go +++ b/metricbeat/module/haproxy/info/info_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package info diff --git a/metricbeat/module/haproxy/stat/stat_integration_test.go b/metricbeat/module/haproxy/stat/stat_integration_test.go index 8edeece69cf..1573ded90f4 100644 --- a/metricbeat/module/haproxy/stat/stat_integration_test.go +++ b/metricbeat/module/haproxy/stat/stat_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stat diff --git a/metricbeat/module/http/json/json_integration_test.go b/metricbeat/module/http/json/json_integration_test.go index 597dca2c9b6..86cd6f204bd 100644 --- a/metricbeat/module/http/json/json_integration_test.go +++ b/metricbeat/module/http/json/json_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package json diff --git a/metricbeat/module/http/json/json_test.go b/metricbeat/module/http/json/json_test.go index c39503e8470..638df7f20e3 100644 --- a/metricbeat/module/http/json/json_test.go +++ b/metricbeat/module/http/json/json_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package json diff --git a/metricbeat/module/jolokia/jmx/jmx_integration_test.go b/metricbeat/module/jolokia/jmx/jmx_integration_test.go index 407ecd9f970..3829c39022d 100644 --- a/metricbeat/module/jolokia/jmx/jmx_integration_test.go +++ b/metricbeat/module/jolokia/jmx/jmx_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package jmx diff --git a/metricbeat/module/kafka/broker/broker_integration_test.go b/metricbeat/module/kafka/broker/broker_integration_test.go index ed16252d3d5..eb9710fd7ab 100644 --- a/metricbeat/module/kafka/broker/broker_integration_test.go +++ b/metricbeat/module/kafka/broker/broker_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package broker diff --git a/metricbeat/module/kafka/consumer/consumer_integration_test.go b/metricbeat/module/kafka/consumer/consumer_integration_test.go index aa4dd6d4dcc..eb989ccd36b 100644 --- a/metricbeat/module/kafka/consumer/consumer_integration_test.go +++ b/metricbeat/module/kafka/consumer/consumer_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package consumer diff --git a/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go b/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go index fe9976fe966..353266b94d7 100644 --- a/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go +++ b/metricbeat/module/kafka/consumergroup/consumergroup_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package consumergroup diff --git a/metricbeat/module/kafka/partition/partition_integration_test.go b/metricbeat/module/kafka/partition/partition_integration_test.go index a78634cb59b..976e5416f00 100644 --- a/metricbeat/module/kafka/partition/partition_integration_test.go +++ b/metricbeat/module/kafka/partition/partition_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package partition diff --git a/metricbeat/module/kafka/producer/producer_integration_test.go b/metricbeat/module/kafka/producer/producer_integration_test.go index b66f5838543..3936f52a28a 100644 --- a/metricbeat/module/kafka/producer/producer_integration_test.go +++ b/metricbeat/module/kafka/producer/producer_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package producer diff --git a/metricbeat/module/kibana/settings/settings_integration_test.go b/metricbeat/module/kibana/settings/settings_integration_test.go index 0a5753c4c52..40ee8aa1144 100644 --- a/metricbeat/module/kibana/settings/settings_integration_test.go +++ b/metricbeat/module/kibana/settings/settings_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package settings diff --git a/metricbeat/module/kibana/settings/settings_test.go b/metricbeat/module/kibana/settings/settings_test.go index 756ef8b5927..63280952312 100644 --- a/metricbeat/module/kibana/settings/settings_test.go +++ b/metricbeat/module/kibana/settings/settings_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package settings diff --git a/metricbeat/module/kibana/stats/data_test.go b/metricbeat/module/kibana/stats/data_test.go index 98c38c44d3c..aeda8279787 100644 --- a/metricbeat/module/kibana/stats/data_test.go +++ b/metricbeat/module/kibana/stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stats diff --git a/metricbeat/module/kibana/stats/stats_integration_test.go b/metricbeat/module/kibana/stats/stats_integration_test.go index 80522f0400d..e9ac99b3170 100644 --- a/metricbeat/module/kibana/stats/stats_integration_test.go +++ b/metricbeat/module/kibana/stats/stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stats diff --git a/metricbeat/module/kibana/stats/stats_test.go b/metricbeat/module/kibana/stats/stats_test.go index a7b76603352..9de3a7c8c52 100644 --- a/metricbeat/module/kibana/stats/stats_test.go +++ b/metricbeat/module/kibana/stats/stats_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package stats diff --git a/metricbeat/module/kibana/status/data_test.go b/metricbeat/module/kibana/status/data_test.go index 73cfcfd0910..89cace6d04c 100644 --- a/metricbeat/module/kibana/status/data_test.go +++ b/metricbeat/module/kibana/status/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package status diff --git a/metricbeat/module/kibana/status/status_integration_test.go b/metricbeat/module/kibana/status/status_integration_test.go index 003dd34f452..4ae08681bd6 100644 --- a/metricbeat/module/kibana/status/status_integration_test.go +++ b/metricbeat/module/kibana/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/kibana/status/status_test.go b/metricbeat/module/kibana/status/status_test.go index 406619a4ccb..aea7ecfd9eb 100644 --- a/metricbeat/module/kibana/status/status_test.go +++ b/metricbeat/module/kibana/status/status_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package status diff --git a/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go b/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go index 807b2c0760e..1fe4e68a23a 100644 --- a/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go +++ b/metricbeat/module/kubernetes/apiserver/apiserver_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package apiserver diff --git a/metricbeat/module/kubernetes/apiserver/apiserver_test.go b/metricbeat/module/kubernetes/apiserver/apiserver_test.go index 2674698b212..674e84c69ac 100644 --- a/metricbeat/module/kubernetes/apiserver/apiserver_test.go +++ b/metricbeat/module/kubernetes/apiserver/apiserver_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package apiserver diff --git a/metricbeat/module/kubernetes/container/container_integration_test.go b/metricbeat/module/kubernetes/container/container_integration_test.go index 18df4cdd2d1..aeb71413da1 100644 --- a/metricbeat/module/kubernetes/container/container_integration_test.go +++ b/metricbeat/module/kubernetes/container/container_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package container diff --git a/metricbeat/module/kubernetes/container/container_test.go b/metricbeat/module/kubernetes/container/container_test.go index 94b98863c31..30009846169 100644 --- a/metricbeat/module/kubernetes/container/container_test.go +++ b/metricbeat/module/kubernetes/container/container_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package container diff --git a/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go b/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go index 285242ebb03..7caff58a918 100644 --- a/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go +++ b/metricbeat/module/kubernetes/controllermanager/controllermanager_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package controllermanager diff --git a/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go b/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go index daa65789b75..bce6c10b92b 100644 --- a/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go +++ b/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package controllermanager diff --git a/metricbeat/module/kubernetes/node/node_integration_test.go b/metricbeat/module/kubernetes/node/node_integration_test.go index 7d1c73bc20b..d26a712c576 100644 --- a/metricbeat/module/kubernetes/node/node_integration_test.go +++ b/metricbeat/module/kubernetes/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package node diff --git a/metricbeat/module/kubernetes/node/node_test.go b/metricbeat/module/kubernetes/node/node_test.go index 311078f1a9b..8c7fcdac4ed 100644 --- a/metricbeat/module/kubernetes/node/node_test.go +++ b/metricbeat/module/kubernetes/node/node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/kubernetes/pod/pod_integration_test.go b/metricbeat/module/kubernetes/pod/pod_integration_test.go index 9202891f84d..d8553fb6690 100644 --- a/metricbeat/module/kubernetes/pod/pod_integration_test.go +++ b/metricbeat/module/kubernetes/pod/pod_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package pod diff --git a/metricbeat/module/kubernetes/pod/pod_test.go b/metricbeat/module/kubernetes/pod/pod_test.go index d6333b0776e..41340e5dede 100644 --- a/metricbeat/module/kubernetes/pod/pod_test.go +++ b/metricbeat/module/kubernetes/pod/pod_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pod diff --git a/metricbeat/module/kubernetes/proxy/proxy_integration_test.go b/metricbeat/module/kubernetes/proxy/proxy_integration_test.go index d596fb545f8..9443094f74d 100644 --- a/metricbeat/module/kubernetes/proxy/proxy_integration_test.go +++ b/metricbeat/module/kubernetes/proxy/proxy_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package proxy diff --git a/metricbeat/module/kubernetes/proxy/proxy_test.go b/metricbeat/module/kubernetes/proxy/proxy_test.go index 72505ba935b..aa9f6a5fb5c 100644 --- a/metricbeat/module/kubernetes/proxy/proxy_test.go +++ b/metricbeat/module/kubernetes/proxy/proxy_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package proxy diff --git a/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go b/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go index 90d986404dc..0778c768806 100644 --- a/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go +++ b/metricbeat/module/kubernetes/scheduler/scheduler_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package scheduler diff --git a/metricbeat/module/kubernetes/scheduler/scheduler_test.go b/metricbeat/module/kubernetes/scheduler/scheduler_test.go index 2356ddb8f98..d115ec5715c 100644 --- a/metricbeat/module/kubernetes/scheduler/scheduler_test.go +++ b/metricbeat/module/kubernetes/scheduler/scheduler_test.go @@ -16,6 +16,7 @@ // under the License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package scheduler diff --git a/metricbeat/module/kubernetes/state_container/state_container_integration_test.go b/metricbeat/module/kubernetes/state_container/state_container_integration_test.go index 6d7a7978250..a3e604c0a25 100644 --- a/metricbeat/module/kubernetes/state_container/state_container_integration_test.go +++ b/metricbeat/module/kubernetes/state_container/state_container_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_container diff --git a/metricbeat/module/kubernetes/state_container/state_container_test.go b/metricbeat/module/kubernetes/state_container/state_container_test.go index c0232bef50b..df6d8f6758e 100644 --- a/metricbeat/module/kubernetes/state_container/state_container_test.go +++ b/metricbeat/module/kubernetes/state_container/state_container_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_container diff --git a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go index 3a0f4ff3659..68e567b8bea 100644 --- a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go +++ b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_cronjob diff --git a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go index dc58e7fb8a7..afc8550b454 100644 --- a/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go +++ b/metricbeat/module/kubernetes/state_cronjob/state_cronjob_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_cronjob diff --git a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go index 649ab87d565..ffbc8cd9280 100644 --- a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go +++ b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_daemonset diff --git a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go index 491033e5b18..ff139fd1be8 100644 --- a/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go +++ b/metricbeat/module/kubernetes/state_daemonset/state_daemonset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_daemonset diff --git a/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go b/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go index 17a38d56ecd..689d2de8136 100644 --- a/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go +++ b/metricbeat/module/kubernetes/state_deployment/state_deployment_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_deployment diff --git a/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go b/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go index b3f01e04f02..f6f2984930d 100644 --- a/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go +++ b/metricbeat/module/kubernetes/state_deployment/state_deployment_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_deployment diff --git a/metricbeat/module/kubernetes/state_job/state_job_integration_test.go b/metricbeat/module/kubernetes/state_job/state_job_integration_test.go index 7d75d72d471..fb61db609ef 100644 --- a/metricbeat/module/kubernetes/state_job/state_job_integration_test.go +++ b/metricbeat/module/kubernetes/state_job/state_job_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_job diff --git a/metricbeat/module/kubernetes/state_job/state_job_test.go b/metricbeat/module/kubernetes/state_job/state_job_test.go index 9b642b44cd2..9eab13ec626 100644 --- a/metricbeat/module/kubernetes/state_job/state_job_test.go +++ b/metricbeat/module/kubernetes/state_job/state_job_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_job diff --git a/metricbeat/module/kubernetes/state_node/state_node_integration_test.go b/metricbeat/module/kubernetes/state_node/state_node_integration_test.go index 13b9af0f929..835d287a195 100644 --- a/metricbeat/module/kubernetes/state_node/state_node_integration_test.go +++ b/metricbeat/module/kubernetes/state_node/state_node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_node diff --git a/metricbeat/module/kubernetes/state_node/state_node_test.go b/metricbeat/module/kubernetes/state_node/state_node_test.go index f64564ef6dc..4689cedef1d 100644 --- a/metricbeat/module/kubernetes/state_node/state_node_test.go +++ b/metricbeat/module/kubernetes/state_node/state_node_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_node diff --git a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go index 7840febd337..d503a13871d 100644 --- a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_persistentvolume diff --git a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go index 26c74643ce1..8cdeb8f00ec 100644 --- a/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolume/state_persistentvolume_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_persistentvolume diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go index 24529123d5d..c944b7d4ed4 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_persistentvolumeclaim diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go index b387971dc3a..97a8b0dad6f 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_persistentvolumeclaim diff --git a/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go b/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go index c269092f067..1b352f46ec1 100644 --- a/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go +++ b/metricbeat/module/kubernetes/state_pod/state_pod_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_pod diff --git a/metricbeat/module/kubernetes/state_pod/state_pod_test.go b/metricbeat/module/kubernetes/state_pod/state_pod_test.go index 9b8920ac020..d1e206019c7 100644 --- a/metricbeat/module/kubernetes/state_pod/state_pod_test.go +++ b/metricbeat/module/kubernetes/state_pod/state_pod_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_pod diff --git a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go index c8b55192706..ad50e8c4153 100644 --- a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go +++ b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_replicaset diff --git a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go index e8ca09f7699..b8f051a7dc9 100644 --- a/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go +++ b/metricbeat/module/kubernetes/state_replicaset/state_replicaset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_replicaset diff --git a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go index 0d3bff3f706..36269d84c57 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go +++ b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_resourcequota diff --git a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go index 00eebbeb389..d1170938399 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go +++ b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_resourcequota diff --git a/metricbeat/module/kubernetes/state_service/state_service_integration_test.go b/metricbeat/module/kubernetes/state_service/state_service_integration_test.go index 895b4c6cd7d..177f07c0b59 100644 --- a/metricbeat/module/kubernetes/state_service/state_service_integration_test.go +++ b/metricbeat/module/kubernetes/state_service/state_service_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_service diff --git a/metricbeat/module/kubernetes/state_service/state_service_test.go b/metricbeat/module/kubernetes/state_service/state_service_test.go index 017e5e40264..35af7c515fc 100644 --- a/metricbeat/module/kubernetes/state_service/state_service_test.go +++ b/metricbeat/module/kubernetes/state_service/state_service_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_service diff --git a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go index bce92bc6ce3..4c44d20d94b 100644 --- a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go +++ b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_statefulset diff --git a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go index 75b7588de02..0b75ed10edc 100644 --- a/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go +++ b/metricbeat/module/kubernetes/state_statefulset/state_statefulset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_statefulset diff --git a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go index 2db797d0ffb..41499e73d31 100644 --- a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go +++ b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package state_storageclass diff --git a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go index 7bcb2627837..04b24e60b72 100644 --- a/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go +++ b/metricbeat/module/kubernetes/state_storageclass/state_storageclass_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package state_storageclass diff --git a/metricbeat/module/kubernetes/system/system_integration_test.go b/metricbeat/module/kubernetes/system/system_integration_test.go index 5b876f0caff..92dc2e795f6 100644 --- a/metricbeat/module/kubernetes/system/system_integration_test.go +++ b/metricbeat/module/kubernetes/system/system_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package system diff --git a/metricbeat/module/kubernetes/system/system_test.go b/metricbeat/module/kubernetes/system/system_test.go index a38d8fd8760..40201e9d81a 100644 --- a/metricbeat/module/kubernetes/system/system_test.go +++ b/metricbeat/module/kubernetes/system/system_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package system diff --git a/metricbeat/module/kubernetes/volume/volume_integration_test.go b/metricbeat/module/kubernetes/volume/volume_integration_test.go index c0934a8cae0..79889d1f5a2 100644 --- a/metricbeat/module/kubernetes/volume/volume_integration_test.go +++ b/metricbeat/module/kubernetes/volume/volume_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && linux // +build integration,linux package volume diff --git a/metricbeat/module/kubernetes/volume/volume_test.go b/metricbeat/module/kubernetes/volume/volume_test.go index 71ca971c5e5..4e45ab7bc7b 100644 --- a/metricbeat/module/kubernetes/volume/volume_test.go +++ b/metricbeat/module/kubernetes/volume/volume_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package volume diff --git a/metricbeat/module/linux/iostat/iostat_test.go b/metricbeat/module/linux/iostat/iostat_test.go index 6a607fc66d4..be955e5fec4 100644 --- a/metricbeat/module/linux/iostat/iostat_test.go +++ b/metricbeat/module/linux/iostat/iostat_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package iostat diff --git a/metricbeat/module/linux/pressure/pressure_test.go b/metricbeat/module/linux/pressure/pressure_test.go index 083efa9d0c0..098b9fcbe76 100644 --- a/metricbeat/module/linux/pressure/pressure_test.go +++ b/metricbeat/module/linux/pressure/pressure_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package pressure diff --git a/metricbeat/module/logstash/logstash_integration_test.go b/metricbeat/module/logstash/logstash_integration_test.go index 62e92d42987..a5b45f7002f 100644 --- a/metricbeat/module/logstash/logstash_integration_test.go +++ b/metricbeat/module/logstash/logstash_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package logstash_test diff --git a/metricbeat/module/logstash/node/data_test.go b/metricbeat/module/logstash/node/data_test.go index 9bc48d9f93b..07a09ef4655 100644 --- a/metricbeat/module/logstash/node/data_test.go +++ b/metricbeat/module/logstash/node/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node diff --git a/metricbeat/module/logstash/node_stats/data_test.go b/metricbeat/module/logstash/node_stats/data_test.go index ff69a8f20ce..58591349342 100644 --- a/metricbeat/module/logstash/node_stats/data_test.go +++ b/metricbeat/module/logstash/node_stats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package node_stats diff --git a/metricbeat/module/memcached/stats/stats_integration_test.go b/metricbeat/module/memcached/stats/stats_integration_test.go index 7c3a6222ae6..3ff727d22e4 100644 --- a/metricbeat/module/memcached/stats/stats_integration_test.go +++ b/metricbeat/module/memcached/stats/stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stats diff --git a/metricbeat/module/mongodb/collstats/collstats_integration_test.go b/metricbeat/module/mongodb/collstats/collstats_integration_test.go index 7d135fb51a3..656246db48c 100644 --- a/metricbeat/module/mongodb/collstats/collstats_integration_test.go +++ b/metricbeat/module/mongodb/collstats/collstats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package collstats diff --git a/metricbeat/module/mongodb/collstats/data_test.go b/metricbeat/module/mongodb/collstats/data_test.go index 5c2c7ae36d5..4797c44d5c1 100644 --- a/metricbeat/module/mongodb/collstats/data_test.go +++ b/metricbeat/module/mongodb/collstats/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collstats diff --git a/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go b/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go index 70c34006ac8..bf5926a17b4 100644 --- a/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go +++ b/metricbeat/module/mongodb/dbstats/dbstats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package dbstats diff --git a/metricbeat/module/mongodb/metrics/metrics_intergration_test.go b/metricbeat/module/mongodb/metrics/metrics_intergration_test.go index c5415356afb..79c09a36f04 100644 --- a/metricbeat/module/mongodb/metrics/metrics_intergration_test.go +++ b/metricbeat/module/mongodb/metrics/metrics_intergration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package metrics diff --git a/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go b/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go index 12f010ee354..78dbdf16d51 100644 --- a/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go +++ b/metricbeat/module/mongodb/replstatus/replstatus_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package replstatus diff --git a/metricbeat/module/mongodb/status/status_integration_test.go b/metricbeat/module/mongodb/status/status_integration_test.go index 0d69a03d3f7..36dbe53987e 100644 --- a/metricbeat/module/mongodb/status/status_integration_test.go +++ b/metricbeat/module/mongodb/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/munin/node/node_integration_test.go b/metricbeat/module/munin/node/node_integration_test.go index 2fd4f0396ae..2fbd0f4b9eb 100644 --- a/metricbeat/module/munin/node/node_integration_test.go +++ b/metricbeat/module/munin/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package node diff --git a/metricbeat/module/mysql/mysql_integration_test.go b/metricbeat/module/mysql/mysql_integration_test.go index 585cf011f9e..83e07ce0d3f 100644 --- a/metricbeat/module/mysql/mysql_integration_test.go +++ b/metricbeat/module/mysql/mysql_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package mysql diff --git a/metricbeat/module/mysql/mysql_test.go b/metricbeat/module/mysql/mysql_test.go index 1497dc78c35..767cfad4a53 100644 --- a/metricbeat/module/mysql/mysql_test.go +++ b/metricbeat/module/mysql/mysql_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mysql diff --git a/metricbeat/module/mysql/status/status_integration_test.go b/metricbeat/module/mysql/status/status_integration_test.go index 2b0b2a510d9..506f7955c7a 100644 --- a/metricbeat/module/mysql/status/status_integration_test.go +++ b/metricbeat/module/mysql/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/nats/connection/connection_integration_test.go b/metricbeat/module/nats/connection/connection_integration_test.go index f6acb058ffc..aee8b8e1726 100644 --- a/metricbeat/module/nats/connection/connection_integration_test.go +++ b/metricbeat/module/nats/connection/connection_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package connection diff --git a/metricbeat/module/nats/connections/connections_integration_test.go b/metricbeat/module/nats/connections/connections_integration_test.go index e9a51aa8deb..497618a49fd 100644 --- a/metricbeat/module/nats/connections/connections_integration_test.go +++ b/metricbeat/module/nats/connections/connections_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package connections diff --git a/metricbeat/module/nats/route/route_integration_test.go b/metricbeat/module/nats/route/route_integration_test.go index f54a0ff3f6e..3eb8449cd4b 100644 --- a/metricbeat/module/nats/route/route_integration_test.go +++ b/metricbeat/module/nats/route/route_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package route diff --git a/metricbeat/module/nats/routes/routes_integration_test.go b/metricbeat/module/nats/routes/routes_integration_test.go index 2ffb1a64f2a..4a4660e89ab 100644 --- a/metricbeat/module/nats/routes/routes_integration_test.go +++ b/metricbeat/module/nats/routes/routes_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package routes diff --git a/metricbeat/module/nats/stats/stats_integration_test.go b/metricbeat/module/nats/stats/stats_integration_test.go index 56b50fc01c3..9c9d67c207e 100644 --- a/metricbeat/module/nats/stats/stats_integration_test.go +++ b/metricbeat/module/nats/stats/stats_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stats diff --git a/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go b/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go index 0d0b03f71a4..ca1350b2b1b 100644 --- a/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go +++ b/metricbeat/module/nats/subscriptions/subscriptions_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package subscriptions diff --git a/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go b/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go index c1024f918f0..307d6a9734a 100644 --- a/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go +++ b/metricbeat/module/nginx/stubstatus/stubstatus_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package stubstatus diff --git a/metricbeat/module/openmetrics/collector/collector_test.go b/metricbeat/module/openmetrics/collector/collector_test.go index 072755f3f75..06a48f15a0b 100644 --- a/metricbeat/module/openmetrics/collector/collector_test.go +++ b/metricbeat/module/openmetrics/collector/collector_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collector diff --git a/metricbeat/module/php_fpm/pool/pool_integration_test.go b/metricbeat/module/php_fpm/pool/pool_integration_test.go index 84be99e00fb..857583aff1b 100644 --- a/metricbeat/module/php_fpm/pool/pool_integration_test.go +++ b/metricbeat/module/php_fpm/pool/pool_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package pool diff --git a/metricbeat/module/php_fpm/pool/pool_test.go b/metricbeat/module/php_fpm/pool/pool_test.go index ec3ea2f5a71..59c3dafca2a 100644 --- a/metricbeat/module/php_fpm/pool/pool_test.go +++ b/metricbeat/module/php_fpm/pool/pool_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pool diff --git a/metricbeat/module/php_fpm/process/process_integration_test.go b/metricbeat/module/php_fpm/process/process_integration_test.go index 0cb8f3fa1a5..25e64ab18e9 100644 --- a/metricbeat/module/php_fpm/process/process_integration_test.go +++ b/metricbeat/module/php_fpm/process/process_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package process diff --git a/metricbeat/module/php_fpm/process/process_test.go b/metricbeat/module/php_fpm/process/process_test.go index 7726226a27d..e2e593a1230 100644 --- a/metricbeat/module/php_fpm/process/process_test.go +++ b/metricbeat/module/php_fpm/process/process_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package process diff --git a/metricbeat/module/postgresql/activity/activity_integration_test.go b/metricbeat/module/postgresql/activity/activity_integration_test.go index 5cf46489d7f..c4fd5cbd28b 100644 --- a/metricbeat/module/postgresql/activity/activity_integration_test.go +++ b/metricbeat/module/postgresql/activity/activity_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package activity diff --git a/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go b/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go index 0302e6bf292..077ac2de9d6 100644 --- a/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go +++ b/metricbeat/module/postgresql/bgwriter/bgwriter_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package bgwriter diff --git a/metricbeat/module/postgresql/database/database_integration_test.go b/metricbeat/module/postgresql/database/database_integration_test.go index 08d17b23576..648104de5d5 100644 --- a/metricbeat/module/postgresql/database/database_integration_test.go +++ b/metricbeat/module/postgresql/database/database_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package database diff --git a/metricbeat/module/postgresql/statement/statement_integration_test.go b/metricbeat/module/postgresql/statement/statement_integration_test.go index 365a5acbdb8..e8180a627ba 100644 --- a/metricbeat/module/postgresql/statement/statement_integration_test.go +++ b/metricbeat/module/postgresql/statement/statement_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package statement diff --git a/metricbeat/module/prometheus/collector/collector_test.go b/metricbeat/module/prometheus/collector/collector_test.go index 541b83b8f83..6432a686ec3 100644 --- a/metricbeat/module/prometheus/collector/collector_test.go +++ b/metricbeat/module/prometheus/collector/collector_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package collector diff --git a/metricbeat/module/prometheus/query/query_integration_test.go b/metricbeat/module/prometheus/query/query_integration_test.go index a54c9f1daf8..d3bdb0f5706 100644 --- a/metricbeat/module/prometheus/query/query_integration_test.go +++ b/metricbeat/module/prometheus/query/query_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package query diff --git a/metricbeat/module/rabbitmq/node/node_integration_test.go b/metricbeat/module/rabbitmq/node/node_integration_test.go index 76d13ce863f..0a386988319 100644 --- a/metricbeat/module/rabbitmq/node/node_integration_test.go +++ b/metricbeat/module/rabbitmq/node/node_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package node diff --git a/metricbeat/module/redis/info/info_integration_test.go b/metricbeat/module/redis/info/info_integration_test.go index 044685d4885..672bccf77c7 100644 --- a/metricbeat/module/redis/info/info_integration_test.go +++ b/metricbeat/module/redis/info/info_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package info diff --git a/metricbeat/module/redis/key/key_integration_test.go b/metricbeat/module/redis/key/key_integration_test.go index e90c88f922e..850b19510be 100644 --- a/metricbeat/module/redis/key/key_integration_test.go +++ b/metricbeat/module/redis/key/key_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package key diff --git a/metricbeat/module/redis/keyspace/keyspace_integration_test.go b/metricbeat/module/redis/keyspace/keyspace_integration_test.go index 65a6591e3ff..3c146cb2940 100644 --- a/metricbeat/module/redis/keyspace/keyspace_integration_test.go +++ b/metricbeat/module/redis/keyspace/keyspace_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package keyspace diff --git a/metricbeat/module/redis/metricset_integration_test.go b/metricbeat/module/redis/metricset_integration_test.go index b6abbe6e07d..3277e864b09 100644 --- a/metricbeat/module/redis/metricset_integration_test.go +++ b/metricbeat/module/redis/metricset_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package redis diff --git a/metricbeat/module/redis/metricset_test.go b/metricbeat/module/redis/metricset_test.go index 6e023515406..4540ee1d26c 100644 --- a/metricbeat/module/redis/metricset_test.go +++ b/metricbeat/module/redis/metricset_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package redis diff --git a/metricbeat/module/redis/redis_integration_test.go b/metricbeat/module/redis/redis_integration_test.go index abe91d77e68..92b38af6e5a 100644 --- a/metricbeat/module/redis/redis_integration_test.go +++ b/metricbeat/module/redis/redis_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package redis diff --git a/metricbeat/module/system/core/core.go b/metricbeat/module/system/core/core.go index fddb0162739..3e35800bfbc 100644 --- a/metricbeat/module/system/core/core.go +++ b/metricbeat/module/system/core/core.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package core diff --git a/metricbeat/module/system/core/core_test.go b/metricbeat/module/system/core/core_test.go index dd403375711..dd1b2d87d36 100644 --- a/metricbeat/module/system/core/core_test.go +++ b/metricbeat/module/system/core/core_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package core diff --git a/metricbeat/module/system/cpu/cpu.go b/metricbeat/module/system/cpu/cpu.go index ebf1f64d846..f992194d9b3 100644 --- a/metricbeat/module/system/cpu/cpu.go +++ b/metricbeat/module/system/cpu/cpu.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package cpu diff --git a/metricbeat/module/system/cpu/cpu_test.go b/metricbeat/module/system/cpu/cpu_test.go index 861be685bb5..cbdf3e8b0a9 100644 --- a/metricbeat/module/system/cpu/cpu_test.go +++ b/metricbeat/module/system/cpu/cpu_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package cpu diff --git a/metricbeat/module/system/diskio/diskio.go b/metricbeat/module/system/diskio/diskio.go index 30578f972ad..b47e2e76c15 100644 --- a/metricbeat/module/system/diskio/diskio.go +++ b/metricbeat/module/system/diskio/diskio.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build (darwin && cgo) || freebsd || linux || windows // +build darwin,cgo freebsd linux windows package diskio diff --git a/metricbeat/module/system/diskio/diskio_test.go b/metricbeat/module/system/diskio/diskio_test.go index f157f5fcf12..39fce062c0a 100644 --- a/metricbeat/module/system/diskio/diskio_test.go +++ b/metricbeat/module/system/diskio/diskio_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration && ((darwin && cgo) || freebsd || linux || windows) // +build integration // +build darwin,cgo freebsd linux windows diff --git a/metricbeat/module/system/entropy/entropy.go b/metricbeat/module/system/entropy/entropy.go index 3604c9d59fc..502ff29f933 100644 --- a/metricbeat/module/system/entropy/entropy.go +++ b/metricbeat/module/system/entropy/entropy.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package entropy diff --git a/metricbeat/module/system/entropy/entropy_test.go b/metricbeat/module/system/entropy/entropy_test.go index 8c9f6805bbe..27142581eb0 100644 --- a/metricbeat/module/system/entropy/entropy_test.go +++ b/metricbeat/module/system/entropy/entropy_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package entropy diff --git a/metricbeat/module/system/filesystem/filesystem.go b/metricbeat/module/system/filesystem/filesystem.go index 765a874cb75..579f1daaf6d 100644 --- a/metricbeat/module/system/filesystem/filesystem.go +++ b/metricbeat/module/system/filesystem/filesystem.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package filesystem diff --git a/metricbeat/module/system/filesystem/filesystem_test.go b/metricbeat/module/system/filesystem/filesystem_test.go index 87ea5c072f3..bc3ba234469 100644 --- a/metricbeat/module/system/filesystem/filesystem_test.go +++ b/metricbeat/module/system/filesystem/filesystem_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package filesystem diff --git a/metricbeat/module/system/filesystem/helper.go b/metricbeat/module/system/filesystem/helper.go index cd6e338c0e2..b42504d8825 100644 --- a/metricbeat/module/system/filesystem/helper.go +++ b/metricbeat/module/system/filesystem/helper.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package filesystem diff --git a/metricbeat/module/system/filesystem/helper_test.go b/metricbeat/module/system/filesystem/helper_test.go index 7ee8d997ccb..1f7d0027f5a 100644 --- a/metricbeat/module/system/filesystem/helper_test.go +++ b/metricbeat/module/system/filesystem/helper_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration && (darwin || freebsd || linux || openbsd || windows) // +build !integration // +build darwin freebsd linux openbsd windows diff --git a/metricbeat/module/system/fsstat/fsstat.go b/metricbeat/module/system/fsstat/fsstat.go index 0f43cf4af55..ab80640a0c4 100644 --- a/metricbeat/module/system/fsstat/fsstat.go +++ b/metricbeat/module/system/fsstat/fsstat.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package fsstat diff --git a/metricbeat/module/system/fsstat/fsstat_test.go b/metricbeat/module/system/fsstat/fsstat_test.go index df591a10898..acfc08b12ec 100644 --- a/metricbeat/module/system/fsstat/fsstat_test.go +++ b/metricbeat/module/system/fsstat/fsstat_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package fsstat diff --git a/metricbeat/module/system/load/load.go b/metricbeat/module/system/load/load.go index 0a991542a7d..8e49c60a884 100644 --- a/metricbeat/module/system/load/load.go +++ b/metricbeat/module/system/load/load.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd // +build darwin freebsd linux openbsd package load diff --git a/metricbeat/module/system/load/load_test.go b/metricbeat/module/system/load/load_test.go index 6a8fadcc797..0c5f73caf8a 100644 --- a/metricbeat/module/system/load/load_test.go +++ b/metricbeat/module/system/load/load_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd // +build darwin freebsd linux openbsd package load diff --git a/metricbeat/module/system/memory/helper_other.go b/metricbeat/module/system/memory/helper_other.go index adbeba59aa6..7abb4f770a8 100644 --- a/metricbeat/module/system/memory/helper_other.go +++ b/metricbeat/module/system/memory/helper_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || aix || openbsd || windows // +build darwin freebsd aix openbsd windows package memory diff --git a/metricbeat/module/system/memory/memory.go b/metricbeat/module/system/memory/memory.go index 54565231c53..4b0a6f816b5 100644 --- a/metricbeat/module/system/memory/memory.go +++ b/metricbeat/module/system/memory/memory.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows // +build darwin freebsd linux openbsd windows package memory diff --git a/metricbeat/module/system/memory/memory_test.go b/metricbeat/module/system/memory/memory_test.go index 515bfcb26b8..4a5da887ea4 100644 --- a/metricbeat/module/system/memory/memory_test.go +++ b/metricbeat/module/system/memory/memory_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || openbsd || windows || aix // +build darwin freebsd linux openbsd windows aix package memory diff --git a/metricbeat/module/system/network/network.go b/metricbeat/module/system/network/network.go index b50a91d3eb0..63b33da4944 100644 --- a/metricbeat/module/system/network/network.go +++ b/metricbeat/module/system/network/network.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package network diff --git a/metricbeat/module/system/network/network_test.go b/metricbeat/module/system/network/network_test.go index 999a1b91cde..11b8b433de9 100644 --- a/metricbeat/module/system/network/network_test.go +++ b/metricbeat/module/system/network/network_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package network diff --git a/metricbeat/module/system/process/process.go b/metricbeat/module/system/process/process.go index 9928f34bdf5..a36e3bb3459 100644 --- a/metricbeat/module/system/process/process.go +++ b/metricbeat/module/system/process/process.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process diff --git a/metricbeat/module/system/process/process_test.go b/metricbeat/module/system/process/process_test.go index 36cdb291ef8..a66f3a6386c 100644 --- a/metricbeat/module/system/process/process_test.go +++ b/metricbeat/module/system/process/process_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process diff --git a/metricbeat/module/system/process_summary/process_summary.go b/metricbeat/module/system/process_summary/process_summary.go index 5edb31f9182..a4f0e7b204a 100644 --- a/metricbeat/module/system/process_summary/process_summary.go +++ b/metricbeat/module/system/process_summary/process_summary.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process_summary diff --git a/metricbeat/module/system/process_summary/process_summary_test.go b/metricbeat/module/system/process_summary/process_summary_test.go index c95e361224c..22bdf2ae69f 100644 --- a/metricbeat/module/system/process_summary/process_summary_test.go +++ b/metricbeat/module/system/process_summary/process_summary_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || freebsd || linux || windows // +build darwin freebsd linux windows package process_summary diff --git a/metricbeat/module/system/service/data.go b/metricbeat/module/system/service/data.go index 077c3770f4e..28ce962f329 100644 --- a/metricbeat/module/system/service/data.go +++ b/metricbeat/module/system/service/data.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/service/dbus.go b/metricbeat/module/system/service/dbus.go index c3c5bf1dc41..c795864bd55 100644 --- a/metricbeat/module/system/service/dbus.go +++ b/metricbeat/module/system/service/dbus.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/service/service.go b/metricbeat/module/system/service/service.go index 850a86b0a98..772fad74acd 100644 --- a/metricbeat/module/system/service/service.go +++ b/metricbeat/module/system/service/service.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/service/service_test.go b/metricbeat/module/system/service/service_test.go index 87581ff45f8..bfa2ad6a319 100644 --- a/metricbeat/module/system/service/service_test.go +++ b/metricbeat/module/system/service/service_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build !netbsd +//go:build !netbsd +// +build !netbsd package service diff --git a/metricbeat/module/system/socket/socket.go b/metricbeat/module/system/socket/socket.go index 6b768b56551..2e290bddaf2 100644 --- a/metricbeat/module/system/socket/socket.go +++ b/metricbeat/module/system/socket/socket.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/module/system/socket/socket_test.go b/metricbeat/module/system/socket/socket_test.go index 6c92125646d..38d63c55026 100644 --- a/metricbeat/module/system/socket/socket_test.go +++ b/metricbeat/module/system/socket/socket_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket diff --git a/metricbeat/module/system/socket_summary/sockstat_linux.go b/metricbeat/module/system/socket_summary/sockstat_linux.go index 70d4919f43a..9aff1d6b002 100644 --- a/metricbeat/module/system/socket_summary/sockstat_linux.go +++ b/metricbeat/module/system/socket_summary/sockstat_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket_summary diff --git a/metricbeat/module/system/socket_summary/sockstat_linux_test.go b/metricbeat/module/system/socket_summary/sockstat_linux_test.go index 03d1f30afea..e266000d09e 100644 --- a/metricbeat/module/system/socket_summary/sockstat_linux_test.go +++ b/metricbeat/module/system/socket_summary/sockstat_linux_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package socket_summary diff --git a/metricbeat/module/system/socket_summary/sockstat_other.go b/metricbeat/module/system/socket_summary/sockstat_other.go index 5d87f40cdd9..1df924647b8 100644 --- a/metricbeat/module/system/socket_summary/sockstat_other.go +++ b/metricbeat/module/system/socket_summary/sockstat_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package socket_summary diff --git a/metricbeat/module/system/system_other.go b/metricbeat/module/system/system_other.go index 01c0053e922..6b99c5c3fed 100644 --- a/metricbeat/module/system/system_other.go +++ b/metricbeat/module/system/system_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package system diff --git a/metricbeat/module/system/uptime/uptime.go b/metricbeat/module/system/uptime/uptime.go index cbefa8bd4b4..12e4ec7ac4c 100644 --- a/metricbeat/module/system/uptime/uptime.go +++ b/metricbeat/module/system/uptime/uptime.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || linux || openbsd || windows || (freebsd && cgo) // +build darwin linux openbsd windows freebsd,cgo package uptime diff --git a/metricbeat/module/system/uptime/uptime_test.go b/metricbeat/module/system/uptime/uptime_test.go index d0542c50db0..d1ae484cac6 100644 --- a/metricbeat/module/system/uptime/uptime_test.go +++ b/metricbeat/module/system/uptime/uptime_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin || linux || openbsd || windows || (freebsd && cgo) // +build darwin linux openbsd windows freebsd,cgo package uptime diff --git a/metricbeat/module/system/users/dbus.go b/metricbeat/module/system/users/dbus.go index 3d8177f3d76..fc43642784c 100644 --- a/metricbeat/module/system/users/dbus.go +++ b/metricbeat/module/system/users/dbus.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux +//go:build linux +// +build linux package users diff --git a/metricbeat/module/system/users/users.go b/metricbeat/module/system/users/users.go index 11064c67eb0..84311b83725 100644 --- a/metricbeat/module/system/users/users.go +++ b/metricbeat/module/system/users/users.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux +//go:build linux +// +build linux package users diff --git a/metricbeat/module/system/users/users_test.go b/metricbeat/module/system/users/users_test.go index 11a6a09bdee..fffc67e4b9b 100644 --- a/metricbeat/module/system/users/users_test.go +++ b/metricbeat/module/system/users/users_test.go @@ -15,7 +15,8 @@ // specific language governing permissions and limitations // under the License. -//+build linux +//go:build linux +// +build linux package users diff --git a/metricbeat/module/traefik/health/data_test.go b/metricbeat/module/traefik/health/data_test.go index ad710e43d2e..26b5a840f02 100644 --- a/metricbeat/module/traefik/health/data_test.go +++ b/metricbeat/module/traefik/health/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package health diff --git a/metricbeat/module/traefik/health/health_integration_test.go b/metricbeat/module/traefik/health/health_integration_test.go index 6f9aa36f48b..8b621a329b9 100644 --- a/metricbeat/module/traefik/health/health_integration_test.go +++ b/metricbeat/module/traefik/health/health_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package health diff --git a/metricbeat/module/traefik/health/health_test.go b/metricbeat/module/traefik/health/health_test.go index 7d96d7d88fa..a95adc7fcbf 100644 --- a/metricbeat/module/traefik/health/health_test.go +++ b/metricbeat/module/traefik/health/health_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package health diff --git a/metricbeat/module/uwsgi/status/status_integration_test.go b/metricbeat/module/uwsgi/status/status_integration_test.go index a9f32e6690d..0cf0cbc8620 100644 --- a/metricbeat/module/uwsgi/status/status_integration_test.go +++ b/metricbeat/module/uwsgi/status/status_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package status diff --git a/metricbeat/module/windows/perfmon/config.go b/metricbeat/module/windows/perfmon/config.go index 39d86b2cc80..18354b94258 100644 --- a/metricbeat/module/windows/perfmon/config.go +++ b/metricbeat/module/windows/perfmon/config.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/config_test.go b/metricbeat/module/windows/perfmon/config_test.go index 8f96a9ca1ed..51330b4e60e 100644 --- a/metricbeat/module/windows/perfmon/config_test.go +++ b/metricbeat/module/windows/perfmon/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/data.go b/metricbeat/module/windows/perfmon/data.go index 3a2adb413ea..691e0b7041c 100644 --- a/metricbeat/module/windows/perfmon/data.go +++ b/metricbeat/module/windows/perfmon/data.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/data_test.go b/metricbeat/module/windows/perfmon/data_test.go index ea5f72fe143..67ec8b58470 100644 --- a/metricbeat/module/windows/perfmon/data_test.go +++ b/metricbeat/module/windows/perfmon/data_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/perfmon.go b/metricbeat/module/windows/perfmon/perfmon.go index 6dd03e92def..5edc7fb0e56 100644 --- a/metricbeat/module/windows/perfmon/perfmon.go +++ b/metricbeat/module/windows/perfmon/perfmon.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/perfmon_test.go b/metricbeat/module/windows/perfmon/perfmon_test.go index cb7961c4b00..3dde264a401 100644 --- a/metricbeat/module/windows/perfmon/perfmon_test.go +++ b/metricbeat/module/windows/perfmon/perfmon_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package perfmon diff --git a/metricbeat/module/windows/perfmon/reader.go b/metricbeat/module/windows/perfmon/reader.go index 3e62e197849..49565ebfd26 100644 --- a/metricbeat/module/windows/perfmon/reader.go +++ b/metricbeat/module/windows/perfmon/reader.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/perfmon/reader_integration_test.go b/metricbeat/module/windows/perfmon/reader_integration_test.go index 56247e00d6d..44a5f043884 100644 --- a/metricbeat/module/windows/perfmon/reader_integration_test.go +++ b/metricbeat/module/windows/perfmon/reader_integration_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package perfmon diff --git a/metricbeat/module/windows/perfmon/reader_test.go b/metricbeat/module/windows/perfmon/reader_test.go index 818f07441e3..6131aacc3c9 100644 --- a/metricbeat/module/windows/perfmon/reader_test.go +++ b/metricbeat/module/windows/perfmon/reader_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package perfmon diff --git a/metricbeat/module/windows/service/defs_service_windows.go b/metricbeat/module/windows/service/defs_service_windows.go index 69f77f7c2ab..9fce6df7163 100644 --- a/metricbeat/module/windows/service/defs_service_windows.go +++ b/metricbeat/module/windows/service/defs_service_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package service diff --git a/metricbeat/module/windows/service/reader.go b/metricbeat/module/windows/service/reader.go index 918d59cb428..e172ea67418 100644 --- a/metricbeat/module/windows/service/reader.go +++ b/metricbeat/module/windows/service/reader.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/reader_test.go b/metricbeat/module/windows/service/reader_test.go index 2135bbb944a..12415c23f45 100644 --- a/metricbeat/module/windows/service/reader_test.go +++ b/metricbeat/module/windows/service/reader_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/service.go b/metricbeat/module/windows/service/service.go index 4a0bf2b9e75..2bb8f754327 100644 --- a/metricbeat/module/windows/service/service.go +++ b/metricbeat/module/windows/service/service.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/service_integration_test.go b/metricbeat/module/windows/service/service_integration_test.go index bd7fc91c411..65f4cb9544b 100644 --- a/metricbeat/module/windows/service/service_integration_test.go +++ b/metricbeat/module/windows/service/service_integration_test.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package service diff --git a/metricbeat/module/windows/service/service_status.go b/metricbeat/module/windows/service/service_status.go index 1882b1a94f1..cb1b6a35b1d 100644 --- a/metricbeat/module/windows/service/service_status.go +++ b/metricbeat/module/windows/service/service_status.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/service/service_status_test.go b/metricbeat/module/windows/service/service_status_test.go index e6c721d9d30..52f0a4ca123 100644 --- a/metricbeat/module/windows/service/service_status_test.go +++ b/metricbeat/module/windows/service/service_status_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package service diff --git a/metricbeat/module/windows/windows.go b/metricbeat/module/windows/windows.go index 584817e6a36..e6b2d706b26 100644 --- a/metricbeat/module/windows/windows.go +++ b/metricbeat/module/windows/windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package windows diff --git a/metricbeat/module/zookeeper/connection/connection_integration_test.go b/metricbeat/module/zookeeper/connection/connection_integration_test.go index f774f36c202..f71bc1c3d0a 100644 --- a/metricbeat/module/zookeeper/connection/connection_integration_test.go +++ b/metricbeat/module/zookeeper/connection/connection_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package connection diff --git a/metricbeat/module/zookeeper/mntr/mntr_integration_test.go b/metricbeat/module/zookeeper/mntr/mntr_integration_test.go index 34e36321a5d..45f14b6daae 100644 --- a/metricbeat/module/zookeeper/mntr/mntr_integration_test.go +++ b/metricbeat/module/zookeeper/mntr/mntr_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package mntr diff --git a/metricbeat/module/zookeeper/server/server_integration_test.go b/metricbeat/module/zookeeper/server/server_integration_test.go index 6f23559033b..34bfdc29e88 100644 --- a/metricbeat/module/zookeeper/server/server_integration_test.go +++ b/metricbeat/module/zookeeper/server/server_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package server diff --git a/metricbeat/module/zookeeper/zookeeper_integration_test.go b/metricbeat/module/zookeeper/zookeeper_integration_test.go index d40bf01f077..262c0341246 100644 --- a/metricbeat/module/zookeeper/zookeeper_integration_test.go +++ b/metricbeat/module/zookeeper/zookeeper_integration_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build integration // +build integration package zookeeper diff --git a/packetbeat/Dockerfile b/packetbeat/Dockerfile index 101b27b2869..4d5ad764b67 100644 --- a/packetbeat/Dockerfile +++ b/packetbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/packetbeat/decoder/decoder_test.go b/packetbeat/decoder/decoder_test.go index 954be381da0..8e6fad990a8 100644 --- a/packetbeat/decoder/decoder_test.go +++ b/packetbeat/decoder/decoder_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package decoder diff --git a/packetbeat/flows/flowid_test.go b/packetbeat/flows/flowid_test.go index 85633bb6cab..78c8919b3d8 100644 --- a/packetbeat/flows/flowid_test.go +++ b/packetbeat/flows/flowid_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package flows diff --git a/packetbeat/flows/flows_test.go b/packetbeat/flows/flows_test.go index e56b3777374..601613e61d1 100644 --- a/packetbeat/flows/flows_test.go +++ b/packetbeat/flows/flows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package flows diff --git a/packetbeat/magefile.go b/packetbeat/magefile.go index ca498270d94..8ebed12122a 100644 --- a/packetbeat/magefile.go +++ b/packetbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/packetbeat/procs/procs_linux.go b/packetbeat/procs/procs_linux.go index cd4e81bfb8b..2ae633cb972 100644 --- a/packetbeat/procs/procs_linux.go +++ b/packetbeat/procs/procs_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package procs diff --git a/packetbeat/procs/procs_linux_test.go b/packetbeat/procs/procs_linux_test.go index 25a856ed2f8..39c8a937741 100644 --- a/packetbeat/procs/procs_linux_test.go +++ b/packetbeat/procs/procs_linux_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package procs diff --git a/packetbeat/procs/procs_other.go b/packetbeat/procs/procs_other.go index 0e401806aba..90e2af39c80 100644 --- a/packetbeat/procs/procs_other.go +++ b/packetbeat/procs/procs_other.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux && !windows // +build !linux,!windows package procs diff --git a/packetbeat/procs/procs_test.go b/packetbeat/procs/procs_test.go index 359640d0bcb..628aeb299f9 100644 --- a/packetbeat/procs/procs_test.go +++ b/packetbeat/procs/procs_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package procs diff --git a/packetbeat/procs/procs_windows.go b/packetbeat/procs/procs_windows.go index b18bd792841..50807691efa 100644 --- a/packetbeat/procs/procs_windows.go +++ b/packetbeat/procs/procs_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package procs diff --git a/packetbeat/procs/procs_windows_test.go b/packetbeat/procs/procs_windows_test.go index 2a4ad96e18d..51cc8391d68 100644 --- a/packetbeat/procs/procs_windows_test.go +++ b/packetbeat/procs/procs_windows_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package procs diff --git a/packetbeat/procs/syscall_windows.go b/packetbeat/procs/syscall_windows.go index f3f1aa00baf..5960ce32592 100644 --- a/packetbeat/procs/syscall_windows.go +++ b/packetbeat/procs/syscall_windows.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package procs diff --git a/packetbeat/protos/dns/dns_tcp_test.go b/packetbeat/protos/dns/dns_tcp_test.go index 826ba451c32..cdc9695d180 100644 --- a/packetbeat/protos/dns/dns_tcp_test.go +++ b/packetbeat/protos/dns/dns_tcp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Unit tests and benchmarks for the dns package. diff --git a/packetbeat/protos/dns/dns_test.go b/packetbeat/protos/dns/dns_test.go index f4a0b862de0..9427ebeaecf 100644 --- a/packetbeat/protos/dns/dns_test.go +++ b/packetbeat/protos/dns/dns_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Common variables, functions and tests for the dns package tests diff --git a/packetbeat/protos/dns/dns_udp_test.go b/packetbeat/protos/dns/dns_udp_test.go index 7104bd1437e..3711fb50e00 100644 --- a/packetbeat/protos/dns/dns_udp_test.go +++ b/packetbeat/protos/dns/dns_udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Unit tests and benchmarks for the dns package. diff --git a/packetbeat/protos/dns/names_test.go b/packetbeat/protos/dns/names_test.go index 5d5d9323eb5..e241d1294ce 100644 --- a/packetbeat/protos/dns/names_test.go +++ b/packetbeat/protos/dns/names_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration // Unit tests and benchmarks for the dns package. diff --git a/packetbeat/protos/http/http_test.go b/packetbeat/protos/http/http_test.go index 5af4869368d..0fa9077a5ed 100644 --- a/packetbeat/protos/http/http_test.go +++ b/packetbeat/protos/http/http_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package http diff --git a/packetbeat/protos/icmp/icmp_test.go b/packetbeat/protos/icmp/icmp_test.go index fc9508fbcdc..a74e097fe04 100644 --- a/packetbeat/protos/icmp/icmp_test.go +++ b/packetbeat/protos/icmp/icmp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/icmp/message_test.go b/packetbeat/protos/icmp/message_test.go index c9fdb8021c8..6ebc00fe351 100644 --- a/packetbeat/protos/icmp/message_test.go +++ b/packetbeat/protos/icmp/message_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/icmp/transaction_test.go b/packetbeat/protos/icmp/transaction_test.go index 38802231af3..3c1f7fe64c5 100644 --- a/packetbeat/protos/icmp/transaction_test.go +++ b/packetbeat/protos/icmp/transaction_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/icmp/tuple_test.go b/packetbeat/protos/icmp/tuple_test.go index b909dfd6291..7c9112decb1 100644 --- a/packetbeat/protos/icmp/tuple_test.go +++ b/packetbeat/protos/icmp/tuple_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package icmp diff --git a/packetbeat/protos/memcache/binary_test.go b/packetbeat/protos/memcache/binary_test.go index 740f9bb356f..0297d793024 100644 --- a/packetbeat/protos/memcache/binary_test.go +++ b/packetbeat/protos/memcache/binary_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/memcache_test.go b/packetbeat/protos/memcache/memcache_test.go index 641dec070e1..b09abbb4b5a 100644 --- a/packetbeat/protos/memcache/memcache_test.go +++ b/packetbeat/protos/memcache/memcache_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/parse_test.go b/packetbeat/protos/memcache/parse_test.go index f50b156a789..95fdac5bad3 100644 --- a/packetbeat/protos/memcache/parse_test.go +++ b/packetbeat/protos/memcache/parse_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/plugin_udp_test.go b/packetbeat/protos/memcache/plugin_udp_test.go index 50199523f07..1e388ea6e55 100644 --- a/packetbeat/protos/memcache/plugin_udp_test.go +++ b/packetbeat/protos/memcache/plugin_udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/memcache/text_test.go b/packetbeat/protos/memcache/text_test.go index f37e3d13c7d..7cf93f22b9b 100644 --- a/packetbeat/protos/memcache/text_test.go +++ b/packetbeat/protos/memcache/text_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package memcache diff --git a/packetbeat/protos/mongodb/mongodb_parser_test.go b/packetbeat/protos/mongodb/mongodb_parser_test.go index 9ab718718fb..c5ded7484c0 100644 --- a/packetbeat/protos/mongodb/mongodb_parser_test.go +++ b/packetbeat/protos/mongodb/mongodb_parser_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mongodb diff --git a/packetbeat/protos/mongodb/mongodb_test.go b/packetbeat/protos/mongodb/mongodb_test.go index 2debae92dff..ece0e1cf4aa 100644 --- a/packetbeat/protos/mongodb/mongodb_test.go +++ b/packetbeat/protos/mongodb/mongodb_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mongodb diff --git a/packetbeat/protos/mysql/mysql_test.go b/packetbeat/protos/mysql/mysql_test.go index a188fd1a3aa..309fd45cb0f 100644 --- a/packetbeat/protos/mysql/mysql_test.go +++ b/packetbeat/protos/mysql/mysql_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package mysql diff --git a/packetbeat/protos/pgsql/pgsql_test.go b/packetbeat/protos/pgsql/pgsql_test.go index 99acf54e15c..328b31e28c2 100644 --- a/packetbeat/protos/pgsql/pgsql_test.go +++ b/packetbeat/protos/pgsql/pgsql_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package pgsql diff --git a/packetbeat/protos/protos_test.go b/packetbeat/protos/protos_test.go index 4d61d20038e..22269a192d2 100644 --- a/packetbeat/protos/protos_test.go +++ b/packetbeat/protos/protos_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package protos diff --git a/packetbeat/protos/redis/redis_test.go b/packetbeat/protos/redis/redis_test.go index 9916c100852..3eefefa0976 100644 --- a/packetbeat/protos/redis/redis_test.go +++ b/packetbeat/protos/redis/redis_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package redis diff --git a/packetbeat/protos/sip/plugin_test.go b/packetbeat/protos/sip/plugin_test.go index 5b09f522aff..178e72c6751 100644 --- a/packetbeat/protos/sip/plugin_test.go +++ b/packetbeat/protos/sip/plugin_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package sip diff --git a/packetbeat/protos/tcp/tcp_test.go b/packetbeat/protos/tcp/tcp_test.go index c014e870c6b..9dd910799b6 100644 --- a/packetbeat/protos/tcp/tcp_test.go +++ b/packetbeat/protos/tcp/tcp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tcp diff --git a/packetbeat/protos/thrift/thrift_test.go b/packetbeat/protos/thrift/thrift_test.go index e1eca793e42..b5377eb4665 100644 --- a/packetbeat/protos/thrift/thrift_test.go +++ b/packetbeat/protos/thrift/thrift_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package thrift diff --git a/packetbeat/protos/tls/alerts_test.go b/packetbeat/protos/tls/alerts_test.go index 33cd5a08e06..f0abfad97d3 100644 --- a/packetbeat/protos/tls/alerts_test.go +++ b/packetbeat/protos/tls/alerts_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/buffer_test.go b/packetbeat/protos/tls/buffer_test.go index 5dce758f281..178ee6db18a 100644 --- a/packetbeat/protos/tls/buffer_test.go +++ b/packetbeat/protos/tls/buffer_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/extensions_test.go b/packetbeat/protos/tls/extensions_test.go index 9b56a0540cd..23caec09019 100644 --- a/packetbeat/protos/tls/extensions_test.go +++ b/packetbeat/protos/tls/extensions_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/ja3_test.go b/packetbeat/protos/tls/ja3_test.go index b71ef35f465..6bdbc3e1bec 100644 --- a/packetbeat/protos/tls/ja3_test.go +++ b/packetbeat/protos/tls/ja3_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/parse_test.go b/packetbeat/protos/tls/parse_test.go index b6084ca5943..ae93decc75f 100644 --- a/packetbeat/protos/tls/parse_test.go +++ b/packetbeat/protos/tls/parse_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/tls/tls_test.go b/packetbeat/protos/tls/tls_test.go index d384be4aad9..ad46b633588 100644 --- a/packetbeat/protos/tls/tls_test.go +++ b/packetbeat/protos/tls/tls_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package tls diff --git a/packetbeat/protos/udp/udp_test.go b/packetbeat/protos/udp/udp_test.go index 4d09882c981..998bf071638 100644 --- a/packetbeat/protos/udp/udp_test.go +++ b/packetbeat/protos/udp/udp_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package udp diff --git a/packetbeat/publish/publish_test.go b/packetbeat/publish/publish_test.go index 9b802bdb2d7..57ed6fb9aa4 100644 --- a/packetbeat/publish/publish_test.go +++ b/packetbeat/publish/publish_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package publish diff --git a/packetbeat/sniffer/afpacket_linux.go b/packetbeat/sniffer/afpacket_linux.go index c95e7a37797..7976ace838a 100644 --- a/packetbeat/sniffer/afpacket_linux.go +++ b/packetbeat/sniffer/afpacket_linux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build linux // +build linux package sniffer diff --git a/packetbeat/sniffer/afpacket_nonlinux.go b/packetbeat/sniffer/afpacket_nonlinux.go index 7d1e423c40d..861e55fe1e5 100644 --- a/packetbeat/sniffer/afpacket_nonlinux.go +++ b/packetbeat/sniffer/afpacket_nonlinux.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !linux // +build !linux package sniffer diff --git a/packetbeat/sniffer/sniffer_test.go b/packetbeat/sniffer/sniffer_test.go index c75f038d0de..eea7821d889 100644 --- a/packetbeat/sniffer/sniffer_test.go +++ b/packetbeat/sniffer/sniffer_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package sniffer diff --git a/tools/tools.go b/tools/tools.go index 64ab97e4fdc..9bf5b46212c 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build tools // +build tools // This package contains the tool dependencies of the project. diff --git a/winlogbeat/checkpoint/checkpoint_test.go b/winlogbeat/checkpoint/checkpoint_test.go index f77d7fbd43c..0f515cf6881 100644 --- a/winlogbeat/checkpoint/checkpoint_test.go +++ b/winlogbeat/checkpoint/checkpoint_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package checkpoint diff --git a/winlogbeat/checkpoint/file_unix.go b/winlogbeat/checkpoint/file_unix.go index ee3201d6100..248b5301955 100644 --- a/winlogbeat/checkpoint/file_unix.go +++ b/winlogbeat/checkpoint/file_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package checkpoint diff --git a/winlogbeat/config/config_test.go b/winlogbeat/config/config_test.go index aa468b44ed4..768408214e5 100644 --- a/winlogbeat/config/config_test.go +++ b/winlogbeat/config/config_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package config diff --git a/winlogbeat/eventlog/bench_test.go b/winlogbeat/eventlog/bench_test.go index 059aad6374d..1d2c075c767 100644 --- a/winlogbeat/eventlog/bench_test.go +++ b/winlogbeat/eventlog/bench_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/eventlog/errors_unix.go b/winlogbeat/eventlog/errors_unix.go index e28786b2d3b..7236589124b 100644 --- a/winlogbeat/eventlog/errors_unix.go +++ b/winlogbeat/eventlog/errors_unix.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !windows // +build !windows package eventlog diff --git a/winlogbeat/eventlog/wineventlog.go b/winlogbeat/eventlog/wineventlog.go index 8cf3eae0ef2..9e52cf2bdaa 100644 --- a/winlogbeat/eventlog/wineventlog.go +++ b/winlogbeat/eventlog/wineventlog.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/eventlog/wineventlog_experimental.go b/winlogbeat/eventlog/wineventlog_experimental.go index 301b2cf4f0b..3a3ae182686 100644 --- a/winlogbeat/eventlog/wineventlog_experimental.go +++ b/winlogbeat/eventlog/wineventlog_experimental.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/eventlog/wineventlog_test.go b/winlogbeat/eventlog/wineventlog_test.go index 1861ed0327c..d6ddddcdd8b 100644 --- a/winlogbeat/eventlog/wineventlog_test.go +++ b/winlogbeat/eventlog/wineventlog_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package eventlog diff --git a/winlogbeat/magefile.go b/winlogbeat/magefile.go index 002176ba1f4..e8edd6cc9e8 100644 --- a/winlogbeat/magefile.go +++ b/winlogbeat/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/winlogbeat/sys/winevent/sid_test.go b/winlogbeat/sys/winevent/sid_test.go index aced1a3921a..e1e45fd16b5 100644 --- a/winlogbeat/sys/winevent/sid_test.go +++ b/winlogbeat/sys/winevent/sid_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package winevent diff --git a/winlogbeat/sys/wineventlog/bookmark.go b/winlogbeat/sys/wineventlog/bookmark.go index db9d3d14452..85834e0fada 100644 --- a/winlogbeat/sys/wineventlog/bookmark.go +++ b/winlogbeat/sys/wineventlog/bookmark.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/bookmark_test.go b/winlogbeat/sys/wineventlog/bookmark_test.go index 34a443a4184..618236b9793 100644 --- a/winlogbeat/sys/wineventlog/bookmark_test.go +++ b/winlogbeat/sys/wineventlog/bookmark_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/format_message.go b/winlogbeat/sys/wineventlog/format_message.go index 285d130fc40..d953c210b56 100644 --- a/winlogbeat/sys/wineventlog/format_message.go +++ b/winlogbeat/sys/wineventlog/format_message.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/format_message_test.go b/winlogbeat/sys/wineventlog/format_message_test.go index dc2e4dd6621..910fb6b935f 100644 --- a/winlogbeat/sys/wineventlog/format_message_test.go +++ b/winlogbeat/sys/wineventlog/format_message_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/iterator.go b/winlogbeat/sys/wineventlog/iterator.go index 26492fe96b0..7cfb2b7cc38 100644 --- a/winlogbeat/sys/wineventlog/iterator.go +++ b/winlogbeat/sys/wineventlog/iterator.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/iterator_test.go b/winlogbeat/sys/wineventlog/iterator_test.go index b57e150dbeb..87a4b40e949 100644 --- a/winlogbeat/sys/wineventlog/iterator_test.go +++ b/winlogbeat/sys/wineventlog/iterator_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/metadata_store.go b/winlogbeat/sys/wineventlog/metadata_store.go index c568c24d320..d4333d78df1 100644 --- a/winlogbeat/sys/wineventlog/metadata_store.go +++ b/winlogbeat/sys/wineventlog/metadata_store.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/metadata_store_test.go b/winlogbeat/sys/wineventlog/metadata_store_test.go index 205f703105d..72018952a21 100644 --- a/winlogbeat/sys/wineventlog/metadata_store_test.go +++ b/winlogbeat/sys/wineventlog/metadata_store_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/publisher_metadata.go b/winlogbeat/sys/wineventlog/publisher_metadata.go index b316d1028b2..ecbbf8f7b65 100644 --- a/winlogbeat/sys/wineventlog/publisher_metadata.go +++ b/winlogbeat/sys/wineventlog/publisher_metadata.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/publisher_metadata_test.go b/winlogbeat/sys/wineventlog/publisher_metadata_test.go index 1f5f5a2b85c..33e55e67797 100644 --- a/winlogbeat/sys/wineventlog/publisher_metadata_test.go +++ b/winlogbeat/sys/wineventlog/publisher_metadata_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/query_test.go b/winlogbeat/sys/wineventlog/query_test.go index d487f55740b..f31f98ac6c9 100644 --- a/winlogbeat/sys/wineventlog/query_test.go +++ b/winlogbeat/sys/wineventlog/query_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build !integration // +build !integration package wineventlog diff --git a/winlogbeat/sys/wineventlog/renderer.go b/winlogbeat/sys/wineventlog/renderer.go index 40392abd15d..8a16567e7ad 100644 --- a/winlogbeat/sys/wineventlog/renderer.go +++ b/winlogbeat/sys/wineventlog/renderer.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/renderer_test.go b/winlogbeat/sys/wineventlog/renderer_test.go index 4b75ff71168..ea0c179cd1e 100644 --- a/winlogbeat/sys/wineventlog/renderer_test.go +++ b/winlogbeat/sys/wineventlog/renderer_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/stringinserts.go b/winlogbeat/sys/wineventlog/stringinserts.go index f53039732d0..6d42a7df400 100644 --- a/winlogbeat/sys/wineventlog/stringinserts.go +++ b/winlogbeat/sys/wineventlog/stringinserts.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/stringinserts_test.go b/winlogbeat/sys/wineventlog/stringinserts_test.go index 518b01e5342..8c2cc11b094 100644 --- a/winlogbeat/sys/wineventlog/stringinserts_test.go +++ b/winlogbeat/sys/wineventlog/stringinserts_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/winlogbeat/sys/wineventlog/util_test.go b/winlogbeat/sys/wineventlog/util_test.go index 40f52093eeb..0c1c9cbf5ce 100644 --- a/winlogbeat/sys/wineventlog/util_test.go +++ b/winlogbeat/sys/wineventlog/util_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build windows // +build windows package wineventlog diff --git a/x-pack/auditbeat/magefile.go b/x-pack/auditbeat/magefile.go index 7484e6465b7..b2d52ebbcbc 100644 --- a/x-pack/auditbeat/magefile.go +++ b/x-pack/auditbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/auditbeat/module/system/login/config.go b/x-pack/auditbeat/module/system/login/config.go index 2cdfca54904..a8360d944f3 100644 --- a/x-pack/auditbeat/module/system/login/config.go +++ b/x-pack/auditbeat/module/system/login/config.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/login.go b/x-pack/auditbeat/module/system/login/login.go index 01e96e4dbc1..82c1e384ab7 100644 --- a/x-pack/auditbeat/module/system/login/login.go +++ b/x-pack/auditbeat/module/system/login/login.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/login_other.go b/x-pack/auditbeat/module/system/login/login_other.go index a0d4124bb41..fcad887ed58 100644 --- a/x-pack/auditbeat/module/system/login/login_other.go +++ b/x-pack/auditbeat/module/system/login/login_other.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !linux // +build !linux package login diff --git a/x-pack/auditbeat/module/system/login/login_test.go b/x-pack/auditbeat/module/system/login/login_test.go index 0bf92925db8..e0a6fe35767 100644 --- a/x-pack/auditbeat/module/system/login/login_test.go +++ b/x-pack/auditbeat/module/system/login/login_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/utmp.go b/x-pack/auditbeat/module/system/login/utmp.go index 273229f051a..ee0b8b2f5fc 100644 --- a/x-pack/auditbeat/module/system/login/utmp.go +++ b/x-pack/auditbeat/module/system/login/utmp.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package login diff --git a/x-pack/auditbeat/module/system/login/utmp_c.go b/x-pack/auditbeat/module/system/login/utmp_c.go index 0d42367a1a8..32ff263f929 100644 --- a/x-pack/auditbeat/module/system/login/utmp_c.go +++ b/x-pack/auditbeat/module/system/login/utmp_c.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux // Pure Go reader for UTMP formatted files. diff --git a/x-pack/auditbeat/module/system/package/config.go b/x-pack/auditbeat/module/system/package/config.go index 5af2d0a7d6a..ca0a921316d 100644 --- a/x-pack/auditbeat/module/system/package/config.go +++ b/x-pack/auditbeat/module/system/package/config.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package.go b/x-pack/auditbeat/module/system/package/package.go index f988030b8d0..b4eddbb726f 100644 --- a/x-pack/auditbeat/module/system/package/package.go +++ b/x-pack/auditbeat/module/system/package/package.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_homebrew.go b/x-pack/auditbeat/module/system/package/package_homebrew.go index c3ec3dc5565..8227e5e0241 100644 --- a/x-pack/auditbeat/module/system/package/package_homebrew.go +++ b/x-pack/auditbeat/module/system/package/package_homebrew.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_homebrew_test.go b/x-pack/auditbeat/module/system/package/package_homebrew_test.go index 3ae7baa4fd8..ac40fce9068 100644 --- a/x-pack/auditbeat/module/system/package/package_homebrew_test.go +++ b/x-pack/auditbeat/module/system/package/package_homebrew_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_test.go b/x-pack/auditbeat/module/system/package/package_test.go index 14d0abd03ab..25b53a3feb8 100644 --- a/x-pack/auditbeat/module/system/package/package_test.go +++ b/x-pack/auditbeat/module/system/package/package_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/package_windows.go b/x-pack/auditbeat/module/system/package/package_windows.go index 9b39395436a..a10516b7361 100644 --- a/x-pack/auditbeat/module/system/package/package_windows.go +++ b/x-pack/auditbeat/module/system/package/package_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_common_test.go b/x-pack/auditbeat/module/system/package/rpm_common_test.go index ce384e9165c..55bbcc06346 100644 --- a/x-pack/auditbeat/module/system/package/rpm_common_test.go +++ b/x-pack/auditbeat/module/system/package/rpm_common_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_linux.go b/x-pack/auditbeat/module/system/package/rpm_linux.go index 399c121f878..3215bcf9c16 100644 --- a/x-pack/auditbeat/module/system/package/rpm_linux.go +++ b/x-pack/auditbeat/module/system/package/rpm_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_linux_test.go b/x-pack/auditbeat/module/system/package/rpm_linux_test.go index 1eb42639fa9..691fb63e339 100644 --- a/x-pack/auditbeat/module/system/package/rpm_linux_test.go +++ b/x-pack/auditbeat/module/system/package/rpm_linux_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package pkg diff --git a/x-pack/auditbeat/module/system/package/rpm_others.go b/x-pack/auditbeat/module/system/package/rpm_others.go index 1c453f7353f..8e441026ff3 100644 --- a/x-pack/auditbeat/module/system/package/rpm_others.go +++ b/x-pack/auditbeat/module/system/package/rpm_others.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (!linux || !cgo) && !windows // +build !linux !cgo // +build !windows diff --git a/x-pack/auditbeat/module/system/socket/arch_386.go b/x-pack/auditbeat/module/system/socket/arch_386.go index db1872d9248..e2eca4dc473 100644 --- a/x-pack/auditbeat/module/system/socket/arch_386.go +++ b/x-pack/auditbeat/module/system/socket/arch_386.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package socket diff --git a/x-pack/auditbeat/module/system/socket/arch_amd64.go b/x-pack/auditbeat/module/system/socket/arch_amd64.go index 4f7c578f8ee..b8bd0cf1d43 100644 --- a/x-pack/auditbeat/module/system/socket/arch_amd64.go +++ b/x-pack/auditbeat/module/system/socket/arch_amd64.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package socket diff --git a/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go b/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go index 98cce6fbdf0..9c430bb2023 100644 --- a/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go +++ b/x-pack/auditbeat/module/system/socket/dns/afpacket/afpacket.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package afpacket diff --git a/x-pack/auditbeat/module/system/socket/events.go b/x-pack/auditbeat/module/system/socket/events.go index 49880528704..157d5ec92d0 100644 --- a/x-pack/auditbeat/module/system/socket/events.go +++ b/x-pack/auditbeat/module/system/socket/events.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/guess/creds.go b/x-pack/auditbeat/module/system/socket/guess/creds.go index 7e3bd4791d9..61f9a570daf 100644 --- a/x-pack/auditbeat/module/system/socket/guess/creds.go +++ b/x-pack/auditbeat/module/system/socket/guess/creds.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go b/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go index aae0e2fd9b6..bc86aa817b5 100644 --- a/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go +++ b/x-pack/auditbeat/module/system/socket/guess/cskxmit6.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/deref.go b/x-pack/auditbeat/module/system/socket/guess/deref.go index 648580e5cc0..cc06125c82a 100644 --- a/x-pack/auditbeat/module/system/socket/guess/deref.go +++ b/x-pack/auditbeat/module/system/socket/guess/deref.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/guess.go b/x-pack/auditbeat/module/system/socket/guess/guess.go index 21fe3e38009..e9040bb6a66 100644 --- a/x-pack/auditbeat/module/system/socket/guess/guess.go +++ b/x-pack/auditbeat/module/system/socket/guess/guess.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/helpers.go b/x-pack/auditbeat/module/system/socket/guess/helpers.go index 5aa8ac37db1..d0b9a2875bf 100644 --- a/x-pack/auditbeat/module/system/socket/guess/helpers.go +++ b/x-pack/auditbeat/module/system/socket/guess/helpers.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/inetsock.go b/x-pack/auditbeat/module/system/socket/guess/inetsock.go index 57a133d0056..8e435d42b03 100644 --- a/x-pack/auditbeat/module/system/socket/guess/inetsock.go +++ b/x-pack/auditbeat/module/system/socket/guess/inetsock.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/inetsock6.go b/x-pack/auditbeat/module/system/socket/guess/inetsock6.go index 37cd56b06fb..b61486849bc 100644 --- a/x-pack/auditbeat/module/system/socket/guess/inetsock6.go +++ b/x-pack/auditbeat/module/system/socket/guess/inetsock6.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go b/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go index 2e66eb2a724..293a79eff91 100644 --- a/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go +++ b/x-pack/auditbeat/module/system/socket/guess/inetsockaf.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/iplocalout.go b/x-pack/auditbeat/module/system/socket/guess/iplocalout.go index a0657139178..0058cf28274 100644 --- a/x-pack/auditbeat/module/system/socket/guess/iplocalout.go +++ b/x-pack/auditbeat/module/system/socket/guess/iplocalout.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/registry.go b/x-pack/auditbeat/module/system/socket/guess/registry.go index 66971a1f1d5..89af3d2539b 100644 --- a/x-pack/auditbeat/module/system/socket/guess/registry.go +++ b/x-pack/auditbeat/module/system/socket/guess/registry.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/skbuff.go b/x-pack/auditbeat/module/system/socket/guess/skbuff.go index 9960c036465..a90a49644a4 100644 --- a/x-pack/auditbeat/module/system/socket/guess/skbuff.go +++ b/x-pack/auditbeat/module/system/socket/guess/skbuff.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go b/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go index 356442b1d86..2817a41e5d9 100644 --- a/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go +++ b/x-pack/auditbeat/module/system/socket/guess/sockaddrin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go b/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go index 8d1d0b15b25..0ce53e84883 100644 --- a/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go +++ b/x-pack/auditbeat/module/system/socket/guess/sockaddrin6.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/socketsk.go b/x-pack/auditbeat/module/system/socket/guess/socketsk.go index 072eba6b66b..fa9c0b454c4 100644 --- a/x-pack/auditbeat/module/system/socket/guess/socketsk.go +++ b/x-pack/auditbeat/module/system/socket/guess/socketsk.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/syscallargs.go b/x-pack/auditbeat/module/system/socket/guess/syscallargs.go index 44796b73fa9..f3a17017ab2 100644 --- a/x-pack/auditbeat/module/system/socket/guess/syscallargs.go +++ b/x-pack/auditbeat/module/system/socket/guess/syscallargs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go index 60bc66f7f91..9e705ad2ab9 100644 --- a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go +++ b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgargs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go index 09004388ada..55000d7f8f2 100644 --- a/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go +++ b/x-pack/auditbeat/module/system/socket/guess/tcpsendmsgsk.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go b/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go index de5889d9312..66711d57d7d 100644 --- a/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go +++ b/x-pack/auditbeat/module/system/socket/guess/udpsendmsg.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package guess diff --git a/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go b/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go index c257c08c31d..300cd2706af 100644 --- a/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go +++ b/x-pack/auditbeat/module/system/socket/helper/fixedthreadexecutor.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/helper/loopback.go b/x-pack/auditbeat/module/system/socket/helper/loopback.go index 645e3d43d95..4cc0ca3eb56 100644 --- a/x-pack/auditbeat/module/system/socket/helper/loopback.go +++ b/x-pack/auditbeat/module/system/socket/helper/loopback.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/helper/probes.go b/x-pack/auditbeat/module/system/socket/helper/probes.go index f04aa568c4f..ddffe15d318 100644 --- a/x-pack/auditbeat/module/system/socket/helper/probes.go +++ b/x-pack/auditbeat/module/system/socket/helper/probes.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/helper/types.go b/x-pack/auditbeat/module/system/socket/helper/types.go index 711bf2f933f..749322e9dfc 100644 --- a/x-pack/auditbeat/module/system/socket/helper/types.go +++ b/x-pack/auditbeat/module/system/socket/helper/types.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package helper diff --git a/x-pack/auditbeat/module/system/socket/kprobes.go b/x-pack/auditbeat/module/system/socket/kprobes.go index c2d3fa93778..e5f5695177a 100644 --- a/x-pack/auditbeat/module/system/socket/kprobes.go +++ b/x-pack/auditbeat/module/system/socket/kprobes.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/kprobes_test.go b/x-pack/auditbeat/module/system/socket/kprobes_test.go index 8e6b84abaa4..08b6caa8b60 100644 --- a/x-pack/auditbeat/module/system/socket/kprobes_test.go +++ b/x-pack/auditbeat/module/system/socket/kprobes_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/socket_linux.go b/x-pack/auditbeat/module/system/socket/socket_linux.go index 36ae6276e14..e7f1a059dd1 100644 --- a/x-pack/auditbeat/module/system/socket/socket_linux.go +++ b/x-pack/auditbeat/module/system/socket/socket_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/socket_other.go b/x-pack/auditbeat/module/system/socket/socket_other.go index f9ef3d5a11b..eb50e63b37c 100644 --- a/x-pack/auditbeat/module/system/socket/socket_other.go +++ b/x-pack/auditbeat/module/system/socket/socket_other.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !linux // +build !linux package socket diff --git a/x-pack/auditbeat/module/system/socket/state.go b/x-pack/auditbeat/module/system/socket/state.go index 369ba6705b0..dc17108b52e 100644 --- a/x-pack/auditbeat/module/system/socket/state.go +++ b/x-pack/auditbeat/module/system/socket/state.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/state_test.go b/x-pack/auditbeat/module/system/socket/state_test.go index f326a28eeaa..dc059f4a43d 100644 --- a/x-pack/auditbeat/module/system/socket/state_test.go +++ b/x-pack/auditbeat/module/system/socket/state_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/socket/template.go b/x-pack/auditbeat/module/system/socket/template.go index 425692c7681..c5f2b5555de 100644 --- a/x-pack/auditbeat/module/system/socket/template.go +++ b/x-pack/auditbeat/module/system/socket/template.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build (linux && 386) || (linux && amd64) // +build linux,386 linux,amd64 package socket diff --git a/x-pack/auditbeat/module/system/user/user.go b/x-pack/auditbeat/module/system/user/user.go index 59f23e566e8..69fb25e7187 100644 --- a/x-pack/auditbeat/module/system/user/user.go +++ b/x-pack/auditbeat/module/system/user/user.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package user diff --git a/x-pack/auditbeat/module/system/user/user_test.go b/x-pack/auditbeat/module/system/user/user_test.go index a8fd6f85238..65e8ae455f0 100644 --- a/x-pack/auditbeat/module/system/user/user_test.go +++ b/x-pack/auditbeat/module/system/user/user_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package user diff --git a/x-pack/auditbeat/module/system/user/users_linux.go b/x-pack/auditbeat/module/system/user/users_linux.go index 8efab35b633..f564c282cbd 100644 --- a/x-pack/auditbeat/module/system/user/users_linux.go +++ b/x-pack/auditbeat/module/system/user/users_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && cgo // +build linux,cgo package user diff --git a/x-pack/auditbeat/module/system/user/users_other.go b/x-pack/auditbeat/module/system/user/users_other.go index ed640f024fa..0922d715ab1 100644 --- a/x-pack/auditbeat/module/system/user/users_other.go +++ b/x-pack/auditbeat/module/system/user/users_other.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !linux || !cgo // +build !linux !cgo package user diff --git a/x-pack/auditbeat/tracing/cpu.go b/x-pack/auditbeat/tracing/cpu.go index 260067a8ab3..800d08ebe9a 100644 --- a/x-pack/auditbeat/tracing/cpu.go +++ b/x-pack/auditbeat/tracing/cpu.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/cpu_test.go b/x-pack/auditbeat/tracing/cpu_test.go index 9b5b7019967..6f69e32f70a 100644 --- a/x-pack/auditbeat/tracing/cpu_test.go +++ b/x-pack/auditbeat/tracing/cpu_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/decoder.go b/x-pack/auditbeat/tracing/decoder.go index 4a456bb9430..88797351e1e 100644 --- a/x-pack/auditbeat/tracing/decoder.go +++ b/x-pack/auditbeat/tracing/decoder.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/endian.go b/x-pack/auditbeat/tracing/endian.go index b3a5a5b1ffe..180f75e493b 100644 --- a/x-pack/auditbeat/tracing/endian.go +++ b/x-pack/auditbeat/tracing/endian.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/events_test.go b/x-pack/auditbeat/tracing/events_test.go index d75c4e1f69a..180761f7700 100644 --- a/x-pack/auditbeat/tracing/events_test.go +++ b/x-pack/auditbeat/tracing/events_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/int_aligned.go b/x-pack/auditbeat/tracing/int_aligned.go index 9ef1851d061..3669db4fde2 100644 --- a/x-pack/auditbeat/tracing/int_aligned.go +++ b/x-pack/auditbeat/tracing/int_aligned.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build linux -// +build !386,!amd64,!amd64p32 +//go:build linux && !386 && !amd64 && !amd64p32 +// +build linux,!386,!amd64,!amd64p32 // Alignment-safe integer reading and writing functions. diff --git a/x-pack/auditbeat/tracing/int_unaligned.go b/x-pack/auditbeat/tracing/int_unaligned.go index 4fd6774279b..86ebd4591a6 100644 --- a/x-pack/auditbeat/tracing/int_unaligned.go +++ b/x-pack/auditbeat/tracing/int_unaligned.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux && (386 || amd64 || amd64p32) // +build linux // +build 386 amd64 amd64p32 diff --git a/x-pack/auditbeat/tracing/perfevent.go b/x-pack/auditbeat/tracing/perfevent.go index 4189abda59a..181bc480141 100644 --- a/x-pack/auditbeat/tracing/perfevent.go +++ b/x-pack/auditbeat/tracing/perfevent.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/probe.go b/x-pack/auditbeat/tracing/probe.go index aed19805adc..79726b9aa5b 100644 --- a/x-pack/auditbeat/tracing/probe.go +++ b/x-pack/auditbeat/tracing/probe.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/auditbeat/tracing/tracefs.go b/x-pack/auditbeat/tracing/tracefs.go index b082770bcf7..110e7e4d316 100644 --- a/x-pack/auditbeat/tracing/tracefs.go +++ b/x-pack/auditbeat/tracing/tracefs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package tracing diff --git a/x-pack/dockerlogbeat/magefile.go b/x-pack/dockerlogbeat/magefile.go index 5251e9285a1..aac142e92ad 100644 --- a/x-pack/dockerlogbeat/magefile.go +++ b/x-pack/dockerlogbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/elastic-agent/Dockerfile b/x-pack/elastic-agent/Dockerfile index 463351d15e4..59d234d6713 100644 --- a/x-pack/elastic-agent/Dockerfile +++ b/x-pack/elastic-agent/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.16.6 +ARG GO_VERSION=1.17.1 FROM circleci/golang:${GO_VERSION} diff --git a/x-pack/elastic-agent/magefile.go b/x-pack/elastic-agent/magefile.go index bacd468b44d..102ba5b86b0 100644 --- a/x-pack/elastic-agent/magefile.go +++ b/x-pack/elastic-agent/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go b/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go index 181bda084ff..d5c407d17d7 100644 --- a/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go +++ b/x-pack/elastic-agent/pkg/agent/application/info/svc_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package info diff --git a/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go b/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go index 67a2e112a81..d5550dbb2ae 100644 --- a/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/info/svc_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package info diff --git a/x-pack/elastic-agent/pkg/agent/application/paths/paths.go b/x-pack/elastic-agent/pkg/agent/application/paths/paths.go index 0ee4f459c00..cc0487bb2a8 100644 --- a/x-pack/elastic-agent/pkg/agent/application/paths/paths.go +++ b/x-pack/elastic-agent/pkg/agent/application/paths/paths.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !darwin -// +build !windows +//go:build !darwin && !windows +// +build !darwin,!windows package paths diff --git a/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go b/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go index 9a186a25e81..8482d88d533 100644 --- a/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go +++ b/x-pack/elastic-agent/pkg/agent/application/paths/paths_darwin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build darwin // +build darwin package paths diff --git a/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go b/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go index 86020c27044..3250b847e98 100644 --- a/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/paths/paths_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package paths diff --git a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go index 9265ba15266..d703e64f5d7 100644 --- a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go +++ b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package reexec diff --git a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go index 7f2f3230dc5..f3e03855761 100644 --- a/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/reexec/reexec_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package reexec diff --git a/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go b/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go index 09d87a82a5d..4601a1f74d9 100644 --- a/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go +++ b/x-pack/elastic-agent/pkg/agent/application/upgrade/service.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !darwin -// +build !windows +//go:build !darwin && !windows +// +build !darwin,!windows package upgrade diff --git a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go index 77c3f7d5f4f..5db095ce770 100644 --- a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go +++ b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_darwin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build darwin // +build darwin package upgrade diff --git a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go index 61821e69572..28f92e93b3e 100644 --- a/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go +++ b/x-pack/elastic-agent/pkg/agent/application/upgrade/service_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package upgrade diff --git a/x-pack/elastic-agent/pkg/agent/cmd/reexec.go b/x-pack/elastic-agent/pkg/agent/cmd/reexec.go index 2ac2425b931..ba48afd4649 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/reexec.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/reexec.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package cmd diff --git a/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go b/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go index be75784b4de..dd2bfd4fc45 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/reexec_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package cmd diff --git a/x-pack/elastic-agent/pkg/agent/control/addr.go b/x-pack/elastic-agent/pkg/agent/control/addr.go index 7eca51789db..78f35f8f479 100644 --- a/x-pack/elastic-agent/pkg/agent/control/addr.go +++ b/x-pack/elastic-agent/pkg/agent/control/addr.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package control diff --git a/x-pack/elastic-agent/pkg/agent/control/addr_windows.go b/x-pack/elastic-agent/pkg/agent/control/addr_windows.go index 49c6e75407b..8cd2c2df371 100644 --- a/x-pack/elastic-agent/pkg/agent/control/addr_windows.go +++ b/x-pack/elastic-agent/pkg/agent/control/addr_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package control diff --git a/x-pack/elastic-agent/pkg/agent/control/client/dial.go b/x-pack/elastic-agent/pkg/agent/control/client/dial.go index 56313b12c82..93c6033f718 100644 --- a/x-pack/elastic-agent/pkg/agent/control/client/dial.go +++ b/x-pack/elastic-agent/pkg/agent/control/client/dial.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package client diff --git a/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go b/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go index c061753d327..b180a085c1f 100644 --- a/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go +++ b/x-pack/elastic-agent/pkg/agent/control/client/dial_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package client diff --git a/x-pack/elastic-agent/pkg/agent/control/server/listener.go b/x-pack/elastic-agent/pkg/agent/control/server/listener.go index 02ef034ac38..0c6ce12cdea 100644 --- a/x-pack/elastic-agent/pkg/agent/control/server/listener.go +++ b/x-pack/elastic-agent/pkg/agent/control/server/listener.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package server diff --git a/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go b/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go index d9178c504ee..f8658c5c5f0 100644 --- a/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go +++ b/x-pack/elastic-agent/pkg/agent/control/server/listener_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package server diff --git a/x-pack/elastic-agent/pkg/agent/install/install_unix.go b/x-pack/elastic-agent/pkg/agent/install/install_unix.go index 07d696d580a..a1f0bac246c 100644 --- a/x-pack/elastic-agent/pkg/agent/install/install_unix.go +++ b/x-pack/elastic-agent/pkg/agent/install/install_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/install_windows.go b/x-pack/elastic-agent/pkg/agent/install/install_windows.go index 247e774b36b..e2ee77a9a16 100644 --- a/x-pack/elastic-agent/pkg/agent/install/install_windows.go +++ b/x-pack/elastic-agent/pkg/agent/install/install_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/perms_unix.go b/x-pack/elastic-agent/pkg/agent/install/perms_unix.go index 9a9a2638dfc..0d1db46cfe9 100644 --- a/x-pack/elastic-agent/pkg/agent/install/perms_unix.go +++ b/x-pack/elastic-agent/pkg/agent/install/perms_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/perms_windows.go b/x-pack/elastic-agent/pkg/agent/install/perms_windows.go index 8ca5fd3057e..5ab20a5a94c 100644 --- a/x-pack/elastic-agent/pkg/agent/install/perms_windows.go +++ b/x-pack/elastic-agent/pkg/agent/install/perms_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/root_unix.go b/x-pack/elastic-agent/pkg/agent/install/root_unix.go index b8f6990f6a9..753b0106eb1 100644 --- a/x-pack/elastic-agent/pkg/agent/install/root_unix.go +++ b/x-pack/elastic-agent/pkg/agent/install/root_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/root_windows.go b/x-pack/elastic-agent/pkg/agent/install/root_windows.go index 372a75efe0a..da2f67e6f64 100644 --- a/x-pack/elastic-agent/pkg/agent/install/root_windows.go +++ b/x-pack/elastic-agent/pkg/agent/install/root_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go b/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go index 964f262b29d..d734890d7d7 100644 --- a/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go +++ b/x-pack/elastic-agent/pkg/agent/install/root_windows_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package install diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go index dd40c53587c..a721e7c6b07 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/config.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // TODO review the need for this +//go:build linux || darwin || windows // +build linux darwin windows package kubernetes diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go index a7f71cc32b5..5e63a5ea309 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetesleaderelection/config.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // TODO review the need for this +//go:build linux || darwin || windows // +build linux darwin windows package kubernetesleaderelection diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go index 29463db148a..dd25b79b762 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetessecrets/config.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // TODO review the need for this +//go:build linux || darwin || windows // +build linux darwin windows package kubernetessecrets diff --git a/x-pack/elastic-agent/pkg/config/operations/svc_unix.go b/x-pack/elastic-agent/pkg/config/operations/svc_unix.go index ba63130b89f..f2e9d4905e3 100644 --- a/x-pack/elastic-agent/pkg/config/operations/svc_unix.go +++ b/x-pack/elastic-agent/pkg/config/operations/svc_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package operations diff --git a/x-pack/elastic-agent/pkg/config/operations/svc_windows.go b/x-pack/elastic-agent/pkg/config/operations/svc_windows.go index 1d976d9be2b..314d71f0e8c 100644 --- a/x-pack/elastic-agent/pkg/config/operations/svc_windows.go +++ b/x-pack/elastic-agent/pkg/config/operations/svc_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package operations diff --git a/x-pack/elastic-agent/pkg/core/app/process_cred.go b/x-pack/elastic-agent/pkg/core/app/process_cred.go index c84597ab7ce..261ed358228 100644 --- a/x-pack/elastic-agent/pkg/core/app/process_cred.go +++ b/x-pack/elastic-agent/pkg/core/app/process_cred.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux || darwin // +build linux darwin package app diff --git a/x-pack/elastic-agent/pkg/core/app/process_cred_other.go b/x-pack/elastic-agent/pkg/core/app/process_cred_other.go index 6929278300b..49aa0ccd613 100644 --- a/x-pack/elastic-agent/pkg/core/app/process_cred_other.go +++ b/x-pack/elastic-agent/pkg/core/app/process_cred_other.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !linux -// +build !darwin +//go:build !linux && !darwin +// +build !linux,!darwin package app diff --git a/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go b/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go index 867a4337159..7e3e809e7bc 100644 --- a/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go +++ b/x-pack/elastic-agent/pkg/core/plugin/process/watch_posix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package process diff --git a/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go b/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go index ca2a03a8bff..d5baeb1e895 100644 --- a/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go +++ b/x-pack/elastic-agent/pkg/core/plugin/process/watch_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package process diff --git a/x-pack/elastic-agent/pkg/core/process/cmd.go b/x-pack/elastic-agent/pkg/core/process/cmd.go index c9d93df4047..171870db9be 100644 --- a/x-pack/elastic-agent/pkg/core/process/cmd.go +++ b/x-pack/elastic-agent/pkg/core/process/cmd.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build !linux -// +build !darwin +//go:build !linux && !darwin +// +build !linux,!darwin package process diff --git a/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go b/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go index 73ad4932d69..96de3e4366f 100644 --- a/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go +++ b/x-pack/elastic-agent/pkg/core/process/cmd_darwin.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build darwin // +build darwin package process diff --git a/x-pack/elastic-agent/pkg/core/process/cmd_linux.go b/x-pack/elastic-agent/pkg/core/process/cmd_linux.go index ce6762713c0..d98b9addc77 100644 --- a/x-pack/elastic-agent/pkg/core/process/cmd_linux.go +++ b/x-pack/elastic-agent/pkg/core/process/cmd_linux.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build linux // +build linux package process diff --git a/x-pack/filebeat/input/awss3/input_integration_test.go b/x-pack/filebeat/input/awss3/input_integration_test.go index 7b157dcfb6d..9c6ebb3cac9 100644 --- a/x-pack/filebeat/input/awss3/input_integration_test.go +++ b/x-pack/filebeat/input/awss3/input_integration_test.go @@ -4,8 +4,8 @@ // See _meta/terraform/README.md for integration test usage instructions. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package awss3 diff --git a/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go b/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go index e14bb41a918..99fd3c728f2 100644 --- a/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go +++ b/x-pack/filebeat/input/azureeventhub/azureeventhub_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package azureeventhub diff --git a/x-pack/filebeat/input/cloudfoundry/input_integration_test.go b/x-pack/filebeat/input/cloudfoundry/input_integration_test.go index ac53db9944c..5cf2e956da5 100644 --- a/x-pack/filebeat/input/cloudfoundry/input_integration_test.go +++ b/x-pack/filebeat/input/cloudfoundry/input_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package cloudfoundry diff --git a/x-pack/filebeat/input/gcppubsub/input_test.go b/x-pack/filebeat/input/gcppubsub/input_test.go index e055ee39b97..56a2cd3574e 100644 --- a/x-pack/filebeat/input/gcppubsub/input_test.go +++ b/x-pack/filebeat/input/gcppubsub/input_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package gcppubsub diff --git a/x-pack/filebeat/input/netflow/decoder/fields/gen.go b/x-pack/filebeat/input/netflow/decoder/fields/gen.go index 2f5d04b28ad..5b546932a0c 100644 --- a/x-pack/filebeat/input/netflow/decoder/fields/gen.go +++ b/x-pack/filebeat/input/netflow/decoder/fields/gen.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/input/netflow/fields_gen.go b/x-pack/filebeat/input/netflow/fields_gen.go index 66b77283c90..e4cb6071ebe 100644 --- a/x-pack/filebeat/input/netflow/fields_gen.go +++ b/x-pack/filebeat/input/netflow/fields_gen.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/input/netflow/input_test.go b/x-pack/filebeat/input/netflow/input_test.go index 9e6e8360e72..35348619077 100644 --- a/x-pack/filebeat/input/netflow/input_test.go +++ b/x-pack/filebeat/input/netflow/input_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package netflow diff --git a/x-pack/filebeat/magefile.go b/x-pack/filebeat/magefile.go index c4532d5f56a..344f105b219 100644 --- a/x-pack/filebeat/magefile.go +++ b/x-pack/filebeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js b/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js +++ b/x-pack/filebeat/module/barracuda/spamfirewall/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js b/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js +++ b/x-pack/filebeat/module/barracuda/waf/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js b/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js +++ b/x-pack/filebeat/module/bluecoat/director/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js b/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js +++ b/x-pack/filebeat/module/cisco/meraki/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js b/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js +++ b/x-pack/filebeat/module/cisco/nexus/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go b/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go index 62fc5f41914..4c3fb120401 100644 --- a/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go +++ b/x-pack/filebeat/module/cisco/shared/gen-ecs-mapping-docs.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go b/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go index 0de448f23ce..cd264c6b917 100644 --- a/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go +++ b/x-pack/filebeat/module/cisco/shared/gen-ftd-ecs-mapping.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/module/cisco/shared/stringset.go b/x-pack/filebeat/module/cisco/shared/stringset.go index 8e1ecf3cdc0..4da16372259 100644 --- a/x-pack/filebeat/module/cisco/shared/stringset.go +++ b/x-pack/filebeat/module/cisco/shared/stringset.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build ignore // +build ignore package main diff --git a/x-pack/filebeat/module/cylance/protect/config/liblogparser.js b/x-pack/filebeat/module/cylance/protect/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/cylance/protect/config/liblogparser.js +++ b/x-pack/filebeat/module/cylance/protect/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js b/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js +++ b/x-pack/filebeat/module/f5/bigipafm/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js b/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js +++ b/x-pack/filebeat/module/f5/bigipapm/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js b/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js +++ b/x-pack/filebeat/module/fortinet/clientendpoint/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js b/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js +++ b/x-pack/filebeat/module/fortinet/fortimail/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js b/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js +++ b/x-pack/filebeat/module/fortinet/fortimanager/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js b/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js +++ b/x-pack/filebeat/module/imperva/securesphere/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js b/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js +++ b/x-pack/filebeat/module/infoblox/nios/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/juniper/junos/config/liblogparser.js b/x-pack/filebeat/module/juniper/junos/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/juniper/junos/config/liblogparser.js +++ b/x-pack/filebeat/module/juniper/junos/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js b/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js +++ b/x-pack/filebeat/module/juniper/netscreen/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js b/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js +++ b/x-pack/filebeat/module/microsoft/dhcp/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js b/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js +++ b/x-pack/filebeat/module/netscout/sightline/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js b/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js +++ b/x-pack/filebeat/module/proofpoint/emailsecurity/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js b/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js +++ b/x-pack/filebeat/module/radware/defensepro/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/snort/log/config/liblogparser.js b/x-pack/filebeat/module/snort/log/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/snort/log/config/liblogparser.js +++ b/x-pack/filebeat/module/snort/log/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js b/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js +++ b/x-pack/filebeat/module/sonicwall/firewall/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/sophos/utm/config/liblogparser.js b/x-pack/filebeat/module/sophos/utm/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/sophos/utm/config/liblogparser.js +++ b/x-pack/filebeat/module/sophos/utm/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/squid/log/config/liblogparser.js b/x-pack/filebeat/module/squid/log/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/squid/log/config/liblogparser.js +++ b/x-pack/filebeat/module/squid/log/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/tomcat/log/config/liblogparser.js b/x-pack/filebeat/module/tomcat/log/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/tomcat/log/config/liblogparser.js +++ b/x-pack/filebeat/module/tomcat/log/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js b/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js index cec99a043e8..9475ee9a8ec 100644 --- a/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js +++ b/x-pack/filebeat/module/zscaler/zia/config/liblogparser.js @@ -944,7 +944,7 @@ function tagval(id, src, cfg, keys, on_success) { } var quotes_len = cfg.open_quote.length > 0 && cfg.close_quote.length > 0? cfg.open_quote.length + cfg.close_quote.length : 0; - var kv_regex = new RegExp('^*([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + '*(.*)*$'); + var kv_regex = new RegExp('^([^' + cfg.kv_separator + ']*)*' + cfg.kv_separator + ' *(.*)*$'); return function(evt) { var msg = evt.Get(src); if (msg === undefined) { diff --git a/x-pack/functionbeat/Dockerfile b/x-pack/functionbeat/Dockerfile index 6f30f22e0c1..32a50093bae 100644 --- a/x-pack/functionbeat/Dockerfile +++ b/x-pack/functionbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/x-pack/functionbeat/magefile.go b/x-pack/functionbeat/magefile.go index 95861a3f0f2..afe34d59dcf 100644 --- a/x-pack/functionbeat/magefile.go +++ b/x-pack/functionbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/heartbeat/magefile.go b/x-pack/heartbeat/magefile.go index f9c9c54b724..0427001f11a 100644 --- a/x-pack/heartbeat/magefile.go +++ b/x-pack/heartbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/libbeat/Dockerfile b/x-pack/libbeat/Dockerfile index d9af989f3c1..47e632241d9 100644 --- a/x-pack/libbeat/Dockerfile +++ b/x-pack/libbeat/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.6 +FROM golang:1.17.1 RUN \ apt-get update \ diff --git a/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go b/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go index f799cc0615f..dd117213466 100644 --- a/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go +++ b/x-pack/libbeat/common/cloudfoundry/cache_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/cache_test.go b/x-pack/libbeat/common/cloudfoundry/cache_test.go index b345beff226..69b2716db08 100644 --- a/x-pack/libbeat/common/cloudfoundry/cache_test.go +++ b/x-pack/libbeat/common/cloudfoundry/cache_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/config_test.go b/x-pack/libbeat/common/cloudfoundry/config_test.go index 79ba7d47cc1..1e951dc24aa 100644 --- a/x-pack/libbeat/common/cloudfoundry/config_test.go +++ b/x-pack/libbeat/common/cloudfoundry/config_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/events_test.go b/x-pack/libbeat/common/cloudfoundry/events_test.go index af924b33ba3..921d3fde191 100644 --- a/x-pack/libbeat/common/cloudfoundry/events_test.go +++ b/x-pack/libbeat/common/cloudfoundry/events_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go b/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go index 724f22d3ed8..3284b66cec9 100644 --- a/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go +++ b/x-pack/libbeat/common/cloudfoundry/rlplistener_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudfoundry diff --git a/x-pack/libbeat/magefile.go b/x-pack/libbeat/magefile.go index 2b8d8f35d8e..5e941dc5aa0 100644 --- a/x-pack/libbeat/magefile.go +++ b/x-pack/libbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/metricbeat/magefile.go b/x-pack/metricbeat/magefile.go index c48a5365a67..85f8cf074d2 100644 --- a/x-pack/metricbeat/magefile.go +++ b/x-pack/metricbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/metricbeat/module/appsearch/stats/data_test.go b/x-pack/metricbeat/module/appsearch/stats/data_test.go index e34bd673e7e..9ec726beaa8 100644 --- a/x-pack/metricbeat/module/appsearch/stats/data_test.go +++ b/x-pack/metricbeat/module/appsearch/stats/data_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package stats diff --git a/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go b/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go index 1dd0c10d095..9e56d150b2c 100644 --- a/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/appsearch/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/aws/aws_test.go b/x-pack/metricbeat/module/aws/aws_test.go index 7d89adca574..08b0dd9bf83 100644 --- a/x-pack/metricbeat/module/aws/aws_test.go +++ b/x-pack/metricbeat/module/aws/aws_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package aws diff --git a/x-pack/metricbeat/module/aws/billing/billing_integration_test.go b/x-pack/metricbeat/module/aws/billing/billing_integration_test.go index 944d2b47f75..9dbd38f8782 100644 --- a/x-pack/metricbeat/module/aws/billing/billing_integration_test.go +++ b/x-pack/metricbeat/module/aws/billing/billing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package billing diff --git a/x-pack/metricbeat/module/aws/billing/billing_test.go b/x-pack/metricbeat/module/aws/billing/billing_test.go index 2ecd511109d..63d2e4b04c5 100644 --- a/x-pack/metricbeat/module/aws/billing/billing_test.go +++ b/x-pack/metricbeat/module/aws/billing/billing_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package billing diff --git a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go index 578c6ca9cef..0758dcbee93 100644 --- a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go +++ b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package cloudwatch diff --git a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go index 5e4157f24a2..f2942412c5a 100644 --- a/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go +++ b/x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package cloudwatch diff --git a/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go b/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go index 52a97184650..930e004dbc0 100644 --- a/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go +++ b/x-pack/metricbeat/module/aws/dynamodb/dynamodb_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package dynamodb diff --git a/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go b/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go index 4012a8c0060..5cb29ae905a 100644 --- a/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go +++ b/x-pack/metricbeat/module/aws/ebs/ebs_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package ebs diff --git a/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go b/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go index 03a8d0ad6af..e89195f73b7 100644 --- a/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go +++ b/x-pack/metricbeat/module/aws/ec2/ec2_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package ec2 diff --git a/x-pack/metricbeat/module/aws/elb/elb_integration_test.go b/x-pack/metricbeat/module/aws/elb/elb_integration_test.go index 6fc05f5a0e1..4126937bc3d 100644 --- a/x-pack/metricbeat/module/aws/elb/elb_integration_test.go +++ b/x-pack/metricbeat/module/aws/elb/elb_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package elb diff --git a/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go b/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go index a0bcc461932..970c6961c37 100644 --- a/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go +++ b/x-pack/metricbeat/module/aws/kinesis/kinesis_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package kinesis diff --git a/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go b/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go index 6948f93515e..d986deca14f 100644 --- a/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go +++ b/x-pack/metricbeat/module/aws/lambda/lambda_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package lambda diff --git a/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go b/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go index c35e32a7a12..e17709ea364 100644 --- a/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go +++ b/x-pack/metricbeat/module/aws/natgateway/natgateway_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package natgateway diff --git a/x-pack/metricbeat/module/aws/rds/rds_integration_test.go b/x-pack/metricbeat/module/aws/rds/rds_integration_test.go index 71cdd362ede..494a0695fae 100644 --- a/x-pack/metricbeat/module/aws/rds/rds_integration_test.go +++ b/x-pack/metricbeat/module/aws/rds/rds_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package rds diff --git a/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go b/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go index 6cf529df29c..c23833359b8 100644 --- a/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go +++ b/x-pack/metricbeat/module/aws/s3_daily_storage/s3_daily_storage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package s3_daily_storage diff --git a/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go b/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go index f361ebc382d..7c2e327a57e 100644 --- a/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go +++ b/x-pack/metricbeat/module/aws/s3_request/s3_request_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package s3_request diff --git a/x-pack/metricbeat/module/aws/sns/sns_integration_test.go b/x-pack/metricbeat/module/aws/sns/sns_integration_test.go index b00d1a6b708..3a3e1531d2b 100644 --- a/x-pack/metricbeat/module/aws/sns/sns_integration_test.go +++ b/x-pack/metricbeat/module/aws/sns/sns_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package sns diff --git a/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go b/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go index 63b22190d56..1a0e31dbeb3 100644 --- a/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go +++ b/x-pack/metricbeat/module/aws/sqs/sqs_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package sqs diff --git a/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go b/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go index 22429a5cf3b..03da232c57b 100644 --- a/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go +++ b/x-pack/metricbeat/module/aws/transitgateway/transitgateway_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package transitgateway diff --git a/x-pack/metricbeat/module/aws/usage/usage_integration_test.go b/x-pack/metricbeat/module/aws/usage/usage_integration_test.go index f7f63e6ff4d..4fbed9a4af4 100644 --- a/x-pack/metricbeat/module/aws/usage/usage_integration_test.go +++ b/x-pack/metricbeat/module/aws/usage/usage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package usage diff --git a/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go b/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go index bd91fe1d54f..62c413096f3 100644 --- a/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go +++ b/x-pack/metricbeat/module/aws/vpn/vpn_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build aws +//go:build integration && aws +// +build integration,aws package vpn diff --git a/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go b/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go index 67129f38ff7..2511827ddd5 100644 --- a/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go +++ b/x-pack/metricbeat/module/awsfargate/task_stats/task_stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package task_stats diff --git a/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go b/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go index c33f05c2de6..f9f3d12b63b 100644 --- a/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go +++ b/x-pack/metricbeat/module/azure/app_insights/app_insights_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package app_insights diff --git a/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go b/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go index 8762cae440d..744cfb9e4a8 100644 --- a/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go +++ b/x-pack/metricbeat/module/azure/app_state/app_state_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package app_state diff --git a/x-pack/metricbeat/module/azure/billing/billing_integration_test.go b/x-pack/metricbeat/module/azure/billing/billing_integration_test.go index da7c9977d58..72d221a1cdd 100644 --- a/x-pack/metricbeat/module/azure/billing/billing_integration_test.go +++ b/x-pack/metricbeat/module/azure/billing/billing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package billing diff --git a/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go b/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go index 929e4e98a82..c001aafad23 100644 --- a/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go +++ b/x-pack/metricbeat/module/azure/compute_vm/compute_vm_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package compute_vm diff --git a/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go b/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go index 0a4a8df5e6b..f577f45a7a6 100644 --- a/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go +++ b/x-pack/metricbeat/module/azure/compute_vm_scaleset/compute_vm_scaleset_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package compute_vm_scaleset diff --git a/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go b/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go index e12e879084e..b33def1b7dc 100644 --- a/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go +++ b/x-pack/metricbeat/module/azure/container_instance/container_instance_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package container_instance diff --git a/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go b/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go index df38ea55a79..c8de4bea886 100644 --- a/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go +++ b/x-pack/metricbeat/module/azure/container_registry/container_registry_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package container_registry diff --git a/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go b/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go index d9dc1bc98b8..0a304753ffe 100644 --- a/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go +++ b/x-pack/metricbeat/module/azure/container_service/container_service_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package container_service diff --git a/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go b/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go index 4c00bd03af0..e9e198fc149 100644 --- a/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go +++ b/x-pack/metricbeat/module/azure/database_account/database_account_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package database_account diff --git a/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go b/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go index b351592d0dd..9383d92de6c 100644 --- a/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go +++ b/x-pack/metricbeat/module/azure/monitor/monitor_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package monitor diff --git a/x-pack/metricbeat/module/azure/storage/storage_integration_test.go b/x-pack/metricbeat/module/azure/storage/storage_integration_test.go index b611f82694b..a8a83c2a7ef 100644 --- a/x-pack/metricbeat/module/azure/storage/storage_integration_test.go +++ b/x-pack/metricbeat/module/azure/storage/storage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build azure +//go:build integration && azure +// +build integration,azure package storage diff --git a/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go b/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go index 605f7145f64..f58e876580e 100644 --- a/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/container/container_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package container diff --git a/x-pack/metricbeat/module/cloudfoundry/container/container_test.go b/x-pack/metricbeat/module/cloudfoundry/container/container_test.go index ceabb62cc01..5970204c680 100644 --- a/x-pack/metricbeat/module/cloudfoundry/container/container_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/container/container_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package container diff --git a/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go b/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go index f7c13b1a603..49194a61174 100644 --- a/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/counter/counter_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package counter diff --git a/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go b/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go index a315709878e..0a00cbd226a 100644 --- a/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/counter/counter_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package counter diff --git a/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go b/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go index af815a3d4b7..2fb9abfc219 100644 --- a/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/value/value_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build cloudfoundry +//go:build integration && cloudfoundry +// +build integration,cloudfoundry package value diff --git a/x-pack/metricbeat/module/cloudfoundry/value/value_test.go b/x-pack/metricbeat/module/cloudfoundry/value/value_test.go index 2003388e228..097f3d37fb2 100644 --- a/x-pack/metricbeat/module/cloudfoundry/value/value_test.go +++ b/x-pack/metricbeat/module/cloudfoundry/value/value_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package value diff --git a/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go b/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go index 797b6982073..bb62d07e3d9 100644 --- a/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go +++ b/x-pack/metricbeat/module/cockroachdb/status/status_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/cockroachdb/status/status_test.go b/x-pack/metricbeat/module/cockroachdb/status/status_test.go index bb6bab07097..1e2bfaf717a 100644 --- a/x-pack/metricbeat/module/cockroachdb/status/status_test.go +++ b/x-pack/metricbeat/module/cockroachdb/status/status_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package status diff --git a/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go b/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go index 54c970325b3..38d9692afce 100644 --- a/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/coredns/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/coredns/stats/stats_test.go b/x-pack/metricbeat/module/coredns/stats/stats_test.go index 106e8e10480..0d5404448a5 100644 --- a/x-pack/metricbeat/module/coredns/stats/stats_test.go +++ b/x-pack/metricbeat/module/coredns/stats/stats_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package stats diff --git a/x-pack/metricbeat/module/enterprisesearch/health/data_test.go b/x-pack/metricbeat/module/enterprisesearch/health/data_test.go index af9142d39ed..34eb068c371 100644 --- a/x-pack/metricbeat/module/enterprisesearch/health/data_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/health/data_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package health diff --git a/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go b/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go index 364039e0f51..e22a7e892ad 100644 --- a/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/health/health_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package health diff --git a/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go b/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go index aa1f99fe475..1d8fe76eb52 100644 --- a/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/stats/data_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package stats diff --git a/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go b/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go index a6aa304b6dc..06d6e226253 100644 --- a/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/enterprisesearch/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go b/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go index 7da63d3dc64..11543f78e66 100644 --- a/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go +++ b/x-pack/metricbeat/module/gcp/billing/billing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package billing diff --git a/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go b/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go index 74aade08442..522b9ba0401 100644 --- a/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go +++ b/x-pack/metricbeat/module/gcp/compute/compute_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package compute diff --git a/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go b/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go index 1389338f92c..4b8f3a60d98 100644 --- a/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go +++ b/x-pack/metricbeat/module/gcp/loadbalancing/loadbalancing_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package loadbalancing diff --git a/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go b/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go index f9d9aece45d..69900e4a42f 100644 --- a/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go +++ b/x-pack/metricbeat/module/gcp/metrics/metrics_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package metrics diff --git a/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go b/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go index 8c47c45a0ad..ade96ddd940 100644 --- a/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go +++ b/x-pack/metricbeat/module/gcp/pubsub/pubsub_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package pubsub diff --git a/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go b/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go index 34c6a37886c..97c69e05be3 100644 --- a/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go +++ b/x-pack/metricbeat/module/gcp/storage/storage_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build gcp +//go:build integration && gcp +// +build integration,gcp package storage diff --git a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go index 1f6cf78a1da..42d03eb7c86 100644 --- a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go +++ b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go index 4adad858ec8..2ff72c28898 100644 --- a/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go +++ b/x-pack/metricbeat/module/ibmmq/qmgr/qmgr_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package qmgr diff --git a/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go b/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go index e270880723a..dba12326910 100644 --- a/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go +++ b/x-pack/metricbeat/module/iis/application_pool/application_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/application_pool.go b/x-pack/metricbeat/module/iis/application_pool/application_pool.go index 9c92894fb29..6a2ee7de5d0 100644 --- a/x-pack/metricbeat/module/iis/application_pool/application_pool.go +++ b/x-pack/metricbeat/module/iis/application_pool/application_pool.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go b/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go index 86cd7266460..1ebe22d6870 100644 --- a/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go +++ b/x-pack/metricbeat/module/iis/application_pool/application_pool_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/reader.go b/x-pack/metricbeat/module/iis/application_pool/reader.go index d15b0a47747..72ecbb8bd0d 100644 --- a/x-pack/metricbeat/module/iis/application_pool/reader.go +++ b/x-pack/metricbeat/module/iis/application_pool/reader.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/application_pool/reader_test.go b/x-pack/metricbeat/module/iis/application_pool/reader_test.go index 55731f1ee1b..681ad36115f 100644 --- a/x-pack/metricbeat/module/iis/application_pool/reader_test.go +++ b/x-pack/metricbeat/module/iis/application_pool/reader_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package application_pool diff --git a/x-pack/metricbeat/module/iis/test/integration.go b/x-pack/metricbeat/module/iis/test/integration.go index e7ff6295663..ede53c9406f 100644 --- a/x-pack/metricbeat/module/iis/test/integration.go +++ b/x-pack/metricbeat/module/iis/test/integration.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package test diff --git a/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go b/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go index 345490cc5c8..ea11ef5b5a2 100644 --- a/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go +++ b/x-pack/metricbeat/module/iis/webserver/webserver_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package webserver diff --git a/x-pack/metricbeat/module/iis/webserver/webserver_test.go b/x-pack/metricbeat/module/iis/webserver/webserver_test.go index a0622df76c1..0611aaff655 100644 --- a/x-pack/metricbeat/module/iis/webserver/webserver_test.go +++ b/x-pack/metricbeat/module/iis/webserver/webserver_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package webserver diff --git a/x-pack/metricbeat/module/iis/website/website_integration_test.go b/x-pack/metricbeat/module/iis/website/website_integration_test.go index cebe87e2766..654bfc1c27f 100644 --- a/x-pack/metricbeat/module/iis/website/website_integration_test.go +++ b/x-pack/metricbeat/module/iis/website/website_integration_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build windows +//go:build integration && windows +// +build integration,windows package website diff --git a/x-pack/metricbeat/module/iis/website/website_test.go b/x-pack/metricbeat/module/iis/website/website_test.go index ac850dbe999..a2a7951e204 100644 --- a/x-pack/metricbeat/module/iis/website/website_test.go +++ b/x-pack/metricbeat/module/iis/website/website_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package website diff --git a/x-pack/metricbeat/module/istio/citadel/citadel_test.go b/x-pack/metricbeat/module/istio/citadel/citadel_test.go index 239b34644ce..0a36cc0245d 100644 --- a/x-pack/metricbeat/module/istio/citadel/citadel_test.go +++ b/x-pack/metricbeat/module/istio/citadel/citadel_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package citadel diff --git a/x-pack/metricbeat/module/istio/galley/galley_test.go b/x-pack/metricbeat/module/istio/galley/galley_test.go index 0dbd1b8832c..135ba28633c 100644 --- a/x-pack/metricbeat/module/istio/galley/galley_test.go +++ b/x-pack/metricbeat/module/istio/galley/galley_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package galley diff --git a/x-pack/metricbeat/module/istio/istiod/istiod_test.go b/x-pack/metricbeat/module/istio/istiod/istiod_test.go index 23ce86ca7f0..1e5ae645d53 100644 --- a/x-pack/metricbeat/module/istio/istiod/istiod_test.go +++ b/x-pack/metricbeat/module/istio/istiod/istiod_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package istiod diff --git a/x-pack/metricbeat/module/istio/mesh/mesh_test.go b/x-pack/metricbeat/module/istio/mesh/mesh_test.go index 71d475d9ece..d1fd460147a 100644 --- a/x-pack/metricbeat/module/istio/mesh/mesh_test.go +++ b/x-pack/metricbeat/module/istio/mesh/mesh_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package mesh diff --git a/x-pack/metricbeat/module/istio/mixer/mixer_test.go b/x-pack/metricbeat/module/istio/mixer/mixer_test.go index 6f9b624f70e..548225737f1 100644 --- a/x-pack/metricbeat/module/istio/mixer/mixer_test.go +++ b/x-pack/metricbeat/module/istio/mixer/mixer_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package mixer diff --git a/x-pack/metricbeat/module/istio/pilot/pilot_test.go b/x-pack/metricbeat/module/istio/pilot/pilot_test.go index 0cd6113fe3f..11874bce447 100644 --- a/x-pack/metricbeat/module/istio/pilot/pilot_test.go +++ b/x-pack/metricbeat/module/istio/pilot/pilot_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package pilot diff --git a/x-pack/metricbeat/module/istio/proxy/proxy_test.go b/x-pack/metricbeat/module/istio/proxy/proxy_test.go index 48f3b104296..fe6c1c6541d 100644 --- a/x-pack/metricbeat/module/istio/proxy/proxy_test.go +++ b/x-pack/metricbeat/module/istio/proxy/proxy_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package proxy diff --git a/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go b/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go index 5e039265d2b..6c41f5cdd31 100644 --- a/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go +++ b/x-pack/metricbeat/module/mssql/performance/performance_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package performance diff --git a/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go b/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go index 07465b525b5..aa17f307d19 100644 --- a/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go +++ b/x-pack/metricbeat/module/mssql/transaction_log/transaction_log_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package transaction_log diff --git a/x-pack/metricbeat/module/oracle/performance/metricset_test.go b/x-pack/metricbeat/module/oracle/performance/metricset_test.go index 359bdd12c97..628ece13626 100644 --- a/x-pack/metricbeat/module/oracle/performance/metricset_test.go +++ b/x-pack/metricbeat/module/oracle/performance/metricset_test.go @@ -1,8 +1,8 @@ // Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build oracle +//go:build integration && oracle +// +build integration,oracle package performance diff --git a/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go b/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go index f960e2918a3..9a66e85b4e5 100644 --- a/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go +++ b/x-pack/metricbeat/module/oracle/tablespace/metricset_test.go @@ -2,8 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -// +build integration -// +build oracle +//go:build integration && oracle +// +build integration,oracle package tablespace diff --git a/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go b/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go index 179a97c75ce..e4a3d53aeb1 100644 --- a/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go +++ b/x-pack/metricbeat/module/prometheus/collector/collector_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package collector diff --git a/x-pack/metricbeat/module/prometheus/collector/collector_test.go b/x-pack/metricbeat/module/prometheus/collector/collector_test.go index 5f42875dd76..36d4008065d 100644 --- a/x-pack/metricbeat/module/prometheus/collector/collector_test.go +++ b/x-pack/metricbeat/module/prometheus/collector/collector_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package collector diff --git a/x-pack/metricbeat/module/prometheus/collector/histogram_test.go b/x-pack/metricbeat/module/prometheus/collector/histogram_test.go index 594a67de504..6db36a3aa9f 100644 --- a/x-pack/metricbeat/module/prometheus/collector/histogram_test.go +++ b/x-pack/metricbeat/module/prometheus/collector/histogram_test.go @@ -3,6 +3,7 @@ // you may not use this file except in compliance with the Elastic License. // skipping tests on windows 32 bit versions, not supported +//go:build !integration && !windows && !386 // +build !integration,!windows,!386 package collector diff --git a/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go b/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go index 6c031be5bba..1cd2afc8bdb 100644 --- a/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go +++ b/x-pack/metricbeat/module/prometheus/remote_write/remote_write_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package remote_write diff --git a/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go b/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go index 8c061d57176..022e78a11e7 100644 --- a/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go +++ b/x-pack/metricbeat/module/redisenterprise/node/node_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package node diff --git a/x-pack/metricbeat/module/redisenterprise/node/node_test.go b/x-pack/metricbeat/module/redisenterprise/node/node_test.go index 72a3c5af282..3208bf16fa6 100644 --- a/x-pack/metricbeat/module/redisenterprise/node/node_test.go +++ b/x-pack/metricbeat/module/redisenterprise/node/node_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package node diff --git a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go index 756f6ce864b..553453241b9 100644 --- a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go +++ b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package proxy diff --git a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go index 7da64bbfc54..88b7bf5af2e 100644 --- a/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go +++ b/x-pack/metricbeat/module/redisenterprise/proxy/proxy_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !integration // +build !integration package proxy diff --git a/x-pack/metricbeat/module/sql/query/query_integration_test.go b/x-pack/metricbeat/module/sql/query/query_integration_test.go index b6c68bd4306..ac5b0a17af6 100644 --- a/x-pack/metricbeat/module/sql/query/query_integration_test.go +++ b/x-pack/metricbeat/module/sql/query/query_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package query diff --git a/x-pack/metricbeat/module/stan/channels/channels_integration_test.go b/x-pack/metricbeat/module/stan/channels/channels_integration_test.go index ec34211aaa5..1e9e31d58bc 100644 --- a/x-pack/metricbeat/module/stan/channels/channels_integration_test.go +++ b/x-pack/metricbeat/module/stan/channels/channels_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package channels diff --git a/x-pack/metricbeat/module/stan/stats/stats_integration_test.go b/x-pack/metricbeat/module/stan/stats/stats_integration_test.go index a3a9de32964..5167767865a 100644 --- a/x-pack/metricbeat/module/stan/stats/stats_integration_test.go +++ b/x-pack/metricbeat/module/stan/stats/stats_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package stats diff --git a/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go b/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go index 3fcb9bf22b6..0f58f940a60 100644 --- a/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go +++ b/x-pack/metricbeat/module/stan/subscriptions/subscriptions_integration_test.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build integration // +build integration package subscriptions diff --git a/x-pack/osquerybeat/ext/osquery-extension/main.go b/x-pack/osquerybeat/ext/osquery-extension/main.go index 4c632254175..659e355bcaf 100644 --- a/x-pack/osquerybeat/ext/osquery-extension/main.go +++ b/x-pack/osquerybeat/ext/osquery-extension/main.go @@ -50,7 +50,7 @@ func main() { go monitorForParent() - sig := make(chan os.Signal) + sig := make(chan os.Signal, 1) signal.Notify(sig, os.Interrupt) <-sig } diff --git a/x-pack/packetbeat/magefile.go b/x-pack/packetbeat/magefile.go index 4dcb7c13a9b..f5e930c5156 100644 --- a/x-pack/packetbeat/magefile.go +++ b/x-pack/packetbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/winlogbeat/magefile.go b/x-pack/winlogbeat/magefile.go index a52000fa830..a40fb6f5423 100644 --- a/x-pack/winlogbeat/magefile.go +++ b/x-pack/winlogbeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main diff --git a/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go b/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go index 36e5bdd5d6a..b2ce22ad3a0 100644 --- a/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go +++ b/x-pack/winlogbeat/module/sysmon/gen_dns_error_codes.go @@ -2,7 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -//+build ignore +//go:build ignore +// +build ignore package main From 3e5fe148015322f176e6c96ea8f6d888c0c8fbb1 Mon Sep 17 00:00:00 2001 From: Michael Katsoulis Date: Mon, 11 Oct 2021 18:04:26 +0300 Subject: [PATCH 13/25] Move labels and annotations under kubernetes.namespace. (#27917) * Move labels and annotations under kubernetes.namespace. --- CHANGELOG.next.asciidoc | 1 + auditbeat/docs/fields.asciidoc | 35 +- auditbeat/include/fields.go | 2 +- filebeat/docs/fields.asciidoc | 35 +- filebeat/include/fields.go | 2 +- heartbeat/docs/fields.asciidoc | 35 +- heartbeat/include/fields.go | 2 +- journalbeat/docs/fields.asciidoc | 35 +- journalbeat/include/fields.go | 2 +- .../autodiscover/providers/kubernetes/pod.go | 7 +- .../providers/kubernetes/pod_test.go | 292 ++- .../providers/kubernetes/service.go | 5 +- .../providers/kubernetes/service_test.go | 84 +- .../k8skeystore/kubernetes_keystore.go | 2 +- .../k8skeystore/kubernetes_keystore_test.go | 18 +- .../common/kubernetes/metadata/namespace.go | 56 +- .../kubernetes/metadata/namespace_test.go | 58 +- .../common/kubernetes/metadata/pod_test.go | 38 +- .../common/kubernetes/metadata/resource.go | 3 +- .../kubernetes/metadata/resource_test.go | 8 +- .../kubernetes/metadata/service_test.go | 35 +- .../add_kubernetes_metadata/_meta/fields.yml | 25 +- .../add_kubernetes_metadata/indexers_test.go | 16 +- metricbeat/docs/fields.asciidoc | 35 +- metricbeat/include/fields/fields.go | 2 +- .../module/kubernetes/container/data.go | 4 +- metricbeat/module/kubernetes/event/event.go | 4 +- metricbeat/module/kubernetes/pod/data.go | 4 +- .../_meta/test/ksm.v1.3.0.expected | 210 +- .../_meta/test/ksm.v1.8.0.expected | 248 +- .../_meta/test/ksm.v2.0.0.expected | 438 ++-- .../testdata/ksm-v1_3_0.plain-expected.json | 306 +-- .../state_container/state_container.go | 2 +- .../_meta/test/ksm.v1.8.0.expected | 4 +- .../_meta/test/ksm.v2.0.0.expected | 4 +- .../kubernetes/state_cronjob/state_cronjob.go | 2 +- .../state_daemonset/_meta/data.json | 6 +- .../_meta/test/ksm.v1.3.0.expected | 4 +- .../_meta/test/ksm.v1.8.0.expected | 4 +- .../_meta/test/ksm.v2.0.0.expected | 30 +- .../_meta/testdata/docs.plain-expected.json | 12 +- .../state_daemonset/state_daemonset.go | 2 +- .../_meta/test/ksm.v1.3.0.expected | 16 +- .../_meta/test/ksm.v1.8.0.expected | 24 +- .../_meta/test/ksm.v2.0.0.expected | 34 +- .../testdata/ksm-v1.3.0.plain-expected.json | 64 +- .../testdata/ksm-v1.8.0.plain-expected.json | 246 +- .../state_deployment/state_deployment.go | 2 +- .../state_job/_meta/test/ksm.v1.8.0.expected | 4 +- .../state_job/_meta/test/ksm.v2.0.0.expected | 4 +- ...e-state-metrics-v1.8.0.plain-expected.json | 2108 ++++++++++------- .../module/kubernetes/state_job/state_job.go | 2 +- .../_meta/test/ksm.unit.v1.8.0.expected | 28 +- .../_meta/test/ksm.v1.8.0.expected | 16 +- .../_meta/test/ksm.v2.0.0.expected | 4 +- .../state_persistentvolumeclaim.go | 2 +- .../kubernetes/state_pod/_meta/data.json | 8 +- .../state_pod/_meta/test/ksm.v1.3.0.expected | 72 +- .../state_pod/_meta/test/ksm.v1.8.0.expected | 106 +- .../state_pod/_meta/test/ksm.v2.0.0.expected | 196 +- .../_meta/testdata/docs.plain-expected.json | 90 +- .../module/kubernetes/state_pod/state_pod.go | 2 +- .../state_replicaset/_meta/data.json | 8 +- .../_meta/test/ksm.v1.3.0.expected | 42 +- .../_meta/test/ksm.v1.8.0.expected | 28 +- .../_meta/test/ksm.v2.0.0.expected | 40 +- .../_meta/testdata/docs.plain-expected.json | 58 +- .../state_replicaset/state_replicaset.go | 2 +- .../_meta/test/ksm.v1.8.0.expected | 270 ++- .../state_resourcequota.go | 2 +- .../_meta/test/ksm.unit.v1.8.0.expected | 58 +- .../_meta/test/ksm.v1.3.0.expected | 56 +- .../_meta/test/ksm.v1.8.0.expected | 34 +- .../_meta/test/ksm.v2.0.0.expected | 24 +- .../kubernetes/state_service/state_service.go | 2 +- .../state_statefulset/_meta/data.json | 18 +- .../_meta/test/ksm.unit.v2.0.0.expected | 4 +- .../_meta/test/ksm.v1.8.0.expected | 4 +- .../_meta/testdata/docs.plain-expected.json | 40 +- .../state_statefulset/state_statefulset.go | 2 +- .../module/kubernetes/util/kubernetes.go | 2 +- metricbeat/module/kubernetes/volume/data.go | 4 +- .../openmetrics/collector/_meta/data.json | 2 +- .../prometheus/collector/_meta/data.json | 6 +- packetbeat/docs/fields.asciidoc | 35 +- packetbeat/include/fields.go | 2 +- winlogbeat/docs/fields.asciidoc | 35 +- winlogbeat/include/fields.go | 2 +- .../module/coredns/log/test/coredns-json.log | 6 +- .../log/test/coredns-json.log-expected.json | 18 +- .../module/envoyproxy/log/test/envoy-json.log | 4 +- .../log/test/envoy-json.log-expected.json | 8 +- x-pack/functionbeat/docs/fields.asciidoc | 35 +- x-pack/functionbeat/include/fields.go | 2 +- x-pack/heartbeat/include/fields.go | 2 +- .../prometheus/collector/_meta/data.json | 5 +- x-pack/osquerybeat/docs/fields.asciidoc | 35 +- x-pack/osquerybeat/include/fields.go | 2 +- 98 files changed, 3651 insertions(+), 2391 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index c1069dc6934..8e8e99a9e12 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -24,6 +24,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Remove deprecated fields from kubernetes module {pull}28046[28046] - Remove deprecated config option aws_partition. {pull}28120[28120] - Improve stats API {pull}27963[27963] +- Update kubernetes.namespace from keyword to group field and add name, labels, annotations, uuid as its fields {pull}27917[27917] *Auditbeat* diff --git a/auditbeat/docs/fields.asciidoc b/auditbeat/docs/fields.asciidoc index 2b1ea54d853..01f57d4932f 100644 --- a/auditbeat/docs/fields.asciidoc +++ b/auditbeat/docs/fields.asciidoc @@ -17322,16 +17322,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/auditbeat/include/fields.go b/auditbeat/include/fields.go index 78b96b65467..bf93f4d042c 100644 --- a/auditbeat/include/fields.go +++ b/auditbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "eJzs/X17GzeyL4r+n0+Bq7nPlZVFtkjqxbLunnO2IsmJnu0XjSVPZiWeRwS7QRKjJtAB0JKYddZ3Pw+qADT6RTJli44zy3tneUSyGygUgEJVoepXfyE/H717c/bmx/8POZFESENYxg0xc67JlOeMZFyx1OTLHuGG3FJNZkwwRQ3LyGRJzJyR0+MLUij5L5aa3nd/IROqWUakgO9vmNJcCjJMhqNkkHz3F3KeM6oZueGaGzI3ptCH29szbublJEnlYpvlVBuebrNUEyOJLmczpg1J51TMGHxl251ylmc6+e67Prlmy0PCUv0dIYabnB3aB74jJGM6VbwwXAr4irx07xD39uF3hPSJoAt2SDb/t+ELpg1dFJvfEUJIzm5YfkhSqRh8Vuy3kiuWHRKjSvzKLAt2SDJq8GOtv80Tati2bZPczpkAPrEbJgyRis+4sPxLvoP3CLm0zOYaHsrCe+zOKJpaPk+VXFQt9GzHPKV5viSKFYppJgwXM+jItVh11zljWpYqZaH/s2n0Av5G5lQTIT21OQns6eHauKF5yYDoQEwhizK33bhmXWdTrrSB9xtkKZYyflNRVfCC5VxUdL1zPMf5IlOpCM1zbEEnOE/sji4KO+mbo8Fwvz/Y6492LgcHh4O9w53d5GBv55fNaJpzOmG57pxgnE05scsYvsA/r/D7a7a8lSrrmOjjUhu5sA9sI08KypUOYzimgkwYKe2eMJLQLCMLZijhYirVgtpG7PduTORiLss8g32YSmEoF0QwbacOyYHla//fUZ7jHGhCFSPaSMsoqj2lgYBTz6BxJtNrpsaEioyMrw/02LGjxcn/2qBFkfMUqNs4JBtTKfsTqjZ6ZIOJG/tNoWRWpvD7f8cMXjCt6Yw9wOEFNen8Sop8eWXYneng6EupSC5njiewNFyzbiE4zuBP9kn3c4/IwvAF/z0sQbtkbji7tduDC0LhafsFU4FBtjttVJma0rIwlzNNbrmZy9IQKqodUKOhR6SZM+UkCUlxllMpUmqYiDaBkZaIBaFkXi6o6CtGMzrJGdHlYkHVksho88U7clHmhhd5GLsm7I5ru/vnbFl1uJhwwTLChZFEivB0c05/Ynkuyc9S5Vk0W4bOHtoM8aLnMyEVu6ITecMOyXAw2m3P3CuujR2Pe0+HVW/ojDCazv0o68vt13g14RIbbfwzXlV0xgSuFCfhj8IXMyXL4pCMOtbR5Zzhm2GW3I5ycpYSOrGTjBJxam7tRrKy1NjDbuqmgoql5Tm1GzLP7RbskYwZ/EMqIieaqRs7PbhcpV1mc2lnSipi6DXTZMGoLhVb2Adcs+Gx5kbVhIs0LzNGfmDUigQYqyYLuiQ015KoUti3Xb9KJ3C4wUCT791QXZN6buXlhFWiGVa2pZ/yXPu1h0xSpRB2n0hkkKUtGp9yTd7OmYoF+ZwWBbMr0A4WdmoYKgh5ywDhVuNUSiOksXPuB3tIzrC71CoFcoqDhn1rN2Kvoi+xS4E4rWTCqEmi/Xt0/hr0E3eI1gfkZpwWxbYdCk9ZQqq1EQviTDLPOpDAoHMQPsXVwjWxRy0xcyXL2Zz8VrLStq+X2rCFJjm/ZuT/0Ok17ZF3LOO4PgolU6Y1FzM/Ke5xXaZzK7BfyZk2VM8JjoNcALsdy3AjwiJHFgbNpdodk5LnWeLllOuluaO79vS9u7q5k07vDBOZPaltVzWWTd284xz5tex0GhTXVrkRrgEjwy6kYtnRHuw0igxHVSQ0aXdAoeQNz1jP6ia6YCmf8pTg26ADcR00NcfBSNIsmFE8tWsn6KXPk/1kQJ7RRba/u9UjOZ/Az/j1r/t0tMMOpgfTncF0bzAYTujO7i7bZXu72UH2Ip0cjNLJcPA8DSTa8RgyGowG/cGoP9gjo53D4eBwOCD/MRgMBuT95fE/A4entMzNFfDokExprlltWlkxZwumaH7Fs/qkMjcdTzCxvg/CMyv5ppwplApcu/3xjE/hYIHTR281p5hbZUUtQAH0OjpNldR2IrShyorJSWnIGFcIz8awzewGa8/QAd21jJ7WGNEc/tOs6feC/2Y12MePO2hUVvKgvIL3bkF1mzAC0ol3LEA3vKw2PPvvOgboFFMQm7Ggb82gJhSfwlMONYsZv2GgmVLhXsOn3c9zlhfTMrey0UoAN8LQsLmV5KWT04QLbahInabaOGa07RjOGrtInJZEKi2JFVSBZAhtc00EYxnamLdzns7bXQWBncqF7cxaUNG4z6ZWfvgDBYaKJ43/Sk4NEyRnU0PYojDL9lROpazNop2odczi5bJ4YPr8IWY7IDS/pUtNtLH/Bt5abV/P/dLEaXUGF75rlbSkYo0IR3HgavUsLnHX0YRVj4Bmwqe1ia9mrLkAapO/oOncWn1tFsfteD47wb0GVv/dHQl1Zjdo2k8GyaCv0lGsneqaaloaKeRClppcwEn/ETX1SBBavYLKAXl2dLGFG9MpnY6wVArBwCdwJgxTghlyrqSRqfTn/rOz8y2iZAmnYaHYlN8xTUqRMTyn7emrZG4bs9JNKrKQihHBzK1U10QWTFEjldVjvRnP5jSf2hcosWpMzgjNFlxwbezOvPE6s20rkwtUsKkhzjOBg1gspOiRNGdU5cvqBATbJVArc54uwV6YM1AZ7ACTlfUgUS4mQU996KjMZVDGalPhjgRsh9A8lynozI6i1jQ5NTJ8HRa8m0XX0LOjizdbpITG82V14mi0iQLrcU+c1cYdLb3h3nD/RW3AUs2o4L+DeEzax8jnqAlgfV7FXI5EnTfbyYNGPXlIyWlw/m00EuilNfofpbQr79Wr42jnpTlvGIbH1TcPWIZH7k27xfwqpNotO2643QG44P3kuI3nNF5PHFp8is2oysASsIq+FLoXPY9WwISjH5VLQXMyzeUtUSy1RnLND3F5fO5axfOoIrNFm/3CPh5RBttOMxHsP/vMxX++IQVNr5l5prcS6AVdF4UTHK2u0F1oFbpap95wVaBhM23pcKaV55JRVGgKxCTkQi5YMHZKjUajYWpBNrwPVKqNyk2i2NTLKEeKaAxQ44ZzPzujHmd2woJRC0Z9xAC3GS1ZYuanueoiph/dE24R+Q7smVXq0jLEtVpZ01xY8v5VCpwAMK7RXPYe6o7GKv4KaVpNWnUK56sP+9i7BoNDEdvb9v0EFzBsHlTQaJYRzRZUGJ6CxGd3xuly7A619B6qTl4O6KDRGUluuB0u/51VnhI7UKbAbtPclNRNx9mULGWpQh9Tmud+8flzwMrQmVTLnn3UqyLa8DwnTOhSOb3T+Z2tupIxbezysCy1DJvyPA9ijBaFkoXi1LB8+QgrmWaZYlqvy5KC1Y4uEbe2XIdO6wliZjHhs1KWOl/iaoZ3gsC8tWzRcsHA305yrsEJeXbes0Yxnq5SEWqPkzuipV0nCSH/WXE2aIGVToT7QNFbT5Nf9+PEfTFGltV1S0G4iVTHrESfMB6I44QXY0vKOEGyxj2SsYKJzCn3qJlLUREB/hk3Y5XulPyPO7apTv7HntyR12ppmP6IGh/NOPp46q/VCPnB/oAOunBf5naiWwgoMNsTdLBbIwyX8xoMDCe5sf2k1ueMySTlZnm1JmfAsdXPO2fntbUHmHMb1siRwnDBhLlKZbYOmi5vZT9nxjB7fGSsfpcZet/U3XS/OfruIwu1ezBrYvCbyMsSOmsTLZWZk6MFUzylHUSWwqjlFddyXTw/xi7I2cVbYHqLwuOje8la19J0JHXO8jEVNGtzCiT8x70AMyavCsnD8Vq/rJJixk2ZocqRUwMfWhRs/hfZyOEWtP98J9kf7h7sDHpkI6dm45Ds7iV7g70XwwPy35stIp9WrDecl5qpvlcpop/QaPHs6RHnvEFFUk7JTFFR5lRxs4x1gyVJrY4CmnOkAxz7oz+4xnCFc4VKYcrsoefsh2kupXJnZw9cQXNeaefVIYvk5aSYLzW3f/gbt9TLKB2R8EaaKMIA7hM5OkwWcMbPmPSjbTuQJlIbKfpZ2pqbQmpD83Xtss1zaB7FGtVapry6e8M7a0dyNdC/u7v8Srt1VyvhGiVcAE4YuRbyVlhbhhI7FOhIKvLL2TmJxkRgaYNKeUPVktzyzGoycDy6XY0XMvBnm38vdge7g8eIWcVmXIp1CrB30MND8qv/t+P76FqTBHM0dQqwv5Vswtrrz2r3v1e68ZMeq9bK5gtGfgf/3rS24Hrh1vHs6M1R9Fwn8e6g2j5SMziW6fYPJRNSXx1xFSlhH1kYvPjIKMMDtXGcnQdrxZ+rqD89Ozu/2bWr/ez8Zn+rrkctaLqO/fz66LibmIYzXkgTbkUX1Cmi714ek+eD3RHcH2M0G8sOyak1ImRqmCHPwADmukcO+hNe6eBW193CK02nGrlgqVtJfi2LgqmUavZPMmd3NGMpX9CcZHzGDdxpWDXKUgpRQqFNRz52bAWIIKXQfOaCSNiMqYRclCncWd+4B12MEd7FIA00tDhfFnPWIX0Hg/5g0N87hX93+qOd2kwJapLmyug8H7tXx+alokKjx+Ts3I7K+Q8w+vDN0WVwxpFnLJklzp9spXLlIiToefKu5trlZjh0Iv8TMYrCBYSYkVzSjExoTkUKZ+CUK3ZL8xz9fUqW9mhsWLt20IVU5nHGrjd9tFG82wKOuWHb/7PwA/1cj7ACa6M+x7c/yeYb1elozckqpuj983Hu5iAWFHF/9jzShimWXXVZm0+nJ1qhNOezOdMm6tTzCPvuwUCKgmWeZF1OvJEa5v9ldcuL+l7UnPNLWX1lYypl4p5LUrnYsOJrI/6ief2MQZPuWjljhqkFaLWFYinXVl8BtYmiLwxibCBYtJzkPCW6nE75XWgRnnk2N6Y43N7GR/CJRKrZVkIu1RLEokRF645bLRKVrMmSaL4o8iUx9LqaV/Sd5VQbELsYMYk6lZCGgAvoluU5jP7y1UkV17ORyqS83mgLxogbtVUR2L7O1RA6gUUfTIZpabf2byXN+ZRXU4r34RiPFqnwee6XCujrhN2lrDBV2Bi8Vt05tpZ7AvfMlBRUGR451kmLAhAeHPuy/+d+R22msmvAACntnNieUyoqzzqpr6texIEQR9oa0ITl8rZ7mXfvifq+iXm7cXt7mzCqTbJYuhZwYeDOoNpsRLfvSIRrZU51FQYKYwX1I3RTaXMbupyMEl1OhrXN16st4oo8NCica9fHY1VtbPRwzwlpBTzP4XKWKS47QlrsAFbVBI0srmAYX0DqsenUHlI3zPbqFoob/TN2+epkq4fGVLCkKr4HpqHo6PnrNxACdsn6tRJtkqQtIJv9hmajgBk7S7AO/tySEaTifUKxmonVxCN8X1s3pWYqWe+Sif13eFMrFd5/2s4xFGPB4F5ATu87Fqkgr06OziGQE0d8EpqK18pme3RsQXm+psG9tyOADrwRk7QJsNKzw0D+E91E2GFu6uoYACcUvaE8p5O8w7jNJ0wZcsqFNswtrBpH4DrxD1t20Pv61x0Ocm0Bpu0gSx8vjOPzcWBw8bZd5NRY5bpjeSKda3SpxjOBnbWJmFM9X9dKcJwCaWP7QcecUsxada2Ia+rEkiBUSLGMU17QPomWynvNXKTmGEbBM7y3hQ92dOOgAqRSTHGuaF7rk4qsQ6uCyMGORbWWgN174nWRZa3dfdEf9vf6o2F/NBjtjnZfDEfPD573R/svRrujF7uD3f5oZ2/4Ym//+cF+fzgYDNqDeDpn4ReWgxdza32iux6yKLh4kFU0YffKQCXz5iXtky35I6UopD/BUoae/H0F+CXriVENojd/3bjmEyroFcQibvTIhmKgdYvZlW0QE4ge4FsVQyZLJDyEkPkv7o8gw1RSgrszRBpAU2CwiKmiIaesGgb60TAm2TsTIDKZ3JsdMyWvq6wFruPwaSrI6fEILS67QafMpHOm4W4map1wo11CUkWk3dz1PLpaQhTXISy3ToJrV5XCZToptpAmBPESWRrNMxb11KQMaaLEpeL4AfmlI6pX3b1SPeUPG60agpwj17l3+Nhmua5IdQx7TLBQCpci6zsYNy8rBmFfkGsVB1PwLOTPOaG3JBmfTpmK3XVwe8Yha8yqClbU9A0TVBjCxA1XUizqfupqbR39fBE651nPB2rA+idv3/1IzjLMcINwwbIpf9ua+/7+/vPnzw8ODl68eNHJznVeibYZ6kUgzTnVD/Ay8DDw6PN4icpni5sZ10VOl7EqFtvRmPbez9jNqua00215zs3yqn2b9HSCOuoHb4u4D+8CSYGyRTH0OMOSqXYhcdFYLQle6j6j2vSH9dsxnyuwvq135nNEzk78GQMi1Au8JqG8Pxzt7FpV4cWATtKMTQfdFK9xdQea42yeNtXRNRh82U5KeTKKXnuZG+WnPMhGM0oWLONl3efpcCO+iKB1fcUirGsr1zbueXinR45+t4d59U1HguGy7zpZdQ/78X8Zyeg5gLe9q44d5Vl99N1CbLEkjx//Dc9WCv/87LAszwLoMPGjjlEU6K3uEWoH2iOztKjcp1LhxSrNZcqoaOvQt7o2LAw4WNOgXLzBkwrhGvU+S/rLLEpPps+9i3OFM66tRl9yPffP6YbGCKn01VnufQiI4QAHuZ/yHmEzOKit1nyjySu6mGS0R348Pic/Hp+Sm0oBOCoKcipmXISF//fX9hX7vcvP7to+tCgIc6/Zvx3JPTdSVYoemVI1o4b1SA7dtzcRfr+i8SIzdqX5TFBraNSsGJkxclH75X5z5nLONGuiJNTsf7ALJlxQtcSwptCpXj1BK+Mzps0VzWdScTNfrHNtzameQ76H7ywogJZydJRjZv79bvfa6gvjRUAfiuhIXBMXPBEuaiByv3KTLKtMR3hSQaKr89xX6xZ5U5HbXhd6Tkd7+6sKVkxb/ogDYyJlzqjoYuIP+BO4oWgBZizHDEDHBzt0F5XSts6NKtlH7O9I3PCZ3c9rTHO3CyJyHK26EniH1eCQJDw6DllQUU6pw46ZLC2HPJTIDROZVEnUJqsQERTL2Q3FQIWjwq6b799eECnyjji8VC4S2ydL7oo0KZS8W67MW0NNubakl6Ms4y6lrS0t4MxlyuB1LXOkdPN4WuYe82MG4d9qWRg5U7SY85QwpaTSVfhk3OoNzXkWh7NKRYwqtfH9kVeM3jBSiihra+oDo+DV6hWvKVTth2ZvrQkp0jlLr7ugJU7fvXv77ur9m8t37y8uT0+u3r19e7nyHJWINLWm8MQLbL5mOgQRHjSvKiGAp0raNUyOpSpkLfn+4ze8jC7WvI9tF0+5maE9qdxudWnOfgs7YKKk2ruVj+Bxe/j0bz/945eD1wdHf1+Zlx5xbQVuZtVSrXHsxG4RKjJSR6Krn+ANjDgADIAzrS3XR4PRsD+w/10OR4fDweHO4JeV5TzsMbbK4njgXNq8MNIewjB10T7v2LskndfjNf5uNzw1PjDyvj2P70G8NUJs+by3HrJyzqvjvRZJYWe+jrZkT38pc+1gbeByDoBSWHqNegEKqdZyedwJCpLsM/nafeDjxSRYPvWj/4YpjNOhM8qFji4x5qxSFK0qHzvMOmUxrTH/I4J2FcZU2jFosk7GBcU4/vKBJPHwYD0R2KXotkD8Iiwxh0vkiAxUEBfm6wDHIDxTTuNGIkTISCGfs7yI7gLB941hnaFp7bzqYmmNDLvZH+HsXud1XTV4ntV9VHxBZ2s1MWPbHzoLyVlIkF1oiNckRRdphs7WRFm1shxddNYIyYhwKh/uPsKrfACxsulNhF4d+GOt3zVORzXoKtcguEtwza7LX4KtW1WdzlD4c10thNYphziZkRyxO+5KG8XoIpYkJ3YjXlRffwSKMGrF72xDrxlGlHGBGeL+bBLs1mGgVe0TSw7ATKRzFjnwzkTXK/WHq0yAEG4SPRosf0CT9AyXzbwve4CVNK+96i7spjLPJcBsLqgQTB2S8X9FAwZP9H/3a1/ZvzUzjW8h/rKgKfvvcRKEIQcIRXdRGUFuwoEbghfmFPBylT9tlVPxCdU+bK/iIwONIRqJTshrqRowEm6pYAjeVJYiwwFzHaCLIbwTL2+SVG5PcjnbpqLPhQmgln0j+2bO+uGOhxrax177OEt9nKVf7duOxkJq888wx0eCnOLbmlGVzmtzkEqhrbXfBPWZ0PQaARAznjKN6kvwLNWXCqSbLXQtvrHxvkvOIyclw8WBu+jGKtNS9NrtarIotcOGwgVim2J3fmkqpo3iHtqjFtLUufaZdkEoASJz/GHcI+Nt+8/39p//2/6zYf/5X/af/8v+8//Yf8iYPINlVS2TLU/xuDcGf+n4L+PEw1NrhlumznSAKGEixdw8Wlm/9yyGWckzts2EB7XGZrZDM9tpqRQTZttxuJ8qRg3rA5eSuVnkf2n8QgveL6iZ9wuq6EL/GrPwn484893mW0Hi2sVlqDBXDxwoG5Vrw+6VCOHRzFGiUUMWAIWqmdDM22vOBvsQ9MMPkV7khVTyQbSgUcdixsVdQiFNyc5voeSCmTkr4RMTGeT9juOWmUlxkdVWKJAGN9y3HFQug3CF8H2GiOhzq7Q6jhHNTNzqLQvYNiheP2yAKcXTDxsh2M2/C08kZIwxLe7bsTMf4lahx+A3xIapJuMO+TlOPogf2FKCZdJYsHGTHUdDqrhhilM7SKvJ22MUgy7GgTbse051tNzjZuMFePhBEPI9eW03fYxgPe6P8Zc3EvJoUBUWZDgYRFJ7o3kOx3O8qiUUjo+nWtlHGJ7kc61D+wnol/BnsAwcfA4FSQf7j4tZzCx34iQfxGurqtuWNaG5YjRb+uAP5jKsvdBFaEm69MYnrqbaluk674W89Rcfro0J04YUltk8ZZg77NiZEEtO3CRSBgHd3lSLU5HBEzd2b48Th6cYIOGtkQRwvAAHFLdrTxRAjwnv3r9462dFfa3GbbplOw5TEy9a0FoqOf3Aao2b/MyFW8FZr+waWe2ifpUVu3kkiLxhyrIQZO+yYDVB5NZLnOePp1C+xKXLsvhOdCOXM70Bi28DAXT1RkJ+ZoTdFSxFWCl7wNMsIxtG2f2wEVqGt/RSmDmz87pRAW5RRaalKVXHLbLtcDUDPwKKqinmja8fUMyjRyvFEr0fTUWQ+YIFdWi4QD3iam1jTmNSN+HBl1hBfGEEXA11rOeSIa0m4s05iLtymFK4Iu2ERuDdtBN5zU9sx9giLLOPoZjhOTwNNTOIu8G4B6cr6gDU0QxSplCL1FDWIUYiRZAq1+rEI3yBM0jUR6zv69Czoc5Mv11iILpaeQtYq6Ft70d2lzn1RHOgN8Y+hxhVOCBF93OeC2GUiNYQOP1VwpXV0NZWwiwL29vV8ngizLLQLGCXfcMs+4ZZ9j8Rsyzejj6J3ZXrac7SlwIuiw+Sb+hl39DLvqGXfUMv+4Ze9g297Bt62Tf0sm/oZSuil8V63dcBYRZR9A3H7CvAMeMFOIijdfIR8C5WQ+0qFL+xgvfk9S9bXbhdcPyAEP+qoMsAKyuKiHEjhTiZijdG2smynDhhkJvw9CNcBxjZI4y5L4dIVtv35CuCJctaduY3bLJv2GTfsMm+YZN9wyb7hk32DZvsGzbZkxHxDZvsGzbZN2yyb9hk37DJvmGTddD5lWCTZTmeuz6u6dUr+PhwosEqmfzgcs/5RFHFmSbZUtAFOlE8QyXN0JMmfUIl3Gy4nyF8EWvFxhXwXQlHSTb0nALQeK2fDVQKq6R3MGi8ITDx4fbOAmAG29MupjLYUj7V4NBT8z05wQH0cy6uXX9L8mycZHk+3nLlZ72DSAryMxeZvNXV+xdI7lvMlH02TrTseu+94Hd9UGZbY2/RUiNjmfNJV4MLmr69WD0oqA73kHzDU/hyeAoN1v+J4BUalH9DW1gf2kKT1d/AF7568IXmlP37YDE0RvYNmuHpoBmarP13Q2poju8bcMOagBsajP6G43APn6z2mSyyvTVJr9cne9jFo+jRczpcE0EXPx0NP42iSqVdA02jvf1Po2rPXW+vhaq94ehTqNIZY6tI7E+i6uLk9PT8cVStSeWo+XGdTdo8gPFIyfMlWdBCd2X+g3EGQIv6ur2Zr5kSLN8ZJd5hsQryJzXrcli+LPMcKbadtMbeIP748IPzB3y4AFt+Z/ThkwbEEsi5MywNkItrgNE4f0/iboihasZM8F3bYbeGeLe/+4hR2IOTiuWaBnAW6g5iN61l1vN5qxmhBp7iOesDps2T6scFSyLC1j3aRpjzJwz2nMax4B8fnG3+Cqozrn90rptPHNl+spO82B8MkuHz3eHeI4bIF8U67z2O8LYjYAgVUhkHtH9+ijuNHAniqCD9PgSEwGMkoovYX9xVubdzplzMmCoUFw5WFXK0bpggdGqYIoohx1xeogfht/piH8ZZ6WmKCh3Mf43QATIFZIms51LabjGaAjJUERvEKFqhV1jqMeW3ruMpgQ9TU0O4mHLF2BIEBeKdmLli1PQVcwAXo8Fwd3sw3DYKEUT6C5pbo62PzOk7ZyIgXHQEXKb7B4OddJe9GI2G9o8spXsv9ncozXb2s2z6iAUiFZ9xQfMr2AxrvKILO+FzpNnF+dHZm8vk9B+njxiis4PXPS7XzeeMbyOI6w93R6feCQ9/vw3udDyCNx5mQLgfEWjQ+fuRNxfw8YH7EVe4xSV22A5P3lyQ30oGGxDwcYS+ZaraCPZ3V7zFWYuMw14MwczgthWznIW2lqRQXMJNyIwZGJdr1jX6bJwJDaBIh/D8eIvg+b30ncStQ9iATzDH+053s2NCMi52G3LWNca40Fr8mKMBbdpbhk4UnLuQrQHttKnEV8dbj8lgro14ZRCzFpgBhbu4KAGeCvcGhvDQdO76IhrrEhPFTKlEdO3sbw2a0N2XUD2GC7s3HF+q5GE/AchnzVyv9dzoyZKcHl9Ubud3LJUqc22BLAYJGntoF9Vw8EffuSC39q3T4wvXfDOXyM6lXWMI4wCBxBAiz+CXOmCBfc6vZXJkyIILvigXPfdlaNcPCqCaonWFGDBjSxyk0LeGwXUVwdKzhkNoEkIDUzg4OXjg7IioJoXUmk8wKiQDwAir/0XwHB4WTUbLtUUo1SQttZEetqyZne3GnOZ0benzCF5PMZUiTIhHlKswwjwcPxznqu2lO3vTSXpUwGktflqgNhKBGEvqA9Prm4NRrJ7kM+Lw1YKJTPsIGUAYAankWRI36MfeOuaHg8T/18mFdWYgXtYjJO2Ki2opNEgnBVMQixvx5gzcXeBulFNy/Obo9SkBjB2HaybzG6t9RcJpc1MjRs04EjEmAlOQUMEKDlGlmC6kZXG4dokagX2ZkLMgq4Q0Pgqy2abTf8j4t5LpkLk/tscLixApommBkOB7osD91BizSjzgfakSIccLslhu4P7Kim4YMHCgcxa8W5em81iysykIphrqA9cpVRnLEvILU9Kj2SzALTp3cRwoQysGTiquYRcd+fbdC3WNVXYu51WFnU+UMbA26+4vRjOmrqY5na3vctIH0IyIy5K3YhJ7JtBzrYBGwVJTgx06JEdHPXJ53CPvTnrk3VGPHJ30yPFJj5y87XAm/7rx7mSjRzbeHfnYmvvAbZ90auyYMG0ovvai2oUwOK2jUHKm6AKXXri9qQw4SB1gCrFV4oYAX7HgFSwIigXdYUGPhsN6DRdZdCSxPvngXRiMFHhRhQoUwh+7q55rLiB3B/XTmspKyIJpTWcsiQNFuIbQH8c7J8CMv/7DZlAFBs5AhFLc5r08+tv703f/WeNRkIlfTFdQTjvEcwLNjo+qBTXRvc4TEY7CBmnxiRecwo2ajEKKPrgyrCoY47A+w1yVnRHg/1gKyHC0vxWnfkhde6MS4nGuKNWE6ZQWdk9Rzchw4HM8NXn24eTkZKtSwH+g6TXROdVzZ9D9VkpAWQktu6YSckknukdSqhSnM+asBgeTmvMIBWjKWBa3AKinyuUlfjA98kHhWx8ErD/m7gsfd7qGef7D8/C+5d59Tbl3YV184SQ8XnMeuBE+lDnXEhZ/olyx29vbbqZ/SwxDEfgtMexxiWHVAvoy5oGzkh7WLI6OjuoQSd5UvfocDIOjlocuz8nZuVXkGNQpHMeejXHDxeB/HHtPn1s7fDrlaZmDA6nUrEcmLKWlDt7nG6o4M0tvGsUrdUGNtiZhBEadkNM7A+C3gb4I7dATauZMMQSoFTqJmDOudFaAseYmeLMgbA2gas2cLQCdJGoa9QJ8CX5nVHMIkg8t3nBd0pz/zpy6YjXcqeyor7z560bkNLH2TvVx2DR8vB78JcwA31c3qs2btxCgWaNujZtiM94VwXvvg6GynuOw1Uhh4dWPraUsVQRCHnn/IUhsxm+Ytg/F9wY9+CKOJUO09tBuJnRoZYq0NS8AVqWiIsB7852vv0ZEo38pPNhnwZQb/zNZoNc1X9omtJThRHG2Gm6LrYQciQwKtqdSVGZrC5fWbqr7byG8H99acU4YtNZ3cPiGIoZp7X7n9Phj9zuvmaH92Enta/E4L/TqtSo7L86jgBzFfiu5YhmUtXqCKJ3T44twiw4HWOAv1mUwMiFjlurEPTTG/EtPRiX9QCUCmVNqg2Ug4co6z90Silbaz3MmcM5gAlMldaSpeQTyft85R93FhSUIwnpzPpubvKsqfTQaeD/K68mZwRqvM+VurGn2L0uqx0dJ52xBG/wntYyrjqUzTAbJIF45+bS2cl69JD+B8+kjC6gzf+oVF+UdOb1jaYkm7isuruGPl4iP9Oz01cstKAkF8O4rL7IvEC/k63TXYoYcMy1XuuOFDvb7q4cMTZaGXUm1virOPywNI5r9VkLpDTm9n/BX3JickVORcbp6oHxRXq3xPDo+f1+rkn4v8WfCsJWjzUDCcymuooDyT4k7d1oRyzDmPCg1AcLIkrqpq8VNzqxYoMYlboUNyk1cUUv5UIAMLiqsIubR/6b0Gn2jLigEhyKVXjlSkt1BJM4Ko57m1BhW3QTXMTQ5RpFjcywjLGeLkJaIIePLgq1OF7q3Ezrha467+ns93MquqKMoS+oHDNuG2I0pTRl5dvTD2dZjh7FOpyjK4vqFYXNfrErnGm9LocIXivyISNfvI8lkwqhljOf6ZBBqjplVB5/LUVdHbr1reHNjcDfEEjnhltITXB3wK5Osr+iEr4nUj+8tz3HUFN5ePJbjazx+3Op46ARalcovLtQeudNchOZTnQvY3BOcCy4saRXCBIsyrT4pFMrHQLXmOpzU1j7+nHgnXU76qM2GJsErLBg1czJm+TTxI06+H6++lcNL6Zyvki7SISRrdRnqWtic9/VvpcscnNAJz7lZQkq64pMyZpmj49HTCyJeFqsEzj+K9Is5FUIK4ponKc3T0kUGBzXtk4leZxiAXXwXbj3CrnI3/4+lcY0Xny0SYyzh1Sn0eOBXcjpdra7ekxCLvX0GuZr/vgpnH1PUokVkwEq3nT2e1jWejS1SbVOPp/CGK1PS/Gr1mj2P0u9aVLr+6ohpn0Lwp8/+J1D7yNmf2SP3Sx2Z0NkffWTiiB95ZLqXHqFifOpGcVzzzAqL6dG0rnlDN+h83JYGHKCrgFi0JjK9hulQkiogJkgPgtAnrqPBrEy/Yfl0jRlRvnmil4uJdIlDdhutaFEEB45SslaU/zR8sTK2FRVRjoQDKYHLhSXEnIXN+x6rsy5wu+NzLji/KBjU/MoZmTKD5RL9NQ0A2KVUo5tLxWG16JnnRrN8GuH0Cmz9ERkSa6oyAczEgLxGkDcSWLeZsjVQcD+0YgcFLgjwI2R0I891jNvHFNb3taHp9RVUp1xha9zyPEtpGPMXxsi7RHSJFIo6+lLIXCPr7KosckjRYHemPsgvFGgQprEXB4UgFgf48+IUMUTfjgyT4O3+F72hSU7FLHlT5vm5hGDwU/94LCxu/M2SFxbhi49U3MeNWit96VKdANHiztwDnFQVYYf1ZBRPa5u+qspuHyVQKMhVStStApaNkp1QJ7Eqio1CqIrUeCWDCIL7O1/wOiAPUhMyFSDSRcyqNkioky2n0SBce74p6mF47CoDUEJiRw/o6L2opKgLbMaAklDWwLXp048g9iYG7u9hqUffSCqFcMrghJlbBkhvUd1MWq+wiZ1xwQ3WHLJTlUttx3bkZ+Lj7MYa+H73SgV1FqEYTE4WjOpSgT9Hh4rKbc5Gj8G1hqHXLKzhmM3x8qh4vGALCVmATNtmfHNZxWlXz/SGB4lk2AKiqUvFEnLh6s+7UuH2RBvjsDkmX7lbYu/tqdejD1s4TghzlAJokKGmcZe60nVl2s6UfxqMCihuiSPxcRo+AtxhbEaqeFyYCzOz46w0Eb1FzoxdLrAEqkiAORWeryk1bCYh/MK3HybXCowxMKRPs8wVmbf7pg/7hsFXVulxtfmzMQbw+zD20KKwxOX5MjYIXEI5OhZZR6xPqZnqF1Rry8w+pn7WJ2PGhLni2dWaUeZmuFPsJvLjcOE+eE8olYdN8lrGGEhLeFYFTeHVvyt/74JDXeVSLKocqV4cSjD7S5ebOvRTvQgQ1seRUFJtbnWN1C+COiSxqYr1uuK9IRwBo80qq8zl5ys2zaG69ZwRWZpU+iONmkCSvK/egsNbAjZsbupYCHId0+rL1SwuX114YRRadASnTEXFkG27ZychoXfGEOKsElzwuJVYXOsSKzBXd7T12fErVXjOu8g7h9nkEaGaKFt2Amst+vQqq/cgf93uaizRwwA2hcErWVZltmAN7NAsoB3ccmtQV2XAEAKhUaK8ssUB8bkWRYU16d1cAaAmU3ZhOLa46+0ohHjCiFxwY1ijqnBHXfTD6oFxNay+i2gMLI4WPjIIKpLE6U5ETlxGV3S8ElglUURJ1dmCa2joI51lkmmIaw3T0ui34nXc/4P9ai5mrluHRSdku/9YAtvpdVMQu1PGtpcr38vVfU3XaAGTDJe2ez7e5hXfghaHm+PspC1b/XytalX7U2I9Jx8CILp1PpWlguipY+zTVylG3AIMJuUhACMWFxie54K33RzYhjzxZM6Zoiqdx+hPzWOwMqlR1GxM+IxMSihttQGRN1WLnOl6AHkk7XPDlFMsG10cukN0TJZOLw+BaQQA5V1At3usmtfU8Btuli5XLCC7gnoIZ1IoFOZ6tJMy9gAoHmKSxqU8dTnxZDUVjNC+D1x0/UK4OEgDS2HBVODG76GEvA611XUkJ6mxKwumJkTYRZxsB0PWjrSP+A2e7rw/q1fEBy9CAIdAKW3PN4goBQzkiHNRUXkPTlBqFvTzjOkaxKez1DUpRVRhvkcUm1GV5fHsg6INTxNrMpb2D6mIHR74dCGCEHV6ecMUKPSAzeOPZG9Ec107uhwGCZqUnbJid3/3oM58VPY+IgvuC7fadLsBG6mf6/ad7Tr8pyuwT+2CVBE4o2IU8Y8FijmwuiZLjBsueMFyLti9axpxuFNXp+5/B/hSFBvUxF9V5WsdrTX+AbUshJCF28gQ0dHU3s8EWVjrR3NTYvhnz3nOza0koVu30SasI8gUtWz/MY3TtmsQS/6aFA2pjOWQP442aBxf7TJy3d1AQxGpWYgwLfAqni0wJwEePyPcOCnRoGQhBTeyQrKomrDaoaxmzH70N9NGkmvGClIWqCPCS/HmqnM1pdp5Cep8tIo77riU5r14ZhuaUzvbYDQY7vcHe/3RzuXg4HCwd7izmxzsPf+lnmdgz+bWjefTIxe6bhoQDKLGEcwigsRPxLiylh7AKjjXVS5nlt3uuMFSmjStnTO5nPWcqy2Xs61e3HkMVIzm5NIdL4jdUIm6GLHeboqYbJh0wPdagMwG/HqrqflYbmjempi1vsGrFuAgFjIr82rpY00hrIzgkdEzaXqVnhs303HYFDSdsyTiRZjeUq1SrLzjirDxJhdFaa5CtAMV0kE+eFdbaeIHqH7N85x3PoO5ZLBGhp0L58R1XYsaJ5D1FrqtrySUU8h1u+fxMxMZbCDMtzNVflsNwaNLFnlBA72LzHtd7JzyVrUjJlYBKbjvSKlIbZ0mzYME15s9OP33Xq0KhNuzBtLj5AQ8c1ndx7zGy6WfqJ6TZwVTc1pou/m0geulCikPwuwUvXUnmYFwYoopWJGbfSGFNsoOH7yzkGpgNcfmoh+Odnb39p8fvBh0/XX0w/FJbejrvCk5O7Gj8V6t2O/VoPmA7k73BoOsTpmYsTZA9+o6yWU4E7AUh5eqVCl+w4JFlzJhFM0dcoqRqqVhgG7hK3CAMjCuDpxYF2+sS68u5MuAXJg4SVmdxLmWrdZr2lTcwYI58HePgY22vj2vLUHR+e7Ock1vO92NZ8L5vezuQv+qNcO0LhdWYxCS2LGBtdMLmoI7e30y1lxJIXM5q1XYsUeNvPYZsFwf1nhF/ldzcNU3frrHK53Ze8lwMFwd+v2aN4XRV2bneryCTzJ00Y+OOXS2ob5vpXkNBEBsXm2If45JqV08aEw2ty+7K5Mo9Qyh/AFFXdeLR3Vb0M7P5K0WlHdx+RyaM2W8IgN7oXYR0XBfOUfTtO34rAovYFrXHEvLagRuAQpq4IfRAUfmVGSQ4HE5Z0tIDru1pjIU3/HbVDE7ZrgXqr5ENQMYomRejZobaAV2+pzlBcbIaGMXw+2cgfsvQDelcoE+IEINJMLNypyqgClVmY7KKlcdKo/lYG3p13SqtSmy2EuEpgYoPzCWpqbo8kCd+QAGCsqqskAoWresoMCxNZGhabQo8nIGmkDbk1IlolLYCcJrz6gPH4EqCOfvVs/vG2x53IBaqJmC1a0v3LjY5+/TM2tc97L/UXyvs/edld3szgQfgV21wnAVNtl7t8rvVQ7i5RLiPRB40z7nG37m4MZ0kXPE9eTGWmixU6egyugtu5LjzeKV+x4BLk+lIopB2vi9Zrq1CeAJV+ojk+lV5YC24sDqPiHBCkHMCELwsqzaVta+cMnwQIhRnN14a318hbM/hnuZUjOo9YM1HuUNU4pnbrHSKPnX57t7cnukyJm1QDVjZPwSxRUkzywLpsdeTI9PrWrJU6SRvGNObe44yS5YQYYvyODgcLR/OBzgnenx6cvDwf/vL8PR7v//gqWlnTj8RBCBeEEFnTGF3w0T9+hw4P6olFwr6nQJYgiri2sji4Jl/gX8X63Svw4Hif3/Q5Jp89dRMkxGyUgX5q/D0c7ou4gZjYCOMFVdZ6y7UPqqj1lrSH7qKevGN/YIHBkT0uULBhmOZ2fkbqZ+QiCAoLKeKc+t/hZcSwVTHmApnKTCgMfEntmIU4w3PC1l7o00DqTM1ZxzuL2AoU3DDZ3Xw7Pavka5iZiODRXAnlq+FEp0zlWneIMxPXsEOt8lage88g5FA4xIP7KHogj0e5WcIh4GHIeFLL3lSp6Fsbl7GASWRE0lNFqB8qBy6sYIXo+qEGMV7RqqvQQ/BGoWtvVI2OmAtoBHlJUjNM/jCV5pWm/ilHI3sTFcw8tSwXqq2CIcSK4748CJCCC8Vs/XWqYurATn4R7ly9SkcFUbwzZesWDaiA2yK8P3CjG94RLi0OpW4158xFCxDMobnDgccELDVXN0e3ddzY5mQnccqo6tNRHjgJ3XlZG9eRGwKbr2GbrTYVehouLxcy6W2vng2t73V3IWeZsXqDbWVIwKEMObqCG52BnNcehZqBT2AO6i2yxwJF8s9cLqqXNjimwLPOpYcaycuFAFfw/dqP0ZWnyGZUN6VV2Kvhti3x9X/aPSGpFitnVfFZXaNCpG9foyMN9B6+R2vowhJ3w4WVtItR3PHcE4tjXgm9WDeApKuROtlqNugYcon1q8Tmj3Z1DBfBgBvD2uyxTXZJAf7mrKvYJ8G1ekVUf/fFnV9LKDD8Fdjbrl5JZNCFR/dIhVokFP1KTdvRkT3B07VtezQjAYM+FsaJAXxGhtnpFIXJTjSS4hGENzw8Ydi+YSALZcOThSinDJX1f7P2r3K1Z3Ya5hsbkOyPt3r0jOxbWH7nq4jqVfl81V51vB8sAQ0sbTOEQuxM2ioDiKLOZeUHpqEPGRk+AQzEN7UCuGp+tCCrjNhCM33IgCP9uz4qtloICIsey2oY/tvwwG4GtceXq4vr7SkY54n9Y4zSXtjI5+x/U1gRbAPlRcKo7oWU1BqJ2sIlrmkBipI3jN95q52zMYGtxfubs+1AXszk3uof1KSLVKleJ7B7H5Bnxx/HeWQbMfGVAP4y11SuEKOAxiYNfMcDDo8F8uKHcFml1h+qUsYd7rN0ruREBJAni/OiJI1y8QbRO3zh9pDSTqXIowDOSaw94BLQkLSjfuCDz8yQrce1S61uaFx1XBBNT7jnSISm88CghESL+/ecNsp1YcQA+uQel1HZ2c3dHUEECOcRjzTieKAgLicABPW3WHGW6CWty6YZFZ/4hbqwc4BRC5GEgcOqjvn9qB+dCF7c8BhTwYC6HFGK08wsLDp/y9ko+viI1yL5104i4Zy8If3FGoaZgJCEx2vXLnU0il0FybWO92KzN2NZpQgLurZIDT8cJ4JsyyGeomjXM5SzT8nvjfk1RmbJx44eu/ro7X2JtfZfxgzrProqWo1G6FUapNuWK3NI/cjWcnF1shGrX2RlC/3bIm3Ggib0XoEcHW7PleoaiFdlNZYIDv/cONwpTCgNunyPP6mjZUrZJY/PA9IV5CfvSm0IU4x3eF0YrAO8MqLuWey0K7T3+XYo1Afw8bqbUh2Q1RCQ47w2FA6GhziRaO5roukitGM6+TucPaL/Tqwic6JnED+sVRxbPGFn2asgLBZUKnHrsSEPCp3f5SgOl3duI63zgtlSzY9tFCG6YyutiI4LTpZKLYDdq4/vGLy40tNDnJTz8dLhaVMOE090/1B3uHg8HGVkOMtjOKvjIvlZlz9YkxjxAeWHdANUL5NnQ56WPw4wac9D1cUhhIGJ0dpFLkWwGVUUyu7hEm7HzrKELSydUMAgxk5PjCQQGubaHslILS6Zw6HjK0GYX+BWMXnV8JgFDqq6ZUq1QH+aSF0zQdBLQNBcq8RiZBuHEBke03TBs+86Ore3hWsCoEhpy7pvFegIt+xgozb7WOR5K79KucPXifLeJEPodHKsDwJEVOU3avfXKPXVJt+c+yTxbLDgsFutjeGz0fZiyb9Kd7k0F/dzQ86B88nw76uzTdPXg+oDsHU/aw9eLXw5S7WzWXv/fSf34gfe8I67c2cr2gMkTrQhbS6DSZWL2oHp3p0tHsrxCs6hOwAGMKB+7n/yUUuHXZ+07tijyGsMHhDsLPkM9w85+pyLalqgZLamFmPVfqILinJ0vs8szfQJHX1TXfry/PXv/Tl9zTVS6bPWR5yvRWgi+71Ebn7Gvke4GXBGCsWYbcbIzHb8coDMN5NB+VE4bBj5+hmGy+oi4sg3jAQVAtfNOdDnzv6a2mUmO8JNScBA8UOps74q2oQcyfteX3V+VvkO+hv/j4D186XCkQzzdULe3aKHJq7BpPyE9MYVwolNlgd3NaavCS5w5EAM+WurS2UiF4gnic8ORAR29YD64MAKQ665GMK5YaqZb2jErVsjDxDSID6FPWI3OeZUz0IP4Y/5UiX/achOyRW8VNh4d689cN/+xGj2zg0x6wepUEjHqZ/IzPmDZXNLdnl5mv4lH49PIYWKqUhM6qCFA+Q43DedruR8KPAzfCKLS/g/KCzhUNCgcs6JWxe6oyu+yTCu51HZh+ZSAibypyO64L4iLxj2U9xvx/RCecSJmzCH81hnLFn+LILA5Odt8DpGmhStYKfts0qmSfumjsX1zMrtZWEGqzUb1p1XUSBRWH1AiQ3RHq4IKKckrTkBhLq9uNGyYyqZKaCR40QMVyduNs56PCrqrv314ARHlXCYNFYvtkyV2RJuD5/lRWrzcj9WF/cS1XkSAp3SyflljrIZezmd3iIPbkTNFizlMPFRI0+7hVSGlrRI0YVWrj+yOvGL1hpBSVNcp91QJ8tXrFaY5R+5VZQTUphcvHbM8YwOpfvX9z+e79xeXpydW7t28vP3XKSsT8bCOtPYnFd4HN1+7nILUIRVlzYJ9V170xMsPoYs2b3nbxlDsf2pPKbW13C+n3u9MKk2qjx56yx2z407/99I9fDl4fHP39U1nrPR+fofyd2P0EWTa1xKewOPBQsBsh3OBiMD2clu0jYjQYDfsD+9/lcHQ4HBzuDFYPfm2Oz+7PlVTbB068zQsj/aVlLCM69j0WFI1Wyd/rye/3yQtXiNQXyJQLPDjgChfyl6Kst5q7DGpV1HxmVs2QMtfVHekNy5eYEo4KCAq4tor3OWczCMXPZHO3ZoE+9hk3AEAX6Rg+B9hnuUf6M8OK/EsfsVuvid8W67Q2Fx+R2Y/kU1ey4eOMKzAUPVo8WkOr2lMQ44+LrfZ+3ZpKo4D6pzL/KovJGaWYAo4wGN0GIf4WikdDM24C0bQqC3B0jxe2q7HziXG7V5gmYxhFdKfv0g8xsxSL2wf92z7aI5qLNDTn3W2e7rhEfoNfNdCXJ0csh8ZdjJhuRM0EglomQUbrJHprcF1U+vbjWFtnBuUSRFdc3zgGQcoUv4miFKG2rPPLRr7S1gi353LBtmnuOR9Gapu7wmY+d7Cdi/tEga2ONXAfGG3dcwuC2Z/llZYpfMhUZ3x/lNBZFEylVLtK67X7DThc83BjGlcKXlUqsXya/HuULrEj+bOXL7Fj+FOWMAHC/yeXMcmnyddaysTS9m9SziQayldf0iSi9WsvaxKR+mcobRKR+2cqbxKT/SctcRIN4SsvcxJR+rWXOrGkfq3lTuICICsQ9z+55EntxT9Z2ZMa7X+m0ic1wr/i8ic1Or/aEig1Kv8cZVC6Sf56S6HU6P1qy6HUqPyzlETpJPrrLYsSFwr5Qkfrn7U0Su3FP0F5lBq9X3GJFKDzT14mxY7hKy+VEle7NUys01KFG6LQS4+wuzQvM3/pmDMKf2fygUz64NKGC/45jaqIh4Y1eeajTA1Vyez3rR74uUOb0BtAj4nYmR1SRZ9tzH7f6IE3ewNb2OhIiCyc/A3Rp1Jdd4Q1PGE8CnThEK19ZApcVzXjR+PA07Bkw/DfukLjPUCzcbc2vukQUgBXcs2OWq2HRl0vxMXT0vyWLjVMEDV2ah23oRuPlA5NWlsQVgNUaWhWFoAT71rDlTOEhNXH8eby5UXPA64SKmguZ7J0MdXkKIeQbcPQEXVhFKML8uzo5GKrFwA33bYIrTrQMXgUih2EKxQoHp/SPGcZ+f+eHF0eJeQXKVhyVgVkIMTOQrrMvlrSp09CN9KFjgacpkzeilzSLAY2BaeIYAbAZY9OLuCSzSetV1x3d21SLQ7J+PjwQ0HN/IORHyzNoF2HXXGo5YJdhUU6Rg6MG9+Glt2dXgW74DdKlWJcvZVgfYJ6h+MmklP0phVLMRWtl5oPVw9APEq1Oso8J3bQrkRCYv8e9/BaNb6KgoXXjUkZT2JkHX5EWs7WFupzrviCqiXGQ0NCzo9nJ1sP3qtuDgeDYf32t4qmXjeFcaxVJ3Xt21B7SCWLbG9N9L0+2cMu2p3qOR2uqdeLn46GD3RbxcKuoePR3v4DXe8NV/H3fGLXe8PRvV3rjLF1LcKLi5PT0/Oo6xU2LRfrQzQ/s21XeV5ercHTo9JcfDpIcweP9vZ3Dnbqe3jBF2yd162vz16foifbB0DE0YFoa8Y7m0jlj0Y5rXkjCCmhUoLP97m9vU04FTSRaraNeetgcGwvWMZpH/y88d/J3dws8l/Pjt4cRYfblKec5ugV/mfPRTX4K9eE/Gw1wg4AZqsK4DXDJGe9Wh4fYoIHwMRo6KGwx4pLabG+lfTaLqSY7VwQmRqaV6uLmq5SZ5uD/d1BYwl9ZtBUR8xUCHaigL8H0W31zb9GLfhN47Bxh3woPFhZFx4kEyPzXBxQi2XeUmhq8/JWrC1OA1PAbAeboHCr2A/6wKlpdZunI+kLVxt86TW1OHCu15i+YNp1RGXVzLcsinZ6XFTW9n0zXrAvEWt0fP6+HmdkqJoxE2yi7lij1QONCkitLKhYV0gdGiYAUwzdtNS/nk8ThFhGF9bSx3jQxrg+K/y+YElE2LpHG337iYM9p1XcwiqDs82vOXYgjO6mfk/8yJHtJzvJi/3BIBk+3x3uPWKIfFGs0TO2eYTOMDcod4sNQL7k/BR3mrWuHRWk34fST/BYjD9P7C8NFOMILB6DuDnDfGtCp4YpLLtQcHeDKJWrKZbKjCEUdCXNFBU6ZBdpRBH04OQeaPzW4XtTMfMAQYoG1wxQj9mZ9RBy5dQjamqK2ZQrxpaYgz3J5WwbQU37VrWwsml7NBjubg+G2+Cn4GLWd6FnfWRO3+UqJlZna9vTg3T/YLCT7rIXo9HQ/pGldO/F/g6l2c5+lk0fsUB8RMsVbIY1qhVhJ3yONLs4Pzp7c5mc/uP0EUN0aTbrHpfr5nPGtxHE9Ye7o1Pvz4K/3wakwgtMuV2VAY+/AetwKdtG7LYGg6TmIIyCm1FJQCcRQnJwTTbsx432Eh7u7xzs1gjFY/rqT62CXaKqAUoYYHwsFwBB8cWqO8NsgdH1DNdexhUAJzhKtlprLqAcBMyPtbndLucg3hV43N6Dx01VEHVR1t2zi4Y7DnX5VZxyd3uDFwl1bml+gyJt7bdaLicy6teFXD27OHqzlaBNBUZ2gAXoShKlpZkj9B0VWS0VCaZ0UprK+e0ue8nZub8pZ7pHTt5ckHjEhDwDyH1XBl07tzxbUJ5X77UZ+33CEN87SeXK97TAeyhWqhKkc50Hime+A0wBsfvs+A2sG0sE5AFHLAzMbY3W1QkGLx/5ic/m5EjrUlGRMnIBNa3J8dGnMaEUZm2pNxUDoBfy7HgLS/M1x/f+4lOIj6AOWLbOiTyJO3LzePIp83j81/cXPfL2r34+z0TaI2/f/9VqZBEqTo8cv/nrA3Mets5nzX0uU5q3cAuffPJ9N17evNpqKU12eVhJ8XfObj9lJFLNqHDAUmseTdyVJs/efsZmPhPp5w6W5lel4OtSHLvGTHNie7RDf/8JY28s9E8ZP9STv5LqCpTW9YEIh6MT6tcD6iv2Fw7Oyx65ANXlvLWkj2nOp1IJTh81RCHNFRiPK4zpPm/tJV+AtVcv0+2nBkp9gC4NpqjQPGMKkWF5O8N9NBgN+oPn/eE+GewcDvcOd178x2BwOBg8elRYy2Sdw0JwyBWGNHzRHxzAkIaHu4PD0d4nDAmwOtOra7ZcOzLQUQsMyIMTINwDUGJbbg313cXjzoVoUGmpbta1saySDe1HoVWMsDy3D6Tup2pYEbwQJK6Gw4/rCCjJ3+e0mCC4NsXeaPipnGB3hRTssdlGjXxBbCJMYMbAdd2YvoDTscKo9vf2dp57rq9aEuYTRv+ZtjkAOVvL3FlK0azqgqZosXPTVu9HA1cJeVWaNVOc5le16P6nXriufiJ2VeFS67Jaxd2nIKD9B7jjdBlVIZvGlT5h7os5dcDPPcLjIFd0EPoALwmmVm61EGsvhSzs0HQ6p5Clqtrc3dt7+cMPL46fn5z+8HLw4mDw4mQ4Oj4+epy0CAgXa5eAUXDV1DIyhlwKMBuRlPiZVSVv8U46MAWP7ikUr+GC/CjJKypm5BjQmFzQ5zIhF4wFb+mMm3k5AUfpTOZUzLZncnuSy8n2TA6T4e62Vuk2wjltW8bAP8lM/uXVzs7z/qudvZ0W/zFYo/9Y+eyM+D/GctXBdPVkNEeFkbPJLJcTmgctT7CVLzwag/wjLNPPNEw98V+DZdpCJ3MuICxgdY9penH510p17ZFXf72ggry0RifXqYxM1541XxIwVJ923r8aq7Q28k8ayh9tlt63UWtT+Nkj+wps0MZAHzeWf2d70t3prlctihKMbadOT2mtup2HKQ8xqww3m8Nv/tF9fAC++UcmPThxCmUslFq6mHiAaaRVsBcg4FhaFUNELQgS95TWMLpBGZ8xGV6J8R99qQyGNasxYpulc1AQqwpklrKzc6/tSeVuj1Vfl0WR8wDZtQr2ccrNcl2IicdeELbvM6UwitF6oTDEPGfCXKWtALgnoefyVvYdilHaCqgMvW/qbprfrKxVVQNZE2Pf1CAoXWdtgqUyc3IEOj9tEAjqyRXXcl28PnYa0NnFW2B2WzE46iRpXUvRkdM5s8dU0AZ6mN+eHyFlxuRVDBpSl8xSzLgpM8SGzKmBD+0rp/8iG7kUG4ek/3wn2R/uHuwMemQjp2bjkOzuJXuDvRfDA/Lf9eu+dWYDvbeyxKc3NqKTaGBNz+PJYZUHOSUzRUWZ01otYjNnSys7GUrN6Ar92BugjaKHXLni2FDqR2NF+mkupXK2cS+Yt+3SeEheXiUpo1raAzmHJ2I9A6zKfEE3ChfWwJYLEOORnG5f5E+kNlL0s7Q2L4XUhubr2lWb59A8iq9mahbMhSe3BsAJ5ZYbVTiiCqGhxt+EkWshbwUWKrBDgY6kIr+cnceGDNYEq9Deb3nG8iUeWN72gSoW8Gebdy92B7sre0YVm1llY43C6h308JCs6v/tuIumNUkrR0+nsPpbySasvua6axQ9zZHpSpWR312dm3iR9YJGcnb05ih6rpNwdxBtH6kZHLl0+4eSCamvjrhiH6nx2M488npc+OJ+Tc6OAdOJnDpnpVFHOS54RlfFBxrYhXFZrmRl/SqTi6rK/JNL6lgRCIHo8AkHDNXtFswVxYvLDtfqhAry6uTo3O7zI6xeXIFbIv1xeltIeFlXtIzzh/K6e64alMSMF8x22Q5VJr7U8RjzHAhKvqvnJsXr8yf/+QFDw5do8MuzWpFRzTxubrl2zwWfZFw7D0/ORqgmVrH33knlHW+2FeaqupDXJ3s9SDDbIgixw9zRn5CjLPNETUMBFww3dU1MllBlXaVU+0D7Ool4slPvMUVcBKx4qVlBFcANupZp/ZR6pgW9xmJAPYJVPed052pvONoKA6xyuKvzTDMT0o3bg4aHI5jpEirq3AQzlhIFobBWn2ECCiVi8B85BVWiH6w+16CXgf+iOy7IFzkQpC8UR8qqRC0kEbJ1w63j0pmO5JnJ0fNesB5RzNcTz5dbjzDqvnT645fPfPxjkh7/mHzHryTVMYg46ZDGvYjznx8shQV1p5qlsFxdercPrXjgQhsqonqcp8cX8G7yvZdE99byb5eOgk6hOrjbZl4naRQJlwpV1yoIYMGoLhViyEXlte1YXThjPXVoTlV2SxXrBUycBSL/6h45kek1RkUYygWYNHaD/59yAmn4UKYzC4CKq+zv+5OJnkTpe9soDl/rrwut+Gq/HtGcFmVSajpb5QiGwsbZ1f3lks+ZsqYgpDeBTMdZgoiTUIHY3ZNW9X/t01DGuGaxcIPS3RWBxRrKkVp0kdLcjntKrfZjOVQrsBxpTYfwgRJzK6EfWGu9+Na1WqdQCeeGKTrzikNlHrvXdS+UxR0ApcNgNGmk6SqmaVXTKeP6OlGMZkmcUfupV+5GmuqC2mfpkmczWs7YFlTSsodhyrSeltagfkZnM8VmtRLlwHea50Ca3nII9AE2BWu3kVTm+SMR8WCoWLtr/WO1/Rgm/sjhfjm7Ai0AOY3Eo5fm3ri4z7Ko0N5xZ6TxlrCNbG7q+2yO0KJU5A0zP5y9vahZI9ATIrm2266IjnoKLYK145JTVAeI/Ns3l28v3q46FTMmk6/IjQ7k/Lu40uuD+Urd6UjkV+dSj8n6StzqlqSv3rVuifzmXv863et2br652J/cxW7Z+jW62SO6vg5XuyXo39/dXjf218T5zZ9c27GWFm2qM+MMvCrnT5PbuZOKY0/ZGPx7dq8oZkoltPcPg47qrPCPuK6fZjzOb426cVzg60gHPqLZajyIYQmv9KDoObpuq+uHBaOCi9m0hJr1S1kqwsQNVxLgjqLmT/2Uuwh4hTHhztocTxg1iIjX5ELxES6EB+pVCmB8RTOJMvgeabquxUJeHx3H3QYO2IELaRymOmJLgaB89/KYPB/sjqA2cTmbAZbwITml6ZzI1DBDnrkyYz1y0J/wKvHZ2ntbWI3SabbOy3Arya8hKvqfZM7uaMZSvqA5FunTZMZvvC8c5rQyZHCdY8cUiq2VwpVM5sKwGVMJuUCTkt+4B/G6yvnKXeXc0OJ8WcxZx+G5+evGYNAfDPp7p/DvTn+0s9EjrS93fQHr++9Nnmb63jy4zyG+yqX1wg6Pdne0q98LfudcUl5vAcP7t5LmABUV2ozsRPDuUdSAnOu+8heV2rIc0gmscqeIncoM6ilZU7c+fUba5xubyJXQT9gMMLufwvVwn9MBroRkCR5Nmuehej/3RU5albZBFD2Zy6Ex1IKm12wlCO/VBuva++qGy8X6plaxlEGonx/0VzLWdc9tGPcfNF6pkyld8Hxd4eBvLwi2T555nU2xbE5Nj2RswqnokalibKKzHrlFB1kboAKfbNFd5vnTUf2FYUJaNwsooetIbQExyvmWul1fNLVcfi3/RW9ac3vNlGBPyKWHx4C9BbLBsFP01hVSaFG+m+wmg/5wOOq7++Um9U/re/g6ZjhGTHSMum9K/9Hkh4/w+FLz6ftzezdlwkjdI+WkFKZ8aL9Sdctb+3WNmDeb7zVKw7HrZ+y8DVA/2rCZVPx3fEI2B8mFkZViWhmbEyVpBiYVU4CQCnKMN8CP/OOakanMc3lrW3YGTB30lDzz8SFs65DkCA6/oClwVPC7KmfxtlUW9gxJenthrZ/NTai5gfdz4IxxppSLq8g53r+xenlw+8Sk0uHClXFCznNGNQA9klKDU8aeNbJgvo4IpGBiV6fHFz3L1ULJQmpGuIl8Yg5Yvq2FwzAfcSStF5Gvtc5XFVjDQTLcTYY1atur+mnshEtX+65hI7yUihznsszCrY2/UMKMCbiyd6V2ATEo59eMjM0oWbCMl4txYhfTzaJabe0ro3A/38PSMeEOyyPsxZkalXEeWuwy0uu2QlmsiJh7n1J1wVIpMl0pRHOqyYQxQTAKrT5tO6O9evfW2Pmj4hEB/mqd4YgwOoB3WtPg3tsR1PCjkjYBVjt74sTML3yA22Fuaqx+4LSzKaE3lOd00oEfe5RPmDLklAttWOP0A45giOS/bxhsNMivOiI2ovNLB8c2iFgnLqvjFEgbCMOEKxLlgitjCY4FWFAsCUKFFMsF/z0O3QAWho/vNQNX7JSMYRQ8G9uVgh+8IxpdWKkUU5wrmtf6BHA7KoSM/IwOG75jUa3FS91eSm62oMvm7r7oD/t7/dGwPxqMdke7L4aj5wfP+6P9F6Pd0YvdwW5/tLM3fLG3//xgvx/ikmqDeDqH4heWgxdzqTymqSK5nFXhJJ2sogm7VwYqma8NivEIKuDJKS5l6MnfHMMNkaM5Sluo+4mv+YQKekWzBRcbPbKhGJRNErMr26D3D388KtSYWmLGT5eX5/D5/qjQlz7cPeTM2pcItbIX4E2CeVOq3Js2mplQQ8rzzk6Jyv1IFfutZPoRKRr+hYnMlp/i5ftoCc2LGES2QSaBXpvzcnDw/H4SXZGEFYj06Jd/zA66dA56nNYHx/sTy3NJbqVyNZ1a417DrFxChJ9+aG6eWWJBamNp6w6jf7i70z1Va1MGNo/ctWFTH4BilzVe1w6/XM60DzINc5nmHOqE2TFqQH0EFHNADqe++mN42s4oz6rsCTSYMKqDCCn62lCRUZUhGci06tp6/I/+O6Ssf3ZS1QOzp+g/+seOUC6F/bUDOHm0w3b39p/32cGLSX84ynb6dHdvv7872t8f7g6f7z4iLtZP0oKZuVzbRNXmAruKmHmuuFXiJIS4D5P9ZOBK43h/yqzkGUCx3lIdoLQPqwY2LoOzAyOOF6XdXyyOizYy5OdgTMpvJVNLa+Vv1O6n5bQiA70ooXcIBCoUS/H6kaW0dHLZQ6hDik4zshnH69dK6bQn0LQWNF+SjBnntCfkba0hiHmZWINeZLVgWi6AyFEySAat5fHj6WWPnL+9sP++t//Ii8vuOV9z5aPN19xhHgefmpUizdMp2lQhZBwmEECOa9kNE6rxqsS7KaJqtrFYrbwbQhr//PgYX+hfgoPQ1egnx3JRUOVd7ouYZBoaveWmqlQQ9ba5qUncrGvVe2PmLC/cbLtZhm4Uo0aTkEdGyIJrUJVnUBrTiaL2xucLOmPbM74yur/nsWJTptTaAEreuearWK94w7dOCg/8NcnlLAYr3W7QrgspNPvi2gh2u6o6EhP5Z9VHHhrx/QqJH/mX1kgctZ+mkjii/2jR58h4OtkXTeETCj/Xaof0w18+RfzVZF1o1alcTyLzHHO1oabUHSGcn1//vb5vsKPuSM7dQT0hbL03G0DXfbeKQ7i5CDFvPsAgtlXPal8+DCQQGojBBDwAq2KpVFYdhigKLDiAf9b7JTWvEFQPQbPbxXcJIie4NFyO9pQrdkvzvEeULKEuWS6p3Ry5VdHUVmi12iZ3YZuEtuZUZHB9RkPARSqFCGrYmXsdtTnXJiWai1keNVOxAInzbWkmtFQQ0kF0QQXUX97CPR3T4aNMOljRkdu5uh1Pc07X5WUJSwR7wYCOasYq72uvI+Ldz16lyNqlufC1FjE1H1jJAWW6R2Rp3B+KZIvfwf2UgjPRkyHoouuuzr24qtRYm5Fa8evspMms2vKuuHXx5vV5a58QcnbSccKtbOit0dV9Fs8Fu39FtOtCmvlH6K9QqGaxnHrlPj6QaH3SyoEGx589sXI5m8FJxNI5FVwvnF8TvgSD31IfAdWBy6DKu7aCrpqtj+Zet7pz7XpZmVpzAPJ3tq367PuPnJX12xm91LmchY4mLDq6AFSCjC25+Fjy/bg2EP9WVZ5VustayAR3herrI7RqhB0Ey+L2vx97RWNSGqKouxkmY6T5e7gU4MJdGVtzFdn3iOzuUGx8XVpaq16mZSxUGwIrBnmS2kU9VXLRCM8KG/OhgppklUKa1RaPXNTklmqxuWkwnRjTZwN9PZJJmJdQwr1KsWnrUNs3VG3ncrY9LQWUHdOJ31ArSI64lN6ThjgEZ4cdVUju8tNQR4sMvHErNHbme5eQdgxyTSkwnUprSLAbpiA7yzTw7eE0Fg44ZSYBzQCXNzSC0RKwP1y/mWQ4K7iBlvbtSuFeyhL8PEVp4l0V9rSVPp4YAoWWUXG4wC3tf9qKE/HlgvmZRNEzvqVKjHtkzJSy/8Phn0p3oHmHz5Ap5fwNkUidNT0CT5a6E2ezYEfuRLdnnqsbjbqWx+QvdQnCJt5YcStpTrWPRueCG+79eqEH0BGc5UFJWmojF90hk1LNfHErLMaYTKQ02ihaJD/4v2rMQgcflAtNct7MeOoUSC6P4T4O2VaiuGATF36mXHiTzC07CP/EwTtfY+wObGyZxmh3R/cOZZ3Jnc1l8FSjC993IR75ULgAapbSAisAR8Id8xzgPiA1+F7VWfcrtl0QC+FI6thjYekk/6I3tJPppUjbGb9PWvijxnLXnd0Yzgvd5PJH1g73wNP1gdDHnQdNzSz40K26r9hC3oBGT4S11Rb0X1KFkDzFIDjRyYn6XEEqU8GUZhmqml738ESOmw4WL/Hjg2fBNGSIQUiCz67zKTW1J2oldgjRRc4NYvUYUhZ2AODHK3JGCqpMLYAT03oUxbso8Mi4Zv19Ls5MnABEhV0aUGMigxYrW7TaFa6VXrwJasPwg+21BpS4jKPQJpTFpblVOJZE24MHS8+nzjqjCKqMMYVMpBJUIamIYLcg0DTOJqvvp5xRYRnUILk5ObUNDDVXWAazUhVbgfMv45pOcpYRLS3nUwrn8YTBjU6c+zTxYdbgVnMng2JGcRZApcdXKIM6tvMFK8jwBRkcHI72D4cDTPiGYMPXS1LpTytXhwkoVnDYryACJOCn37fRnc6wYIZCGnusEbnM9UiTRB1kwU0sWW84dc2EIGDNGHn38liTvd3Rrp3aneH+btJBfzKlKc+5WSbrcLBtRiN0xVqI77ClJDYD88L4jtJUKlTXZTQqu6bssO4BKaLCn90VElFo0r472mkvltHOgzxa40Ebccrqu330E6/MrMY4YJE/7xpLobhUq9WNeNxUN6bZ99Ne0J84xaxqkmtyQL6vmPMfQeVO6rIo1B6y7yuQ+4TdFSx18TlBRLvV04CsejHsuLXf2etiayDg8dvoozsmmBor75iaAeq0M6gpBbXII4ER21wVOGez40rSAJeaLtyzk4utXmxeWfuoRbzbmTNpGe9OeP/jOHmQdGutwXHirTVLrDZcpCYyCq3VZk8HWaD5lFd0p7JAD1bDQuskpTXlnTIhTPi6le8/ejGEDuvJwystAvDa37MCIuv8D5z8iIrWvJ86Y7uRVBp7MN9EX30EETekhNYwI/F6Y7EohVPP0I8lb5hyqiStACoJKmnYToz5qGvOQZ/8+ikIk751H7Tomm3ixlid9qZKCFnpNqNyF6xruxyh2TTjN0xgyZK4V+dQKpQ0MpW5s0W8p0FNuFFU8WjhUO2wDFw8hJhp1JkXUNyfqRueAtBhaRALx3a2RMOgelhfL4vIt8TT33r25GITKa97xNxaXU45Ym5rmWZcEM1N6bT2W3A0Yb6hyKKoEyi9DrRU9VbsKZSFODWsuxIM9e2MaUPOzrEWu+7BvZbuxZEst1yxUKAmOlM/Iz4LisUhlF1ahruiygzDWzuycebvkqxwOj2+2GhvTMoXtaXVEbvQMmUfE7ewiYELGLAAGjcExsCMTKTdN5BH0QgmPJuSMTIYgynGoESMLbOtkc6lCN8rB5rUI2O/Wd1PqKrwaiZ0ueg4kfYPagxwEsQsr9YZpQn5B3IabhcEoH35wZGzcwf0jKuJanLL8twJuTAev/0q+Ky6/IvKexIjZd6nMyG1sSefj8U00keKVnt1mtdTLV8xqgRZWIWPmq4ahXaB5Hw2N9uBeX2eARh2h9J3OH/7H/rN7k//8frHvdf/uX0wP1P/OP8t3f3lb78P/lqbirA01uCS3TjxjfvT34tro+h0ytPkg3jnKzqyjFTW9uEHQT4E5nwg3/s7/Q+CkO/dpT7+zcVEliLDD7I00Se4zBQ0dy/d+U9xy+R7UgpY3B/EB/HznAmyoEVhNzOcGNrfgdhTzVk5Cym4kcpDLbI704ub7LgcqUQaQGFqAsh6lis3nN32HDZ78Bpo8mHDD3gjbloq8mHDjX4jeZBez2qpSMEUXzDDVIv+uG0/lIfprxHenNbQUY0fnYPDadrokQ8bYdLgU5i0DTdaP20RI5IPonLD1l5xfhx73kGvgSICXVDFmYN/5hrdtTGlUMMXMfcaWo63tMythCnUoFe4eI/QSYLeYXu41ppFMquRhM5rPbpN0dGXx6SKG/WtecdeRMRllVsbZdJGYcD227OLc02kipv8+/mbcDSHPN9ko+2dBV7WxMhUqluqMpZdfQ6q1dm5T+3E68rIWR/95NyphZJ37cDB4YtRMkyGSf32gVNB11stDyDhzv1h8QYN+WdekN/e3iaWhkSq2TbqaVZl0Nv+eOkjce0vkru5WeRblc1x4Y4VUF9yV3zQv6Xd5NOcz4Q70EABfsPMy1zeYp4B/OXSfkK7kJ6AKryPL+8aU7tkdZ3RQqzE4vudjG8CFI5gKo59oFnmTmCX8G9XvldHbnIq3MOxE7jaWxA6Jpha2HX291dHb3CF/dbnov8bfmEoRkxwTRzkWEKOcqseRkmJSI+/ZrfdJhz9xfC3u48H2iOaGqENVpeodFdLh2Yic3EgIANg0oJf/2AwSoa/ESZSWugydxq2tRgawV8Nc/cXxq575GeumJ5TdZ1sBYZ/LC7JDiBxo1vTjgGet6OTapFqrd29cuBRNII1ejzeOvMdB3NfHNK9w3lktNi684bREEUQDiwMA6l+znSo8Gv9pmsO50dIWviZT3mN7E4wq4cMni7jxiNYfYp5497tMHCqXzpMHP9jZQs7Y6fbyBnVQ269SF6DXr356rkXk5V9gpKH3SVgPfRIDuL6XzS1VnuI7grehK/PSg4ZrCEFwVO9DhZeuL0akNcqDQE9JJBMTLNIe/0/2E+8DQOmZMXhnC7tyV9mRY+YtOgRXtzs93m6KHqEmfT/Ze99m9u4lXzh9/spUDq3ruw85IjUP9uqOrWXluRYdWRZEeUkm2iLAmdAEqvhgAEwkphb97s/hW4Ag+FQMkVyHDlH2bOJRA2B7gam0d3o/nX0+vlJXsczgq8JXMbmN3/unpBPImEpOhh3IQiM29anRoqRkd0uSjCISE0Uixtkwscg0OcnTkN0SZ7f8zn6dzhBfRaJHQWethHxz+Fnj3VQCpKmZ9soQaSfehTFhtktOcb5hZwTSE4YuFguExeLVBpufEwow+zcr47YLJvxNgRgzjkEZ1TlxtcecMlnqrnGSTgoFJwCMIdlFTxPj3JUqaDRgsg8W1wARImBNtNFDjV5tpGTu6FRDXLH+uDkgcvOMy1zyM3xhatbEwn8wrgOldbZw0WM4z/cG2wMZDtsSFIwI2Q0pEKBA1AZ2ki1c/7JFw39R6F2/P4M7jAoVtE+cIVhzw1XtMAHhGa+hgqkjnwqvy+Uy9XGvaEK4/8ReQMXdlRMx5I8jsgnm1v0R85yHJgcX55CHzCRwRZy4c6JFACHXMSX/DC+baBkGHQRkGtpLDMnD2Vrhp9w78LC2pTlXEj3TlukXDIS6LMVdS5w0xEUc6C7bsQAkEte7RvthwsPQO/hEJBiZFz5wdQVGbmoJiFdLNmhclwKtxXHib3pmPXfZop33E0YlPAYr3y2hIcEIIIh4qAlZFElbxGFvUCil1KeJztnFRn+7Wt7Khx/n8U+FYa+Z3MtZOE7t9oqTFV7fqwv/GG1sGv74a4kfDzuEe4e0sFQ9lRcN1LJIFuyfFbYxron9gajQY5tWL84g44+/dYgHy8a5JQNzRPGiZwV6HneT3ncw2GYXlSwL53TXjqnvXROe+mc9tI57aVz2kvntJfOaS+d0xbDO5lpnFa2c4sbyDVGMpy/X3sowwcWvtdYhmuh8xLMWAWXpCLEv300o8ry9x7OcBx9z/GMEg9/m4CG4+obRjR4FotxmGG0XESjQGqhOOrMaWG1VSWaAVEMP+hXohlHn35bWJLLZRsW2YQFxN/8U7ymdpqlTppVCrykXjprzuyNNXbWXJ9ffFigfjy6lq5QAB6E5bEVMGEJkP9mqeDHgRoGCb2F2TAoUgX9baa/YaRYUM/SAioPq/yFHNKM/znrEp4MSCZCIBNIqmYsYUnY38nSlbKBJmw80XMcuXYPcnS7P5YW4qX3n/3D8+gM99L776X330vvv5fefy+9/76X3n8TKZI8XgTve9lAnp3hAYNmhkS1PdN3SDHJaVpvuY0LjNnJbNirbLrX1iNxVMbYLtymEcMbCsi0A2/L2Oplc16iPWX2M3NXKa6MpxhpOmEqmofC5wqt5HXx9l47ow8g+RIF/5nAf8AAgx9EmjIA7sPonPmpSGabgyZQCk4VONJBKfc6hfozDLzYhutOxzTTM+Htue/vWkjzWy04OwtcsnjElIZiCfiuyyqd/fyrXZhsyl9QriQZOtuuKsv3xyzN6nTcmGZ0iLmbsSb5xJ3xi0Ed8F69+q9zfuJVXp+ZF8PD0FIpp8SZJzQsRfYLftvuM03bi2rzOM2Vntv6rJY2e266p5KXy9o6ZV6cOuKM4J2o7RZZheZ6d8ll6IAsJ1y4yJ0UUeE6Fh7GN6YPvpfFvoUCIXoDdccpjauO003eZ020ABY2TQInva6zNJiC0MEA4aZsTBBhW14NhERvpqlZRjNd1XwEcqx1PpljnVvU00V5dprvW73Bbj6rmhD5sFChYaUMU7o5EUkzTuK7hc1Lz0+N/ohr3Lw4L7bSe1EmaqQ9PC3dG48WFpaxmtdGZkwz1SCZGNMEwhOpyJOByLNETqs7rvjK4/w9+Jr5g3zm86+gJoXjuFIAlkmjJ8AyROcpbEnqoYxiMZ7QzEXFhLQZKiWrciarI4RRUr4jxoilEwCYolLSDI2CAU+NUGEc6N3ogoCAIwnOVwYPukCiJ6Pg5ykY6n9BK95yOHP2UFgfOd86qBPuKBeOKxzX0mb1Xma3OGMeb6fy2eHje2zB+ZtzNoaxuHH5XcZ6XwK9Xwn0fsdR3u9bG6w5xPsdx3dfgrsvwd2FKpife2Q3xMmgQxae6OfBR48e5IX19/A5Dtae0jRFFHMsxHWzOvpOdIHjDtpztoU+DuW+VmR2oiIKjhXF/wxHhRxiP7QlBMe0NbHFWNg4XQYJy2TRUJaMR1yzWOeyLuVg16Q0VWV179/u9/bLKAD9nKdJzXG2zY59Z+auGqghQ8VslMVvi+J1drvCfxI0g/IAUUabcU26HztYAZBhQToDlDk3xBw0yMHu4A17+y5J9tv91ru3b/vtbcZarVb/3dt3+/tv99+8abfiZNEXPB6x+EbldZ1hh3b4irAch+CB3DLpWxZUMbLe9ne23yX03dt3O2xnt/XuXfwmeUuTvbj/Ln63W74+CSaviaOjcuUGgKmVtYCn/POEZR6EWYqhpGO410hpNswhmijsllKQvLolWcppP2VbbDDgMS+qz0lR+1/2FFGcPRWL2s7zkyyBpcmGZCTuQoahSYFfUVuNlysmm1Au0iDDVPRpWpELfjyPEbaI55tQPde8uzSKDwDB5tJXllzKY5ap2mygUxzeNl8rYp0hZe5lD/SEMZ2oMRKktmcCyBQtCRwxdN6lGJPu+dGvxE13ypVG8ODAtlCK91NW4OmpSXIPWHp2SLX1uqpnOhMaj5gfeDtq1egHzD0igimKnSPKBnh9febOqR4FMMxu3XhlQ4U923Ilt2Drbx2yNKVyayi22lF7O3o32ycb8NZrC7R/FGNDMkav/GTh1Ya3YMBO5aowSXjRr+bhlhMeY1cYXWY206LnjTFsFuD6Se0o3I4pNZ+uniPb2zvtb+YEuZBy1RaAxETrBzh7M9xi2MtwOmEN16FRj2j5EbyMKq4OIP7gQWEOiJyMGySZ3AwbpC/ZXYNk5oMhGzdIlsPH/0Nl9Z2Xk4VvVuq1xNyClmcJuyJvR+9C479s9x+Tj9DTehnL/xf098i5kNpsfXJ8z+Icf3x1fvzaN+95Vmb14fmX0jREUzlk2od3oQVaxcze313YSiyF12sp6Mig+BKmKWUyYOtMi6ibEKrhKZ4y6IpZDdQAXL8YaHIo5ETIMnTUV9is33r0rCZVM/KJnJ7TsEr6K5yZsWt2nzxrM/7RE9naj3aid/utVtR+s9veW5Q/Pp6MqKqt6WyBhw9OzBhg7xHQ/vzYNijsZI4K0mxCI114jAR0EfMXm/vtEgsGPBsyOZE806TPMwDZhotjQgeaSWjLbsSFvqiQtjlvLBLWDNu8Eovu6dxWha3hRBznUhrrHI1QBAyMR3C3BZD5WlLv9gL1GDH7Kr7+3d1dNOCSsSkDkP1+KoZbeiQZ1U3JsEnn1narvbvVam9pSeMbng2bY5oau6OJwmmaCXk2jEZ6nFYPpFa8/7a1E++yd9vbbfNDEtO9d/s7lCY7+0kyWHR3uH56PXgN6i5NM4JcRYN1zzsnZ5fR8a/Hi/JXb1KjZ2peZuMTmdvw+vnqvnPsTlv4efYCbuNx7gPeY1cp7AyA4KPHr5wXivy5KeZfGJvX2V8aQ4NSgP+3KG+l8bCbjhuO8GQr2IpBt2jf6xFuGa/d9BOeXBMx0CwjStOpcjFmnIpwrVg6IDTzq2u4mnBUM+ZB9LtdUwK4vEJyizjxYvbMsK6K4M2OlHRqQdlBSFQOAVFUNQzTUvs4O2QO9ZVIc81cP/BCFY4YYd5wC1TZJzo1yhdv9FEyEymM1QSF11zz21J599waKvDz+jzbUmq00SAbzdT8O1dMmv+2W5H5v/b+bBGVkVsPgBue5gDNRBZYNtT+KHJ7w4wNKQvT+S06i0PH1UE58Fbb48JwbH7r5/EN04RmNJ0qrojIyEjc+SHHxjzza0LujH/sX34tcI2CV4Z8glPDf2GM8g8amHIbXkKDQeVqwmMucuW7UlWX4Alma8J6ig8zCnHmhA+Z0j2aDoXkelRXzBNyWezBRvxk/sA39JTWbmbBitan2PpsmHM1Ip4L292B+h7HtlLQF7FBs3g/pKuINiobnpQA0GxVUdH5DWVTkFuVuhrR7b39JUXP7rn6Kop5X4iU0WyeTN/jn8Jez3xAaCGWsPFA5ZXVMmebS1JufuLZsMZmS2a7BFG9RfcJV/5R1yEJlWKAYDqmWT6g4BJiiWgR+MFs9LCHJiva+UqWslvbYqUzMbvqh89dQJ+o7otYjCMzJ4vuJ3EEOfPLilpTndd3tHztdidmUuM1BCNIynyROw2aCmx5EcvpRIuhpJMRj7FrvyrOqHDUW5ryJMRxMu65zJV28xlT+5aRPCuAb21XYPfV4isuybcY3w97RxXJM7jaYcmcXocXF58vel/OLi++dC+Pj3oXnz9fLrtkOcCv1AXT08XhSxYnZNygKlur8z/DmWZ0XPNLb6ZY55sP48F1GtSDwK1icVWNxntUvOjFEfy0F/74p4+//vb209vOz8uK1pxQmo4nCwj3ocueI/M+0SzB627f8MhvDjwUzIuAF/HaNibH07J6RGy3ttvNlvnfZXv7oN062Gn9tuyRAe/nQldZj5x4m10tzGmPDRIKHTHnvTfuPJ8BJuMJ+lLF1x/6nrPJjN8GBwdLEOpIj3hhR5TSVwCGqATPbcwMIVLXbcuYbiyd4u0yGiCo4Krm9CpnMyjFFcU837KAvGE+5JqmZRsDr6rNZhpSnildcjkgfjPFZnCZLkdQqmqdltbiKzr7qXIaj2mW9FK+EEbKHU+TmHoVtpa0vLKUP+Rp6qgihircKOAuGE1WKLvZXEvn4/lJra834+PhlqVpWjgbgfyhFrDihazgBYYuIGlCg0tJvOe36DKxdBB9g9uBTzQeGZGXbgisOjg+/fDA7cDb/ebiFwSGk/5Us56QSW11q++nxjJjf+RwmykGDxN/yrVOGTnOEk4XNgAMD/Ek79V4LXh4/qVU/fogAyeZ9pHdxQiXDLZqLzgwlzlXj++1xLoXzKRw2QO+h6Uhd1MV12AuP8Q6poVRoUGl9XOeakyUhrBgEkGWHM08LuaA3uABYkPD2KJBFD0iFuKf3UNMfgHOBynVmmUsmcf+qS0mxuFYQhhiymFtHB6LUF78FNpGcBsZ0X7dlaI/l29ezO7qBN7gezyeCvy0V533J6+XYQUQD2tiAu9uEVTxoffkKbSaXVoTqUdUU4J3wwGhdt4lSGWZltMQ/XhtKRJWqMUE65AsQm/WnZW50bpvb4DD7a5xPNGFPfkkslWP9nlN5H79fXOSP+VZfk8+d5eRfI1HlN0pj51ST6H0myu8Jd4+e5+7rrMDh1vT2eEaSC5AXMYCr7PSgAsuB9w1l60lwBcYYdFoPPKN2irrHsQfmFko6+cVRRU29GqvpACg1gyNuBsOqaM/JSrvN2c6zUKKZMaMVX8dchz9cP2019t/MR7x7eUUaAl2ZSaRmTfVH7mNpPRpn6dcTyFEL3k/D8Vm6VhqmeEIEJNFMm2eRH53RLNMZMQOT2KaxrYXbmHarUT4IKW1XQuajdi1exPeMphsOTprvP2vkBnWBT6NSoe03xODgWJ13exXCMbZViR5+RRPSNxciFDfiSAslHkavTWeoRVyzVDLUXnLpc5p2rN4p+u2CyuU2vkcvupqRNeR7PsgxUvshCGEg77R0QqT/dVHK3K8xNFqv/gEc2TZF8dKzgnMb6ql6K35JZ+h9emv+YhKlvRS3peQ+FcTqc4yxemInw6vkSBFgKuAoSfxoFk6qDH30g1P1HTcFzZF0bxWT/dKspWqi1yPjiBWTeDr8y6T2vvN1l5ze+ey9fagtXewsxu93dtZ/EIJ0UtqvH58GAlk3p0jm2mugFoMbyKhfS3ciPQDuBWsesNm4CoE4vOjigG5AxDnUl02FNxAXyNHSLO4v/vy5eSoQbpTNRaZS/IjP345OVJFvTb033XJujBzDqymU39Xir3KfLNWuCatcn0oMqVlHsMtGrW5c+nUDhdKDlCpYzE2VE0kjTWPobRvzDUfhtfy5ydHRLJcATz+HUtTKNcNLnGpk2bsd5gAREM+Zg1CYymUmgWZIa6tiJGeUHrOHVu8He/u7SXvBu/e7bzZW7g0tLhcWd8u/MaID52ZBMHyyxskCM5ILLzemZEJn9dc72kpfJdwc8U13laXM/mKNlywrTSTY9cEEdDEonkt2wtjgfbRVoAxPVpmMZl7yy0yGVQXhhm05h+4lJtTEtjeebPo1jEvYDRO9mpSX5+O9nCK6qRq5LEO1z1r92On/ci0RXJcDRNv7+0/MvVee5F4x5JT77W3H5xaJYwtksWx1NTdo+Pj82DqBfbddw1Ps+mONAwb+O93xZhBygyJbek81pLbrChJFB/zdF5B36z2mlBpVMhLAvfTErgXqcAoJPuS4v0tU7yt4F8yvf+yTO/5K/AdJXzPZ+Al77u+vO8HJP6S/v3s078fWLm/Txb4fAZfksHXlwz+gIT/bjnhD7D5khpeU2r4fHm/ZIh/TVwvieLfQaK4Xa2/T754wND3njYesPJdZo+H9P8bJ5EHYniuueQBiX+TlPIqR88+s7xK8nNPMK9S/D3kmVep/p7SzedQ/51mnVc5eebJ51WCn3sOekDxc01FD0h8yUhfVmLfW2L6PBa+p/z0efQ/4zT1eeQ+22z1ecR+H0nrj1L+fHPX55H9bFPY5xH7vWSyP0b7801oL1H9kte+nMS+h/T2eWQ/4yz3kNzvPNk9YOW7yXl3NH8/qe+e4pcM+JcM+L84A97txeeaCF9PrvtTBPOSDb+4tL5pUvwTyfp2afNPJ+wbJtY/nbhvmHr/VOKeW3K+Je4Z5uh/ozT8xWU0Yd/inr/urjEFM/8m/WMKhv++nWQKHv/uPWUKTl+6y7x0l1lkn/zt+8x4Tv8dO85U5TBcKDzxpGjwSeFVW36hGUtQUWcTf51n12dmfONFP9UQm8xSX0nWf1oXRt/WprIGu9u7208lrkLdOvpEQgGUldwmmcwntf1EUsFDXIDWJ4XXbMJrfQE20KVJtH4pX8LA5ORoHdvAUlmjKrXkhpefnmCcvdl6KtFcP+9QkXdxgNKZIIrZgfB5A6OH6PP40kKq/B4FmZHDIA3TVxke+CEHQetzSvpS3CkmiWIaFC/XlggXsLpjfexcC4ZFptMpEROWBQnvi65CPjGUP213l31cFossKWvbETUal2Ukn1R2S3tn+6m25Z2Qxm7pJVyyWAu5Rg9p/bvGbA5LMPEEz1YpzwplayTGbIumPGYLy+bv4fz++3i9f2t399/Az31xcMmLg/v4Bvnbe7b/9i7tc/RlPXHf3lP1U//Vfqgj5Dl5md6O/At9yBkanoOH6El6hv7fIyrg7+McOqn8da6fo+C5O3aLb4c1eH2OOsmGXGkrC9ur+yL87OFm3R+AXYLNtcHws6eeH8DsBPRbLDnI/uOtrKH4NMzcXrvp+9kVkcEs5E5yrZltBd6niu3vEpbFIjFWXPGqfRDSMyirDDaIyuORedu6TP9s7M3jeyjquWDDn3Imp/azRhmoAdp9qwnubFGkqkGhHqavXaeTnvnsOvLoImJirdt+rp2NEqBOMe3M7FsmXfUJoGoUmb4e08C87xfHP/ben5x1Lv4LOWeJM5krBuxvP73PO4etzs8/vb/sdDod+B3/+eeihg0sMZ40X4OjmkE3KC/kIUI2YEWzWUbzQuC4rpbKC+XcM0wVoS6Ret43Qf52LdxCR7D8imfDIMXNPu83A0xJXhlhdn9rgFCPfz3vnB31ur+9xnUPE6E8DVwX3pTImB3XTmlr5CEj0E4IG9WM/unL6eUJzAVju+HSlPQLKm+p5FCtmgKEHQ6b5WMmeQy8FjvXjHn0y+eLI9y4xz/2fjK/lUgPdlmwiTy2UsJiPqYpkczmkqOT94pFQ3K90d64npO2tfn7xuHBldT0SrKkp/Xkqs+zq/GUTiYRu2dPgPyDjVXNvF4P4pGmWUJlUl5vPC6ttnAYImqWQ9wSi3Ix4rd1MNDp9yW75bBe4Om4sJqZr3JcfPzX6adFCb5h0xro/chvWRNOF35rMyjFAMoWKsR2P3+4/KVzcXxVeGFOVZ9dXh2iZWKLQq9OxsZc+cBTRo4hBdNs0M8wqbq645kh1Oy7hd00qkc1sA+oK2bsEFTFLFXDDAdvKOjoeQt3tbJA/Gs+RzBXR6yfD4dB1eBXJBTSuU4RnQX+OgI32rO8skEWo7gwikCrlW2i4qOHTaLNAPtTMW2O6jGzqF0DGpuDmGpGJvxWYAa3FHmWEEomnAEOiqPP6DF3dgH+DTwAh0CIlGcDb8qYwAANlU3JJKXmSZ6ZE+b4sGuzcsllSIIdGkNahhKrC8YNojRExdzpJAYAzANToE1gz0YuA+Ol8BktbmFGrq0Uo2vPSccoyFgy7TPvjYROzl09GFMupuciilnCJCSQN4joKyZvmWy4NP5iR2ibgNwgccpZphvEPWrekoxpYyxHAyHvqExY0uOTiJwMyFTkhE4mzGIPnZw7va1FQT2fXDfgSUOSNuYCCg0kRsmQ37LMsKAlv+U0TacNkglj4RsT7G7E/DbnGiajELnsTwsk2GCqg/a77agVbUftPVc1tYjJXGOcuJOmeEZQNWIKt4HIjECk21jWskLMJ7f9GyArr0Vyhc4joOcV8rOjGtGOWDox20ZxndtoL0jPTLUpzVZQgBQ3omX0LojvFjivXJFXiIbGJBsI+IbZUEZlwqHnCVgcEQUKGGqUrxkfQQB8LNx8FFRzzBf8Mb5DXhzh83hkMPLhp6Mz1SCJGFOeIdRAA3xHZS0z+5HZzCmn6gn4A3yRRGb/UIVrq7dPzucyV44dqNqAqNz+BgywmUWAz+Ytgq9P+Iqs/HmS21Vyh4n7/ZGTxDxjX3YoPXKXKw7uDuI7ti4Hy4WyqdeRRDh50aFxkAwBttjTFS4RmjKpA24zgaA2wFjhOdlNBlMERVR2NLx7cX4AukwB4XYXHjgd7IhKxlzBnZoxmKVIzaGlzbGmGu5RQxi8BSdH3a2T827xhwGX7I6mqdnIrO+GDNBWggdymVqkONUgLEsQ/yZh2hb3GlWBR5hi5NXx0cVroiBI74u3mI6foIlprkeirr1qzB3zpg5pxv+0B56QZKJYnohsOnavFBIBrzT8ZDSpQPQtlpSUJ6yV21l+Z4AWL+3v0FXraiqbp0ImT/DLYqrZcK0Rt/JL7CawYrHGoB0qKDJltouPPY+cCLxMzJlUbA5XTzhfFB2t2XhinKmTwCI7ZfRmYW+19hv6S/DIK5fzsOx2uZ0c5jP5PhXxDZHsj5wpDZbfJO+nPCZHZ12sAvx4eXneJVvk8rQLOIwiFqla+Aipq5S0gzyeHKGa4spVSN5xPcLqdqJigZBGxtYdgtnobcwiHuPU49yN86QN024tnMWY8phlqq7Lk9BtsjNZSxttpcc1gxcNVugZF4cmjNBbytO5xYydCY1HjGxHC+fs1XpxxErXvMAnhPYcXOxi78Xp58N/9Y7Ouj3zEvQuT7uL8iYZXLjEdTG4eeEmIF8uTs3q0a+hrIdr7Vd37mng/2rEaIY3ljueqTZgitDWm5uKJCLOi9rs8mzgfpk3c3Oz2E+Z0MUuahhnIUSTpCTl2Q3wg3kbSGCKl08ogr7zQYpDzqKWgbFTjTy6xA+WRXf8hk9Ywmkk5HDL/La11PIaS6s2nJ2zmZ2rmG6QiUh5PG2gZYIWAV5mu1PXuFXwZj/p7Mfy3jEb9wvYtCLgZoOhvXOr8nsf0MpaVE55/kx0P8RphPRpEF5GcCSo4kxAJyk4DBC/4uvHQVlhVo+FdquF/7+o7OrNe7uEtxhT3raIZLdczZoOfWa4hr0DURDbtabKWvQVnnwiBUg4dJG6xSePOEkd+5xZZAdPQ5W9uYHAlPlbRqh3HmKRZXZ5Bt5QR5eHSDakEsKsioF7ohrB87j+fY4XrqhPB6m4g3s2mRQe0wchyeXhuR21YWHSHJlIW8z4bZGCwzOuOU1J97/OyITGN0y/Ug4d0g5qBixowUsc3Ive6JqdySrIdFqRx38UWsDJBTLtqB0cIo7WDyI01jliTChmuxjIMdnw420Y/QGnWjCsoyKbIVxhewP7Z+slWuVttLimPFXFYWFHRFIApz4bugUupgj5sKGRbmkC9J+BCztiAOkOTuj/5BluCrjIwiii/fa8wQrRZkJXhhyACjbLiOmMsy71IQ6/5Vgo35VhOIwmCVFsTDPNY7xWuoczlmaE3WOuY6Ok1LmCENogT81jt9ywy/9kxY2yYZRJTUsxNhcHlX6OgXGc3ZgZqlB3kGAg1F5hKs3TlDAMyyGOFEQGwKcOgrIgsAFPU6+b6GQixURyqplvX7GQc70wStlShhPsejz67ML4sHQJ/4qO+3yYi1ylU9zN8B2v5eH+VfnC9JQrbVbt5LxBqIvDQeg4z/g9UcLsk4iQ/yokS9M7OlUYiC8f2fTO0eT2/XVkP7hGkZVttMxYUcWVc5K7lhEQ4o745NqQch0hWdcNkrAJg2g+EdZmICILIozmOJ1J7KEqKmFILpPbY4F/cBxC01R4Km1AQ2RiLHJlVQHKvfjYE2g1hR3oVad79roCtQPZyDQeFZEmFCWmg7I5J/Ree//dLM9hGOY54icsnk30OeBkfkbdj0IMU0ZOTw9LUpiTpLNIEuiDqIzvIR0H4GECfFF4E+1GQMVcXaC3u+XACmznr1C2VA4AUoPjl2PUQyaimOtpXQ2XDrmezl+dTyLTktG0So7INM9YNg8PaC00Xd6JZorJRoDd4w8ylwsBs2+q+XSfdRY1eMvM1CTgs1InKztZlWgh9Yh0IHuGziEyz7Sc9rgSdcn8EKcgJ93PIPQKhYedB8mqa2takuau8iHNaFKVFGj4ihNTIWfIRC8ExS+jCopsyHWeoMmRUg2/VGPW/5dspCLbOCDNNzvRfnv37U6rQTZSqjcOyO5etNfae9d+S/7fZoXIGuNQm18Uk01nUszEaClx4mkQilETNCTFgAwlzfKUyrBnnR6xKYkBoM5YziW8OHv063Lci0s0CmOW4d0IlDykAlPD+kwWKF/OOi8OWSQvLUBzMTbaILHTUWHi3ZkAeErzIDoRYHObs3sMZ/yQCcdtNUDTF0qLrJnElbWZCKVpWtdbtnkOw6Nao0qJmJfz3DzJpTZeuTEVC+vWZlX4lJAxnfp41k0m7jLIRSSGFQRak+S3k3MS8ERga4NJeUvllNzxxFgycDzatxouBfHHqvze7bZ2Fw67GrFKNuQiq1OBXcAMj+mv5k+HD9FVkwazNM1VYD/lrM+q+89Y93+K2Q5d6zlWXVmIGd8H6r1GcNmaJ52zTvDcXOLtQbXVkUM4lunW+5xlQvU6XLLFr2kmX+Fy/i1/kdhToN2D/fTq5Px21+z2k/Pb/ddlO2pM4zre50+dw/nEzAS1M2ED1mit4pt28eGQvGntbgOyaD4cAkLzATk2ToSINdPklQ01NsjbZp8XNrixdV9j/0ZrGtmryDtBfs8nEyZjqth/kxG7py51FjrYKTLkty62GObPEUc+TozJzHlm+xDzTLMhkxHp5nHMlOK39kF0YRWbUOk6AFI/4mg6GbE52rfVarZazb1j+PdOc3untFIZ1dEKOSCbl5JmygZhoAAtDBr0qTkozjqXPhZnsSC59dKKw0+QieS3Rt0effrtdbCc5UMHVHcqaEL6NKVZDMdekCogJJEiN6fhjINr+JyIhQq9nlRQFQoAymqfrwgwmvUEX2+mtg6+vZRnN1P5V1mGFasOrdhDdUDIbHUMkyzpzfMp19y0nA9HTOlgUicjnLsBjEwmLPEk533nivol/1CUbzWCEgYYzkafjFWyMRAiss9FsRhvGCW1EX7wcGd0jNQC7itALrKYK2OV2LbmEPFK+Y0ta8R8AZUPBvzejwjPvBppPTnY2sJH8IlIyOHriFxiaqQWaE7d87G/nOpPieLjSTolmt4U64oRspQqDco1pX2WKrScMqEh5Q3RjQ33l6dHyp+jG7GI8puNqvoLpFHaFV7sde4GPwlseu8YDHLzNv+R0xThrYPEPpdtFRjqRZodprax+5hN0KGA3Cr4Gl79l7eK3e4RISeZsVCp1DwIn5MKBaA8bAtW8//27zYjy3sv4GbkqS0lj2lWxM9JeV81AgnYdgeqylCfpeJu/jaf/06U35tQtht3d3cRo0pH46kdATcGvhlU6Y2iQ/uJbTaLo4xoAYCNvGK5jpumsNk2VN7fjlTeb5devkZpExfklcCTrRSCMTYa+M5lgmhJeWpemQmTXMxpRWsYWNTe02LSAza+gdZjgwGD/sNmVrtRLPev2OXp0esGukzeXyrk7oWGqqPhrtdACZgt6/ZK8JJEVQU5O68fNqiENasE++D71oygFR9SisVKLKYe4fPSvskVk1G9WyaM0hWlrz6DN8hZIGLw0LFIM3J61Dk3KquDHB/5ocK9slnljo0pT2ti7ovhACYoN8gpEWC055rBPr7xfYNhc1MVxwCEmh5JH0v7TGpyzDOlmd1YJYnApeFftu0wb6T2fYdM1pYz83DnDZsXY9Nm4Hpty2Vrz9meSGeNgdNwJXCyKhF14iZZSYG2gdoTCL9JrOEpJdhhgRCqpYzQTGTTMf8zyMBGEfpfvyg2yFPzMlwDFzzB21n4xXB37U2AWGQDXKvZpL4smWNVGedv3qb6KoTLeraSXS2Ycvbt7jbbzb3mdru53dre3d59195+8/ZNc3v/3fbu9rvd1m5ze2ev/W5v/83b/Wa71WpVmVhfSPAb68HuyHifmUWqT8WQZ4+KikbsQR0oRVobXkLH1QHCVoaZ3K0ERB8tzQ8WDNzwPs1ojyZjnm00yIZkYHVnw54Z8KtVBGGOmEMsDJLE3EePFmUy9+1KypEO/4ZFExChKDKhg1bSd1SRWKQpiwGgx356CZ3S7MBQxjYVORnwLMHX0SuHVAyV1Qq+o46bG8p5Mevu+WTEdGzAFAvx4MLIpWZx5UkvSQWkN2sgB6AH5MvFSVHK4yKyr/jkdvcAg2CS/M4nt/v/Db++xlQZyTC3yA8L1eCvMHlGzesE82Y72t6PWtH2wd7uzsIItyy75VJkY7ZQF+6lZHpSJKFgPYqf0Yo53JFcEZlnWRmIxPqeAO7jHpR5BilBHs8nHFiRVxbhDO8PNB3ybNggP3UagdK6ZamYjKEMguk4et2o0Gc8HN8VCpMPjUKiDp7CUVX4ZUhdADmE1oT9HJseB5VbKogOGu6CyatLXLC08OpORmzMJE1rbGF27OaoHIDBG/OKDwDog91zZbbvzOvCE5KZEz1NpxbWULk2W5IBPJjCHmbXTsDGVEgEU8arq0rqLd0d7LVag5Iwajn753Rw83nDsI2LLXEymN3psRhPJFeBgSQGWNKeiYTZO+oSy4Ve8VsG1Cu4twlTcwRrv1JpvxYSY3F2xvSGKcI1mQileB8hr7w2Lxx2o9XNRh4zLXmMGh5gXGZ0fLkw3BwvEFaL85RKoNcPycZcQ/pbcaz6v50JbdMtOVawZwwT5RRjxRfsm1QiAyJ+oiT24v0PEjuxXhJNfqrJtfmetT+NOQq/GumDMULnhJqSnTdsj/UHrEXZfrz77s120mfvBq32m13a3t950++/3d59M9gv7ceabnZLnpvbbJgP++ipVa4SCnapfzPBGoLyf7tfaJqKO1x+3+k72Mxe6YFUZQ6VxD5qCDXmZV8Co5ouS9npWbgVKt6QzAdDwxMCP42pAg6OU6o0j23dfektcm5FGF/E65hcaZ/SSYLQ2XtGtZo3CAagrBKG3oMTj0nmHzULeV04QIgVMTAvBkawg86Nc0KYIR9N+7qVN5FIWK1ZO243Ub8lYMoZPRPsBH0nUBeFB2R4bGc22db/DV7ToBArROmDJBRIfkVwg0awCI51rxaLpJu+6zfpB7XHiafMAVm40RbbSzMqOSChuqNmCDDP4poHVTnljWr3YGRIMNOrOQaSOfSyzc3C+QKEYJvCB3cdwJyfrTFz9yGkI9KW/4dYxoW/J+CN5tkw52rkV614KeGVNucFySelo96ec0IZUknollvUNiuXDKxguN31KqFqW83dNYWCcbvnNWmiVvAytkyNaYalHIrNMRPcfM2W/add1tAqAI5Za/ogohHh+DO8loM7NSF7gYPoKgWffE7AF2cQsNHMneP9lewEf0IHbqzjJJjk2C3QyQAHEdKPQSWboW72DX1A9d45y+m6pFWvv6J1S8sxtw5tPSvycxlz3S2IL2b5us9pdbAWJBXihlBzJCF+BdNEZOl01hMPYN69dq9KYyfajnbDqEThl7qgRPHJIzEJfMpFDRyoR6UAiigGt7OoxVyNky0A2sK0jGheHMJsjKAiyWwMWi6SatisjrCsEYpfiubyfmmQqhIRYcFYgVQVMhVUXX2l3irMerFFVwVPD5UVBbPEIlM8gbtfIzNjIqU8YyHkJdbU/Ic/UrEgCW4esjLf6qEJnRjKwnR7PayfOwkiYuj3+rGdZxTTEJDBFpwBvUXhI8FgG0IpzX/OScFzicmlXtzPJ5YUVldZ+b5UV71UV71UV/2l1VX4Jjrg4ULZ/YUlVkjSS4nVS4nVS4nVS4nVS4nVS4nVS4nVS4nVS4nVoiVWaD89kxIrIOalxOrZlFjZ3fGV0iKjlSHSUBx/wlcdzS0vChB+iJYUYmnZ8NmXWz0ojmhFeTzDcqvFXb1vWHNl9QN5TjVXoQP6UnP1UnP1UnP1UnP1UnP1UnP1UnP1UnO1NiJeaq5eaq5eaq5eaq5eaq5eaq7m0PlMaq6glTZK2WY3XRafPJzdtGFbA5vXNKVK8cHUpaVDxQd2HqJxLBBuG0D9cS6i6b3IxHh6ZSm88kaRYfjTyeXFMelcXv7vw39Bc/2BpGMG7d2uskoClNEGht8SJcXAlg7M5/FeDpe+xRHGgE6Oug1y9uOHX2xhjMtYpSQW47HR0pbkqBga4svAUKRprHkc/QAU+W6AYRunER+OrDXsIfuFc+vMGMW4SNHVBh9PaKyvNl5HpalYPAJNEP0QiqEyKaSeFIPe8AzCG2Dc0ngEkPm+Zw7cT2lMtMN5GrBgcSzGk5QrvKwZCpoidcW4VxtBx6XMqE3joGFmnSF94z/IgrlJLJM8Ho2D1qqPvXAZBI/nvlZo6hteiwsnniXGZxZSEdH/HxZrZecrtQCBXoIl694hZgtsZeGH5CLbKgheuJ1awGPkSVqAW6R5Href4S9BPt8DXM/hdjWqo3+nrKVVhPTc05xWy2RaWjLO1KqtSc5GUYV51dMjdtUrprzqYfefq545L4YZS656/al9zGbty6velRcg9AC56nUvT34NxyEqpilTETm+n6D2xPapB1cZIT/AnX3X1bo0yJnIWKMY84qcirsG+cQSno8b5CMfjvBrrWa7hT91kjGXFFq7d81M5FW7uf8a/3Z0duI+3Gu+23t9lYVDkx/IL8fn7oGTsa9va5JD7BDwemN2aQ0Fqy1q/d3OjlwaBR6drvUPJhrHIkvyWBed4OyZOcvoyTm5j+D/IMncdn9JSMJSfsuk05KdbJgySY7/taKmhNBDVG/ubVBy7M0sT4G93iyFQMgrDo19MTTld44YEN/85HVFcJMRV6P/Mxu/X1owA56yiMINK1vEA0+K4pSy83gK1xPGaIZAOE+xYt0NPbe0ElpRpdA6krk+KDeMTYiWNL7BXWW+DuNGC7dBfIxTbQsG6yvmdy4FiKCYLxBAx39oQ/1FVkx/6nt0RuQjk2xzU0FhVdZk9yOaKwitOOsKNV1gLRnzSDLCnCqE/GqXtHNAoAv1LWtgDTCsS6OI+TQIy2I5nWiWFEF7Bp3KWYOMeJKwrEEkown+25xiDXvsN6Al+JxCjs3fN9yzxkHCp5/Q0vKRtYxFwnq+oVyU8CFTuud7FNe1wJe2GzIYer4hsitJMvRgCFyKGMKcXpQzAfWw1M1zAcV3xueB3cMVsdkQ/goG8vGLAMg0KHY0T0ooWLcx+QKlAGVTkFtdJzWi23v7618VrL3/ShCjL0TKaDZP3O/xT6FbxaFyyDcS5IrYhJSqh65lzmrYauYn4+TXh29gNlkQZlp0dzmPUotyxX3YtndMs3xAY8MIJs8QJQb6zugN7CoYBWMyVzysiGQpu7Uebmdi9uIPn7tQ4jXv/mQcmTlZdD+Jo4kU99MaVkFTndcJyvJ4O8eYSVthxAiSMn81BjneQaViOIRscqNixVDSyYjHhEkJnYNdNmY46i1NeRJmxwpJtMyVdvORU0ZvGcmzoO5r4PKs4KvFV1w+eDG+H9ac03kWj1h8M68e/Pji4vNF78vZ5cWX7uXxUe/i8+fLGlYzBze6rrzILg5fghuATFVUm7M8f+KxFOa9IIdCToSkTwJAWZhpzei4Zi1iplinKoHxhLS6wpZxOgViwWKiQnP4QZ+oQY5/+vjrb28/ve38XIPUzRmq6XiRjL+H7N0j6O2eJWjy3vnKQbel8Gwyb5br+YkwVXieV0+q7dZ2u9ky/7tsbx+0Wwc7rd9qOLlAFyxk6D9yJm92tZDO/Qv00RwdQ+JROV/lZ6OYira/D+km/B6kmfcZwRAoxKUaKPSw32cpkwRKjsPSTLCRhEgtegAFXwsQf1h8g9YTKtOq6VqT9QC6ecUVmG8W4RXukGualg0k41FDRhMdUp6pICo1YqTPM+N6QJy1hIEz93ShpWX6ytGxPhGWuuov5aB+MBY1jGPOcfAoF/VJoYgVt2jp+2vhzIy0Zse78DotiAHFEhkoZ5/vijsALBv2hWHsjkD3NJ8YCsj12Ex1bbF4uHkvmSLXwEUAe2C+0WeEJv8D+sZdqoGjYh5tEMWz2A8HSQZZQbfPpzMSWoeUExZAP6w/IGZRE7ANcpAGHLJR8bgSug7GnPdeF28+i6NAhXG+qb0qiMiJr8+2eZqoiWQY1cLqyob1b4vKoopctkZizLZoWqzXSvIxRPRw8lVFNPf1O5IQkWEWb+xBGV0WxVNc4THl7KHCvs/ILzxLxJ2aqeXAqEFRA+/rLfA4NDorlHws0nklaCteF4A8WTqIIIykGbiQNW27TzQeAbREMJV7m45PP8x/o+7f7jf3d9fEZH+qWU/IZPVt8wCL76fGcWR/5HCLIQYP83XKtU4ZOc4STtfhhBj24kneq+L8rI25w/MvJaifB3k7yTRL18WTPZx7SQVB6UlH6vG9lhTip6Cs/L2NL/IwM24qf7BG5ASJseG7wufRYCD1c55qxMAaT3hqNWbswDr7jAzoDVqqY5qCIwWsCKlWvPbwomH3EyEXutUfpFRrls2/2D+1gWccjiWEpQwwSzGODab5dMLWRvaI0YTJiPZ5r95u/DNASGa7doKY2Xs0keGaekBjRl513p+8XjOXkDlTE38fYQpMznnonVwTGwGQ89qNEWPFamrexYAHO+96uWCZltOwXn9tBXJ2KYoJal4PTFyp+f3Z3GjdtzcstDcf8oymnh+1Fgs+5Ej1aJ/XxMnXX3u3Xqc8y+/J5+6a16vGU9luvccO5jUx8c219XqVAB+v9bjE4eo/LpWtDV6A7oeT9zY7GaFwiR1mtGU2AQ7LaWg8Inay6kYqeS43bGojb4X3Yq/rLPqXYj4fMAQo60+JyvtNzKzyQ0JBX8aoHpHrkOPoh+u1aRk/Zjzi28tp/1JWXtkwHvGm+iO3wfI+7XNILfJIxiU0xjgsHF4bW+bkEZNFAgZP4qw7olkmMmKHJzFN4zy19QJFN8p6eBqkdFiX7WR2dtdudnijYbK1s1BjYUmFgzCtcG0MOBCdnhgMFKurs0OFF5ytPm4U/3ORdXkKRlyFB48/ZCZbOys1WhQVThBUd80M3HKpc5r2Fs/fe5JFXmHCzlcuVayBn+W31hLMrHdrDVevEljc0IDJ/mpDAzler6Fhx3yC3bbsS2qF6mTpt+K6WalZ18ywsVZtM6KSJb2U9yWVvLYEUecT4HTET1cuBSp4XRd7mqWDGotH3fBETcd9kWL9qHmF1+pgGmrrjGLAHbGfpUHYfZzmiUtWSBmFnxMxv1OMzwKByx/INCrBZ/iBFXnlErg1ldHwz9cNuBHyY3pUA8Ct9/rMXvUn5NXG8M+NBtz7bOAIG3O6c02CE2J5oQ+EvFlzVf7MMWD2yQ1cARc5d9gFbQaukAa38v718EL7nGFIphF0MvND+7QnuMqfnagyuh/UzkI69mYdUa3NslJtNoRdI5jG1ZXDkBZ+BS/oivn8wOYbChJcIEW2zMfZ5YduAzUB3IzTVAxFDrfzNCOdFNCyNMOAaFdLRsfkVeeo+9qlxzC35H5UBOXHR7F8211R/k+utPHWUpaQ/3XUuexE5DeRseikSBrDtlFjuLUstezoT92NJWQOQNq+TRtQJBF3WSpo4pDxS5VepJORzlEXLswdnlchdXtvLuT4gFwfHlxNqB5daXFlaAbnxb9LB0qMWc9v0muUwPXMp35kez+PF6qhueCSXMh18a2IXFcndI1f/JDBN837ElJR+dLsw8UDkDNX7I48TaH7XsM+aH6+bmBiRXjVCxsvQFYIXv9wEQOXfXlNMKwtU/Fc8jGVU4vIcHJEXv14cvT60fSJzXar1V6HJVaUxNbNV5h7OpendSU9mMM3Gid7NXH16WgPzvd1HOkwjhrRdk20dj922msntqiUqIHc7b39tRO8114kkLkkwXvt7TUTrBLG6nolu92j4+PztRHMswq28PoKCrMKFH2RWlRYmrYuu6Igt/f2d97urENFjvmY1Zkt8unk0zHeSrk0sjDj3OLXBoqTCOlMGTEohdlsmTAZaT1RB1tbd3d3EacZjYQcbmGhMXC4NWYJp024fQl/ju5Hepz+ftLxkP7GGBnwmNMU72r+u2GzvFxaSER+MXb/GFNEaQb2IDDDlSu86VtANj/mWChd9EQKWXeYNutYtvq25icA+R6U9qOINU2L7Tof9XSztb/bWsueXDFvdk7arM93NU6bSLA94hpI/UaQUXYdQo81cGWNi+NKl3zSaGV5nFu6HtdR3GW1pc+Bqw4TbIJ3J+dCJazLojLm9/oYWT9oxAfnL4QJ3I2Z3eDDEnMydkuhhyTIaX1axu7WejfQhH2LZNPD8y/lRFNN5ZBp78/PTzZdS6bpBEr4JzSrK3/7xCNr4zQVJ6ThWmRCkr7NUGxiecQMy3UVxU3YN0Ct8IKY6VCyhBzOadjGZSW+zX9rTs3yjN+Ws2aeyPR+tBO922+1ovab3fbeerjn40mdeIYdjEJbfm1ODwAWkvNjfKtJJyOWCtJsAtAzPEYCuoj5y0zn0QHPhkxOJM801k8BstGtUZQDzSSRDIVp2w+6zo+xSFgT+Cz0raSZ8vXFCjvrijjOpWRJw7avwzaiWKNjLU1JfQgTqEcsiHL1lrRmKdUlg3jAJWNT0Dxb/VQMtxCspGnsNqMHt7Zb7d2tVnsL4nk8GzZtWnIThdO08AeRsZXn9FqI99+2duJd9m57u21+SGK6925/h9JkZz9JBuvZOy7NsAevUI0mln9/VtGc3fPOydlldPzr8Xq4t4W2dbNsp1mF9Q1/agCQoI0Ww8+fJwwxoEgXYUHWIJunX6nPuQEygxg9AZ5lKTIfVO2gXYTRWTMoFLFtmF/nAEq393fersNeQMuk99zN0Us0oMAgNVaUmo5Tnt2s5bq5xjgELD44469wlydcAvq/pb+KxmQeWwNPeW2R9UsHH35yRF59gaC6JIrFueR6GuICvOrORNzRuaop7i6V7inGFrF5HnLgL/GmbbYKn2eapSkfIjac65QsofmIzcJVfDjSZRB5rgqorrnF+a1mu91s7V223xxs7x3svolarZUL9J9Jo83V6P+7dOZchMWa1mnZfp0rcvVsGnyuhY+63qEFO4KuxMOzbSG6Eld15oy89Bx9es/RlRbzpUnp2puUPizs59S6dB2M1KSbF+x1uhIH/07NUedLYYXGmIsg4gatVUtwuEQM/Ev5CBxuO9qOdqIVXeuUflN3BDI7n503MqbyhmfDSKd1pV5sXEo6GPCYnBqWybkUWsQihVRoY81bClRELlgsxmOY1QY2CZXsoIqv/fHk8hixuH+8OD4+s5Ddn94fX+CPF8dHFYztX0Zcr+i0u9vhHl0kBLeuLeNmDQEpvTz82fftd87T28g+UUtgI1nXWWAJLbG7u7MiixaQvqY347JsXxbsbyoXaa0uZyr/7OUyHdF8RQ0vGcAE14aPdeHGJ18uTknKsxvXjeZxjNVHN7O70LDZTwEg+pb/0lar1Wpv76x4OmD7TTkFZIsozDZau1vz2WEnwCyAqa1ZhmZwnyq2v0tYFovE6OlyIzaXhe2IJQKD6yJThSnRZRqs5uN7UDkXbPhTzuTUftYowypC5y81EVniUeFsYjt3vb+v00nPfObh4BQRE7ug/Vy7rRvgVWMgR7JY3DLpip8BF7Mo2vJog0alXRz/2Ht/cta5+C/k3B8Ic/Kdf3qfdw5bnZ9/en/Z6XQ68Dv+88917gCsvfsapvUdT5OYyvmVb4cu08joe7PK5oXAcR0igJfZuZcHGkxYMjfvm7A8dqk8ybA7FM+GaeHk2Of9XoEpySsj6+5vDZD58a/nnbOjXve317YOoVigggauiztSqFSBce2UFtkK28XihLCPzeifvpxensBcMLYbDkAD/Yi3VHLAeklZNtQjHDbLwdQFXouNbcY8+uXzxRHu6+Mfez+Z30qkB5sw2GPew3Q968v5a9BriVxvtDeu5xTYbP6+cXhwJTW9kizpaT256vPsajylk0nE7tnKMPflfVe9+FgPMrKmWUJlUt4OWH5pdY0v6ZgVAO6YNTE5KuAC18lfp9+X7BbjCXDGurQeM1/lWPn4r9NPa+Lnhk1rYOcjv2VNaMlozB+4YRMDqH6tNiD8/OHyl87F8VVxBeuOibPLq8NcSpZpi6VydTKmQ4Y3YMfQ88Hs/s8wqbq645kh1GzqNQmneoO5Ful8KOpmitw37Hlxw/CkgeNj3rJfrSwvr2LmyO3qiPXz4XDVQhwvwJCNui4jsErKWiGV7bUehlRMs4zJntJ0oXryh7wICNQbwjs/bx0fXVh8clcSnkMfGeww79vsjWnKYy5yFV7jAsr+l4vTqg+xIp/WzV+Fx7PcduHFNiAzJnK5kZJtxIS5n+BTAfQ119Wk3+0VQ5Y13shvXFqsqpJD6M9oNEMPp0Yqn4FzMBh4RrqXJ7+S7agVhRGDaljBdgkr2tk10Z+wH0vNBzTW+JvPmq6EIbDBcdPICB+FNk9NmiQSfzf7C3/ik9vd4A98crtvf50Zc0zj4Llxrtk9/mh8YfsTIvfjLw6DH3/LZXqVkXDIHyANoEljCF7jU3eo3ZpOqTRv2BT/cr/XetcMgL4rQRTPx2pbJ5dpze2tj7D5tOs+K9PCaty4u7uLWEqV5nEUi7D5/UlGlBgzElMFYQnjuI7plICrbMtwT87NebIlJIYncHuk0yLVns523be517YpE+L3QlFsEQPFTL+hcHb8NQ5xjVcaIYXIkCHMwmcoaMOvmaQpOTm/3fdjsixOhUUXuP79GktT//uavDo5vvxALj4c+kG33+xsv0aawgfjEQVAVOndAHet4ivSbT2SI7cISwHZFcu5LPnV91DtyABFKxwvbZ8o4ycvypw9CKI0blAAuA8bcBFYgcvq6A43WjFN+IBwjaXjqmE2cyY0YbdMTs0UWKA+8/2Zwd20Eya5SMg4Vwh+33dFJCyJyj3eC5MAHu4zsjHJhhtFszDAI4jMZ/8e+Ahm5w0kBSySujbeOeIIBArMphjD6/aP60CdaTHZmFnk639AWqIRxITKoojOEr0qlA0IIE/TBZifiYesP+fwZIBV818uThHgB5OVbb+Zqcih902hdafBxgFUiCJCwDNy7Vi7hgIYyN7WJQh3yWKRKS2x26U5BUpoQ9jgtwi5QBz/wShmWR8e7O7ubGEu9n/+8U/7Of7+Dy0mq6+ZU0/PYd02v2T+YsOrTdjmiigG9yGFPL0c56gXnvm2wmORcS0kz4aotbxV7M7xPjPq0W4XW9FJVbgBbOfJVAxtfof5qtHAA80yxMwIzVC8pqB6NNtHye8X3x7cf80PS5WDCneEYovGlGnIUsiErmqvpbaOGe2BP6++qyZUqUDBrR1MwQ7vlJg9WlfMKUbCF0qnfiyke24DMQFhgWa2It9YB61Pvmz7OmacOWMeJH53d2f992mGkz9yVlvbErDXYAL7AialpsX4FxuVnse4f4fN6s28KJUz9j/hjEWjLsS6CWeJzPlEy+Z6Jsx3QbvIIvwAx3VIe2RtfWzlRGG+fq79U41gMmS21HSTWHSjjLDxRBf0AOn45LX99kyRk+8fCslVfabvWNDcANp33Ql0kdZhSKAXyiRLevW6hNDBlQ9HDHS4mxTOHJy4AUKaTJjXNSrv459mrt1KtnEwFj4MoeaNgRDh9eQG1ImEHzzcI7bPIFolx5DnOJEs5oqlU4dXBX2AU36DCYqTvJ/ymKh8MOD3fkR45pU5LA62tvARfCIScvg6Ipdy6m5jJxMp7vmYwoHKFSAj8vEknRJNb8oZKtb8Nuuf0j5LbQ9jY2fCAXzHUux6eXl6pAo9GIsov5lTHrO2dtZmH6l4xOrLPO3C6A+rejiWZ/0fvOG/PphrjCO9DxzwaxCH27p1vk5+Eod7hom4GHD9I6cp2nf2GXD9rJMZJMamqRMJ4qOz+5hN0EoaCYtajMCcM6+b1RcRxG0oCJeX8MRmKYCiHtswD5Un/N3C/vtsYXCVjJEIM8c0y0Rh4JbezUYggSIcM8tQn6Xibr6qmK9XyronlC3GrqjS0XhqR8CXC7ULVXojmo0V2VFKPjfwine0bppgM6u8v202ULukwBolRVCQV2rEaKUQjLGBkTFzbmlJeVoEH+YoBKpWrLA2W1+LSQ8Y/AYHChsMbEqSMbNxC1m5vGKXp0evGxg084nIxYoUTiIo5oYDqQMVG2qK4PWZE5qZnbeIwRVPmvWDHfJ9nztw5jx05BQrsdjhA5+vvtkcBklNm+yLHX693s/9XutdRC2eJL/FQuraoW9tL+ZgXqsgX3U7Z68jvIPEpBRIw+9P5/atprkeCekyiMK2pJDBYGxkj1rp1FERameqQY7OuiTkmJBXtgAAHD1l8TThOqf4XjWx8ofAA1/REoYV4UrlTEZIfZ3F7W5JcCY8514dnkEhqCECkj8CwXqRV2RwbE+s7sfONvnIhyPSUSqXNIsZ6TJ5y+TK5V5l0UAJRu1iwZqPV4evoU6ikgDzpbs+lhKuNM+GOVcjltS56EfhRHbNj5ZZ88N/fuk2yOd/urU/yeIG+fzln2CbFAdOgxye/fOR/eFfvhr2CdRaFdVedW0UN43TY6evZ2X1yWwlo4F+5uxuffwJOaQZ/3NO+eDaeQynUuTV5xWUxEm2YmnOQyKgaS/PeF2XMfMkQVNiZjQC+bKERGZelfVJRWkKDUx7kIRbX3K3P9TNfHgNgvP5I/2yQbrgcJ1XXopD43YJmfEVi2iB8UzoHlyNLcDpgyUZfAxwOQi7M9uUHkNzqciGUI2eKZ6ACwcd3eek1Wy3mq03zfY+ae0ctPcOdt79f63WQWvFbBvPa58NxEKYaEszi7gJCzDaftdsvQVG2we7rYPtvbUxip5D74ZNezQdmndoNK5pJ3fc+D4AOmQZk+iWeDfnhlVf4ovuOk6sgNU4l7O5sGutNYHxg44TjLA0NQ/E9k8Fs8SLHZP8/WHNVfEnD2VaEU3GlZ7sbbfXKx92PxHZYpfuD+XSHdshimg3A9TDmaX2hQ0L8Lq/t7fzxq1FlrD7kEFCEhH3bNZZ+fP1yGRF5COI4vE/vX8Z7AA1oTHiIXFddX62W7tv18CJYpLTtFfqL7d2Hzrjf+SM4FSungzOS/8ezD+1IdgCelBplsXTIgLm6vwxdgL7ZDKitkqhQXjYjggv4lzVgQD3NDW2lPExfUt3P3SRdVWR+d7eh/fv3x2+OTp+/6H17m3r3VF7+/Cwsw4tpPgwozo3wqxZ3wb9JQZGvIHkPRGh9vmFIazemBlxqTAwhKbGQOQZZKL9KMgpzYbkUE4nWtgeO9OIdBnz1+ZDrkd5H+rFhiKl2XBrKLb6qehvDUU7au9uKRlvxTDAlhEM/Csain+c7uy8aZ7u7FVvRRG8vbme08AGSf6aGIDyQQBHxiyv2L4oGqaiT1NvwWZsxajtDOt/hY9fi4vvWHoOPv6smnPhOMQhecDJ717+szDWG+T0n12akQ/GfecqFkEQoGGcuwhc/m+xR56Nf1+SxxoZ/Ksd/IcUQGm5a+L3GXjzM+yvg8N/P8/cIg/Xa9wFTcHNpNbaquzbpRKXII2RJRHVYszjuu0hvP3DuYLCl6BnlaXHY0mx7JZLkY3DjFOWJVCqDQmENi8ScigrIunTpOnvkJcKQTn5wMPfRjx42WyPs4qs5kkpkIyX1hOk9EAHoKXkVBvc54yQejypQEoYPzS3vBvKfK+I+VwP3u1Qxvaab/dpu7lL99vNfovtN1txEu+0d5JWu78UGLiXhPGTv5UwzFyryoOnrM+obr6NWlGrud3abketvWh7p9lqtVrtpeIcThY11tHNiELbqjqYGV+WmGIgxGdaayjwQTqD3HhfMD/kt5CcbcU4Kyj/hx7mgMt8caTcgaRjZl7FmqQR1rja4kg/ZQHxnkvEbKeaGR/0T8TpiVOqFB+Ua1E0jTWPEceHxSMMM/iLegv0hDNFxkq0U9mxeFyG8rEZGB5iu+9qVgHrAeoTVYMwcx4gLoQmPBsy288GDnTJtBQOJCcsnKHDIbIHi1yNLHw6ubw4Jp3Ly/99+K/SmkALu4imnNaVHrBxaTS5meAVU95TwdZ52LFSMTBooPodas60zOHMd6WtYcEj7GqKUPnxDYqRli66bWGBR0M2fzPW3zS6yn4ZQY2S0OGQkv2Rc4Dln4oclilXjNCS0ADZHIn2vESV8snN38nGJzpkMZWa/AhP72+QxfEicDVqO0ZgKYqz40lrAIIPpbb6GhSCD8ddaA14UhX+j62Wj9MuKOkaPfWNWfCn73jHQ2ZaRd4fTs4WtpZQ3HUjUoHMZQmW6gnCL23ucNcvL/xiyDmbfjHZl9ipLoKLe1KtaXwTjbmWDLriwbfVFrwUW4suU+HgURUt7NY9dPdg4/I2IE9TAMHEYwqse1+db08/LF4oPvbCs62hHVJcp3v22vjzf+QsDcDuFWE0HnlzX2TlzsSzkmvvtfffLSWYMLKwZhWy/jq8zwGx81FGfxRimDJyerowMmwhjVhkA7MA9b3SMyZuMSGxTUaw/WNx1eOA9fAuIXypATwiGEDFNGUqusoeBJA4E5p08V7QvLBnImMNciruSgfWJ5bwfNyA7Cf8WqvZblnMymTMJYYYu2Y28qrd3H+Nfzs6O3Ef7jXf7b2uwmAen7sHTsauLyVpkkMmNeXZ64oyMBQ8fQ3rb9J1VKrScl4KBVRHh2hSLKA1qGeZOzkn9xH8XxkRJWEpv2XS+XedbJgySY7/tXBsr5AEJIRGNiG0fpftQfDcUmJqGRnT7xAxeAwZczLiavR/lshAmulgguWybBGD9KF0lM05LTnNArqh5xb9moOSpmnQCFeRG8Ymthc97B4o5IXmRAvb17PcaS15P68R+bEDEHhigGwX8wVMd/yHNoBb4JT3p2SSUj0QchyRj0yyzU2zazKRNdn9iOYKcqxTGxBGzRU4sNZyYfcTBEbiWVDrfoC9EW8Z1iRDCnTSKNBwGoRlcE/KkuJanAEkFmuQEU8SljWIZDTBf5tDqGFP6gaAS82pfdr8fcM9u9EgG/j0E/D0ZtYvFgnr+UvlKOHGW679ghsLDbFXWpA/4gIMhh53EJkt+nA5RnBrWFyNK9uY0/Z9VcSebr60BzCi/JBWZypjicKTEhLkbUWHL/UkKJvg3r2yNk8Lfz6+EqVK1YdgzPpCpIxm80T8Hv8EoPwI/kH4wJjuPoGAKwfMUE3b1zJna9pS5ieeDXu1ueSb6JL7lIlFdxFX/tFSV23bmRpO1jHN8gGNETsF/BaHJmVh1KJgTBZCYNhWaFqQzsTsuR8+dwGpZV6VzTgyc7LofhJHEynup2uSvKY6r08vPw5RPHOTDqTMX4FBjtVJqRgOIT0YUkuGkk5GPCZMSiFVEVwNR4Wky7BhiZDEeKLazUdOGb1lJM8KWFPuAfzgq8VXqvf/flhz1uZZPGLGfa0u4PHFxeeL3pezy4sv3cvjo97F58+Xa1pBvBitq01E1+Y3ZKU2S4lTg7N8rtTl9nFGNaPjmjWEmWKdagLGE9LqAazq9crBtoeMCq3gB32idjj+6eOvv7399Lbz85okbc4+TceLtDJ4yB49qkLzl7YOni/mrXF5wglCWcM5PBd9v91smf9dtrcP2q2DnScg73+FXfNuL2R8P3KWbna1kM71CvTLvJyheFSuWf7ZKBqqnW/1kK7B7zkEHoC4gc8TrLMr4Y+Xqomhhq8E3GzsGSFSC/BJ7UUHAfWFlg4qx6ppucZTH/TrilKfb8JAuS8fck3TsjFjPFioZKdDyrMAWc58A1oRTx1cc7kZcPWEoKWl+Yr6X01sxntdzTkEpF0Yx5y/2Gp2QX8Q0L1wK5a+vzQ35ttrdnQLj89o2zHTFDuMQcvn+a4v/k2FHf/dyqNrmE+gu8j12EzlMfrNO8cUuQYuCqBGi75OaPI/oEtc6zRwGPBeUUHykB0Ocp2zgu6wdejSkk3YLa8tQngEg1usMFRztrtKSHrF21m8wd8sM85DrosfNz7ClxWbgCtiI+gROfEJ6BZvAzWLDCNE2F6zYf3Jop9aRRZbIzFmWzQt1ujJMjET93DCVcUy99U6giIO2zD0EbmUsdlE2Ni5sLMz11ZjBvEJPfMisd/n7uMxZnRQKG3I8q9q1CWi6CBDlg4iCMloBi5bTdvrE41HPGMknMq9KcenH+a/Lfdv95v7CyNlz2GsP4XcyPpa7byfGkfNNqcw/DzIyynXOmXkOEs4XdYBMCzFk7xXY2rP4fkXHyl/dG1OMs0W7vg7jw97ePaCc22Z4+/4XkNdS4IKx99XeNw0M+Om8odgRE6QGBvyKnwMxEzs5zyF/D3bhx61XmwOJ4tSPKD2QnZMU3BcgBUhF+9HPkcc7H4i5EKQ9YOUas0y/+ncLF0cjiWEpQyy0TDGC2YxdoRZntQRowmTEe3znk3FrWkvBjm4bit2gjjTezRP4aZ1QGNGXnXen7xeA2eQSFUTTx9hCszVeugdW4F0s8PrMhCgHxAg4gd023lXp5xlWk7DfsRrw6O0Ii8mqEHuAmNO9b4Pmxut+/YGxP08tK3j4QmYiY9woXq0z2ui/uuvrluXU57l9+Rzdw3rUuNJabfVY4flCoR/c826+ouMCNlrO8JwuHqOMIUX2IvQmrEgFjYTzXetyywcFFzMZQR1AYKH0XhE7GTVTVLyAm7Y1LWXKZrXlTDAFbNDIyC561fenxKV95uYvOOHBGDDjFE9Itchx9EP1ytpCj9OPOLby2nqUoJX2fgc8ab6I7fB4L7r6JdwhWGBQIqWjnVsAjh6xGQRx/pJ3HRHNMtERuzwJKZpnKeoAL11uk4+BildqCHQMhrD7Nqu3cjwhsJkayG7xmzYCtVhJtpKRLt++z0xGChWV1FhhX6cbb0cPB3qwe39sHvp43S7yQAUYi3k13iyV6g3Q62F6FsudU7T3uK5Xk+ydCuE2/lcTtdaeVh+2yzBwOrbBjqUfKsDHyb7qw985Hj1A9+O8wSbadmXzgrSyc9vuXWQX7O+mCF9ZY0BYAc9xBrh9WOownTETxeAOXEV8LcKS5qlgxFVi7TGWIYVNzxR03FfQM+qEbySKztldTcD+1Dqq7VYP6+/RRusGUEPhLypE8Rks2P2ww1cNRZ5WHAxSpUSMS9aONPgxtdvfS+ozxmGKBqEEsnsrZ8b2qfIwDXx7ESV0f2gdhbSsTe46R2dKuy8ps0msOsC07iew7aDOsC442VRMZ8f2HxDQZIEpEeW+Ti7/NC1fa3hBpamYihyZXsSdiykMsPgX1dLRsfkVeeo+9qlWDC3zH5UIErho1j55K7LoM1RTNOUJeR/HXUuOxH5TWQsCqCbuCpAlnMVFAr3p74pvRY2Hdv1kSaJuMtSQUvtUnwBDulkpHPUhUva6cQYocGed3e1Qo4PyPXhwdWE6tGVFleGZnAW/PtzoMSY9fwmvUYJXM986ke2d8IBzIJ9pVzSBLkuvhWR6+qE17OtxoNvmvclpKLypdmHiwcgv6rYHUWLY3zQ/HzdwAv88NoRNh4QWG2VHyzi4g18Z97+YW2ZbOeSj6mc2sK2kyPy6seTo9ePXtNvtlut9rJWE8zzTXgJcxDn8rHK5TqAU4yTvZo4+XS0B2f0sseyw85o10Rf92OnvRYCi+z2Gkjc3ttfC5F77UWCeUsSudfeXgORKmGsrteq2z06Pj5fiUieFWhvay/eMmMXnf6caYjnamH92XLWijLb3tvfebuzrDob8zGrM+Pg08mnY7xFcalFYcYwxgxCJUeEdOaFGJRCUARrL0u9DDnNKBQmY70m+IJbY5Zw2oRbhPDn6H6kx+nvJ52zTmAgDHjMaYp3Dv9tmzv6NIOI/GLs7zGmBNIMbDRgxphTeOPVty1V/JhjobTHfS2xbtulLbsHx/VtwU9mB4arwDMiYg09ie22pGEgu9h9rf3d1tJ7b8XcyDmpkT6n0ThJtlPosvKu0Vk5mznarS3m4YQKd9Ghv2KOr03iqyyDc/2Wd8/EXVZbGhW4wDDBJnhQcm7F+CrWzIJNOf+yevkPzg4PE3AbM6vuXfw5mZglNz4J8haflom5tfpGmbBvkVB4eP6lnEyoqRwy7X3j+QmFS2cTTqCceUKzuvJv0V+lKbHTVIz7RgHhRLXLTmti6voMm+ssOpqwb1Cp75kPPl2S93NapBAtwav5b81pPJ7Z23IWxhMZ3Y92onf7rVbUfrPbXhg1r8oxH09qDMtudjAS63DyMEcEWmKT82N8S0knI5YK0mxCM0V4jAR0EfOXmY6yA54NmZxInmmsVQEwlluj7KCnPeB7T7i9cheSCIRgEwlrAp+FzpQ0U74eU5ERvWVExHEuATEHW1rcYSdCqJOwFp+kPrwH1GMtfLlSRlrzkOqSYTrgkrEpaJWtfiqGWwjK0DS2lNFrW9ut9u5Wq70FsS6eDZs23bSJwmnaUvDI2KzVmEwr3n/b2ol32bvt7bb5IYnp3rv9HUqTnf0kGSy/X1zqWQ9elRpNIP+erKIJu+edk7PL6PjX4+U5toWJdbNpp1mF3Q2v+QHKyUZM4efPE2aRa7oIf7CkPFZsDIG3HdAagmfovZUi0kHlBNotGJU0g0KR0Ib5dU7bxfb+zttlz3a0HHrP3US8RAMHjERj5ajpOOXZzdLXozX69LDI4Ni+wh2ccAlIkpbmKnKMeWxJPvLaIseXIzhsJASNv0DQWBaIa0Fd9KvuTEQZnZk1xpWl0j1VNExfqkET3hjNViHzTLM05UPEprKXWdCqyWONKj4c6XLrVK4C8ipsQrOqdrvZ2rtsvznY3jvYfRO1WksVKA+ZiGKup3XV8x86HP7q2SEyLRldosgFaBaZ5hnLdC+uRGXWQvjlnWjayrS4Eh70s2+q+cydLdxV5CG2alqPsxKugp2sSr6QekQ60BdniYpK5AQ6dfS4EnUt0aFtBnLS/QxrVO2GsfQqIO11vROW7rk755BmdJkqVkM3FExWPKsKzUMmemEpSDmmJ7Ih13mCeswY9+aXqg76v2QjFdnGAWm+2Yn227tvd1oNspFSvXFAdveivdbeu/Zb8v+WVEl15il8UUw2XbbXjEeM6PP2wl/bDBHbYH4oaZanVIboLnrEpiSmxv/oizy8/T90EWddRozlEq/wY2YMU4XdwAepENLmOjd8m6rEAez5QV0LAZ/viW1gGiT27U7KWSzFnTy6dcYxzLUYQy7GkAnHbdXi6wulRdZMFu79WV7AiVCapnW9+ZvnMDxq5tnsElg0x1cJ9SJnKgzU2WCWry0e06mvQvSd3ykxrMBEQpLfTs7DvkOE2A7UFtrtjicsnWKWhGtVpIX7sSrkd7ut3YUbL5YFLNmQi6xO9XoBMzymXZs/LVEWHRBfk361hM9Vrz/lrM+W3NPGqPtTZLVYGyPEbSBmfHc+F6rItcU/6Zx1gufmcmhP7a2OHIK1Qrfe5ywTqtfhMkgnX5hzvsitsH/oyaiYRY/3MiQmEQP/kj0CidmOtqOdaAnXNKXf1OSHzL9nYfGPqbzh2TDSaV3X/RuXkg4GPCanhk1yLoUWsUghDdZYz5aC+Ri9hEp2UAXN/XhyeYwAuz9eHB+fWRzeT++PL/DHi+OjCnAufGkJAdlryx5dJCa1rr3hZg2R67wM/EH1bbaI2aULsP5QEOrrrz1kVXrk7yVe+93dhVtDBWxZDOmatv1sawA/8aby8NUVRlL5Zy+X6YjmS6jmupH3L0qg+ynPbuCqVIR5t/OAFh/dqC5Kb9NpAjTjLf+lrVar1d7eWUKtG8tCGVsLwCjC9JW1+xGfXZE4zALguJplaIP2qWL7u4RlsUiMsi3M0A9C+lRbRywRGD0WmSrO+i7TYLIe34MKuWDDn3Imp/azRhl/LRbwDoks8RBTNnvZKByoNbhOJz3z2XXRJllM7CL2c+22aABCi9EPyWJxy6SrFgXQvKKixkOUGRV1cfxj7/3JWefiv5Bzr9TnJLX+9D7vHLY6P//0/rLT6XTgd/znn6uuOhZAfQ2o9o6nSUzl/FKkQ5fGYnS2WVno5qMRjxzLo72czr0M0KLBGqZ534QlscvjSYYdoXg2TAuvwj7v9wdMSV4Z+XZ/a4Ccj38975wd9bq/vbYJ5sWiFDRwXVzwQdkBjGuntLA6CtsOwoSwd83on76cXp7AXDC2Gw5Qx/yIt1RyAKxIWTbUIxzWdlMGXovNbMY8+uXzxRHu5eMfez+Z30qkBxsv2FfepUtYzMeVhCjyikVDcr3R3rieUy2x+fvG4cGV1PRKsqSn9eSqz7Or8ZROJhG7Z0thVJf3WjXKvx4YVE2zhMqkvAWwBs7qFJ+fP8s07pIVGBvx2X72a+Gp0+9LdouOOpyTLpfEzFc5Jj7+6/TTCjzcsGkNLHzkt6wJLWaMqQJXRWIApYbV/tKfP1z+0rk4viruDJ3aP7u8OsylZJm2QBFXJ2M6ZHitcwxg7GZnf4ZJ1dUdzwyhZsOuIJDq9dtaJPKhKHAokqkQgP6G4WkBR8C85b1aWUZeZcyR1dUR6+fD4TIVE15oIel1ReGxhMVaD5VttDwTKqZZxmRPabpQYe5D1jxEqw2xnZ+3jo8uLLiwq63NoWHDIE9T1/eOJWRMUx5zkavw3hGgsL9cnFZt+SV4s/7zKnydofdhVoGPAUk3NFvL3UhsNxNMFAR/xrWSqnCzvUQ8r8ar4o1LC6BTcsD8GYqm4eHUSOIzcAsHOs+wrc521Cr1u3qwpU7R3qmJdr39WGo+oLHG33z6bMW9x4a2TSMXfBR6pTRpkkj83ewj/IlPbneDP/DJ7b79dWbMMY2D58a5Zvf4o/E97U8Ir42/OKBs/C2X6VVGwiF/gLvqJo0hmotP3aG2ajqF0bxhU/zL/V7rXTNA7K0EJzwfT98uuUwjlFhdrs0RjO40VC7TwpLbuLu7i1hKleZxFIuNwBA+yYgSY0ZiqsD1N07jmE6x2ZmteTw5N2fClpAYAsAtkU6LPGtKSqwRl5Bru5wgcCdUIBaBQ0wdGwpnW1/jENcY1w8pRIYMYRZjwNCZcs0kTcnJ+e2+H5NlcSpsmfb179dYB/jf1+TVyfHlB3Lx4dAPuv1mZ/s10hQ+GI8oICdKb5q7uwVf8muLSxy5RbgHyK5Ys2XJL7dvai+3LnpOeAn7rA0/eVFH6pHWpHFHAoRs2HSL1GpfVkd3ILGKacIHhGuszVUNs4EzoQm7ZXJqpsAK4Jnvzwzupp0wyUVCxrlC5Oq+qxpgCbo+zHXZL451eLjPyMYkG24UHXegyDsyn/19i87NbhtIOgz6nK99s51jcXagqGxuKrxW/7gO1JYWk42Zhb3+B+S8GeYnVBZVUJboZXA9gOk8TRdgeCb+sP6EtpMBlh9/uThFhBPMbLVNHqYih4YThUadBhsEyusLj5xn5Nqxdg0VD5Dqq0u4zJLFIlNaYts3o+FLcCvYxLgIcUDs+8HoYFnXHezu7mxh4u5//vFP+zn+/g8tJsutk1M9z2GtNr9k/gLAq0TYzoooBvcGhQy97OaoDp75VpljkXEtJM+GqJG8NevO5T4zqs9uEVt6R1W46LYdWyqGNlHBfNVo14FmGQIOhKYkhvapHs02LPF7ZMzs9vNf88NS5TCCHaHYwyxlGq7eM6Grmmmp7WJGe+DPy+2kCVUqUF5rr0q3wxdNyuGoXCIxFYldKA/3sfDouQ18BMQEmtaKdmNZ+p58+fR14CtzTjxI8O7uznrulwz1f+Ssth4CYFvBBPaFSkodOPEvNpI7j1n/TppVmtn4lbPxP+FsRAMsBP4IZ4nMGUPL5nQmzHdBW8jC9YdjNqQ9srY49kmhMF8/1/6pRjAZMlvqPkcs1EtG2HiiC3qAdHzy2n57pqrFN8+DDKA+03csQCmHfjh3Al2YZQ0A9AaZZEmvXjcNWhby4YiBHnaTwrmBEzdAMJMJ87pD5X3808yVVMl2DcbChyFUuzEQIryu24CCgfCDh5si9hlEh+QYku4mksVcsXTqAHug2WXKbzBbbpL3Ux4TlQ8G/N6PCM+8Mgr/YGsLH8EnIiGHryNyKafudnIykeKejykcilwBpBsfT9Ip0fSmnHZhzWOz5ints9Q26jQ2IRyidyzFVnCXp0eq0HGxiPKbOXUSK/VmNXtHxSNWX+pjF0Z/WHXDcTrrk+DN9vXBXGMZ6X3gYF5SBG6L1vna+EkcwBNmf2Ig84+cpmiL2WcybAkPujDIxkxTJwYET2b3MZugRTMSFg4VkQNnXiurFyKImVAQKC8BJ81SANUdttMUKkb4u8X79imq4L4Ygw5mjmmWicIYLb2DjUACRShklqE+S8XdfJUwX3+UdUwoW4wbUaWj/5+9N11uI0cChP/3UyDUEZ+l+cgSSYk6vOGdkElpWjvysabcPbu9ExJYBZIYF4FyASWZ/rWvsa+3T7KBxFGog1JREnXY3dHhEMkqAHkgkZnIY74wI+hNpKUIFnIjKPtpzCgF2xdg1XeWdhqPgUU27ikG6hYEVauw4fPlFbqWGSx4Y2xor5Q6k2SKaZw7AWo2PhZ3SItV7C55cgFAPcJhQSYTE2aj1GDNNgYXm+T8bLjV0k4qF/2aUyE33EDotmwFLhCfvkTwtkyNW6Q8b+7zyp9UNAOueNlnCpwny46TnBLNDhb4/m4MZgs+rImxPpvh72+dfOt3DgNsiuLRK539uvbanKbhqDevEX6bo6P3W4G+q9MBGLZ9d11DVpzJGU9thIzfqw9u7pVu60rvWVGTu7CJaKHh+xHyIUZo00SXgyEmTFHAQht5Ur14fvU3zxK+gwYLVKBCZCQN9IrXmYVsyaBn0ufW5uA9ZPupRUCgg4dMh+YK3MfmBBr9dtRDv9HpDB0JkaWYhQSNSHpF0jvlAxXRAXH8a0eFThzYHGxB4H0lwOPz6H5geB3KSbRO4g79iQxth3eh7eDN51ELfXhjaXzKwhb68PkN6BT5odFCg/dvbuADt7EeiB8gGSdPB1oXQ9hprFw62yrj551iGSVRfqfk+n4w8XSKGf1ek0f24HD5Uwm0+eEem/6U3SGnYxnYOL7IGF3XpUUd9DhGakaFhM93wEJpG9wPE0Ji6Op3AQGh6wsudgewmk9fF+j53PF73kIjMHw+Vhh+oMwfnjJ6h0xJAJZxeQFXRQ2gWxriT+dQd0TXLyl3T9Yur5izKaQQM0EjMJ+gDXFN2Eiv0+7st7t7qLPzutt/vXP4/3c6rzt3iCZx8I3JhDcqEHVnAHUiewPguoftzgEA132923nd698LOK2pX3whiwscT9WemM3XxKVHdnznQLT9w32z4gupbspPo7ueLh54YZaWYzEfNF8BxvfK0RNE4lg9EJqfcgCRQ7UOIHeHKRX5T67uYgUdjAqZ9Hvd++OEfEs4a3apvCz269gMkXuFCZR0K5HUBco3gG+v39/Zt/hnEfnmA4VQxMMLEzFV/P7ueLhnqRjwgtHvzm7zKC0SHOoCMlRWDYxeZ/fgjqsXJKU4vig0dXpwe5TRrxlBeiqbYwRnm+Px+lMVnBUgy4QkLFzkXiObkK19D8APyQybSPcWon6PEX0ZZSPXOZh9sdJvlO3meg+7ofMooQqe+/2Tt28PB/vD47cnncODzuGw2xsMju4qVVxj+rXLTK/g/ESh1MN23h3fkyZ/EF1LbE4UioTvTNGqwIRnDKKl/sHRGWZTNEgXieSmocYiQCNC3FXwlMpZNoZ8oimPMZtuT/n2OObj7SnvBt3dbZGG2yEMsK0QA/8EU/7r2c7Ofvtsp1+9DdSVoNt3l+jGyfA09rRwBrVdRhk+3Z8kmMZ8jGOnSTJyB49mCdynsJcfzFy2YDwHe7kstqzbSheAWGIwj87f5IpyC529GWGGTpQpTEXIPYO6pQyoAMzndfHCs7GVCzi4J1BPbSwv29AFsj4gjM/AMi6BfFeofg4r15RAXa/C5XW7VZMaDajCk40DamwgfoBjitfl/t9Q6i9MsEmEk7B2atNZRxCgHSR8Qbi2TDMA1WZ/+PkBEH6HddnS0LSwxwW/tonhcxXu1G+KuRfB/2J/zCDUl0t/yJR8zSiUSF3wDO68MkEQRu9Ozz8do6Pz8/9v8E+oPumVwHEgeOAGleyDV3+ijX+1j6aEyQ3UPAvSkWZtNQGBLjSqEKTQMc3k4EBlHUjMQWMyw1eUpz723HXLnEckJka1rCDPR349xv1Ba5Dv1kijKqJHnX6/tzJ616hjbJTLFLwoFMOtcgXJR9EJZdHKWE5iLJWwWquMcZM8Lr79TK3f/Uytoz9GlVSpo++ZzXuCP9HR0NRaGXzUf0BDNpNJhcMPI/3nex1pDB/8IT9MJjQkaGevr58bYWzesCVz2a0cYdnAH7eOIxx+64WcmfBOQm7d5TWAP9JCjY3VeMTHjWWX++/JAsMtP3PcGgsQVKlg7XIsJQ6/BHMqUwItY+wA2yAjt1cmz1qzJmfm3l6pbituWEcBH5ErbVjtKNQ75p0uS64/nHMeF3YvQw23US3loI1qhWBqkqbEkEoTCh9HHYCp6ogQoP9xI8AFLQ1GaRXCjdAm+RYs51P9itg+P+p0Or1ttFXFGPxSh5h1HuR+Ernl1cZI8nFSYZD7I6mKo2LOfglNjyxpszR+Tsjyh68irukoRbyScAZ+8MfZmna2e+9OO9Bq6LRvie3zbqd/WMN98P0SDD3sHn2Q3LAbJO+N6vzKdFiiXa2NDgM+n0MjXRahkYaCTXWPhiQl9jq+SqMnEhCN8XmL/bI2fDZ/dwliRTZ+LFkBgelaYPiz3lf++mPdD72dTneZ6Ag6ncY310uQ+wzFzHJJsiKBbjbV1kygj/yapKMZiZtrrfUUehoh0xjVPnqXafZrRvVq799MDkeMWPtfJJWw3c70dR20YH6NtFZd6n6imN55ZSVHWL2l7DCm64VCHqAwdSgEmvAwE4hr76sdH6HE1qWlUpB4AmcShZJqcO8QLxC+4jQSiLJ2RBJIN8TxQlCRh7rrJXwL+p1DM6p/SQddY7Uj3FTed72r/Z1rMRHSZLY2L/1I54WaCwJbUkNPqdkuylL3tS695aO0IhbPRhfHg+FvxxefRkcXf5ye/3ZxdDy66PYOLgZvBxf6yrzphgxjSpgMqnH1D55KffyubUtTColZ1MYxZ8WrVQ4JonmwiF5bJeYpExkwyTyT8EcbcmWFrmGLLqsgXYQzKEoj4PonDyhxg0LqjU5e1XcFWEKGSrV1yulpEDS+AVu2kjWh+AhqRfJJAdfe5KZy2Bx/IShLyhfbDhmwxJtocSca5DV2LBWwNGE9eQiPrrwCkY1+uKOWH7CuatLFnxuaKBstZP9q7nE061xzS/hBQTLlvf20S0rB9m7YRxGdEn1lOTz+5OhXbNmIIOzi9i1TCqjSmVm6S6DXz8/PznNBVnUBVbq8qouhKvQTzzvznezvDfZPeoN+/+3JcH94cHzw9uBk9+3J25PO4PC4ccMCnyZr7IN/O1GgU/5Lp8rh8c7hzvBwp7tzcHBwMOwdHPT29ga94WG33+vuDrvD7mBw/LbXOL6qRJ38qHkS+vT6e/UUcjj0epHen0L5qJpSD7Nv9g72T/b29o46/d3jk+7+UefguHfS6+71jo/e7g7eDjrD3l7/uDvcP9jvvz3e3317sjPY7/YGR4e94dFJ41BuA6NONlgT0WriqLxMP1ueHVZgP4EKV3sQFSolelSquDby1KNPnEs0OIIUpVM2SbGuipSlBJ0TPG+h4eCNy4odDt6skLNhJv8P3lnX8a2FgC4mlBfy1/MKKGweKV16phPDFyghqWI1xWKj0dl2rl8jNMMsEjP8pVrmKdol/XH3INob9/vhfre33zs43On1uuHh3hj3mvfEMeh4iGyOIZZkGzIePB0ZKrHpSZokd/g7syYP4lWv0+u2O+r/c8h/eN3prNajwYP33tkdqwJcTva4Ddju4X7nIYCFYlDpOuMuj5TiHeI4VsKSodH7UyNTJYljYYJ2IGNQZ8LMuJAgVSTX33hnpZUPECYuJZlrF6e+J1TGFJI8QH/oCn+FmPIrTGM8hrb0slwSfUoU5hOq7d3LiCgBpztcmeKR9UlhK1eLtDjXsvIp5XNFIueS2KHlVok8X+jfQBQPeZjNXeH4B5LEIkt0U58LbUuvK5jEmVVmmnrdoWDE629mJI55ncGyxILv9fcu/jF4pyz4nYNdZc/kDx4Phjc96uiycSf756/8/6fL//dJ8LMn/9fi4oVl/tfA8BzSGF5Y2n8NFp9NHsOdcv5rAHrqHIa1J/zfAvMzyGl4lGz/GjT8oEkQPqQ/XJ5/GbgfJ8nfh+xHy/BfAtvPm96/BCE/V27/EiS8hMR+f+l/ZfU/YlZ/AfF/pfQ/Xkp/AfE/eD5/PawvK5m/DobnYAK/nEz+Ogw+G/P3Tmn8dRA9tf37oDn8twH4DIzdVRP460D6CQzXF5m6v057ZkkAY27h2HayU3pFmLkmaekLTZwkMQ3xOK7eRAsSJr3+XtrYciFC4nEMgr0BpGPOY4JZHUBv9U9oEuMCWKbM+/nZCDEy5ZLq+6prLLx2m0rxdCqVTDET0JDdxMMyRBjoQ+pzxhiJG283Rr7JCxsa+6ikdPG4YwJfwbpJFKCPpn6+trEQLbbrOD16f5S3Sd70OwJRzDCEJ2OhtNQ5YVJsy1i0XQM1BUNbj7v0h+DbTM7jX3GcsLZdY5tGYqsUImU6r+RGQ8yvSQqtRGrbXG13g8ZMlxKRzdfKcFSUgqiB4cy80P7FQavY65tWcMpc2pjN9H3684z4NWtbNeK3CtJTRfwuW8maULzOiF+fFneiwfOM+DXr/GEifi2ZXnLEr0+THyPi9ymp8tARvyXq/CARvw0plI/6AiN+DYxrjfgdrRTbW4npzc8IvdaKKfcosb1m8v/gnbUFkdUH9+qJHyy4d+dwd3e3i8d7/f3+Lun1OvvjLumOd/v745293W7zQk0aHw91hSsknieVWFcT2Pkcgns9eB/kVncVgB89uNcAu95A01HjkNKSQK4RAJWgo7UJgL/iIJ8uDtInwc8eB1mLixcWB1kDw3O4BHphcZA1WHw2F0F3ioOsAeip74HWHgd5C8zP4GroUeIga9Dwg14n+ZD+cHGQZeB+nDhIH7IfLQ5yCWw/bxzkEoT8XHGQS5DwEuIg/aX/FQf5iHGQBcT/FQf5eHGQBcT/4HGQ9bC+rDjIOhiegwn8cuIg6zD4bMzfO8VB1kH01Pbvg8ZB3gbgMzB2V42DrAPpJzBcX2QcZPGa/qFX+16rZijBqbvasNfNCU6FideC73lKp1Qxn45Oq7nICXqNneOWFmsOD3yvsB/T7yTSIXRwhe2iA+EQ8cG8DURbYHQpgI7tEsxsDeQ6mKoQLYGnAM0ro7LTXHW0XT4SzECPto2hQq6r+CsxIVMckuAXs/Ij/XBKzIUV3O/zRJnnEKqnB8E6EhRD/F4LiSycQSgAtIYgQurYUAgrMOOqnUZDAjsXowhLPFbI/pqRdBFovsi5fzI5xAeHB93xfhhGffxLA5RqKB4Rp2W0wWddd1XooslJTBC5AhzG9AvxUWYC1cZEmZRI8ilRqNKmk73SMyNjZVanDrEzzKJYm2BuEsokSdsmoJJEFteijNfd8eSwN9np7++Pd3YjvId3QnLYO4w6pEN293f2iui0a31kpNppG/Or/w7VNZRmdDpTyIIlq/euefoFzQkWWWosSmBix5SGgR3KfTa2h0QJmZ3OpLO3j3FnjA87vfG+h7ws1QLLFBr+/OkMPi4vNPz505ktIQznXaSUVKj2o40/rqY05yFOpTLIP386E/p60jxpF6/gH6cEf6FsiiJ+zRR7cCTCGZmTFtJFnFoowXJm3ufIhtM2qR2sB1iTQH41hNEtO2RpnAuXjWKdqQ3HAgidMiT4nEAEtJJCCp9zvNAlsE2c+ulHBe22QqHCa0RTEsp40XL+BVwETdvNgRobnBZq7JaOA3eXyOga3BVTruZQP12aGlkac/4KNUBqYeYuWq0zppKkOEanH6/23JiEhTE3DsTLPy+BRpf/vkSbp8fnJ+jTycAN2tvf6W3pNfkP5r4Q60+B6N+xwk8iYQeYfWWX60bUy35VPthqKny5JAUbx74ujoCC/mpZOeJ0EK2SrnbyGjXEbGEHGvASxPBGNrwuJjjSu0R6pDqvjk4FgjACQSSiSgqZUOqW4kvGpRLz6QLqrM/gGCy+XxrcTpuQlPIIzTMhYZCxkuRqfSQqngR5ToJ+eEzQRsKmXhks9fpGoL7z5nrPpYlCvtZF4AxcoNeodeanlF2pQJvWbJU4Dabft1oAuRsT0IaVjs78gEDHWJsb0+8bLb0ePcLGVpWfEuOdskw0SfF03swJfSce+shTabRuI1YQXFHpTfDrpSdkJE82SvS6/PVS3znJgiJsF23Ac7BkcRN11QaZmC8fuZnL6UQ3yVCnCLQSpXMlFTGDI2/BM6jUnsu8hUdrIbkftkUZuszSOFDjXUIWFASTgszU+5YKcE0yHb5EIm3WgXZpBRGoSW5IwbM0rE9lsQk3uTR6vbu7sy0ITsPZ37++Md/rz79KnhRoY4XDs6fPq89sziOlGkW5RAO2FUgQwgp4c/iq2fmUIaZ7J6I5Z1RyZbhogcLHoNhE7rQcEyW5DFsAJVOChU9oDElhKOZT0XLnGXQpkISh/yjZ5AwHExwMikZhQ/l8MSeG5dxrblgslJy9xsIttFVQhBiXVcFyJxZRoy35ucA9CRbCkz0Pnj9khs97PsABFpTWIGerc29pHjkrzeHJP4OIjdK0PF3xhlA7Nl4bU7l2HTyXpZV17O5WbxB2d3cKiwLbcZ1qB0xgmFX/OiZa+9C/mDy8Ohgcvyuclpiqcr78Hc4XrZv4LhV/lkDJbFxUIBlX78JOTPOrMB0e4a09MNpnqu/cYL5xJt1TLW8yDazWbtyIkCOAGSLzRObrgaXrJy/N2yFmSoq4e2AKOQhMUiwJGhN5TUgxpVJec620lw5RnWVJUhJdrNfeOPesxXxSELXWUlLwJgnJO0VnY/2TR8aKtuaNpR8GQ25jwrkfSbShCLLhf1GWlFrrM3iNiCTpnDISqfMzpILEJoEDQzKfcTPkN9Aim0zoNzciPAN5q6+3t/Uj+omAp9OtAJ2nC1NBGCdJyr/RuY7JoELZIoLOk3iBJFiWVYVQkTLGYxILJX1iUJfg3LkmcQzQn58NRS5oQh5kXzaqIrwcaOV8ZmDArosPRjD6crEIB0tZudY3/5eva9VDvd4lR1QRMstQ62RyNwnIcqMM6+N+gb5mONbKhnmG6S7yIJByOYDj2EKnvfHkW0gSfWTPuLJi1GsZi4xmXdnFAZjq2DoxPLuivALwE5r8dC2d4PdQeyGdX0fabm8wc4gZ47myVdgxLQ8DuQVeBmhMYp2QUt3A9bu9KBF83Gp3BRYymC/MCJrl9Z7HQm4EZfeAGaVgmwGswtzjOJlk+VJk414gsnG3IFZahe2ZL09Ld6PK25j4fIwN7QxRB4NMMY1zI7Vmm2LR+FpT8uQCwHgEYU4mExJCToHS7DSjGOg3yfnZcKulvSFfGL9mCoU53nP7A4Riy3oTQbz5W9vbJDWGenne3LnidUkL+Rz44GXLfJD3y8R9Tolmgh++L/BNJki6xpCBz2b4GoXbX4H2jBpXrv283JcLXAgue+PRtZojokwrxUpA4DHPtOCER7WtBq3myBV2prDxKoKV57jEdKVT/DHDVwQ8MQRCOHjquXSYTCkRRm2ESUCs8BQsQwav0chKCut2xgxhSLI31qM+ATxBOTeEa9RmbobZlIhgvbve706tvbo8XeSoBZV3TiB8jU+W6WyYobPh0UeFwiPNtEM3lL/dm5c5N7BD8tAaGbiYndS81pFZnjo8Hzgs5+Ebhio4X4n8oG8pzcB1sajYiUfxmKQSHVMmJKFsVZQATz8Zz8LsT820GgVra9Jbvf5zFZUAetNAUyyEJPPtJMZSCc6VeVtDscYDxKeinmzVJXop9w/OY59do1dTfAE6w6S6lWjhMJrAnbyWlgxhxtliTr97Pl6NfvfxsyCTLFab8FK9FNDoUvGg/qAAvHTKZcjZRNMZx8UDkEU1+nomSLQ6u5YZNczzMx6SSe3tgahJ2x21u+1+u9dt9zq93d7uYbe3f7Df7u0d9nZ7h7ud3XZvp9897O/tH+y1u50VSlUbEKtcfFcgH148j2Y8NbYfT1HMp94Fbh2ucEDuKJpTHq8tPdnVFtLhFmomhLWKJmm+z40uVgLp1Z8bX+gYM3yBozllGy20kRIwBtn0Qg24QsWeH05bclfF1iD4KRXCHPpnqhLmC/xLKaxByk+sFpaR8FIVwzIcz1I1zBf5l3J4H+Uwx+MPrB7mQP7cCmKOh59CRXwKDcKPb3qOykHz4JoH0Bzs6n5UpaAI37M874tLfPyj3M7/1ym99JS2KHqpB7CrVP68ztbmku6eB6+LxvkZzlSJ0ymRP6VrwoD+TP0SZnXPVe94AqeEwciPqnysioFnqZ6sCsSz9EWYFf6l4tzHEWGQ+FKVoOYQPjM16ZFdEAYJP7Cu5AdFXeCpzdjxQqNQ/m2DACk9hg2TYpCLD7V650THwGM0Tvm1l/3sdvf5jCxM1omY8WukTiKGrsnYpvRCjooairJpHlBvkvkzt1QbzN48pikiavjHEtdmtjIt6ccZZ+QWG2UtC8pRV5UueIJTWljUCvlWT6eyMY8rLgpcUYbwHf9O4xhv94MO2tQ0+C9o8PGzoQf6MELd3kVXh2S+w6H64l9b6ChJYvIHGf+Tyu29Tj/oBt2+W+fmP387f3fW0u/8g4Rf+JYtErLd7QUd9I6PaUy2u/3j7u6BQfL2XmfXtHRyqBbBBM9pvK6EmA8jpMdHmzaSMyXRDMsWisiYYtZCk5SQsYha6JqyiF+LrQoC9ZOVdTfLmHyeJvYHXRqDTY0aaNV+5icauxYdKZTY0spuhbs0w7zj/8FXpIyjLyRlZF3GWQUGPZtbtq7sga+X7YvdYDfotLvdXhsKedKwvPpnaLbdm8K2bIBH32Uk/VcZH9ZUeCx62vnM3g0Jk1y0UDbOmMxu2q84vaaV/aoWtjZzQOhg9kszj6mkAFYBlmTKU/pdP8HLQFImuSOuEsfmyBqnHEdQzo+koVLwQY5RIjxb4YN7XBA04XHMr9XIpg9gnvsMmW2brlbQ1msUU5Z9a6E5DgGjjH7Lky8MXqtlID6M0IJnr16l6oTHkGcBIf0mjcgk98ZUyJZJ2/fyNnSpADdkwpNM2UpRgD7GBAuCYiJRJiDDAY0XClFMzYCZLt+ppzoejFoKq0nKEy4Iol6+H44i6PFYjdEHMJtqxFwE6y1PVeHzpgKr2wm65QN0vUv16n7dokapQ99Ttq9ic2AaNfv3s6P3TRRs9ZxVrXGa52QaU3GBDjq9oPsVSTzdFFs6GSzB4RciXeEhoXM5sECUTaE0CXTD0H/C+FgIHlJTXU8NwWyyNtjoYMQrqN3GxK7kr5lMH4m2E6TbKe91znqgoK+DIiUhTyM1HGXT2EAr8RTSxkA6ZFDeAdpPWuLNdEEDtdCvbcraXxFhIU5EplcpWsbFULcyVMhDl4uEhl7+msmegJIt2CXcC8IET9EmCaYB+p+EfGmhP2hKxAynX7Ygm5xekXiBnBkGDqUUT6AicgkTlDGSLqWqHgLphwxwOYEF2rR5IWZU81sR/q0lQN4MnobPjLsqlDeAp6XdL1acxwsnfylzEkrBzmp4RTG67kZELDoknk5BFpghP4xtuzCPuS33Bj6Xm1Oghv/s42ZIx9u+Cwlqr7hdYeqBWcdTREWYEnB0lXeYGRNW4I23jC4TmpJrHMeihVJgftHSng4coTGOMQtJKlawc9fmVAWATofagFAskdeTdtivyuumZ84azeAPiamuCRCAK2kVGHgmBY1uqVTupH4WM5LiMXWVX634r/yw/BxQx0BhoAYZabhmalRJT7Otn3NHU6N0MK3ArbVkA7R+4hOrECh5noYzKonumwWAyApeMIQPiTwf9xwUQVMUxWrPbbe/Nyf+7cYQrFo11+jz6HhL/aEbGsTwoBs0f8FWP+QpOjH7dquQSZp3l/6a4XghphlOo0D/DVW5v16T8YzEyfaEX0Dlnnhb6XsxiaZEDb1dAPDC6s5EBDM5//O/w0BuYUVk5M/+e6u2boutQWVzBatq4qs/NyxcK9zAhrE6LGyS95q4BJo0FCZyhU0LWBAhT3PNskCc3Hfjl5uBph3QAzy8EmK7Wpz291HjStreip+Z2VzBpfdFPSJhy5mTSriDG8dwBvrT1r29ZFOEVySYU5kS3XNdSa7tCf4KzB3/Gl6RC0iIvfAWJy7ClCgz6c8BFHZ30/oSlRJ9Ah9/S7hQ8mLw+7EP4b8rVD1lyib6MEK6KwzqBd1esNfyy60U0WFsu08fByu02SbQI2Hd28LKTu82CfQdfelJxQ2kqW6JOhLV7InjpihYmz6iILcQG4GweTrcssn/pvFFoWhG3RGJdA52gE79tGmUFS/ozARmUHubXMVr+cxoyvrXMywvqLhQW4BGW4bXyzyeG/plXj8d/ruGRm3daajT6TTuNgOVN8n66oQfoZTosmfLBUxBazbSRpc8nVNJp9rocbiwxHDcH5XoUkZMPUXCKW2PKVPfgpc3nNK/qz/eODzudbsroFEx3sVamd/YjjxFIsSsnlVre091O92DYBWmUOMzkgZXhEV8XRXWz00xl2XHOiwB6SVUwDonDI/j5u2EQp6SYJw3orkJmEnMce0x+mqkhtEVHVLMpub2sxN0lJ7d7QQdU5dF/YnGxN4qzLmQSJArkvq1/94qxVKYEbmyOZWeJgQRYg7XrSC1k5hTaZEyJzKloUCbWEocfkFXEJqT+zF12b1vVC5aKEnpFY3JlJjqwyYeQ5JUl2DeaiE6T3Ao81H96Ao1hhtXvTZNYVg1lImTgjWZ1qtQ+HmJElCjdFkFHVi3HfEwUyBvVfTTftBfjcSEXdGUMzVao9vMR6L1sb+s24iO2QK5opLAJYZCLXQXCsGdPE2JGl88AxJJMk94+pyoc25WdBth4EpwjmWmEa1QGlGv0FWrcF5bWoUPty8aYni9HnIw39/bDiYFP0duMG++/324lR/2UBVMQgtphyMgA/AnZl8om4JjeuOMX2+00MY7EtFsvqG5eeM3Op1tAAmUcYaueoqoTny6EYETRNntCJF/+VwSpsrH2gk6prrUAjyHEZlQViybq0bIHy7QyOMieIIKxK8ZibT2ghmeao/Tyemn0XnwIZ3qpjVoE75QwhN9HrV1l33GWTtJ+YR6ppbXLqaFrmdcCQMqbK1rydGMxAnIffCjCxICcyrNFuSE0r4SzrwGbJLguUA4TLnQivM1T+NoCYuyqyhgVMhgyq/AU9E2ogjYtSoM9JVIM1Y1JFmjduGoXqthQF0mhT0QFPYQxNB7DRqexw5nSUp5SqUhBErJFKcQM+CJgLthsKLEq2lCN/Ut3sdv/c6h73SETjWDUgv2G++fqFBaQKwPB33zoi0RtbGsG1Jtlm+lPvmi0AvT909S3UUjXqCYT6emiwM6PxshJUz1/U1EpxROQtshL2975zBCwkwqHQ+NKcMpVXrMaPvd6bvj4mzMRKuPeQTPwAGK44WAcsdQSN2ukoMf/4vbs3/Yaut+0zEd0Cp0Rwn1dgsqbLvbXYjku1Q/QDeiywCGMSPOsJgRYfltePypTZg6NYpt75WYcbHmpi2AevMS2q1A8frCpcqY5JfH7rZP31bphaiXAzHDvf7e5ZYD7/jKEBXLPIDWb2BbcSrbG6P8Ok20ikuxqNA9kTQ+/DqSxu2sqG0cWOhSxiLw+jddmvYOZkT4OYwpYdIgtPndB45ho6pjBTIO1hXP6ZpdmYZ03rymHuXm6Oj9VqAj8NQ8Al3hdKEkf1jajqAe2B6cWlHwaAKunTE00VTbEKIsNeXyZhaKy4fvR8iHGKFNNZQtJy2MWl5I5CDVlpuv/uZV326sZbjO/0/Q4tF1eLxbc/SaHvir97538D9F20dRBq1530ez7ufQ6nE16ulOj66To1KhWujD5zelfu/Q2/EGSru9cleKP5sWj+8UUyip8Dsl1ysC8dRdHe+2cU9ZeA84n0Fzx9XALnH2iqD/oE0gGZcX0A6mATh37unPOHRHIGmTvv69TruzD339d153+693Dlfr668A0vdR64QIfAxNoOketjsHAE339W7nda+/GjRen/Z1N90+cp3pbaCPvsiXlWb2ZShXaGvtwRNm6dW6NhFcdKvxNSwmPIXEsXogND95neq9XuKeBYYaNuxXtmjS7zW+CvCQQL4lnDVr/rSsAf+xGSLvPEFSKAFeJJoOYmgG0F6/v7PvzNCIfCtFiPPwQseFlSPHmwMu6PcmxF8GNLgi6Hd30eHRUiQ4VIYYGlNZ1c57nd2D5u6UlOJ4vT1xTRKjnsrejcKR49i2/nQD1wgIICEJC32/9cTcWEMpdaB4MsNMt7NtISq9mG5trUrjUeBgJMVKsYDrjSTRod5u6Ly7XgWx/f7J27eHg/3h8duTzuFB53DY7Q0GR80b3lu3xdoF3WkxpbnQHd0uwpcIfxAIeZzPCVz5+MXg9ZFs3SzoHxydYTZFg3SRSI5iOk5xugjQiBB3YzqlcpaNIY5pymPMpttTvj2O+Xh7yrtBd3dbpOF2CANsK9sd/gmm/NeznZ399tlOv9obSKnl/b32CmI477L/BOamcPbmsmbk9+8l7+B7CnPy7takXfdzMCfLosc6atTmWWpPjs7f5DpoC529KTTO9+xN7bMH6/LBqP1sTMkC0KtC8dS25LJNWSDcfYB6BoZjCcbGYPygRuCL6f7fVjO/RmMCV9iYhTOe6o/t0EY2mnubt/qZwhL+K4w9sB2QzJmkXnf3EPYKAW4849g0mQT3s1pqrcccUplmXEhPUGs84Zi6JpIJljP7sPdgzQLVf0OSpCSE24k23BDkL8J1DHyixawmzGxaVWF9Cr5A0jn5bvPmly9PR7WXHp7TqY6/fI1kmpHi6BojhWE5bBbzlf5wUcc3S0B39IHwGrjyn2YpEEVPVgdfA9QrCvnP3QgWDHpXmt44skKuUveJCCgT0nOi3oojcEvod5F9F9HIbosw5lmU74CB+mjjBVI0JxJHWOL6TfHO/KqDPsLCqxBYmNsjOIou4IELO6R6MiRC6KAyf48UIIeXAjrHU68ubV51ZE7beBxG3d5OrfzIGeRUjYBOhy5sUS/XYsSwx6/oSFEKHuJx5DOqXZBaf6BXZWG9hdS1D99Ibm8Ou8A8pPHmaRxA7vmVZ2rAvaW5mrKxN9schzPKyIWXG33zZOYFP5m66Vx+FNZFA4F281tNZ01SDlKsIeHM46vTLSXTXOu7eY7Co7XjW7EQ8fAL8KqRC0P7uWZ76d9A71DnYxwTaFoNQkH/pna4mPFUXmjJnOsT9jjW87WdTFhybLploZqb6eIrBSGiTweoaeV+rEOWh7D6V2qRtmQqJXFWnw0knbehVpy19GazSe8+nWlgin5F5x+GH16j3/i1Ui/mONG1Af5eWUvhoEc3H/ZouTxHTqbrJQSWc9X5m/Ptb/pTzSCnbMJ9bjXHArTltLLGY1D1fS17mnPjeDDy84xt70gRkFAEi3kcmOd0ohxOta+VcdbO3yzVyeWuYeRyTl9OmkKlNzvEmPOYYNYQvZMcI5CYk5O9Oi8XwTijcXXKKkXd6b3RPRh2O4cbzZbzYYRgBj9epn4hIY9I7T64aS1CpkSGs+aLsbPokpVs4TjwSzYmKSMSQgQMH/7T/65m3Px3p3MVFah8UORz4c1SNX/pVslaWPTNPFfGeMKjerGz0mb2MJBw7VaqEldNldXI8LvO9JFH6PPpsH4imlTmKXzVfIrTj9UZwChPcPhwaMtHrE7Go8qhcs/JbFmmJZOVzKD7T2gHrMshVzP+3//9f4Spw1Rdkjkj/nbv08j7+WKOk4SyqXl2428NRYcHkzk95zipLhmKaGov27Nbt7e2+sULEkNKzPNbultZ/cJTksQ0xKJYnRPdm3vzcZdsmogkMV/MS06B+0+cj7tkYnAXTrL4wUH2Bl4y9S1a610ndsOau4mITiC3Uuo+vrZ5eV7lMs2YpHOyZQ9wc1bmp/dH90XNCsyP+bntnAZ152w+NlrpkCXfmqr1ZoYgj9y+QbUvT8OvGUkrE/kLrNDBwg+vFpWz/I0yWKguU/k28qOb/Ma1a2tU7re4mhIr3ns9dVUEynMW0vqLs9b+xHg6L8VR+AhYWqavFkcNK/3a/3LfG9Ri/8Vumv/wmH+huI0zySMqIHcr30H/Tf+KhuaXBfKfQ55z7FY/Y81QvqJs1uGGXOaBN88F2hFbTNVawfFsbyhMFAafuAV41crq56Q33Y8sme4YhzNTiXeGC/nyJu7MdMEnVM5yvEYoynRxDolTmSWWvnogCqXC5zpV37nOIR0hwSmeE6kAS036HtCNSLCadbN0+EJ9bJl8cFgaJP3gWA0hhQ6+Of2onzASCtGoBZkakM9XWBJk/0gBmKlHoUlkSFIeZaFcHZEQ7eUOCjOMsuQcbDdNe2d2KUz7SrgCfJvezFu3TO3lgq84s37XXdQ78D1eEOo0hPKHlNWvI0vju83++dMZmvFrHWikpzPcCiu5CelhlpZuE4uejCWz/jEjsA1y+K6xcCxuvD44kzN1PNjiNiliXDpjvnxF6IqhNLgkXPF+8Bf/gsyc2uXztzDrCY0JwlKmdJxJm1VSJ+sEkRm9CX9OqHtKQfGQIFLHiBFYG+xwyJfSQ1+iMZVqmgB9mFOIDeMK89dUkNLNmyByur61TFdaiy63vTo3I3RkSjnpC/cUcllNlTAQkijhQlBFc/JNJzGayZBf4ArpvQC5Y8UGINLsF6pZNuLXLOY4Mm71AH1g8cIbRmSJsYipqa/TQlcUa8/Ru+GpJPM/ZiQlJymfi5xl/LPd4opO7EpLyYSMy2pnlhVrJJXqCS9Bros6ZTqF8DuJbFVbU1ct060q1PaF1jFqXCQITsOZbzlqZd+AozSICi9CNdqlynglfHR0fKZeMAplntEKFKzV4P0eACVklBXKymxaozZT8EL0id9pauVhYaRXwkGjBikPXOiSc/ehTbMannpHueeWIVckvmWOPMCvs8K8MHLwyy81BLhRpH4WdTZMwdvuHDRZRJc76Ith8upRW/mjYh/VM4xnFTVAvjfD6bCM5oJJs9pgDAqvF+CGTF4o8tYM+BP3/FoxUJ7m/mgoj8i8IvR2zKJlXGctLxvStIOqM5eX+QBWd3xX5suxstTivdvANYwi8FVJaVvKIyP16FrZw5vh/pzhDfYATKFHexR+8Kd6KFbwx9TY+H8BAAD//4vTCD4=" + return "eJzs/X17GzeyL4r+n0+Bq7nPlZVFtkjqxbLunnO2IsmJnu0XjSVPZiWeRwS7QRKjJtAB0JKYddZ3Pw+qADT6RTJli44zy3tneUSyGygUgEJVoepXfyE/H717c/bmx/8POZFESENYxg0xc67JlOeMZFyx1OTLHuGG3FJNZkwwRQ3LyGRJzJyR0+MLUij5L5aa3nd/IROqWUakgO9vmNJcCjJMhqNkkHz3F3KeM6oZueGaGzI3ptCH29szbublJEnlYpvlVBuebrNUEyOJLmczpg1J51TMGHxl251ylmc6+e67Prlmy0PCUv0dIYabnB3aB74jJGM6VbwwXAr4irx07xD39uF3hPSJoAt2SDb/t+ELpg1dFJvfEUJIzm5YfkhSqRh8Vuy3kiuWHRKjSvzKLAt2SDJq8GOtv80Tati2bZPczpkAPrEbJgyRis+4sPxLvoP3CLm0zOYaHsrCe+zOKJpaPk+VXFQt9GzHPKV5viSKFYppJgwXM+jItVh11zljWpYqZaH/s2n0Av5G5lQTIT21OQns6eHauKF5yYDoQEwhizK33bhmXWdTrrSB9xtkKZYyflNRVfCC5VxUdL1zPMf5IlOpCM1zbEEnOE/sji4KO+mbo8Fwvz/Y6492LgcHh4O9w53d5GBv55fNaJpzOmG57pxgnE05scsYvsA/r/D7a7a8lSrrmOjjUhu5sA9sI08KypUOYzimgkwYKe2eMJLQLCMLZijhYirVgtpG7PduTORiLss8g32YSmEoF0QwbacOyYHla//fUZ7jHGhCFSPaSMsoqj2lgYBTz6BxJtNrpsaEioyMrw/02LGjxcn/2qBFkfMUqNs4JBtTKfsTqjZ6ZIOJG/tNoWRWpvD7f8cMXjCt6Yw9wOEFNen8Sop8eWXYneng6EupSC5njiewNFyzbiE4zuBP9kn3c4/IwvAF/z0sQbtkbji7tduDC0LhafsFU4FBtjttVJma0rIwlzNNbrmZy9IQKqodUKOhR6SZM+UkCUlxllMpUmqYiDaBkZaIBaFkXi6o6CtGMzrJGdHlYkHVksho88U7clHmhhd5GLsm7I5ru/vnbFl1uJhwwTLChZFEivB0c05/Ynkuyc9S5Vk0W4bOHtoM8aLnMyEVu6ITecMOyXAw2m3P3CuujR2Pe0+HVW/ojDCazv0o68vt13g14RIbbfwzXlV0xgSuFCfhj8IXMyXL4pCMOtbR5Zzhm2GW3I5ycpYSOrGTjBJxam7tRrKy1NjDbuqmgoql5Tm1GzLP7RbskYwZ/EMqIieaqRs7PbhcpV1mc2lnSipi6DXTZMGoLhVb2Adcs+Gx5kbVhIs0LzNGfmDUigQYqyYLuiQ015KoUti3Xb9KJ3C4wUCT791QXZN6buXlhFWiGVa2pZ/yXPu1h0xSpRB2n0hkkKUtGp9yTd7OmYoF+ZwWBbMr0A4WdmoYKgh5ywDhVuNUSiOksXPuB3tIzrC71CoFcoqDhn1rN2Kvoi+xS4E4rWTCqEmi/Xt0/hr0E3eI1gfkZpwWxbYdCk9ZQqq1EQviTDLPOpDAoHMQPsXVwjWxRy0xcyXL2Zz8VrLStq+X2rCFJjm/ZuT/0Ok17ZF3LOO4PgolU6Y1FzM/Ke5xXaZzK7BfyZk2VM8JjoNcALsdy3AjwiJHFgbNpdodk5LnWeLllOuluaO79vS9u7q5k07vDBOZPaltVzWWTd284xz5tex0GhTXVrkRrgEjwy6kYtnRHuw0igxHVSQ0aXdAoeQNz1jP6ia6YCmf8pTg26ADcR00NcfBSNIsmFE8tWsn6KXPk/1kQJ7RRba/u9UjOZ/Az/j1r/t0tMMOpgfTncF0bzAYTujO7i7bZXu72UH2Ip0cjNLJcPA8DSTa8RgyGowG/cGoP9gjo53D4eBwOCD/MRgMBuT95fE/A4entMzNFfDokExprlltWlkxZwumaH7Fs/qkMjcdTzCxvg/CMyv5ppwplApcu/3xjE/hYIHTR281p5hbZUUtQAH0OjpNldR2IrShyorJSWnIGFcIz8awzewGa8/QAd21jJ7WGNEc/tOs6feC/2Y12MePO2hUVvKgvIL3bkF1mzAC0ol3LEA3vKw2PPvvOgboFFMQm7Ggb82gJhSfwlMONYsZv2GgmVLhXsOn3c9zlhfTMrey0UoAN8LQsLmV5KWT04QLbahInabaOGa07RjOGrtInJZEKi2JFVSBZAhtc00EYxnamLdzns7bXQWBncqF7cxaUNG4z6ZWfvgDBYaKJ43/Sk4NEyRnU0PYojDL9lROpazNop2odczi5bJ4YPr8IWY7IDS/pUtNtLH/Bt5abV/P/dLEaXUGF75rlbSkYo0IR3HgavUsLnHX0YRVj4Bmwqe1ia9mrLkAapO/oOncWn1tFsfteD47wb0GVv/dHQl1Zjdo2k8GyaCv0lGsneqaaloaKeRClppcwEn/ETX1SBBavYLKAXl2dLGFG9MpnY6wVArBwCdwJgxTghlyrqSRqfTn/rOz8y2iZAmnYaHYlN8xTUqRMTyn7emrZG4bs9JNKrKQihHBzK1U10QWTFEjldVjvRnP5jSf2hcosWpMzgjNFlxwbezOvPE6s20rkwtUsKkhzjOBg1gspOiRNGdU5cvqBATbJVArc54uwV6YM1AZ7ACTlfUgUS4mQU996KjMZVDGalPhjgRsh9A8lynozI6i1jQ5NTJ8HRa8m0XX0LOjizdbpITG82V14mi0iQLrcU+c1cYdLb3h3nD/RW3AUs2o4L+DeEzax8jnqAlgfV7FXI5EnTfbyYNGPXlIyWlw/m00EuilNfofpbQr79Wr42jnpTlvGIbH1TcPWIZH7k27xfwqpNotO2643QG44P3kuI3nNF5PHFp8is2oysASsIq+FLoXPY9WwISjH5VLQXMyzeUtUSy1RnLND3F5fO5axfOoIrNFm/3CPh5RBttOMxHsP/vMxX++IQVNr5l5prcS6AVdF4UTHK2u0F1oFbpap95wVaBhM23pcKaV55JRVGgKxCTkQi5YMHZKjUajYWpBNrwPVKqNyk2i2NTLKEeKaAxQ44ZzPzujHmd2woJRC0Z9xAC3GS1ZYuanueoiph/dE24R+Q7smVXq0jLEtVpZ01xY8v5VCpwAMK7RXPYe6o7GKv4KaVpNWnUK56sP+9i7BoNDEdvb9v0EFzBsHlTQaJYRzRZUGJ6CxGd3xuly7A619B6qTl4O6KDRGUluuB0u/51VnhI7UKbAbtPclNRNx9mULGWpQh9Tmud+8flzwMrQmVTLnn3UqyLa8DwnTOhSOb3T+Z2tupIxbezysCy1DJvyPA9ijBaFkoXi1LB8+QgrmWaZYlqvy5KC1Y4uEbe2XIdO6wliZjHhs1KWOl/iaoZ3gsC8tWzRcsHA305yrsEJeXbes0Yxnq5SEWqPkzuipV0nCSH/WXE2aIGVToT7QNFbT5Nf9+PEfTFGltV1S0G4iVTHrESfMB6I44QXY0vKOEGyxj2SsYKJzCn3qJlLUREB/hk3Y5XulPyPO7apTv7HntyR12ppmP6IGh/NOPp46q/VCPnB/oAOunBf5naiWwgoMNsTdLBbIwyX8xoMDCe5sf2k1ueMySTlZnm1JmfAsdXPO2fntbUHmHMb1siRwnDBhLlKZbYOmi5vZT9nxjB7fGSsfpcZet/U3XS/OfruIwu1ezBrYvCbyMsSOmsTLZWZk6MFUzylHUSWwqjlFddyXTw/xi7I2cVbYHqLwuOje8la19J0JHXO8jEVNGtzCiT8x70AMyavCsnD8Vq/rJJixk2ZocqRUwMfWhRs/hfZyOEWtP98J9kf7h7sDHpkI6dm45Ds7iV7g70XwwPy35stIp9WrDecl5qpvlcpop/QaPHs6RHnvEFFUk7JTFFR5lRxs4x1gyVJrY4CmnOkAxz7oz+4xnCFc4VKYcrsoefsh2kupXJnZw9cQXNeaefVIYvk5aSYLzW3f/gbt9TLKB2R8EaaKMIA7hM5OkwWcMbPmPSjbTuQJlIbKfpZ2pqbQmpD83Xtss1zaB7FGtVapry6e8M7a0dyNdC/u7v8Srt1VyvhGiVcAE4YuRbyVlhbhhI7FOhIKvLL2TmJxkRgaYNKeUPVktzyzGoycDy6XY0XMvBnm38vdge7g8eIWcVmXIp1CrB30MND8qv/t+P76FqTBHM0dQqwv5Vswtrrz2r3v1e68ZMeq9bK5gtGfgf/3rS24Hrh1vHs6M1R9Fwn8e6g2j5SMziW6fYPJRNSXx1xFSlhH1kYvPjIKMMDtXGcnQdrxZ+rqD89Ozu/2bWr/ez8Zn+rrkctaLqO/fz66LibmIYzXkgTbkUX1Cmi714ek+eD3RHcH2M0G8sOyak1ImRqmCHPwADmukcO+hNe6eBW193CK02nGrlgqVtJfi2LgqmUavZPMmd3NGMpX9CcZHzGDdxpWDXKUgpRQqFNRz52bAWIIKXQfOaCSNiMqYRclCncWd+4B12MEd7FIA00tDhfFnPWIX0Hg/5g0N87hX93+qOd2kwJapLmyug8H7tXx+alokKjx+Ts3I7K+Q8w+vDN0WVwxpFnLJklzp9spXLlIiToefKu5trlZjh0Iv8TMYrCBYSYkVzSjExoTkUKZ+CUK3ZL8xz9fUqW9mhsWLt20IVU5nHGrjd9tFG82wKOuWHb/7PwA/1cj7ACa6M+x7c/yeYb1elozckqpuj983Hu5iAWFHF/9jzShimWXXVZm0+nJ1qhNOezOdMm6tTzCPvuwUCKgmWeZF1OvJEa5v9ldcuL+l7UnPNLWX1lYypl4p5LUrnYsOJrI/6ief2MQZPuWjljhqkFaLWFYinXVl8BtYmiLwxibCBYtJzkPCW6nE75XWgRnnk2N6Y43N7GR/CJRKrZVkIu1RLEokRF645bLRKVrMmSaL4o8iUx9LqaV/Sd5VQbELsYMYk6lZCGgAvoluU5jP7y1UkV17ORyqS83mgLxogbtVUR2L7O1RA6gUUfTIZpabf2byXN+ZRXU4r34RiPFqnwee6XCujrhN2lrDBV2Bi8Vt05tpZ7AvfMlBRUGR451kmLAhAeHPuy/+d+R22msmvAACntnNieUyoqzzqpr6texIEQR9oa0ITl8rZ7mXfvifq+iXm7cXt7mzCqTbJYuhZwYeDOoNpsRLfvSIRrZU51FQYKYwX1I3RTaXMbupyMEl1OhrXN16st4oo8NCica9fHY1VtbPRwzwlpBTzP4XKWKS47QlrsAFbVBI0srmAYX0DqsenUHlI3zPbqFoob/TN2+epkq4fGVLCkKr4HpqHo6PnrNxACdsn6tRJtkqQtIJv9hmajgBk7S7AO/tySEaTifUKxmonVxCN8X1s3pWYqWe+Sif13eFMrFd5/2s4xFGPB4F5ATu87Fqkgr06OziGQE0d8EpqK18pme3RsQXm+psG9tyOADrwRk7QJsNKzw0D+E91E2GFu6uoYACcUvaE8p5O8w7jNJ0wZcsqFNswtrBpH4DrxD1t20Pv61x0Ocm0Bpu0gSx8vjOPzcWBw8bZd5NRY5bpjeSKda3SpxjOBnbWJmFM9X9dKcJwCaWP7QcecUsxada2Ia+rEkiBUSLGMU17QPomWynvNXKTmGEbBM7y3hQ92dOOgAqRSTHGuaF7rk4qsQ6uCyMGORbWWgN174nWRZa3dfdEf9vf6o2F/NBjtjnZfDEfPD573R/svRrujF7uD3f5oZ2/4Ym//+cF+fzgYDNqDeDpn4ReWgxdza32iux6yKLh4kFU0YffKQCXz5iXtky35I6UopD/BUoae/H0F+CXriVENojd/3bjmEyroFcQibvTIhmKgdYvZlW0QE4ge4FsVQyZLJDyEkPkv7o8gw1RSgrszRBpAU2CwiKmiIaesGgb60TAm2TsTIDKZ3JsdMyWvq6wFruPwaSrI6fEILS67QafMpHOm4W4map1wo11CUkWk3dz1PLpaQhTXISy3ToJrV5XCZToptpAmBPESWRrNMxb11KQMaaLEpeL4AfmlI6pX3b1SPeUPG60agpwj17l3+Nhmua5IdQx7TLBQCpci6zsYNy8rBmFfkGsVB1PwLOTPOaG3JBmfTpmK3XVwe8Yha8yqClbU9A0TVBjCxA1XUizqfupqbR39fBE651nPB2rA+idv3/1IzjLMcINwwbIpf9ua+/7+/vPnzw8ODl68eNHJznVeibYZ6kUgzTnVD/Ay8DDw6PN4icpni5sZ10VOl7EqFtvRmPbez9jNqua00215zs3yqn2b9HSCOuoHb4u4D+8CSYGyRTH0OMOSqXYhcdFYLQle6j6j2vSH9dsxnyuwvq135nNEzk78GQMi1Au8JqG8Pxzt7FpV4cWATtKMTQfdFK9xdQea42yeNtXRNRh82U5KeTKKXnuZG+WnPMhGM0oWLONl3efpcCO+iKB1fcUirGsr1zbueXinR45+t4d59U1HguGy7zpZdQ/78X8Zyeg5gLe9q44d5Vl99N1CbLEkjx//Dc9WCv/87LAszwLoMPGjjlEU6K3uEWoH2iOztKjcp1LhxSrNZcqoaOvQt7o2LAw4WNOgXLzBkwrhGvU+S/rLLEpPps+9i3OFM66tRl9yPffP6YbGCKn01VnufQiI4QAHuZ/yHmEzOKit1nyjySu6mGS0R348Pic/Hp+Sm0oBOCoKcipmXISF//fX9hX7vcvP7to+tCgIc6/Zvx3JPTdSVYoemVI1o4b1SA7dtzcRfr+i8SIzdqX5TFBraNSsGJkxclH75X5z5nLONGuiJNTsf7ALJlxQtcSwptCpXj1BK+Mzps0VzWdScTNfrHNtzameQ76H7ywogJZydJRjZv79bvfa6gvjRUAfiuhIXBMXPBEuaiByv3KTLKtMR3hSQaKr89xX6xZ5U5HbXhd6Tkd7+6sKVkxb/ogDYyJlzqjoYuIP+BO4oWgBZizHDEDHBzt0F5XSts6NKtlH7O9I3PCZ3c9rTHO3CyJyHK26EniH1eCQJDw6DllQUU6pw46ZLC2HPJTIDROZVEnUJqsQERTL2Q3FQIWjwq6b799eECnyjji8VC4S2ydL7oo0KZS8W67MW0NNubakl6Ms4y6lrS0t4MxlyuB1LXOkdPN4WuYe82MG4d9qWRg5U7SY85QwpaTSVfhk3OoNzXkWh7NKRYwqtfH9kVeM3jBSiihra+oDo+DV6hWvKVTth2ZvrQkp0jlLr7ugJU7fvXv77ur9m8t37y8uT0+u3r19e7nyHJWINLWm8MQLbL5mOgQRHjSvKiGAp0raNUyOpSpkLfn+4ze8jC7WvI9tF0+5maE9qdxudWnOfgs7YKKk2ruVj+Bxe/j0bz/945eD1wdHf1+Zlx5xbQVuZtVSrXHsxG4RKjJSR6Krn+ANjDgADIAzrS3XR4PRsD+w/10OR4fDweHO4JeV5TzsMbbK4njgXNq8MNIewjB10T7v2LskndfjNf5uNzw1PjDyvj2P70G8NUJs+by3HrJyzqvjvRZJYWe+jrZkT38pc+1gbeByDoBSWHqNegEKqdZyedwJCpLsM/nafeDjxSRYPvWj/4YpjNOhM8qFji4x5qxSFK0qHzvMOmUxrTH/I4J2FcZU2jFosk7GBcU4/vKBJPHwYD0R2KXotkD8Iiwxh0vkiAxUEBfm6wDHIDxTTuNGIkTISCGfs7yI7gLB941hnaFp7bzqYmmNDLvZH+HsXud1XTV4ntV9VHxBZ2s1MWPbHzoLyVlIkF1oiNckRRdphs7WRFm1shxddNYIyYhwKh/uPsKrfACxsulNhF4d+GOt3zVORzXoKtcguEtwza7LX4KtW1WdzlD4c10thNYphziZkRyxO+5KG8XoIpYkJ3YjXlRffwSKMGrF72xDrxlGlHGBGeL+bBLs1mGgVe0TSw7ATKRzFjnwzkTXK/WHq0yAEG4SPRosf0CT9AyXzbwve4CVNK+96i7spjLPJcBsLqgQTB2S8X9FAwZP9H/3a1/ZvzUzjW8h/rKgKfvvcRKEIQcIRXdRGUFuwoEbghfmFPBylT9tlVPxCdU+bK/iIwONIRqJTshrqRowEm6pYAjeVJYiwwFzHaCLIbwTL2+SVG5PcjnbpqLPhQmgln0j+2bO+uGOhxrax177OEt9nKVf7duOxkJq888wx0eCnOLbmlGVzmtzkEqhrbXfBPWZ0PQaARAznjKN6kvwLNWXCqSbLXQtvrHxvkvOIyclw8WBu+jGKtNS9NrtarIotcOGwgVim2J3fmkqpo3iHtqjFtLUufaZdkEoASJz/GHcI+Nt+8/39p//2/6zYf/5X/af/8v+8//Yf8iYPINlVS2TLU/xuDcGf+n4L+PEw1NrhlumznSAKGEixdw8Wlm/9yyGWckzts2EB7XGZrZDM9tpqRQTZttxuJ8qRg3rA5eSuVnkf2n8QgveL6iZ9wuq6EL/GrPwn484893mW0Hi2sVlqDBXDxwoG5Vrw+6VCOHRzFGiUUMWAIWqmdDM22vOBvsQ9MMPkV7khVTyQbSgUcdixsVdQiFNyc5voeSCmTkr4RMTGeT9juOWmUlxkdVWKJAGN9y3HFQug3CF8H2GiOhzq7Q6jhHNTNzqLQvYNiheP2yAKcXTDxsh2M2/C08kZIwxLe7bsTMf4lahx+A3xIapJuMO+TlOPogf2FKCZdJYsHGTHUdDqrhhilM7SKvJ22MUgy7GgTbse051tNzjZuMFePhBEPI9eW03fYxgPe6P8Zc3EvJoUBUWZDgYRFJ7o3kOx3O8qiUUjo+nWtlHGJ7kc61D+wnol/BnsAwcfA4FSQf7j4tZzCx34iQfxGurqtuWNaG5YjRb+uAP5jKsvdBFaEm69MYnrqbaluk674W89Rcfro0J04YUltk8ZZg77NiZEEtO3CRSBgHd3lSLU5HBEzd2b48Th6cYIOGtkQRwvAAHFLdrTxRAjwnv3r9462dFfa3GbbplOw5TEy9a0FoqOf3Aao2b/MyFW8FZr+waWe2ifpUVu3kkiLxhyrIQZO+yYDVB5NZLnOePp1C+xKXLsvhOdCOXM70Bi28DAXT1RkJ+ZoTdFSxFWCl7wNMsIxtG2f2wEVqGt/RSmDmz87pRAW5RRaalKVXHLbLtcDUDPwKKqinmja8fUMyjRyvFEr0fTUWQ+YIFdWi4QD3iam1jTmNSN+HBl1hBfGEEXA11rOeSIa0m4s05iLtymFK4Iu2ERuDdtBN5zU9sx9giLLOPoZjhOTwNNTOIu8G4B6cr6gDU0QxSplCL1FDWIUYiRZAq1+rEI3yBM0jUR6zv69Czoc5Mv11iILpaeQtYq6Ft70d2lzn1RHOgN8Y+hxhVOCBF93OeC2GUiNYQOP1VwpXV0NZWwiwL29vV8ngizLLQLGCXfcMs+4ZZ9j8Rsyzejj6J3ZXrac7SlwIuiw+Sb+hl39DLvqGXfUMv+4Ze9g297Bt62Tf0sm/oZSuil8V63dcBYRZR9A3H7CvAMeMFOIijdfIR8C5WQ+0qFL+xgvfk9S9bXbhdcPyAEP+qoMsAKyuKiHEjhTiZijdG2smynDhhkJvw9CNcBxjZI4y5L4dIVtv35CuCJctaduY3bLJv2GTfsMm+YZN9wyb7hk32DZvsGzbZkxHxDZvsGzbZN2yyb9hk37DJvmGTddD5lWCTZTmeuz6u6dUr+PhwosEqmfzgcs/5RFHFmSbZUtAFOlE8QyXN0JMmfUIl3Gy4nyF8EWvFxhXwXQlHSTb0nALQeK2fDVQKq6R3MGi8ITDx4fbOAmAG29MupjLYUj7V4NBT8z05wQH0cy6uXX9L8mycZHk+3nLlZ72DSAryMxeZvNXV+xdI7lvMlH02TrTseu+94Hd9UGZbY2/RUiNjmfNJV4MLmr69WD0oqA73kHzDU/hyeAoN1v+J4BUalH9DW1gf2kKT1d/AF7568IXmlP37YDE0RvYNmuHpoBmarP13Q2poju8bcMOagBsajP6G43APn6z2mSyyvTVJr9cne9jFo+jRczpcE0EXPx0NP42iSqVdA02jvf1Po2rPXW+vhaq94ehTqNIZY6tI7E+i6uLk9PT8cVStSeWo+XGdTdo8gPFIyfMlWdBCd2X+g3EGQIv6ur2Zr5kSLN8ZJd5hsQryJzXrcli+LPMcKbadtMbeIP748IPzB3y4AFt+Z/ThkwbEEsi5MywNkItrgNE4f0/iboihasZM8F3bYbeGeLe/+4hR2IOTiuWaBnAW6g5iN61l1vN5qxmhBp7iOesDps2T6scFSyLC1j3aRpjzJwz2nMax4B8fnG3+Cqozrn90rptPHNl+spO82B8MkuHz3eHeI4bIF8U67z2O8LYjYAgVUhkHtH9+ijuNHAniqCD9PgSEwGMkoovYX9xVubdzplzMmCoUFw5WFXK0bpggdGqYIoohx1xeogfht/piH8ZZ6WmKCh3Mf43QATIFZIms51LabjGaAjJUERvEKFqhV1jqMeW3ruMpgQ9TU0O4mHLF2BIEBeKdmLli1PQVcwAXo8Fwd3sw3DYKEUT6C5pbo62PzOk7ZyIgXHQEXKb7B4OddJe9GI2G9o8spXsv9ncozXb2s2z6iAUiFZ9xQfMr2AxrvKILO+FzpNnF+dHZm8vk9B+njxiis4PXPS7XzeeMbyOI6w93R6feCQ9/vw3udDyCNx5mQLgfEWjQ+fuRNxfw8YH7EVe4xSV22A5P3lyQ30oGGxDwcYS+ZaraCPZ3V7zFWYuMw14MwczgthWznIW2lqRQXMJNyIwZGJdr1jX6bJwJDaBIh/D8eIvg+b30ncStQ9iATzDH+053s2NCMi52G3LWNca40Fr8mKMBbdpbhk4UnLuQrQHttKnEV8dbj8lgro14ZRCzFpgBhbu4KAGeCvcGhvDQdO76IhrrEhPFTKlEdO3sbw2a0N2XUD2GC7s3HF+q5GE/AchnzVyv9dzoyZKcHl9Ubud3LJUqc22BLAYJGntoF9Vw8EffuSC39q3T4wvXfDOXyM6lXWMI4wCBxBAiz+CXOmCBfc6vZXJkyIILvigXPfdlaNcPCqCaonWFGDBjSxyk0LeGwXUVwdKzhkNoEkIDUzg4OXjg7IioJoXUmk8wKiQDwAir/0XwHB4WTUbLtUUo1SQttZEetqyZne3GnOZ0benzCF5PMZUiTIhHlKswwjwcPxznqu2lO3vTSXpUwGktflqgNhKBGEvqA9Prm4NRrJ7kM+Lw1YKJTPsIGUAYAankWRI36MfeOuaHg8T/18mFdWYgXtYjJO2Ki2opNEgnBVMQixvx5gzcXeBulFNy/Obo9SkBjB2HaybzG6t9RcJpc1MjRs04EjEmAlOQUMEKDlGlmC6kZXG4dokagX2ZkLMgq4Q0Pgqy2abTf8j4t5LpkLk/tscLixApommBkOB7osD91BizSjzgfakSIccLslhu4P7Kim4YMHCgcxa8W5em81iysykIphrqA9cpVRnLEvILU9Kj2SzALTp3cRwoQysGTiquYRcd+fbdC3WNVXYu51WFnU+UMbA26+4vRjOmrqY5na3vctIH0IyIy5K3YhJ7JtBzrYBGwVJTgx06JEdHPXJ53CPvTnrk3VGPHJ30yPFJj5y87XAm/7rx7mSjRzbeHfnYmvvAbZ90auyYMG0ovvai2oUwOK2jUHKm6AKXXri9qQw4SB1gCrFV4oYAX7HgFSwIigXdYUGPhsN6DRdZdCSxPvngXRiMFHhRhQoUwh+7q55rLiB3B/XTmspKyIJpTWcsiQNFuIbQH8c7J8CMv/7DZlAFBs5AhFLc5r08+tv703f/WeNRkIlfTFdQTjvEcwLNjo+qBTXRvc4TEY7CBmnxiRecwo2ajEKKPrgyrCoY47A+w1yVnRHg/1gKyHC0vxWnfkhde6MS4nGuKNWE6ZQWdk9Rzchw4HM8NXn24eTkZKtSwH+g6TXROdVzZ9D9VkpAWQktu6YSckknukdSqhSnM+asBgeTmvMIBWjKWBa3AKinyuUlfjA98kHhWx8ErD/m7gsfd7qGef7D8/C+5d59Tbl3YV184SQ8XnMeuBE+lDnXEhZ/olyx29vbbqZ/SwxDEfgtMexxiWHVAvoy5oGzkh7WLI6OjuoQSd5UvfocDIOjlocuz8nZuVXkGNQpHMeejXHDxeB/HHtPn1s7fDrlaZmDA6nUrEcmLKWlDt7nG6o4M0tvGsUrdUGNtiZhBEadkNM7A+C3gb4I7dATauZMMQSoFTqJmDOudFaAseYmeLMgbA2gas2cLQCdJGoa9QJ8CX5nVHMIkg8t3nBd0pz/zpy6YjXcqeyor7z560bkNLH2TvVx2DR8vB78JcwA31c3qs2btxCgWaNujZtiM94VwXvvg6GynuOw1Uhh4dWPraUsVQRCHnn/IUhsxm+Ytg/F9wY9+CKOJUO09tBuJnRoZYq0NS8AVqWiIsB7852vv0ZEo38pPNhnwZQb/zNZoNc1X9omtJThRHG2Gm6LrYQciQwKtqdSVGZrC5fWbqr7byG8H99acU4YtNZ3cPiGIoZp7X7n9Phj9zuvmaH92Enta/E4L/TqtSo7L86jgBzFfiu5YhmUtXqCKJ3T44twiw4HWOAv1mUwMiFjlurEPTTG/EtPRiX9QCUCmVNqg2Ug4co6z90Silbaz3MmcM5gAlMldaSpeQTyft85R93FhSUIwnpzPpubvKsqfTQaeD/K68mZwRqvM+VurGn2L0uqx0dJ52xBG/wntYyrjqUzTAbJIF45+bS2cl69JD+B8+kjC6gzf+oVF+UdOb1jaYkm7isuruGPl4iP9Oz01cstKAkF8O4rL7IvEC/k63TXYoYcMy1XuuOFDvb7q4cMTZaGXUm1virOPywNI5r9VkLpDTm9n/BX3JickVORcbp6oHxRXq3xPDo+f1+rkn4v8WfCsJWjzUDCcymuooDyT4k7d1oRyzDmPCg1AcLIkrqpq8VNzqxYoMYlboUNyk1cUUv5UIAMLiqsIubR/6b0Gn2jLigEhyKVXjlSkt1BJM4Ko57m1BhW3QTXMTQ5RpFjcywjLGeLkJaIIePLgq1OF7q3Ezrha467+ns93MquqKMoS+oHDNuG2I0pTRl5dvTD2dZjh7FOpyjK4vqFYXNfrErnGm9LocIXivyISNfvI8lkwqhljOf6ZBBqjplVB5/LUVdHbr1reHNjcDfEEjnhltITXB3wK5Osr+iEr4nUj+8tz3HUFN5ePJbjazx+3Op46ARalcovLtQeudNchOZTnQvY3BOcCy4saRXCBIsyrT4pFMrHQLXmOpzU1j7+nHgnXU76qM2GJsErLBg1czJm+TTxI06+H6++lcNL6Zyvki7SISRrdRnqWtic9/VvpcscnNAJz7lZQkq64pMyZpmj49HTCyJeFqsEzj+K9Is5FUIK4ponKc3T0kUGBzXtk4leZxiAXXwXbj3CrnI3/4+lcY0Xny0SYyzh1Sn0eOBXcjpdra7ekxCLvX0GuZr/vgpnH1PUokVkwEq3nT2e1jWejS1SbVOPp/CGK1PS/Gr1mj2P0u9aVLr+6ohpn0Lwp8/+J1D7yNmf2SP3Sx2Z0NkffWTiiB95ZLqXHqFifOpGcVzzzAqL6dG0rnlDN+h83JYGHKCrgFi0JjK9hulQkiogJkgPgtAnrqPBrEy/Yfl0jRlRvnmil4uJdIlDdhutaFEEB45SslaU/zR8sTK2FRVRjoQDKYHLhSXEnIXN+x6rsy5wu+NzLji/KBjU/MoZmTKD5RL9NQ0A2KVUo5tLxWG16JnnRrN8GuH0Cmz9ERkSa6oyAczEgLxGkDcSWLeZsjVQcD+0YgcFLgjwI2R0I891jNvHFNb3taHp9RVUp1xha9zyPEtpGPMXxsi7RHSJFIo6+lLIXCPr7KosckjRYHemPsgvFGgQprEXB4UgFgf48+IUMUTfjgyT4O3+F72hSU7FLHlT5vm5hGDwU/94LCxu/M2SFxbhi49U3MeNWit96VKdANHiztwDnFQVYYf1ZBRPa5u+qspuHyVQKMhVStStApaNkp1QJ7Eqio1CqIrUeCWDCIL7O1/wOiAPUhMyFSDSRcyqNkioky2n0SBce74p6mF47CoDUEJiRw/o6L2opKgLbMaAklDWwLXp048g9iYG7u9hqUffSCqFcMrghJlbBkhvUd1MWq+wiZ1xwQ3WHLJTlUttx3bkZ+Lj7MYa+H73SgV1FqEYTE4WjOpSgT9Hh4rKbc5Gj8G1hqHXLKzhmM3x8qh4vGALCVmATNtmfHNZxWlXz/SGB4lk2AKiqUvFEnLh6s+7UuH2RBvjsDkmX7lbYu/tqdejD1s4TghzlAJokKGmcZe60nVl2s6UfxqMCihuiSPxcRo+AtxhbEaqeFyYCzOz46w0Eb1FzoxdLrAEqkiAORWeryk1bCYh/MK3HybXCowxMKRPs8wVmbf7pg/7hsFXVulxtfmzMQbw+zD20KKwxOX5MjYIXEI5OhZZR6xPqZnqF1Rry8w+pn7WJ2PGhLni2dWaUeZmuFPsJvLjcOE+eE8olYdN8lrGGEhLeFYFTeHVvyt/74JDXeVSLKocqV4cSjD7S5ebOvRTvQgQ1seRUFJtbnWN1C+COiSxqYr1uuK9IRwBo80qq8zl5ys2zaG69ZwRWZpU+iONmkCSvK/egsNbAjZsbupYCHId0+rL1SwuX114YRRadASnTEXFkG27ZychoXfGEOKsElzwuJVYXOsSKzBXd7T12fErVXjOu8g7h9nkEaGaKFt2Amst+vQqq/cgf93uaizRwwA2hcErWVZltmAN7NAsoB3ccmtQV2XAEAKhUaK8ssUB8bkWRYU16d1cAaAmU3ZhOLa46+0ohHjCiFxwY1ijqnBHXfTD6oFxNay+i2gMLI4WPjIIKpLE6U5ETlxGV3S8ElglUURJ1dmCa2joI51lkmmIaw3T0ui34nXc/4P9ai5mrluHRSdku/9YAtvpdVMQu1PGtpcr38vVfU3XaAGTDJe2ez7e5hXfghaHm+PspC1b/XytalX7U2I9Jx8CILp1PpWlguipY+zTVylG3AIMJuUhACMWFxie54K33RzYhjzxZM6Zoiqdx+hPzWOwMqlR1GxM+IxMSihttQGRN1WLnOl6AHkk7XPDlFMsG10cukN0TJZOLw+BaQQA5V1At3usmtfU8Btuli5XLCC7gnoIZ1IoFOZ6tJMy9gAoHmKSxqU8dTnxZDUVjNC+D1x0/UK4OEgDS2HBVODG76GEvA611XUkJ6mxKwumJkTYRZxsB0PWjrSP+A2e7rw/q1fEBy9CAIdAKW3PN4goBQzkiHNRUXkPTlBqFvTzjOkaxKez1DUpRVRhvkcUm1GV5fHsg6INTxNrMpb2D6mIHR74dCGCEHV6ecMUKPSAzeOPZG9Ec107uhwGCZqUnbJid3/3oM58VPY+IgvuC7fadLsBG6mf6/ad7Tr8pyuwT+2CVBE4o2IU8Y8FijmwuiZLjBsueMFyLti9axpxuFNXp+5/B/hSFBvUxF9V5WsdrTX+AbUshJCF28gQ0dHU3s8EWVjrR3NTYvhnz3nOza0koVu30SasI8gUtWz/MY3TtmsQS/6aFA2pjOWQP442aBxf7TJy3d1AQxGpWYgwLfAqni0wJwEePyPcOCnRoGQhBTeyQrKomrDaoaxmzH70N9NGkmvGClIWqCPCS/HmqnM1pdp5Cep8tIo77riU5r14ZhuaUzvbYDQY7vcHe/3RzuXg4HCwd7izmxzsPf+lnmdgz+bWjefTIxe6bhoQDKLGEcwigsRPxLiylh7AKjjXVS5nlt3uuMFSmjStnTO5nPWcqy2Xs61e3HkMVIzm5NIdL4jdUIm6GLHeboqYbJh0wPdagMwG/HqrqflYbmjempi1vsGrFuAgFjIr82rpY00hrIzgkdEzaXqVnhs303HYFDSdsyTiRZjeUq1SrLzjirDxJhdFaa5CtAMV0kE+eFdbaeIHqH7N85x3PoO5ZLBGhp0L58R1XYsaJ5D1FrqtrySUU8h1u+fxMxMZbCDMtzNVflsNwaNLFnlBA72LzHtd7JzyVrUjJlYBKbjvSKlIbZ0mzYME15s9OP33Xq0KhNuzBtLj5AQ8c1ndx7zGy6WfqJ6TZwVTc1pou/m0geulCikPwuwUvXUnmYFwYoopWJGbfSGFNsoOH7yzkGpgNcfmoh+Odnb39p8fvBh0/XX0w/FJbejrvCk5O7Gj8V6t2O/VoPmA7k73BoOsTpmYsTZA9+o6yWU4E7AUh5eqVCl+w4JFlzJhFM0dcoqRqqVhgG7hK3CAMjCuDpxYF2+sS68u5MuAXJg4SVmdxLmWrdZr2lTcwYI58HePgY22vj2vLUHR+e7Ock1vO92NZ8L5vezuQv+qNcO0LhdWYxCS2LGBtdMLmoI7e30y1lxJIXM5q1XYsUeNvPYZsFwf1nhF/ldzcNU3frrHK53Ze8lwMFwd+v2aN4XRV2bneryCTzJ00Y+OOXS2ob5vpXkNBEBsXm2If45JqV08aEw2ty+7K5Mo9Qyh/AFFXdeLR3Vb0M7P5K0WlHdx+RyaM2W8IgN7oXYR0XBfOUfTtO34rAovYFrXHEvLagRuAQpq4IfRAUfmVGSQ4HE5Z0tIDru1pjIU3/HbVDE7ZrgXqr5ENQMYomRejZobaAV2+pzlBcbIaGMXw+2cgfsvQDelcoE+IEINJMLNypyqgClVmY7KKlcdKo/lYG3p13SqtSmy2EuEpgYoPzCWpqbo8kCd+QAGCsqqskAoWresoMCxNZGhabQo8nIGmkDbk1IlolLYCcJrz6gPH4EqCOfvVs/vG2x53IBaqJmC1a0v3LjY5+/TM2tc97L/UXyvs/edld3szgQfgV21wnAVNtl7t8rvVQ7i5RLiPRB40z7nG37m4MZ0kXPE9eTGWmixU6egyugtu5LjzeKV+x4BLk+lIopB2vi9Zrq1CeAJV+ojk+lV5YC24sDqPiHBCkHMCELwsqzaVta+cMnwQIhRnN14a318hbM/hnuZUjOo9YM1HuUNU4pnbrHSKPnX57t7cnukyJm1QDVjZPwSxRUkzywLpsdeTI9PrWrJU6SRvGNObe44yS5YQYYvyODgcLR/OBzgnenx6cvDwf/vL8PR7v//gqWlnTj8RBCBeEEFnTGF3w0T9+hw4P6olFwr6nQJYgiri2sji4Jl/gX8X63Svw4Hif3/Q5Jp89dRMkxGyUgX5q/D0c7ou4gZjYCOMFVdZ6y7UPqqj1lrSH7qKevGN/YIHBkT0uULBhmOZ2fkbqZ+QiCAoLKeKc+t/hZcSwVTHmApnKTCgMfEntmIU4w3PC1l7o00DqTM1ZxzuL2AoU3DDZ3Xw7Pavka5iZiODRXAnlq+FEp0zlWneIMxPXsEOt8lage88g5FA4xIP7KHogj0e5WcIh4GHIeFLL3lSp6Fsbl7GASWRE0lNFqB8qBy6sYIXo+qEGMV7RqqvQQ/BGoWtvVI2OmAtoBHlJUjNM/jCV5pWm/ilHI3sTFcw8tSwXqq2CIcSK4748CJCCC8Vs/XWqYurATn4R7ly9SkcFUbwzZesWDaiA2yK8P3CjG94RLi0OpW4158xFCxDMobnDgccELDVXN0e3ddzY5mQnccqo6tNRHjgJ3XlZG9eRGwKbr2GbrTYVehouLxcy6W2vng2t73V3IWeZsXqDbWVIwKEMObqCG52BnNcehZqBT2AO6i2yxwJF8s9cLqqXNjimwLPOpYcaycuFAFfw/dqP0ZWnyGZUN6VV2Kvhti3x9X/aPSGpFitnVfFZXaNCpG9foyMN9B6+R2vowhJ3w4WVtItR3PHcE4tjXgm9WDeApKuROtlqNugYcon1q8Tmj3Z1DBfBgBvD2uyxTXZJAf7mrKvYJ8G1ekVUf/fFnV9LKDD8Fdjbrl5JZNCFR/dIhVokFP1KTdvRkT3B07VtezQjAYM+FsaJAXxGhtnpFIXJTjSS4hGENzw8Ydi+YSALZcOThSinDJX1f7P2r3K1Z3Ya5hsbkOyPt3r0jOxbWH7nq4jqVfl81V51vB8sAQ0sbTOEQuxM2ioDiKLOZeUHpqEPGRk+AQzEN7UCuGp+tCCrjNhCM33IgCP9uz4qtloICIsey2oY/tvwwG4GtceXq4vr7SkY54n9Y4zSXtjI5+x/U1gRbAPlRcKo7oWU1BqJ2sIlrmkBipI3jN95q52zMYGtxfubs+1AXszk3uof1KSLVKleJ7B7H5Bnxx/HeWQbMfGVAP4y11SuEKOAxiYNfMcDDo8F8uKHcFml1h+qUsYd7rN0ruREBJAni/OiJI1y8QbRO3zh9pDSTqXIowDOSaw94BLQkLSjfuCDz8yQrce1S61uaFx1XBBNT7jnSISm88CghESL+/ecNsp1YcQA+uQel1HZ2c3dHUEECOcRjzTieKAgLicABPW3WHGW6CWty6YZFZ/4hbqwc4BRC5GEgcOqjvn9qB+dCF7c8BhTwYC6HFGK08wsLDp/y9ko+viI1yL5104i4Zy8If3FGoaZgJCEx2vXLnU0il0FybWO92KzN2NZpQgLurZIDT8cJ4JsyyGeomjXM5SzT8nvjfk1RmbJx44eu/ro7X2JtfZfxgzrProqWo1G6FUapNuWK3NI/cjWcnF1shGrX2RlC/3bIm3Ggib0XoEcHW7PleoaiFdlNZYIDv/cONwpTCgNunyPP6mjZUrZJY/PA9IV5CfvSm0IU4x3eF0YrAO8MqLuWey0K7T3+XYo1Afw8bqbUh2Q1RCQ47w2FA6GhziRaO5roukitGM6+TucPaL/Tqwic6JnED+sVRxbPGFn2asgLBZUKnHrsSEPCp3f5SgOl3duI63zgtlSzY9tFCG6YyutiI4LTpZKLYDdq4/vGLy40tNDnJTz8dLhaVMOE090/1B3uHg8HGVkOMtjOKvjIvlZlz9YkxjxAeWHdANUL5NnQ56WPw4wac9D1cUhhIGJ0dpFLkWwGVUUyu7hEm7HzrKELSydUMAgxk5PjCQQGubaHslILS6Zw6HjK0GYX+BWMXnV8JgFDqq6ZUq1QH+aSF0zQdBLQNBcq8RiZBuHEBke03TBs+86Ore3hWsCoEhpy7pvFegIt+xgozb7WOR5K79KucPXifLeJEPodHKsDwJEVOU3avfXKPXVJt+c+yTxbLDgsFutjeGz0fZiyb9Kd7k0F/dzQ86B88nw76uzTdPXg+oDsHU/aw9eLXw5S7WzWXv/fSf34gfe8I67c2cr2gMkTrQhbS6DSZWL2oHp3p0tHsrxCs6hOwAGMKB+7n/yUUuHXZ+07tijyGsMHhDsLPkM9w85+pyLalqgZLamFmPVfqILinJ0vs8szfQJHX1TXfry/PXv/Tl9zTVS6bPWR5yvRWgi+71Ebn7Gvke4GXBGCsWYbcbIzHb8coDMN5NB+VE4bBj5+hmGy+oi4sg3jAQVAtfNOdDnzv6a2mUmO8JNScBA8UOps74q2oQcyfteX3V+VvkO+hv/j4D186XCkQzzdULe3aKHJq7BpPyE9MYVwolNlgd3NaavCS5w5EAM+WurS2UiF4gnic8ORAR29YD64MAKQ665GMK5YaqZb2jErVsjDxDSID6FPWI3OeZUz0IP4Y/5UiX/achOyRW8VNh4d689cN/+xGj2zg0x6wepUEjHqZ/IzPmDZXNLdnl5mv4lH49PIYWKqUhM6qCFA+Q43DedruR8KPAzfCKLS/g/KCzhUNCgcs6JWxe6oyu+yTCu51HZh+ZSAibypyO64L4iLxj2U9xvx/RCecSJmzCH81hnLFn+LILA5Odt8DpGmhStYKfts0qmSfumjsX1zMrtZWEGqzUb1p1XUSBRWH1AiQ3RHq4IKKckrTkBhLq9uNGyYyqZKaCR40QMVyduNs56PCrqrv314ARHlXCYNFYvtkyV2RJuD5/lRWrzcj9WF/cS1XkSAp3SyflljrIZezmd3iIPbkTNFizlMPFRI0+7hVSGlrRI0YVWrj+yOvGL1hpBSVNcp91QJ8tXrFaY5R+5VZQTUphcvHbM8YwOpfvX9z+e79xeXpydW7t28vP3XKSsT8bCOtPYnFd4HN1+7nILUIRVlzYJ9V170xMsPoYs2b3nbxlDsf2pPKbW13C+n3u9MKk2qjx56yx2z407/99I9fDl4fHP39U1nrPR+fofyd2P0EWTa1xKewOPBQsBsh3OBiMD2clu0jYjQYDfsD+9/lcHQ4HBzuDFYPfm2Oz+7PlVTbB068zQsj/aVlLCM69j0WFI1Wyd/rye/3yQtXiNQXyJQLPDjgChfyl6Kst5q7DGpV1HxmVs2QMtfVHekNy5eYEo4KCAq4tor3OWczCMXPZHO3ZoE+9hk3AEAX6Rg+B9hnuUf6M8OK/EsfsVuvid8W67Q2Fx+R2Y/kU1ey4eOMKzAUPVo8WkOr2lMQ44+LrfZ+3ZpKo4D6pzL/KovJGaWYAo4wGN0GIf4WikdDM24C0bQqC3B0jxe2q7HziXG7V5gmYxhFdKfv0g8xsxSL2wf92z7aI5qLNDTn3W2e7rhEfoNfNdCXJ0csh8ZdjJhuRM0EglomQUbrJHprcF1U+vbjWFtnBuUSRFdc3zgGQcoUv4miFKG2rPPLRr7S1gi353LBtmnuOR9Gapu7wmY+d7Cdi/tEga2ONXAfGG3dcwuC2Z/llZYpfMhUZ3x/lNBZFEylVLtK67X7DThc83BjGlcKXlUqsXya/HuULrEj+bOXL7Fj+FOWMAHC/yeXMcmnyddaysTS9m9SziQayldf0iSi9WsvaxKR+mcobRKR+2cqbxKT/SctcRIN4SsvcxJR+rWXOrGkfq3lTuICICsQ9z+55EntxT9Z2ZMa7X+m0ic1wr/i8ic1Or/aEig1Kv8cZVC6Sf56S6HU6P1qy6HUqPyzlETpJPrrLYsSFwr5Qkfrn7U0Su3FP0F5lBq9X3GJFKDzT14mxY7hKy+VEle7NUys01KFG6LQS4+wuzQvM3/pmDMKf2fygUz64NKGC/45jaqIh4Y1eeajTA1Vyez3rR74uUOb0BtAj4nYmR1SRZ9tzH7f6IE3ewNb2OhIiCyc/A3Rp1Jdd4Q1PGE8CnThEK19ZApcVzXjR+PA07Bkw/DfukLjPUCzcbc2vukQUgBXcs2OWq2HRl0vxMXT0vyWLjVMEDV2ah23oRuPlA5NWlsQVgNUaWhWFoAT71rDlTOEhNXH8eby5UXPA64SKmguZ7J0MdXkKIeQbcPQEXVhFKML8uzo5GKrFwA33bYIrTrQMXgUih2EKxQoHp/SPGcZ+f+eHF0eJeQXKVhyVgVkIMTOQrrMvlrSp09CN9KFjgacpkzeilzSLAY2BaeIYAbAZY9OLuCSzSetV1x3d21SLQ7J+PjwQ0HN/IORHyzNoF2HXXGo5YJdhUU6Rg6MG9+Glt2dXgW74DdKlWJcvZVgfYJ6h+MmklP0phVLMRWtl5oPVw9APEq1Oso8J3bQrkRCYv8e9/BaNb6KgoXXjUkZT2JkHX5EWs7WFupzrviCqiXGQ0NCzo9nJ1sP3qtuDgeDYf32t4qmXjeFcaxVJ3Xt21B7SCWLbG9N9L0+2cMu2p3qOR2uqdeLn46GD3RbxcKuoePR3v4DXe8NV/H3fGLXe8PRvV3rjLF1LcKLi5PT0/Oo6xU2LRfrQzQ/s21XeV5ercHTo9JcfDpIcweP9vZ3Dnbqe3jBF2yd162vz16foifbB0DE0YFoa8Y7m0jlj0Y5rXkjCCmhUoLP97m9vU04FTSRaraNeetgcGwvWMZpH/y88d/J3dws8l/Pjt4cRYfblKec5ugV/mfPRTX4K9eE/Gw1wg4AZqsK4DXDJGe9Wh4fYoIHwMRo6KGwx4pLabG+lfTaLqSY7VwQmRqaV6uLmq5SZ5uD/d1BYwl9ZtBUR8xUCHaigL8H0W31zb9GLfhN47Bxh3woPFhZFx4kEyPzXBxQi2XeUmhq8/JWrC1OA1PAbAeboHCr2A/6wKlpdZunI+kLVxt86TW1OHCu15i+YNp1RGXVzLcsinZ6XFTW9n0zXrAvEWt0fP6+HmdkqJoxE2yi7lij1QONCkitLKhYV0gdGiYAUwzdtNS/nk8ThFhGF9bSx3jQxrg+K/y+YElE2LpHG337iYM9p1XcwiqDs82vOXYgjO6mfk/8yJHtJzvJi/3BIBk+3x3uPWKIfFGs0TO2eYTOMDcod4sNQL7k/BR3mrWuHRWk34fST/BYjD9P7C8NFOMILB6DuDnDfGtCp4YpLLtQcHeDKJWrKZbKjCEUdCXNFBU6ZBdpRBH04OQeaPzW4XtTMfMAQYoG1wxQj9mZ9RBy5dQjamqK2ZQrxpaYgz3J5WwbQU37VrWwsml7NBjubg+G2+Cn4GLWd6FnfWRO3+UqJlZna9vTg3T/YLCT7rIXo9HQ/pGldO/F/g6l2c5+lk0fsUB8RMsVbIY1qhVhJ3yONLs4Pzp7c5mc/uP0EUN0aTbrHpfr5nPGtxHE9Ye7o1Pvz4K/3wakwgtMuV2VAY+/AetwKdtG7LYGg6TmIIyCm1FJQCcRQnJwTTbsx432Eh7u7xzs1gjFY/rqT62CXaKqAUoYYHwsFwBB8cWqO8NsgdH1DNdexhUAJzhKtlprLqAcBMyPtbndLucg3hV43N6Dx01VEHVR1t2zi4Y7DnX5VZxyd3uDFwl1bml+gyJt7bdaLicy6teFXD27OHqzlaBNBUZ2gAXoShKlpZkj9B0VWS0VCaZ0UprK+e0ue8nZub8pZ7pHTt5ckHjEhDwDyH1XBl07tzxbUJ5X77UZ+33CEN87SeXK97TAeyhWqhKkc50Hime+A0wBsfvs+A2sG0sE5AFHLAzMbY3W1QkGLx/5ic/m5EjrUlGRMnIBNa3J8dGnMaEUZm2pNxUDoBfy7HgLS/M1x/f+4lOIj6AOWLbOiTyJO3LzePIp83j81/cXPfL2r34+z0TaI2/f/9VqZBEqTo8cv/nrA3Mets5nzX0uU5q3cAuffPJ9N17evNpqKU12eVhJ8XfObj9lJFLNqHDAUmseTdyVJs/efsZmPhPp5w6W5lel4OtSHLvGTHNie7RDf/8JY28s9E8ZP9STv5LqCpTW9YEIh6MT6tcD6iv2Fw7Oyx65ANXlvLWkj2nOp1IJTh81RCHNFRiPK4zpPm/tJV+AtVcv0+2nBkp9gC4NpqjQPGMKkWF5O8N9NBgN+oPn/eE+GewcDvcOd178x2BwOBg8elRYy2Sdw0JwyBWGNHzRHxzAkIaHu4PD0d4nDAmwOtOra7ZcOzLQUQsMyIMTINwDUGJbbg313cXjzoVoUGmpbta1saySDe1HoVWMsDy3D6Tup2pYEbwQJK6Gw4/rCCjJ3+e0mCC4NsXeaPipnGB3hRTssdlGjXxBbCJMYMbAdd2YvoDTscKo9vf2dp57rq9aEuYTRv+ZtjkAOVvL3FlK0azqgqZosXPTVu9HA1cJeVWaNVOc5le16P6nXriufiJ2VeFS67Jaxd2nIKD9B7jjdBlVIZvGlT5h7os5dcDPPcLjIFd0EPoALwmmVm61EGsvhSzs0HQ6p5Clqtrc3dt7+cMPL46fn5z+8HLw4mDw4mQ4Oj4+epy0CAgXa5eAUXDV1DIyhlwKMBuRlPiZVSVv8U46MAWP7ikUr+GC/CjJKypm5BjQmFzQ5zIhF4wFb+mMm3k5AUfpTOZUzLZncnuSy8n2TA6T4e62Vuk2wjltW8bAP8lM/uXVzs7z/qudvZ0W/zFYo/9Y+eyM+D/GctXBdPVkNEeFkbPJLJcTmgctT7CVLzwag/wjLNPPNEw98V+DZdpCJ3MuICxgdY9penH510p17ZFXf72ggry0RifXqYxM1541XxIwVJ923r8aq7Q28k8ayh9tlt63UWtT+Nkj+wps0MZAHzeWf2d70t3prlctihKMbadOT2mtup2HKQ8xqww3m8Nv/tF9fAC++UcmPThxCmUslFq6mHiAaaRVsBcg4FhaFUNELQgS95TWMLpBGZ8xGV6J8R99qQyGNasxYpulc1AQqwpklrKzc6/tSeVuj1Vfl0WR8wDZtQr2ccrNcl2IicdeELbvM6UwitF6oTDEPGfCXKWtALgnoefyVvYdilHaCqgMvW/qbprfrKxVVQNZE2Pf1CAoXWdtgqUyc3IEOj9tEAjqyRXXcl28PnYa0NnFW2B2WzE46iRpXUvRkdM5s8dU0AZ6mN+eHyFlxuRVDBpSl8xSzLgpM8SGzKmBD+0rp/8iG7kUG4ek/3wn2R/uHuwMemQjp2bjkOzuJXuDvRfDA/Lf9eu+dWYDvbeyxKc3NqKTaGBNz+PJYZUHOSUzRUWZ01otYjNnSys7GUrN6Ar92BugjaKHXLni2FDqR2NF+mkupXK2cS+Yt+3SeEheXiUpo1raAzmHJ2I9A6zKfEE3ChfWwJYLEOORnG5f5E+kNlL0s7Q2L4XUhubr2lWb59A8iq9mahbMhSe3BsAJ5ZYbVTiiCqGhxt+EkWshbwUWKrBDgY6kIr+cnceGDNYEq9Deb3nG8iUeWN72gSoW8Gebdy92B7sre0YVm1llY43C6h308JCs6v/tuIumNUkrR0+nsPpbySasvua6axQ9zZHpSpWR312dm3iR9YJGcnb05ih6rpNwdxBtH6kZHLl0+4eSCamvjrhiH6nx2M488npc+OJ+Tc6OAdOJnDpnpVFHOS54RlfFBxrYhXFZrmRl/SqTi6rK/JNL6lgRCIHo8AkHDNXtFswVxYvLDtfqhAry6uTo3O7zI6xeXIFbIv1xeltIeFlXtIzzh/K6e64alMSMF8x22Q5VJr7U8RjzHAhKvqvnJsXr8yf/+QFDw5do8MuzWpFRzTxubrl2zwWfZFw7D0/ORqgmVrH33knlHW+2FeaqupDXJ3s9SDDbIgixw9zRn5CjLPNETUMBFww3dU1MllBlXaVU+0D7Ool4slPvMUVcBKx4qVlBFcANupZp/ZR6pgW9xmJAPYJVPed052pvONoKA6xyuKvzTDMT0o3bg4aHI5jpEirq3AQzlhIFobBWn2ECCiVi8B85BVWiH6w+16CXgf+iOy7IFzkQpC8UR8qqRC0kEbJ1w63j0pmO5JnJ0fNesB5RzNcTz5dbjzDqvnT645fPfPxjkh7/mHzHryTVMYg46ZDGvYjznx8shQV1p5qlsFxdercPrXjgQhsqonqcp8cX8G7yvZdE99byb5eOgk6hOrjbZl4naRQJlwpV1yoIYMGoLhViyEXlte1YXThjPXVoTlV2SxXrBUycBSL/6h45kek1RkUYygWYNHaD/59yAmn4UKYzC4CKq+zv+5OJnkTpe9soDl/rrwut+Gq/HtGcFmVSajpb5QiGwsbZ1f3lks+ZsqYgpDeBTMdZgoiTUIHY3ZNW9X/t01DGuGaxcIPS3RWBxRrKkVp0kdLcjntKrfZjOVQrsBxpTYfwgRJzK6EfWGu9+Na1WqdQCeeGKTrzikNlHrvXdS+UxR0ApcNgNGmk6SqmaVXTKeP6OlGMZkmcUfupV+5GmuqC2mfpkmczWs7YFlTSsodhyrSeltagfkZnM8VmtRLlwHea50Ca3nII9AE2BWu3kVTm+SMR8WCoWLtr/WO1/Rgm/sjhfjm7Ai0AOY3Eo5fm3ri4z7Ko0N5xZ6TxlrCNbG7q+2yO0KJU5A0zP5y9vahZI9ATIrm2266IjnoKLYK145JTVAeI/Ns3l28v3q46FTMmk6/IjQ7k/Lu40uuD+Urd6UjkV+dSj8n6StzqlqSv3rVuifzmXv863et2br652J/cxW7Z+jW62SO6vg5XuyXo39/dXjf218T5zZ9c27GWFm2qM+MMvCrnT5PbuZOKY0/ZGPx7dq8oZkoltPcPg47qrPCPuK6fZjzOb426cVzg60gHPqLZajyIYQmv9KDoObpuq+uHBaOCi9m0hJr1S1kqwsQNVxLgjqLmT/2Uuwh4hTHhztocTxg1iIjX5ELxES6EB+pVCmB8RTOJMvgeabquxUJeHx3H3QYO2IELaRymOmJLgaB89/KYPB/sjqA2cTmbAZbwITml6ZzI1DBDnrkyYz1y0J/wKvHZ2ntbWI3SabbOy3Arya8hKvqfZM7uaMZSvqA5FunTZMZvvC8c5rQyZHCdY8cUiq2VwpVM5sKwGVMJuUCTkt+4B/G6yvnKXeXc0OJ8WcxZx+G5+evGYNAfDPp7p/DvTn+0s9EjrS93fQHr++9Nnmb63jy4zyG+yqX1wg6Pdne0q98LfudcUl5vAcP7t5LmABUV2ozsRPDuUdSAnOu+8heV2rIc0gmscqeIncoM6ilZU7c+fUba5xubyJXQT9gMMLufwvVwn9MBroRkCR5Nmuehej/3RU5albZBFD2Zy6Ex1IKm12wlCO/VBuva++qGy8X6plaxlEGonx/0VzLWdc9tGPcfNF6pkyld8Hxd4eBvLwi2T555nU2xbE5Nj2RswqnokalibKKzHrlFB1kboAKfbNFd5vnTUf2FYUJaNwsooetIbQExyvmWul1fNLVcfi3/RW9ac3vNlGBPyKWHx4C9BbLBsFP01hVSaFG+m+wmg/5wOOq7++Um9U/re/g6ZjhGTHSMum9K/9Hkh4/w+FLz6ftzezdlwkjdI+WkFKZ8aL9Sdctb+3WNmDeb7zVKw7HrZ+y8DVA/2rCZVPx3fEI2B8mFkZViWhmbEyVpBiYVU4CQCnKMN8CP/OOakanMc3lrW3YGTB30lDzz8SFs65DkCA6/oClwVPC7KmfxtlUW9gxJenthrZ/NTai5gfdz4IxxppSLq8g53r+xenlw+8Sk0uHClXFCznNGNQA9klKDU8aeNbJgvo4IpGBiV6fHFz3L1ULJQmpGuIl8Yg5Yvq2FwzAfcSStF5Gvtc5XFVjDQTLcTYY1atur+mnshEtX+65hI7yUihznsszCrY2/UMKMCbiyd6V2ATEo59eMjM0oWbCMl4txYhfTzaJabe0ro3A/38PSMeEOyyPsxZkalXEeWuwy0uu2QlmsiJh7n1J1wVIpMl0pRHOqyYQxQTAKrT5tO6O9evfW2Pmj4hEB/mqd4YgwOoB3WtPg3tsR1PCjkjYBVjt74sTML3yA22Fuaqx+4LSzKaE3lOd00oEfe5RPmDLklAttWOP0A45giOS/bxhsNMivOiI2ovNLB8c2iFgnLqvjFEgbCMOEKxLlgitjCY4FWFAsCUKFFMsF/z0O3QAWho/vNQNX7JSMYRQ8G9uVgh+8IxpdWKkUU5wrmtf6BHA7KoSM/IwOG75jUa3FS91eSm62oMvm7r7oD/t7/dGwPxqMdke7L4aj5wfP+6P9F6Pd0YvdwW5/tLM3fLG3//xgvx/ikmqDeDqH4heWgxdzqTymqSK5nFXhJJ2sogm7VwYqma8NivEIKuDJKS5l6MnfHMMNkaM5Sluo+4mv+YQKekWzBRcbPbKhGJRNErMr26D3D388KtSYWmLGT5eX5/D5/qjQlz7cPeTM2pcItbIX4E2CeVOq3Js2mplQQ8rzzk6Jyv1IFfutZPoRKRr+hYnMlp/i5ftoCc2LGES2QSaBXpvzcnDw/H4SXZGEFYj06Jd/zA66dA56nNYHx/sTy3NJbqVyNZ1a417DrFxChJ9+aG6eWWJBamNp6w6jf7i70z1Va1MGNo/ctWFTH4BilzVe1w6/XM60DzINc5nmHOqE2TFqQH0EFHNADqe++mN42s4oz6rsCTSYMKqDCCn62lCRUZUhGci06tp6/I/+O6Ssf3ZS1QOzp+g/+seOUC6F/bUDOHm0w3b39p/32cGLSX84ynb6dHdvv7872t8f7g6f7z4iLtZP0oKZuVzbRNXmAruKmHmuuFXiJIS4D5P9ZOBK43h/yqzkGUCx3lIdoLQPqwY2LoOzAyOOF6XdXyyOizYy5OdgTMpvJVNLa+Vv1O6n5bQiA70ooXcIBCoUS/H6kaW0dHLZQ6hDik4zshnH69dK6bQn0LQWNF+SjBnntCfkba0hiHmZWINeZLVgWi6AyFEySAat5fHj6WWPnL+9sP++t//Ii8vuOV9z5aPN19xhHgefmpUizdMp2lQhZBwmEECOa9kNE6rxqsS7KaJqtrFYrbwbQhr//PgYX+hfgoPQ1egnx3JRUOVd7ouYZBoaveWmqlQQ9ba5qUncrGvVe2PmLC/cbLtZhm4Uo0aTkEdGyIJrUJVnUBrTiaL2xucLOmPbM74yur/nsWJTptTaAEreuearWK94w7dOCg/8NcnlLAYr3W7QrgspNPvi2gh2u6o6EhP5Z9VHHhrx/QqJH/mX1kgctZ+mkjii/2jR58h4OtkXTeETCj/Xaof0w18+RfzVZF1o1alcTyLzHHO1oabUHSGcn1//vb5vsKPuSM7dQT0hbL03G0DXfbeKQ7i5CDFvPsAgtlXPal8+DCQQGojBBDwAq2KpVFYdhigKLDiAf9b7JTWvEFQPQbPbxXcJIie4NFyO9pQrdkvzvEeULKEuWS6p3Ry5VdHUVmi12iZ3YZuEtuZUZHB9RkPARSqFCGrYmXsdtTnXJiWai1keNVOxAInzbWkmtFQQ0kF0QQXUX97CPR3T4aNMOljRkdu5uh1Pc07X5WUJSwR7wYCOasYq72uvI+Ldz16lyNqlufC1FjE1H1jJAWW6R2Rp3B+KZIvfwf2UgjPRkyHoouuuzr24qtRYm5Fa8evspMms2vKuuHXx5vV5a58QcnbSccKtbOit0dV9Fs8Fu39FtOtCmvlH6K9QqGaxnHrlPj6QaH3SyoEGx589sXI5m8FJxNI5FVwvnF8TvgSD31IfAdWBy6DKu7aCrpqtj+Zet7pz7XpZmVpzAPJ3tq367PuPnJX12xm91LmchY4mLDq6AFSCjC25+Fjy/bg2EP9WVZ5VustayAR3herrI7RqhB0Ey+L2vx97RWNSGqKouxkmY6T5e7gU4MJdGVtzFdn3iOzuUGx8XVpaq16mZSxUGwIrBnmS2kU9VXLRCM8KG/OhgppklUKa1RaPXNTklmqxuWkwnRjTZwN9PZJJmJdQwr1KsWnrUNs3VG3ncrY9LQWUHdOJ31ArSI64lN6ThjgEZ4cdVUju8tNQR4sMvHErNHbme5eQdgxyTSkwnUprSLAbpiA7yzTw7eE0Fg44ZSYBzQCXNzSC0RKwP1y/mWQ4K7iBlvbtSuFeyhL8PEVp4l0V9rSVPp4YAoWWUXG4wC3tf9qKE/HlgvmZRNEzvqVKjHtkzJSy/8Phn0p3oHmHz5Ap5fwNkUidNT0CT5a6E2ezYEfuRLdnnqsbjbqWx+QvdQnCJt5YcStpTrWPRueCG+79eqEH0BGc5UFJWmojF90hk1LNfHErLMaYTKQ02ihaJD/4v2rMQgcflAtNct7MeOoUSC6P4T4O2VaiuGATF36mXHiTzC07CP/EwTtfY+wObGyZxmh3R/cOZZ3Jnc1l8FSjC993IR75ULgAapbSAisAR8Id8xzgPiA1+F7VWfcrtl0QC+FI6thjYekk/6I3tJPppUjbGb9PWvijxnLXnd0Yzgvd5PJH1g73wNP1gdDHnQdNzSz40K26r9hC3oBGT4S11Rb0X1KFkDzFIDjRyYn6XEEqU8GUZhmqml738ESOmw4WL/Hjg2fBNGSIQUiCz67zKTW1J2oldgjRRc4NYvUYUhZ2AODHK3JGCqpMLYAT03oUxbso8Mi4Zv19Ls5MnABEhV0aUGMigxYrW7TaFa6VXrwJasPwg+21BpS4jKPQJpTFpblVOJZE24MHS8+nzjqjCKqMMYVMpBJUIamIYLcg0DTOJqvvp5xRYRnUILk5ObUNDDVXWAazUhVbgfMv45pOcpYRLS3nUwrn8YTBjU6c+zTxYdbgVnMng2JGcRZApcdXKIM6tvMFK8jwBRkcHI72D4cDTPiGYMPXS1LpTytXhwkoVnDYryACJOCn37fRnc6wYIZCGnusEbnM9UiTRB1kwU0sWW84dc2EIGDNGHn38liTvd3Rrp3aneH+btJBfzKlKc+5WSbrcLBtRiN0xVqI77ClJDYD88L4jtJUKlTXZTQqu6bssO4BKaLCn90VElFo0r472mkvltHOgzxa40Ebccrqu330E6/MrMY4YJE/7xpLobhUq9WNeNxUN6bZ99Ne0J84xaxqkmtyQL6vmPMfQeVO6rIo1B6y7yuQ+4TdFSx18TlBRLvV04CsejHsuLXf2etiayDg8dvoozsmmBor75iaAeq0M6gpBbXII4ER21wVOGez40rSAJeaLtyzk4utXmxeWfuoRbzbmTNpGe9OeP/jOHmQdGutwXHirTVLrDZcpCYyCq3VZk8HWaD5lFd0p7JAD1bDQuskpTXlnTIhTPi6le8/ejGEDuvJwystAvDa37MCIuv8D5z8iIrWvJ86Y7uRVBp7MN9EX30EETekhNYwI/F6Y7EohVPP0I8lb5hyqiStACoJKmnYToz5qGvOQZ/8+ikIk751H7Tomm3ixlid9qZKCFnpNqNyF6xruxyh2TTjN0xgyZK4V+dQKpQ0MpW5s0W8p0FNuFFU8WjhUO2wDFw8hJhp1JkXUNyfqRueAtBhaRALx3a2RMOgelhfL4vIt8TT33r25GITKa97xNxaXU45Ym5rmWZcEM1N6bT2W3A0Yb6hyKKoEyi9DrRU9VbsKZSFODWsuxIM9e2MaUPOzrEWu+7BvZbuxZEst1yxUKAmOlM/Iz4LisUhlF1ahruiygzDWzuycebvkqxwOj2+2GhvTMoXtaXVEbvQMmUfE7ewiYELGLAAGjcExsCMTKTdN5BH0QgmPJuSMTIYgynGoESMLbOtkc6lCN8rB5rUI2O/Wd1PqKrwaiZ0ueg4kfYPagxwEsQsr9YZpQn5B3IabhcEoH35wZGzcwf0jKuJanLL8twJuTAev/0q+Ky6/IvKexIjZd6nMyG1sSefj8U00keKVnt1mtdTLV8xqgRZWIWPmq4ahXaB5Hw2N9uBeX2eARh2h9J3OH/7H/rN7k//8frHvdf/uX0wP1P/OP8t3f3lb78P/lqbirA01uCS3TjxjfvT34tro+h0ytPkg3jnKzqyjFTW9uEHQT4E5nwg3/s7/Q+CkO/dpT7+zcVEliLDD7I00Se4zBQ0dy/d+U9xy+R7UgpY3B/EB/HznAmyoEVhNzOcGNrfgdhTzVk5Cym4kcpDLbI704ub7LgcqUQaQGFqAsh6lis3nN32HDZ78Bpo8mHDD3gjbloq8mHDjX4jeZBez2qpSMEUXzDDVIv+uG0/lIfprxHenNbQUY0fnYPDadrokQ8bYdLgU5i0DTdaP20RI5IPonLD1l5xfhx73kGvgSICXVDFmYN/5hrdtTGlUMMXMfcaWo63tMythCnUoFe4eI/QSYLeYXu41ppFMquRhM5rPbpN0dGXx6SKG/WtecdeRMRllVsbZdJGYcD227OLc02kipv8+/mbcDSHPN9ko+2dBV7WxMhUqluqMpZdfQ6q1dm5T+3E68rIWR/95NyphZJ37cDB4YtRMkyGSf32gVNB11stDyDhzv1h8QYN+WdekN/e3iaWhkSq2TbqaVZl0Nv+eOkjce0vkru5WeRblc1x4Y4VUF9yV3zQv6Xd5NOcz4Q70EABfsPMy1zeYp4B/OXSfkK7kJ6AKryPL+8aU7tkdZ3RQqzE4vudjG8CFI5gKo59oFnmTmCX8G9XvldHbnIq3MOxE7jaWxA6Jpha2HX291dHb3CF/dbnov8bfmEoRkxwTRzkWEKOcqseRkmJSI+/ZrfdJhz9xfC3u48H2iOaGqENVpeodFdLh2Yic3EgIANg0oJf/2AwSoa/ESZSWugydxq2tRgawV8Nc/cXxq575GeumJ5TdZ1sBYZ/LC7JDiBxo1vTjgGet6OTapFqrd29cuBRNII1ejzeOvMdB3NfHNK9w3lktNi684bREEUQDiwMA6l+znSo8Gv9pmsO50dIWviZT3mN7E4wq4cMni7jxiNYfYp5497tMHCqXzpMHP9jZQs7Y6fbyBnVQ269SF6DXr356rkXk5V9gpKH3SVgPfRIDuL6XzS1VnuI7grehK/PSg4ZrCEFwVO9DhZeuL0akNcqDQE9JJBMTLNIe/0/2E+8DQOmZMXhnC7tyV9mRY+YtOgRXtzs93m6KHqEmfT/Ze99m9u4lXzh9/spUDq3ruw85IjUP9uqOrWXluRYdWRZEeUkm2iLAmdAEqvhgAEwkphb97s/hW4Ag+FQMkVyHDlH2bOJRA2B7gam0d3o/nX0+vlJXsczgq8JXMbmN3/unpBPImEpOhh3IQiM29anRoqRkd0uSjCISE0Uixtkwscg0OcnTkN0SZ7f8zn6dzhBfRaJHQWethHxz+Fnj3VQCpKmZ9soQaSfehTFhtktOcb5hZwTSE4YuFguExeLVBpufEwow+zcr47YLJvxNgRgzjkEZ1TlxtcecMlnqrnGSTgoFJwCMIdlFTxPj3JUqaDRgsg8W1wARImBNtNFDjV5tpGTu6FRDXLH+uDkgcvOMy1zyM3xhatbEwn8wrgOldbZw0WM4z/cG2wMZDtsSFIwI2Q0pEKBA1AZ2ki1c/7JFw39R6F2/P4M7jAoVtE+cIVhzw1XtMAHhGa+hgqkjnwqvy+Uy9XGvaEK4/8ReQMXdlRMx5I8jsgnm1v0R85yHJgcX55CHzCRwRZy4c6JFACHXMSX/DC+baBkGHQRkGtpLDMnD2Vrhp9w78LC2pTlXEj3TlukXDIS6LMVdS5w0xEUc6C7bsQAkEte7RvthwsPQO/hEJBiZFz5wdQVGbmoJiFdLNmhclwKtxXHib3pmPXfZop33E0YlPAYr3y2hIcEIIIh4qAlZFElbxGFvUCil1KeJztnFRn+7Wt7Khx/n8U+FYa+Z3MtZOE7t9oqTFV7fqwv/GG1sGv74a4kfDzuEe4e0sFQ9lRcN1LJIFuyfFbYxron9gajQY5tWL84g44+/dYgHy8a5JQNzRPGiZwV6HneT3ncw2GYXlSwL53TXjqnvXROe+mc9tI57aVz2kvntJfOaS+d0xbDO5lpnFa2c4sbyDVGMpy/X3sowwcWvtdYhmuh8xLMWAWXpCLEv300o8ry9x7OcBx9z/GMEg9/m4CG4+obRjR4FotxmGG0XESjQGqhOOrMaWG1VSWaAVEMP+hXohlHn35bWJLLZRsW2YQFxN/8U7ymdpqlTppVCrykXjprzuyNNXbWXJ9ffFigfjy6lq5QAB6E5bEVMGEJkP9mqeDHgRoGCb2F2TAoUgX9baa/YaRYUM/SAioPq/yFHNKM/znrEp4MSCZCIBNIqmYsYUnY38nSlbKBJmw80XMcuXYPcnS7P5YW4qX3n/3D8+gM99L776X330vvv5fefy+9/76X3n8TKZI8XgTve9lAnp3hAYNmhkS1PdN3SDHJaVpvuY0LjNnJbNirbLrX1iNxVMbYLtymEcMbCsi0A2/L2Oplc16iPWX2M3NXKa6MpxhpOmEqmofC5wqt5HXx9l47ow8g+RIF/5nAf8AAgx9EmjIA7sPonPmpSGabgyZQCk4VONJBKfc6hfozDLzYhutOxzTTM+Htue/vWkjzWy04OwtcsnjElIZiCfiuyyqd/fyrXZhsyl9QriQZOtuuKsv3xyzN6nTcmGZ0iLmbsSb5xJ3xi0Ed8F69+q9zfuJVXp+ZF8PD0FIpp8SZJzQsRfYLftvuM03bi2rzOM2Vntv6rJY2e266p5KXy9o6ZV6cOuKM4J2o7RZZheZ6d8ll6IAsJ1y4yJ0UUeE6Fh7GN6YPvpfFvoUCIXoDdccpjauO003eZ020ABY2TQInva6zNJiC0MEA4aZsTBBhW14NhERvpqlZRjNd1XwEcqx1PpljnVvU00V5dprvW73Bbj6rmhD5sFChYaUMU7o5EUkzTuK7hc1Lz0+N/ohr3Lw4L7bSe1EmaqQ9PC3dG48WFpaxmtdGZkwz1SCZGNMEwhOpyJOByLNETqs7rvjK4/w9+Jr5g3zm86+gJoXjuFIAlkmjJ8AyROcpbEnqoYxiMZ7QzEXFhLQZKiWrciarI4RRUr4jxoilEwCYolLSDI2CAU+NUGEc6N3ogoCAIwnOVwYPukCiJ6Pg5ykY6n9BK95yOHP2UFgfOd86qBPuKBeOKxzX0mb1Xma3OGMeb6fy2eHje2zB+ZtzNoaxuHH5XcZ6XwK9Xwn0fsdR3u9bG6w5xPsdx3dfgrsvwd2FKpife2Q3xMmgQxae6OfBR48e5IX19/A5Dtae0jRFFHMsxHWzOvpOdIHjDtpztoU+DuW+VmR2oiIKjhXF/wxHhRxiP7QlBMe0NbHFWNg4XQYJy2TRUJaMR1yzWOeyLuVg16Q0VWV179/u9/bLKAD9nKdJzXG2zY59Z+auGqghQ8VslMVvi+J1drvCfxI0g/IAUUabcU26HztYAZBhQToDlDk3xBw0yMHu4A17+y5J9tv91ru3b/vtbcZarVb/3dt3+/tv99+8abfiZNEXPB6x+EbldZ1hh3b4irAch+CB3DLpWxZUMbLe9ne23yX03dt3O2xnt/XuXfwmeUuTvbj/Ln63W74+CSaviaOjcuUGgKmVtYCn/POEZR6EWYqhpGO410hpNswhmijsllKQvLolWcppP2VbbDDgMS+qz0lR+1/2FFGcPRWL2s7zkyyBpcmGZCTuQoahSYFfUVuNlysmm1Au0iDDVPRpWpELfjyPEbaI55tQPde8uzSKDwDB5tJXllzKY5ap2mygUxzeNl8rYp0hZe5lD/SEMZ2oMRKktmcCyBQtCRwxdN6lGJPu+dGvxE13ypVG8ODAtlCK91NW4OmpSXIPWHp2SLX1uqpnOhMaj5gfeDtq1egHzD0igimKnSPKBnh9febOqR4FMMxu3XhlQ4U923Ilt2Drbx2yNKVyayi22lF7O3o32ycb8NZrC7R/FGNDMkav/GTh1Ya3YMBO5aowSXjRr+bhlhMeY1cYXWY206LnjTFsFuD6Se0o3I4pNZ+uniPb2zvtb+YEuZBy1RaAxETrBzh7M9xi2MtwOmEN16FRj2j5EbyMKq4OIP7gQWEOiJyMGySZ3AwbpC/ZXYNk5oMhGzdIlsPH/0Nl9Z2Xk4VvVuq1xNyClmcJuyJvR+9C479s9x+Tj9DTehnL/xf098i5kNpsfXJ8z+Icf3x1fvzaN+95Vmb14fmX0jREUzlk2od3oQVaxcze313YSiyF12sp6Mig+BKmKWUyYOtMi6ibEKrhKZ4y6IpZDdQAXL8YaHIo5ETIMnTUV9is33r0rCZVM/KJnJ7TsEr6K5yZsWt2nzxrM/7RE9naj3aid/utVtR+s9veW5Q/Pp6MqKqt6WyBhw9OzBhg7xHQ/vzYNijsZI4K0mxCI114jAR0EfMXm/vtEgsGPBsyOZE806TPMwDZhotjQgeaSWjLbsSFvqiQtjlvLBLWDNu8Eovu6dxWha3hRBznUhrrHI1QBAyMR3C3BZD5WlLv9gL1GDH7Kr7+3d1dNOCSsSkDkP1+KoZbeiQZ1U3JsEnn1narvbvVam9pSeMbng2bY5oau6OJwmmaCXk2jEZ6nFYPpFa8/7a1E++yd9vbbfNDEtO9d/s7lCY7+0kyWHR3uH56PXgN6i5NM4JcRYN1zzsnZ5fR8a/Hi/JXb1KjZ2peZuMTmdvw+vnqvnPsTlv4efYCbuNx7gPeY1cp7AyA4KPHr5wXivy5KeZfGJvX2V8aQ4NSgP+3KG+l8bCbjhuO8GQr2IpBt2jf6xFuGa/d9BOeXBMx0CwjStOpcjFmnIpwrVg6IDTzq2u4mnBUM+ZB9LtdUwK4vEJyizjxYvbMsK6K4M2OlHRqQdlBSFQOAVFUNQzTUvs4O2QO9ZVIc81cP/BCFY4YYd5wC1TZJzo1yhdv9FEyEymM1QSF11zz21J599waKvDz+jzbUmq00SAbzdT8O1dMmv+2W5H5v/b+bBGVkVsPgBue5gDNRBZYNtT+KHJ7w4wNKQvT+S06i0PH1UE58Fbb48JwbH7r5/EN04RmNJ0qrojIyEjc+SHHxjzza0LujH/sX34tcI2CV4Z8glPDf2GM8g8amHIbXkKDQeVqwmMucuW7UlWX4Alma8J6ig8zCnHmhA+Z0j2aDoXkelRXzBNyWezBRvxk/sA39JTWbmbBitan2PpsmHM1Ip4L292B+h7HtlLQF7FBs3g/pKuINiobnpQA0GxVUdH5DWVTkFuVuhrR7b39JUXP7rn6Kop5X4iU0WyeTN/jn8Jez3xAaCGWsPFA5ZXVMmebS1JufuLZsMZmS2a7BFG9RfcJV/5R1yEJlWKAYDqmWT6g4BJiiWgR+MFs9LCHJiva+UqWslvbYqUzMbvqh89dQJ+o7otYjCMzJ4vuJ3EEOfPLilpTndd3tHztdidmUuM1BCNIynyROw2aCmx5EcvpRIuhpJMRj7FrvyrOqHDUW5ryJMRxMu65zJV28xlT+5aRPCuAb21XYPfV4isuybcY3w97RxXJM7jaYcmcXocXF58vel/OLi++dC+Pj3oXnz9fLrtkOcCv1AXT08XhSxYnZNygKlur8z/DmWZ0XPNLb6ZY55sP48F1GtSDwK1icVWNxntUvOjFEfy0F/74p4+//vb209vOz8uK1pxQmo4nCwj3ocueI/M+0SzB627f8MhvDjwUzIuAF/HaNibH07J6RGy3ttvNlvnfZXv7oN062Gn9tuyRAe/nQldZj5x4m10tzGmPDRIKHTHnvTfuPJ8BJuMJ+lLF1x/6nrPJjN8GBwdLEOpIj3hhR5TSVwCGqATPbcwMIVLXbcuYbiyd4u0yGiCo4Krm9CpnMyjFFcU837KAvGE+5JqmZRsDr6rNZhpSnildcjkgfjPFZnCZLkdQqmqdltbiKzr7qXIaj2mW9FK+EEbKHU+TmHoVtpa0vLKUP+Rp6qgihircKOAuGE1WKLvZXEvn4/lJra834+PhlqVpWjgbgfyhFrDihazgBYYuIGlCg0tJvOe36DKxdBB9g9uBTzQeGZGXbgisOjg+/fDA7cDb/ebiFwSGk/5Us56QSW11q++nxjJjf+RwmykGDxN/yrVOGTnOEk4XNgAMD/Ek79V4LXh4/qVU/fogAyeZ9pHdxQiXDLZqLzgwlzlXj++1xLoXzKRw2QO+h6Uhd1MV12AuP8Q6poVRoUGl9XOeakyUhrBgEkGWHM08LuaA3uABYkPD2KJBFD0iFuKf3UNMfgHOBynVmmUsmcf+qS0mxuFYQhhiymFtHB6LUF78FNpGcBsZ0X7dlaI/l29ezO7qBN7gezyeCvy0V533J6+XYQUQD2tiAu9uEVTxoffkKbSaXVoTqUdUU4J3wwGhdt4lSGWZltMQ/XhtKRJWqMUE65AsQm/WnZW50bpvb4DD7a5xPNGFPfkkslWP9nlN5H79fXOSP+VZfk8+d5eRfI1HlN0pj51ST6H0myu8Jd4+e5+7rrMDh1vT2eEaSC5AXMYCr7PSgAsuB9w1l60lwBcYYdFoPPKN2irrHsQfmFko6+cVRRU29GqvpACg1gyNuBsOqaM/JSrvN2c6zUKKZMaMVX8dchz9cP2019t/MR7x7eUUaAl2ZSaRmTfVH7mNpPRpn6dcTyFEL3k/D8Vm6VhqmeEIEJNFMm2eRH53RLNMZMQOT2KaxrYXbmHarUT4IKW1XQuajdi1exPeMphsOTprvP2vkBnWBT6NSoe03xODgWJ13exXCMbZViR5+RRPSNxciFDfiSAslHkavTWeoRVyzVDLUXnLpc5p2rN4p+u2CyuU2vkcvupqRNeR7PsgxUvshCGEg77R0QqT/dVHK3K8xNFqv/gEc2TZF8dKzgnMb6ql6K35JZ+h9emv+YhKlvRS3peQ+FcTqc4yxemInw6vkSBFgKuAoSfxoFk6qDH30g1P1HTcFzZF0bxWT/dKspWqi1yPjiBWTeDr8y6T2vvN1l5ze+ey9fagtXewsxu93dtZ/EIJ0UtqvH58GAlk3p0jm2mugFoMbyKhfS3ciPQDuBWsesNm4CoE4vOjigG5AxDnUl02FNxAXyNHSLO4v/vy5eSoQbpTNRaZS/IjP345OVJFvTb033XJujBzDqymU39Xir3KfLNWuCatcn0oMqVlHsMtGrW5c+nUDhdKDlCpYzE2VE0kjTWPobRvzDUfhtfy5ydHRLJcATz+HUtTKNcNLnGpk2bsd5gAREM+Zg1CYymUmgWZIa6tiJGeUHrOHVu8He/u7SXvBu/e7bzZW7g0tLhcWd8u/MaID52ZBMHyyxskCM5ILLzemZEJn9dc72kpfJdwc8U13laXM/mKNlywrTSTY9cEEdDEonkt2wtjgfbRVoAxPVpmMZl7yy0yGVQXhhm05h+4lJtTEtjeebPo1jEvYDRO9mpSX5+O9nCK6qRq5LEO1z1r92On/ci0RXJcDRNv7+0/MvVee5F4x5JT77W3H5xaJYwtksWx1NTdo+Pj82DqBfbddw1Ps+mONAwb+O93xZhBygyJbek81pLbrChJFB/zdF5B36z2mlBpVMhLAvfTErgXqcAoJPuS4v0tU7yt4F8yvf+yTO/5K/AdJXzPZ+Al77u+vO8HJP6S/v3s078fWLm/Txb4fAZfksHXlwz+gIT/bjnhD7D5khpeU2r4fHm/ZIh/TVwvieLfQaK4Xa2/T754wND3njYesPJdZo+H9P8bJ5EHYniuueQBiX+TlPIqR88+s7xK8nNPMK9S/D3kmVep/p7SzedQ/51mnVc5eebJ51WCn3sOekDxc01FD0h8yUhfVmLfW2L6PBa+p/z0efQ/4zT1eeQ+22z1ecR+H0nrj1L+fHPX55H9bFPY5xH7vWSyP0b7801oL1H9kte+nMS+h/T2eWQ/4yz3kNzvPNk9YOW7yXl3NH8/qe+e4pcM+JcM+L84A97txeeaCF9PrvtTBPOSDb+4tL5pUvwTyfp2afNPJ+wbJtY/nbhvmHr/VOKeW3K+Je4Z5uh/ozT8xWU0Yd/inr/urjEFM/8m/WMKhv++nWQKHv/uPWUKTl+6y7x0l1lkn/zt+8x4Tv8dO85U5TBcKDzxpGjwSeFVW36hGUtQUWcTf51n12dmfONFP9UQm8xSX0nWf1oXRt/WprIGu9u7208lrkLdOvpEQgGUldwmmcwntf1EUsFDXIDWJ4XXbMJrfQE20KVJtH4pX8LA5ORoHdvAUlmjKrXkhpefnmCcvdl6KtFcP+9QkXdxgNKZIIrZgfB5A6OH6PP40kKq/B4FmZHDIA3TVxke+CEHQetzSvpS3CkmiWIaFC/XlggXsLpjfexcC4ZFptMpEROWBQnvi65CPjGUP213l31cFossKWvbETUal2Ukn1R2S3tn+6m25Z2Qxm7pJVyyWAu5Rg9p/bvGbA5LMPEEz1YpzwplayTGbIumPGYLy+bv4fz++3i9f2t399/Az31xcMmLg/v4Bvnbe7b/9i7tc/RlPXHf3lP1U//Vfqgj5Dl5md6O/At9yBkanoOH6El6hv7fIyrg7+McOqn8da6fo+C5O3aLb4c1eH2OOsmGXGkrC9ur+yL87OFm3R+AXYLNtcHws6eeH8DsBPRbLDnI/uOtrKH4NMzcXrvp+9kVkcEs5E5yrZltBd6niu3vEpbFIjFWXPGqfRDSMyirDDaIyuORedu6TP9s7M3jeyjquWDDn3Imp/azRhmoAdp9qwnubFGkqkGhHqavXaeTnvnsOvLoImJirdt+rp2NEqBOMe3M7FsmXfUJoGoUmb4e08C87xfHP/ben5x1Lv4LOWeJM5krBuxvP73PO4etzs8/vb/sdDod+B3/+eeihg0sMZ40X4OjmkE3KC/kIUI2YEWzWUbzQuC4rpbKC+XcM0wVoS6Ret43Qf52LdxCR7D8imfDIMXNPu83A0xJXhlhdn9rgFCPfz3vnB31ur+9xnUPE6E8DVwX3pTImB3XTmlr5CEj0E4IG9WM/unL6eUJzAVju+HSlPQLKm+p5FCtmgKEHQ6b5WMmeQy8FjvXjHn0y+eLI9y4xz/2fjK/lUgPdlmwiTy2UsJiPqYpkczmkqOT94pFQ3K90d64npO2tfn7xuHBldT0SrKkp/Xkqs+zq/GUTiYRu2dPgPyDjVXNvF4P4pGmWUJlUl5vPC6ttnAYImqWQ9wSi3Ix4rd1MNDp9yW75bBe4Om4sJqZr3JcfPzX6adFCb5h0xro/chvWRNOF35rMyjFAMoWKsR2P3+4/KVzcXxVeGFOVZ9dXh2iZWKLQq9OxsZc+cBTRo4hBdNs0M8wqbq645kh1Oy7hd00qkc1sA+oK2bsEFTFLFXDDAdvKOjoeQt3tbJA/Gs+RzBXR6yfD4dB1eBXJBTSuU4RnQX+OgI32rO8skEWo7gwikCrlW2i4qOHTaLNAPtTMW2O6jGzqF0DGpuDmGpGJvxWYAa3FHmWEEomnAEOiqPP6DF3dgH+DTwAh0CIlGcDb8qYwAANlU3JJKXmSZ6ZE+b4sGuzcsllSIIdGkNahhKrC8YNojRExdzpJAYAzANToE1gz0YuA+Ol8BktbmFGrq0Uo2vPSccoyFgy7TPvjYROzl09GFMupuciilnCJCSQN4joKyZvmWy4NP5iR2ibgNwgccpZphvEPWrekoxpYyxHAyHvqExY0uOTiJwMyFTkhE4mzGIPnZw7va1FQT2fXDfgSUOSNuYCCg0kRsmQ37LMsKAlv+U0TacNkglj4RsT7G7E/DbnGiajELnsTwsk2GCqg/a77agVbUftPVc1tYjJXGOcuJOmeEZQNWIKt4HIjECk21jWskLMJ7f9GyArr0Vyhc4joOcV8rOjGtGOWDox20ZxndtoL0jPTLUpzVZQgBQ3omX0LojvFjivXJFXiIbGJBsI+IbZUEZlwqHnCVgcEQUKGGqUrxkfQQB8LNx8FFRzzBf8Mb5DXhzh83hkMPLhp6Mz1SCJGFOeIdRAA3xHZS0z+5HZzCmn6gn4A3yRRGb/UIVrq7dPzucyV44dqNqAqNz+BgywmUWAz+Ytgq9P+Iqs/HmS21Vyh4n7/ZGTxDxjX3YoPXKXKw7uDuI7ti4Hy4WyqdeRRDh50aFxkAwBttjTFS4RmjKpA24zgaA2wFjhOdlNBlMERVR2NLx7cX4AukwB4XYXHjgd7IhKxlzBnZoxmKVIzaGlzbGmGu5RQxi8BSdH3a2T827xhwGX7I6mqdnIrO+GDNBWggdymVqkONUgLEsQ/yZh2hb3GlWBR5hi5NXx0cVroiBI74u3mI6foIlprkeirr1qzB3zpg5pxv+0B56QZKJYnohsOnavFBIBrzT8ZDSpQPQtlpSUJ6yV21l+Z4AWL+3v0FXraiqbp0ImT/DLYqrZcK0Rt/JL7CawYrHGoB0qKDJltouPPY+cCLxMzJlUbA5XTzhfFB2t2XhinKmTwCI7ZfRmYW+19hv6S/DIK5fzsOx2uZ0c5jP5PhXxDZHsj5wpDZbfJO+nPCZHZ12sAvx4eXneJVvk8rQLOIwiFqla+Aipq5S0gzyeHKGa4spVSN5xPcLqdqJigZBGxtYdgtnobcwiHuPU49yN86QN024tnMWY8phlqq7Lk9BtsjNZSxttpcc1gxcNVugZF4cmjNBbytO5xYydCY1HjGxHC+fs1XpxxErXvMAnhPYcXOxi78Xp58N/9Y7Ouj3zEvQuT7uL8iYZXLjEdTG4eeEmIF8uTs3q0a+hrIdr7Vd37mng/2rEaIY3ljueqTZgitDWm5uKJCLOi9rs8mzgfpk3c3Oz2E+Z0MUuahhnIUSTpCTl2Q3wg3kbSGCKl08ogr7zQYpDzqKWgbFTjTy6xA+WRXf8hk9Ywmkk5HDL/La11PIaS6s2nJ2zmZ2rmG6QiUh5PG2gZYIWAV5mu1PXuFXwZj/p7Mfy3jEb9wvYtCLgZoOhvXOr8nsf0MpaVE55/kx0P8RphPRpEF5GcCSo4kxAJyk4DBC/4uvHQVlhVo+FdquF/7+o7OrNe7uEtxhT3raIZLdczZoOfWa4hr0DURDbtabKWvQVnnwiBUg4dJG6xSePOEkd+5xZZAdPQ5W9uYHAlPlbRqh3HmKRZXZ5Bt5QR5eHSDakEsKsioF7ohrB87j+fY4XrqhPB6m4g3s2mRQe0wchyeXhuR21YWHSHJlIW8z4bZGCwzOuOU1J97/OyITGN0y/Ug4d0g5qBixowUsc3Ive6JqdySrIdFqRx38UWsDJBTLtqB0cIo7WDyI01jliTChmuxjIMdnw420Y/QGnWjCsoyKbIVxhewP7Z+slWuVttLimPFXFYWFHRFIApz4bugUupgj5sKGRbmkC9J+BCztiAOkOTuj/5BluCrjIwiii/fa8wQrRZkJXhhyACjbLiOmMsy71IQ6/5Vgo35VhOIwmCVFsTDPNY7xWuoczlmaE3WOuY6Ok1LmCENogT81jt9ywy/9kxY2yYZRJTUsxNhcHlX6OgXGc3ZgZqlB3kGAg1F5hKs3TlDAMyyGOFEQGwKcOgrIgsAFPU6+b6GQixURyqplvX7GQc70wStlShhPsejz67ML4sHQJ/4qO+3yYi1ylU9zN8B2v5eH+VfnC9JQrbVbt5LxBqIvDQeg4z/g9UcLsk4iQ/yokS9M7OlUYiC8f2fTO0eT2/XVkP7hGkZVttMxYUcWVc5K7lhEQ4o745NqQch0hWdcNkrAJg2g+EdZmICILIozmOJ1J7KEqKmFILpPbY4F/cBxC01R4Km1AQ2RiLHJlVQHKvfjYE2g1hR3oVad79roCtQPZyDQeFZEmFCWmg7I5J/Ree//dLM9hGOY54icsnk30OeBkfkbdj0IMU0ZOTw9LUpiTpLNIEuiDqIzvIR0H4GECfFF4E+1GQMVcXaC3u+XACmznr1C2VA4AUoPjl2PUQyaimOtpXQ2XDrmezl+dTyLTktG0So7INM9YNg8PaC00Xd6JZorJRoDd4w8ylwsBs2+q+XSfdRY1eMvM1CTgs1InKztZlWgh9Yh0IHuGziEyz7Sc9rgSdcn8EKcgJ93PIPQKhYedB8mqa2takuau8iHNaFKVFGj4ihNTIWfIRC8ExS+jCopsyHWeoMmRUg2/VGPW/5dspCLbOCDNNzvRfnv37U6rQTZSqjcOyO5etNfae9d+S/7fZoXIGuNQm18Uk01nUszEaClx4mkQilETNCTFgAwlzfKUyrBnnR6xKYkBoM5YziW8OHv063Lci0s0CmOW4d0IlDykAlPD+kwWKF/OOi8OWSQvLUBzMTbaILHTUWHi3ZkAeErzIDoRYHObs3sMZ/yQCcdtNUDTF0qLrJnElbWZCKVpWtdbtnkOw6Nao0qJmJfz3DzJpTZeuTEVC+vWZlX4lJAxnfp41k0m7jLIRSSGFQRak+S3k3MS8ERga4NJeUvllNzxxFgycDzatxouBfHHqvze7bZ2Fw67GrFKNuQiq1OBXcAMj+mv5k+HD9FVkwazNM1VYD/lrM+q+89Y93+K2Q5d6zlWXVmIGd8H6r1GcNmaJ52zTvDcXOLtQbXVkUM4lunW+5xlQvU6XLLFr2kmX+Fy/i1/kdhToN2D/fTq5Px21+z2k/Pb/ddlO2pM4zre50+dw/nEzAS1M2ED1mit4pt28eGQvGntbgOyaD4cAkLzATk2ToSINdPklQ01NsjbZp8XNrixdV9j/0ZrGtmryDtBfs8nEyZjqth/kxG7py51FjrYKTLkty62GObPEUc+TozJzHlm+xDzTLMhkxHp5nHMlOK39kF0YRWbUOk6AFI/4mg6GbE52rfVarZazb1j+PdOc3untFIZ1dEKOSCbl5JmygZhoAAtDBr0qTkozjqXPhZnsSC59dKKw0+QieS3Rt0effrtdbCc5UMHVHcqaEL6NKVZDMdekCogJJEiN6fhjINr+JyIhQq9nlRQFQoAymqfrwgwmvUEX2+mtg6+vZRnN1P5V1mGFasOrdhDdUDIbHUMkyzpzfMp19y0nA9HTOlgUicjnLsBjEwmLPEk533nivol/1CUbzWCEgYYzkafjFWyMRAiss9FsRhvGCW1EX7wcGd0jNQC7itALrKYK2OV2LbmEPFK+Y0ta8R8AZUPBvzejwjPvBppPTnY2sJH8IlIyOHriFxiaqQWaE7d87G/nOpPieLjSTolmt4U64oRspQqDco1pX2WKrScMqEh5Q3RjQ33l6dHyp+jG7GI8puNqvoLpFHaFV7sde4GPwlseu8YDHLzNv+R0xThrYPEPpdtFRjqRZodprax+5hN0KGA3Cr4Gl79l7eK3e4RISeZsVCp1DwIn5MKBaA8bAtW8//27zYjy3sv4GbkqS0lj2lWxM9JeV81AgnYdgeqylCfpeJu/jaf/06U35tQtht3d3cRo0pH46kdATcGvhlU6Y2iQ/uJbTaLo4xoAYCNvGK5jpumsNk2VN7fjlTeb5devkZpExfklcCTrRSCMTYa+M5lgmhJeWpemQmTXMxpRWsYWNTe02LSAza+gdZjgwGD/sNmVrtRLPev2OXp0esGukzeXyrk7oWGqqPhrtdACZgt6/ZK8JJEVQU5O68fNqiENasE++D71oygFR9SisVKLKYe4fPSvskVk1G9WyaM0hWlrz6DN8hZIGLw0LFIM3J61Dk3KquDHB/5ocK9slnljo0pT2ti7ovhACYoN8gpEWC055rBPr7xfYNhc1MVxwCEmh5JH0v7TGpyzDOlmd1YJYnApeFftu0wb6T2fYdM1pYz83DnDZsXY9Nm4Hpty2Vrz9meSGeNgdNwJXCyKhF14iZZSYG2gdoTCL9JrOEpJdhhgRCqpYzQTGTTMf8zyMBGEfpfvyg2yFPzMlwDFzzB21n4xXB37U2AWGQDXKvZpL4smWNVGedv3qb6KoTLeraSXS2Ycvbt7jbbzb3mdru53dre3d59195+8/ZNc3v/3fbu9rvd1m5ze2ev/W5v/83b/Wa71WpVmVhfSPAb68HuyHifmUWqT8WQZ4+KikbsQR0oRVobXkLH1QHCVoaZ3K0ERB8tzQ8WDNzwPs1ojyZjnm00yIZkYHVnw54Z8KtVBGGOmEMsDJLE3EePFmUy9+1KypEO/4ZFExChKDKhg1bSd1SRWKQpiwGgx356CZ3S7MBQxjYVORnwLMHX0SuHVAyV1Qq+o46bG8p5Mevu+WTEdGzAFAvx4MLIpWZx5UkvSQWkN2sgB6AH5MvFSVHK4yKyr/jkdvcAg2CS/M4nt/v/Db++xlQZyTC3yA8L1eCvMHlGzesE82Y72t6PWtH2wd7uzsIItyy75VJkY7ZQF+6lZHpSJKFgPYqf0Yo53JFcEZlnWRmIxPqeAO7jHpR5BilBHs8nHFiRVxbhDO8PNB3ybNggP3UagdK6ZamYjKEMguk4et2o0Gc8HN8VCpMPjUKiDp7CUVX4ZUhdADmE1oT9HJseB5VbKogOGu6CyatLXLC08OpORmzMJE1rbGF27OaoHIDBG/OKDwDog91zZbbvzOvCE5KZEz1NpxbWULk2W5IBPJjCHmbXTsDGVEgEU8arq0rqLd0d7LVag5Iwajn753Rw83nDsI2LLXEymN3psRhPJFeBgSQGWNKeiYTZO+oSy4Ve8VsG1Cu4twlTcwRrv1JpvxYSY3F2xvSGKcI1mQileB8hr7w2Lxx2o9XNRh4zLXmMGh5gXGZ0fLkw3BwvEFaL85RKoNcPycZcQ/pbcaz6v50JbdMtOVawZwwT5RRjxRfsm1QiAyJ+oiT24v0PEjuxXhJNfqrJtfmetT+NOQq/GumDMULnhJqSnTdsj/UHrEXZfrz77s120mfvBq32m13a3t950++/3d59M9gv7ceabnZLnpvbbJgP++ipVa4SCnapfzPBGoLyf7tfaJqKO1x+3+k72Mxe6YFUZQ6VxD5qCDXmZV8Co5ouS9npWbgVKt6QzAdDwxMCP42pAg6OU6o0j23dfektcm5FGF/E65hcaZ/SSYLQ2XtGtZo3CAagrBKG3oMTj0nmHzULeV04QIgVMTAvBkawg86Nc0KYIR9N+7qVN5FIWK1ZO243Ub8lYMoZPRPsBH0nUBeFB2R4bGc22db/DV7ToBArROmDJBRIfkVwg0awCI51rxaLpJu+6zfpB7XHiafMAVm40RbbSzMqOSChuqNmCDDP4poHVTnljWr3YGRIMNOrOQaSOfSyzc3C+QKEYJvCB3cdwJyfrTFz9yGkI9KW/4dYxoW/J+CN5tkw52rkV614KeGVNucFySelo96ec0IZUknollvUNiuXDKxguN31KqFqW83dNYWCcbvnNWmiVvAytkyNaYalHIrNMRPcfM2W/add1tAqAI5Za/ogohHh+DO8loM7NSF7gYPoKgWffE7AF2cQsNHMneP9lewEf0IHbqzjJJjk2C3QyQAHEdKPQSWboW72DX1A9d45y+m6pFWvv6J1S8sxtw5tPSvycxlz3S2IL2b5us9pdbAWJBXihlBzJCF+BdNEZOl01hMPYN69dq9KYyfajnbDqEThl7qgRPHJIzEJfMpFDRyoR6UAiigGt7OoxVyNky0A2sK0jGheHMJsjKAiyWwMWi6SatisjrCsEYpfiubyfmmQqhIRYcFYgVQVMhVUXX2l3irMerFFVwVPD5UVBbPEIlM8gbtfIzNjIqU8YyHkJdbU/Ic/UrEgCW4esjLf6qEJnRjKwnR7PayfOwkiYuj3+rGdZxTTEJDBFpwBvUXhI8FgG0IpzX/OScFzicmlXtzPJ5YUVldZ+b5UV71UV71UV/2l1VX4Jjrg4ULZ/YUlVkjSS4nVS4nVS4nVS4nVS4nVS4nVS4nVS4nVS4nVoiVWaD89kxIrIOalxOrZlFjZ3fGV0iKjlSHSUBx/wlcdzS0vChB+iJYUYmnZ8NmXWz0ojmhFeTzDcqvFXb1vWHNl9QN5TjVXoQP6UnP1UnP1UnP1UnP1UnP1UnP1UnP1UnO1NiJeaq5eaq5eaq5eaq5eaq5eaq7m0PlMaq6glTZK2WY3XRafPJzdtGFbA5vXNKVK8cHUpaVDxQd2HqJxLBBuG0D9cS6i6b3IxHh6ZSm88kaRYfjTyeXFMelcXv7vw39Bc/2BpGMG7d2uskoClNEGht8SJcXAlg7M5/FeDpe+xRHGgE6Oug1y9uOHX2xhjMtYpSQW47HR0pbkqBga4svAUKRprHkc/QAU+W6AYRunER+OrDXsIfuFc+vMGMW4SNHVBh9PaKyvNl5HpalYPAJNEP0QiqEyKaSeFIPe8AzCG2Dc0ngEkPm+Zw7cT2lMtMN5GrBgcSzGk5QrvKwZCpoidcW4VxtBx6XMqE3joGFmnSF94z/IgrlJLJM8Ho2D1qqPvXAZBI/nvlZo6hteiwsnniXGZxZSEdH/HxZrZecrtQCBXoIl694hZgtsZeGH5CLbKgheuJ1awGPkSVqAW6R5Href4S9BPt8DXM/hdjWqo3+nrKVVhPTc05xWy2RaWjLO1KqtSc5GUYV51dMjdtUrprzqYfefq545L4YZS656/al9zGbty6velRcg9AC56nUvT34NxyEqpilTETm+n6D2xPapB1cZIT/AnX3X1bo0yJnIWKMY84qcirsG+cQSno8b5CMfjvBrrWa7hT91kjGXFFq7d81M5FW7uf8a/3Z0duI+3Gu+23t9lYVDkx/IL8fn7oGTsa9va5JD7BDwemN2aQ0Fqy1q/d3OjlwaBR6drvUPJhrHIkvyWBed4OyZOcvoyTm5j+D/IMncdn9JSMJSfsuk05KdbJgySY7/taKmhNBDVG/ubVBy7M0sT4G93iyFQMgrDo19MTTld44YEN/85HVFcJMRV6P/Mxu/X1owA56yiMINK1vEA0+K4pSy83gK1xPGaIZAOE+xYt0NPbe0ElpRpdA6krk+KDeMTYiWNL7BXWW+DuNGC7dBfIxTbQsG6yvmdy4FiKCYLxBAx39oQ/1FVkx/6nt0RuQjk2xzU0FhVdZk9yOaKwitOOsKNV1gLRnzSDLCnCqE/GqXtHNAoAv1LWtgDTCsS6OI+TQIy2I5nWiWFEF7Bp3KWYOMeJKwrEEkown+25xiDXvsN6Al+JxCjs3fN9yzxkHCp5/Q0vKRtYxFwnq+oVyU8CFTuud7FNe1wJe2GzIYer4hsitJMvRgCFyKGMKcXpQzAfWw1M1zAcV3xueB3cMVsdkQ/goG8vGLAMg0KHY0T0ooWLcx+QKlAGVTkFtdJzWi23v7618VrL3/ShCjL0TKaDZP3O/xT6FbxaFyyDcS5IrYhJSqh65lzmrYauYn4+TXh29gNlkQZlp0dzmPUotyxX3YtndMs3xAY8MIJs8QJQb6zugN7CoYBWMyVzysiGQpu7Uebmdi9uIPn7tQ4jXv/mQcmTlZdD+Jo4kU99MaVkFTndcJyvJ4O8eYSVthxAiSMn81BjneQaViOIRscqNixVDSyYjHhEkJnYNdNmY46i1NeRJmxwpJtMyVdvORU0ZvGcmzoO5r4PKs4KvFV1w+eDG+H9ac03kWj1h8M68e/Pji4vNF78vZ5cWX7uXxUe/i8+fLGlYzBze6rrzILg5fghuATFVUm7M8f+KxFOa9IIdCToSkTwJAWZhpzei4Zi1iplinKoHxhLS6wpZxOgViwWKiQnP4QZ+oQY5/+vjrb28/ve38XIPUzRmq6XiRjL+H7N0j6O2eJWjy3vnKQbel8Gwyb5br+YkwVXieV0+q7dZ2u9ky/7tsbx+0Wwc7rd9qOLlAFyxk6D9yJm92tZDO/Qv00RwdQ+JROV/lZ6OYira/D+km/B6kmfcZwRAoxKUaKPSw32cpkwRKjsPSTLCRhEgtegAFXwsQf1h8g9YTKtOq6VqT9QC6ecUVmG8W4RXukGualg0k41FDRhMdUp6pICo1YqTPM+N6QJy1hIEz93ShpWX6ytGxPhGWuuov5aB+MBY1jGPOcfAoF/VJoYgVt2jp+2vhzIy0Zse78DotiAHFEhkoZ5/vijsALBv2hWHsjkD3NJ8YCsj12Ex1bbF4uHkvmSLXwEUAe2C+0WeEJv8D+sZdqoGjYh5tEMWz2A8HSQZZQbfPpzMSWoeUExZAP6w/IGZRE7ANcpAGHLJR8bgSug7GnPdeF28+i6NAhXG+qb0qiMiJr8+2eZqoiWQY1cLqyob1b4vKoopctkZizLZoWqzXSvIxRPRw8lVFNPf1O5IQkWEWb+xBGV0WxVNc4THl7KHCvs/ILzxLxJ2aqeXAqEFRA+/rLfA4NDorlHws0nklaCteF4A8WTqIIIykGbiQNW27TzQeAbREMJV7m45PP8x/o+7f7jf3d9fEZH+qWU/IZPVt8wCL76fGcWR/5HCLIQYP83XKtU4ZOc4STtfhhBj24kneq+L8rI25w/MvJaifB3k7yTRL18WTPZx7SQVB6UlH6vG9lhTip6Cs/L2NL/IwM24qf7BG5ASJseG7wufRYCD1c55qxMAaT3hqNWbswDr7jAzoDVqqY5qCIwWsCKlWvPbwomH3EyEXutUfpFRrls2/2D+1gWccjiWEpQwwSzGODab5dMLWRvaI0YTJiPZ5r95u/DNASGa7doKY2Xs0keGaekBjRl513p+8XjOXkDlTE38fYQpMznnonVwTGwGQ89qNEWPFamrexYAHO+96uWCZltOwXn9tBXJ2KYoJal4PTFyp+f3Z3GjdtzcstDcf8oymnh+1Fgs+5Ej1aJ/XxMnXX3u3Xqc8y+/J5+6a16vGU9luvccO5jUx8c219XqVAB+v9bjE4eo/LpWtDV6A7oeT9zY7GaFwiR1mtGU2AQ7LaWg8Inay6kYqeS43bGojb4X3Yq/rLPqXYj4fMAQo60+JyvtNzKzyQ0JBX8aoHpHrkOPoh+u1aRk/Zjzi28tp/1JWXtkwHvGm+iO3wfI+7XNILfJIxiU0xjgsHF4bW+bkEZNFAgZP4qw7olkmMmKHJzFN4zy19QJFN8p6eBqkdFiX7WR2dtdudnijYbK1s1BjYUmFgzCtcG0MOBCdnhgMFKurs0OFF5ytPm4U/3ORdXkKRlyFB48/ZCZbOys1WhQVThBUd80M3HKpc5r2Fs/fe5JFXmHCzlcuVayBn+W31hLMrHdrDVevEljc0IDJ/mpDAzler6Fhx3yC3bbsS2qF6mTpt+K6WalZ18ywsVZtM6KSJb2U9yWVvLYEUecT4HTET1cuBSp4XRd7mqWDGotH3fBETcd9kWL9qHmF1+pgGmrrjGLAHbGfpUHYfZzmiUtWSBmFnxMxv1OMzwKByx/INCrBZ/iBFXnlErg1ldHwz9cNuBHyY3pUA8Ct9/rMXvUn5NXG8M+NBtz7bOAIG3O6c02CE2J5oQ+EvFlzVf7MMWD2yQ1cARc5d9gFbQaukAa38v718EL7nGFIphF0MvND+7QnuMqfnagyuh/UzkI69mYdUa3NslJtNoRdI5jG1ZXDkBZ+BS/oivn8wOYbChJcIEW2zMfZ5YduAzUB3IzTVAxFDrfzNCOdFNCyNMOAaFdLRsfkVeeo+9qlxzC35H5UBOXHR7F8211R/k+utPHWUpaQ/3XUuexE5DeRseikSBrDtlFjuLUstezoT92NJWQOQNq+TRtQJBF3WSpo4pDxS5VepJORzlEXLswdnlchdXtvLuT4gFwfHlxNqB5daXFlaAbnxb9LB0qMWc9v0muUwPXMp35kez+PF6qhueCSXMh18a2IXFcndI1f/JDBN837ElJR+dLsw8UDkDNX7I48TaH7XsM+aH6+bmBiRXjVCxsvQFYIXv9wEQOXfXlNMKwtU/Fc8jGVU4vIcHJEXv14cvT60fSJzXar1V6HJVaUxNbNV5h7OpendSU9mMM3Gid7NXH16WgPzvd1HOkwjhrRdk20dj922msntqiUqIHc7b39tRO8114kkLkkwXvt7TUTrBLG6nolu92j4+PztRHMswq28PoKCrMKFH2RWlRYmrYuu6Igt/f2d97urENFjvmY1Zkt8unk0zHeSrk0sjDj3OLXBoqTCOlMGTEohdlsmTAZaT1RB1tbd3d3EacZjYQcbmGhMXC4NWYJp024fQl/ju5Hepz+ftLxkP7GGBnwmNMU72r+u2GzvFxaSER+MXb/GFNEaQb2IDDDlSu86VtANj/mWChd9EQKWXeYNutYtvq25icA+R6U9qOINU2L7Tof9XSztb/bWsueXDFvdk7arM93NU6bSLA94hpI/UaQUXYdQo81cGWNi+NKl3zSaGV5nFu6HtdR3GW1pc+Bqw4TbIJ3J+dCJazLojLm9/oYWT9oxAfnL4QJ3I2Z3eDDEnMydkuhhyTIaX1axu7WejfQhH2LZNPD8y/lRFNN5ZBp78/PTzZdS6bpBEr4JzSrK3/7xCNr4zQVJ6ThWmRCkr7NUGxiecQMy3UVxU3YN0Ct8IKY6VCyhBzOadjGZSW+zX9rTs3yjN+Ws2aeyPR+tBO922+1ovab3fbeerjn40mdeIYdjEJbfm1ODwAWkvNjfKtJJyOWCtJsAtAzPEYCuoj5y0zn0QHPhkxOJM801k8BstGtUZQDzSSRDIVp2w+6zo+xSFgT+Cz0raSZ8vXFCjvrijjOpWRJw7avwzaiWKNjLU1JfQgTqEcsiHL1lrRmKdUlg3jAJWNT0Dxb/VQMtxCspGnsNqMHt7Zb7d2tVnsL4nk8GzZtWnIThdO08AeRsZXn9FqI99+2duJd9m57u21+SGK6925/h9JkZz9JBuvZOy7NsAevUI0mln9/VtGc3fPOydlldPzr8Xq4t4W2dbNsp1mF9Q1/agCQoI0Ww8+fJwwxoEgXYUHWIJunX6nPuQEygxg9AZ5lKTIfVO2gXYTRWTMoFLFtmF/nAEq393fersNeQMuk99zN0Us0oMAgNVaUmo5Tnt2s5bq5xjgELD44469wlydcAvq/pb+KxmQeWwNPeW2R9UsHH35yRF59gaC6JIrFueR6GuICvOrORNzRuaop7i6V7inGFrF5HnLgL/GmbbYKn2eapSkfIjac65QsofmIzcJVfDjSZRB5rgqorrnF+a1mu91s7V223xxs7x3svolarZUL9J9Jo83V6P+7dOZchMWa1mnZfp0rcvVsGnyuhY+63qEFO4KuxMOzbSG6Eld15oy89Bx9es/RlRbzpUnp2puUPizs59S6dB2M1KSbF+x1uhIH/07NUedLYYXGmIsg4gatVUtwuEQM/Ev5CBxuO9qOdqIVXeuUflN3BDI7n503MqbyhmfDSKd1pV5sXEo6GPCYnBqWybkUWsQihVRoY81bClRELlgsxmOY1QY2CZXsoIqv/fHk8hixuH+8OD4+s5Ddn94fX+CPF8dHFYztX0Zcr+i0u9vhHl0kBLeuLeNmDQEpvTz82fftd87T28g+UUtgI1nXWWAJLbG7u7MiixaQvqY347JsXxbsbyoXaa0uZyr/7OUyHdF8RQ0vGcAE14aPdeHGJ18uTknKsxvXjeZxjNVHN7O70LDZTwEg+pb/0lar1Wpv76x4OmD7TTkFZIsozDZau1vz2WEnwCyAqa1ZhmZwnyq2v0tYFovE6OlyIzaXhe2IJQKD6yJThSnRZRqs5uN7UDkXbPhTzuTUftYowypC5y81EVniUeFsYjt3vb+v00nPfObh4BQRE7ug/Vy7rRvgVWMgR7JY3DLpip8BF7Mo2vJog0alXRz/2Ht/cta5+C/k3B8Ic/Kdf3qfdw5bnZ9/en/Z6XQ68Dv+88917gCsvfsapvUdT5OYyvmVb4cu08joe7PK5oXAcR0igJfZuZcHGkxYMjfvm7A8dqk8ybA7FM+GaeHk2Of9XoEpySsj6+5vDZD58a/nnbOjXve317YOoVigggauiztSqFSBce2UFtkK28XihLCPzeifvpxensBcMLYbDkAD/Yi3VHLAeklZNtQjHDbLwdQFXouNbcY8+uXzxRHu6+Mfez+Z30qkB5sw2GPew3Q968v5a9BriVxvtDeu5xTYbP6+cXhwJTW9kizpaT256vPsajylk0nE7tnKMPflfVe9+FgPMrKmWUJlUt4OWH5pdY0v6ZgVAO6YNTE5KuAC18lfp9+X7BbjCXDGurQeM1/lWPn4r9NPa+Lnhk1rYOcjv2VNaMlozB+4YRMDqH6tNiD8/OHyl87F8VVxBeuOibPLq8NcSpZpi6VydTKmQ4Y3YMfQ88Hs/s8wqbq645kh1GzqNQmneoO5Ful8KOpmitw37Hlxw/CkgeNj3rJfrSwvr2LmyO3qiPXz4XDVQhwvwJCNui4jsErKWiGV7bUehlRMs4zJntJ0oXryh7wICNQbwjs/bx0fXVh8clcSnkMfGeww79vsjWnKYy5yFV7jAsr+l4vTqg+xIp/WzV+Fx7PcduHFNiAzJnK5kZJtxIS5n+BTAfQ119Wk3+0VQ5Y13shvXFqsqpJD6M9oNEMPp0Yqn4FzMBh4RrqXJ7+S7agVhRGDaljBdgkr2tk10Z+wH0vNBzTW+JvPmq6EIbDBcdPICB+FNk9NmiQSfzf7C3/ik9vd4A98crtvf50Zc0zj4Llxrtk9/mh8YfsTIvfjLw6DH3/LZXqVkXDIHyANoEljCF7jU3eo3ZpOqTRv2BT/cr/XetcMgL4rQRTPx2pbJ5dpze2tj7D5tOs+K9PCaty4u7uLWEqV5nEUi7D5/UlGlBgzElMFYQnjuI7plICrbMtwT87NebIlJIYncHuk0yLVns523be517YpE+L3QlFsEQPFTL+hcHb8NQ5xjVcaIYXIkCHMwmcoaMOvmaQpOTm/3fdjsixOhUUXuP79GktT//uavDo5vvxALj4c+kG33+xsv0aawgfjEQVAVOndAHet4ivSbT2SI7cISwHZFcu5LPnV91DtyABFKxwvbZ8o4ycvypw9CKI0blAAuA8bcBFYgcvq6A43WjFN+IBwjaXjqmE2cyY0YbdMTs0UWKA+8/2Zwd20Eya5SMg4Vwh+33dFJCyJyj3eC5MAHu4zsjHJhhtFszDAI4jMZ/8e+Ahm5w0kBSySujbeOeIIBArMphjD6/aP60CdaTHZmFnk639AWqIRxITKoojOEr0qlA0IIE/TBZifiYesP+fwZIBV818uThHgB5OVbb+Zqcih902hdafBxgFUiCJCwDNy7Vi7hgIYyN7WJQh3yWKRKS2x26U5BUpoQ9jgtwi5QBz/wShmWR8e7O7ubGEu9n/+8U/7Of7+Dy0mq6+ZU0/PYd02v2T+YsOrTdjmiigG9yGFPL0c56gXnvm2wmORcS0kz4aotbxV7M7xPjPq0W4XW9FJVbgBbOfJVAxtfof5qtHAA80yxMwIzVC8pqB6NNtHye8X3x7cf80PS5WDCneEYovGlGnIUsiErmqvpbaOGe2BP6++qyZUqUDBrR1MwQ7vlJg9WlfMKUbCF0qnfiyke24DMQFhgWa2It9YB61Pvmz7OmacOWMeJH53d2f992mGkz9yVlvbErDXYAL7AialpsX4FxuVnse4f4fN6s28KJUz9j/hjEWjLsS6CWeJzPlEy+Z6Jsx3QbvIIvwAx3VIe2RtfWzlRGG+fq79U41gMmS21HSTWHSjjLDxRBf0AOn45LX99kyRk+8fCslVfabvWNDcANp33Ql0kdZhSKAXyiRLevW6hNDBlQ9HDHS4mxTOHJy4AUKaTJjXNSrv459mrt1KtnEwFj4MoeaNgRDh9eQG1ImEHzzcI7bPIFolx5DnOJEs5oqlU4dXBX2AU36DCYqTvJ/ymKh8MOD3fkR45pU5LA62tvARfCIScvg6Ipdy6m5jJxMp7vmYwoHKFSAj8vEknRJNb8oZKtb8Nuuf0j5LbQ9jY2fCAXzHUux6eXl6pAo9GIsov5lTHrO2dtZmH6l4xOrLPO3C6A+rejiWZ/0fvOG/PphrjCO9DxzwaxCH27p1vk5+Eod7hom4GHD9I6cp2nf2GXD9rJMZJMamqRMJ4qOz+5hN0EoaCYtajMCcM6+b1RcRxG0oCJeX8MRmKYCiHtswD5Un/N3C/vtsYXCVjJEIM8c0y0Rh4JbezUYggSIcM8tQn6Xibr6qmK9XyronlC3GrqjS0XhqR8CXC7ULVXojmo0V2VFKPjfwine0bppgM6u8v202ULukwBolRVCQV2rEaKUQjLGBkTFzbmlJeVoEH+YoBKpWrLA2W1+LSQ8Y/AYHChsMbEqSMbNxC1m5vGKXp0evGxg084nIxYoUTiIo5oYDqQMVG2qK4PWZE5qZnbeIwRVPmvWDHfJ9nztw5jx05BQrsdjhA5+vvtkcBklNm+yLHX693s/9XutdRC2eJL/FQuraoW9tL+ZgXqsgX3U7Z68jvIPEpBRIw+9P5/atprkeCekyiMK2pJDBYGxkj1rp1FERameqQY7OuiTkmJBXtgAAHD1l8TThOqf4XjWx8ofAA1/REoYV4UrlTEZIfZ3F7W5JcCY8514dnkEhqCECkj8CwXqRV2RwbE+s7sfONvnIhyPSUSqXNIsZ6TJ5y+TK5V5l0UAJRu1iwZqPV4evoU6ikgDzpbs+lhKuNM+GOVcjltS56EfhRHbNj5ZZ88N/fuk2yOd/urU/yeIG+fzln2CbFAdOgxye/fOR/eFfvhr2CdRaFdVedW0UN43TY6evZ2X1yWwlo4F+5uxuffwJOaQZ/3NO+eDaeQynUuTV5xWUxEm2YmnOQyKgaS/PeF2XMfMkQVNiZjQC+bKERGZelfVJRWkKDUx7kIRbX3K3P9TNfHgNgvP5I/2yQbrgcJ1XXopD43YJmfEVi2iB8UzoHlyNLcDpgyUZfAxwOQi7M9uUHkNzqciGUI2eKZ6ACwcd3eek1Wy3mq03zfY+ae0ctPcOdt79f63WQWvFbBvPa58NxEKYaEszi7gJCzDaftdsvQVG2we7rYPtvbUxip5D74ZNezQdmndoNK5pJ3fc+D4AOmQZk+iWeDfnhlVf4ovuOk6sgNU4l7O5sGutNYHxg44TjLA0NQ/E9k8Fs8SLHZP8/WHNVfEnD2VaEU3GlZ7sbbfXKx92PxHZYpfuD+XSHdshimg3A9TDmaX2hQ0L8Lq/t7fzxq1FlrD7kEFCEhH3bNZZ+fP1yGRF5COI4vE/vX8Z7AA1oTHiIXFddX62W7tv18CJYpLTtFfqL7d2Hzrjf+SM4FSungzOS/8ezD+1IdgCelBplsXTIgLm6vwxdgL7ZDKitkqhQXjYjggv4lzVgQD3NDW2lPExfUt3P3SRdVWR+d7eh/fv3x2+OTp+/6H17m3r3VF7+/Cwsw4tpPgwozo3wqxZ3wb9JQZGvIHkPRGh9vmFIazemBlxqTAwhKbGQOQZZKL9KMgpzYbkUE4nWtgeO9OIdBnz1+ZDrkd5H+rFhiKl2XBrKLb6qehvDUU7au9uKRlvxTDAlhEM/Csain+c7uy8aZ7u7FVvRRG8vbme08AGSf6aGIDyQQBHxiyv2L4oGqaiT1NvwWZsxajtDOt/hY9fi4vvWHoOPv6smnPhOMQhecDJ717+szDWG+T0n12akQ/GfecqFkEQoGGcuwhc/m+xR56Nf1+SxxoZ/Ksd/IcUQGm5a+L3GXjzM+yvg8N/P8/cIg/Xa9wFTcHNpNbaquzbpRKXII2RJRHVYszjuu0hvP3DuYLCl6BnlaXHY0mx7JZLkY3DjFOWJVCqDQmENi8ScigrIunTpOnvkJcKQTn5wMPfRjx42WyPs4qs5kkpkIyX1hOk9EAHoKXkVBvc54yQejypQEoYPzS3vBvKfK+I+VwP3u1Qxvaab/dpu7lL99vNfovtN1txEu+0d5JWu78UGLiXhPGTv5UwzFyryoOnrM+obr6NWlGrud3abketvWh7p9lqtVrtpeIcThY11tHNiELbqjqYGV+WmGIgxGdaayjwQTqD3HhfMD/kt5CcbcU4Kyj/hx7mgMt8caTcgaRjZl7FmqQR1rja4kg/ZQHxnkvEbKeaGR/0T8TpiVOqFB+Ua1E0jTWPEceHxSMMM/iLegv0hDNFxkq0U9mxeFyG8rEZGB5iu+9qVgHrAeoTVYMwcx4gLoQmPBsy288GDnTJtBQOJCcsnKHDIbIHi1yNLHw6ubw4Jp3Ly/99+K/SmkALu4imnNaVHrBxaTS5meAVU95TwdZ52LFSMTBooPodas60zOHMd6WtYcEj7GqKUPnxDYqRli66bWGBR0M2fzPW3zS6yn4ZQY2S0OGQkv2Rc4Dln4oclilXjNCS0ADZHIn2vESV8snN38nGJzpkMZWa/AhP72+QxfEicDVqO0ZgKYqz40lrAIIPpbb6GhSCD8ddaA14UhX+j62Wj9MuKOkaPfWNWfCn73jHQ2ZaRd4fTs4WtpZQ3HUjUoHMZQmW6gnCL23ucNcvL/xiyDmbfjHZl9ipLoKLe1KtaXwTjbmWDLriwbfVFrwUW4suU+HgURUt7NY9dPdg4/I2IE9TAMHEYwqse1+db08/LF4oPvbCs62hHVJcp3v22vjzf+QsDcDuFWE0HnlzX2TlzsSzkmvvtfffLSWYMLKwZhWy/jq8zwGx81FGfxRimDJyerowMmwhjVhkA7MA9b3SMyZuMSGxTUaw/WNx1eOA9fAuIXypATwiGEDFNGUqusoeBJA4E5p08V7QvLBnImMNciruSgfWJ5bwfNyA7Cf8WqvZblnMymTMJYYYu2Y28qrd3H+Nfzs6O3Ef7jXf7b2uwmAen7sHTsauLyVpkkMmNeXZ64oyMBQ8fQ3rb9J1VKrScl4KBVRHh2hSLKA1qGeZOzkn9xH8XxkRJWEpv2XS+XedbJgySY7/tXBsr5AEJIRGNiG0fpftQfDcUmJqGRnT7xAxeAwZczLiavR/lshAmulgguWybBGD9KF0lM05LTnNArqh5xb9moOSpmnQCFeRG8Ymthc97B4o5IXmRAvb17PcaS15P68R+bEDEHhigGwX8wVMd/yHNoBb4JT3p2SSUj0QchyRj0yyzU2zazKRNdn9iOYKcqxTGxBGzRU4sNZyYfcTBEbiWVDrfoC9EW8Z1iRDCnTSKNBwGoRlcE/KkuJanAEkFmuQEU8SljWIZDTBf5tDqGFP6gaAS82pfdr8fcM9u9EgG/j0E/D0ZtYvFgnr+UvlKOHGW679ghsLDbFXWpA/4gIMhh53EJkt+nA5RnBrWFyNK9uY0/Z9VcSebr60BzCi/JBWZypjicKTEhLkbUWHL/UkKJvg3r2yNk8Lfz6+EqVK1YdgzPpCpIxm80T8Hv8EoPwI/kH4wJjuPoGAKwfMUE3b1zJna9pS5ieeDXu1ueSb6JL7lIlFdxFX/tFSV23bmRpO1jHN8gGNETsF/BaHJmVh1KJgTBZCYNhWaFqQzsTsuR8+dwGpZV6VzTgyc7LofhJHEynup2uSvKY6r08vPw5RPHOTDqTMX4FBjtVJqRgOIT0YUkuGkk5GPCZMSiFVEVwNR4Wky7BhiZDEeKLazUdOGb1lJM8KWFPuAfzgq8VXqvf/flhz1uZZPGLGfa0u4PHFxeeL3pezy4sv3cvjo97F58+Xa1pBvBitq01E1+Y3ZKU2S4lTg7N8rtTl9nFGNaPjmjWEmWKdagLGE9LqAazq9crBtoeMCq3gB32idjj+6eOvv7399Lbz85okbc4+TceLtDJ4yB49qkLzl7YOni/mrXF5wglCWcM5PBd9v91smf9dtrcP2q2DnScg73+FXfNuL2R8P3KWbna1kM71CvTLvJyheFSuWf7ZKBqqnW/1kK7B7zkEHoC4gc8TrLMr4Y+Xqomhhq8E3GzsGSFSC/BJ7UUHAfWFlg4qx6ppucZTH/TrilKfb8JAuS8fck3TsjFjPFioZKdDyrMAWc58A1oRTx1cc7kZcPWEoKWl+Yr6X01sxntdzTkEpF0Yx5y/2Gp2QX8Q0L1wK5a+vzQ35ttrdnQLj89o2zHTFDuMQcvn+a4v/k2FHf/dyqNrmE+gu8j12EzlMfrNO8cUuQYuCqBGi75OaPI/oEtc6zRwGPBeUUHykB0Ocp2zgu6wdejSkk3YLa8tQngEg1usMFRztrtKSHrF21m8wd8sM85DrosfNz7ClxWbgCtiI+gROfEJ6BZvAzWLDCNE2F6zYf3Jop9aRRZbIzFmWzQt1ujJMjET93DCVcUy99U6giIO2zD0EbmUsdlE2Ni5sLMz11ZjBvEJPfMisd/n7uMxZnRQKG3I8q9q1CWi6CBDlg4iCMloBi5bTdvrE41HPGMknMq9KcenH+a/Lfdv95v7CyNlz2GsP4XcyPpa7byfGkfNNqcw/DzIyynXOmXkOEs4XdYBMCzFk7xXY2rP4fkXHyl/dG1OMs0W7vg7jw97ePaCc22Z4+/4XkNdS4IKx99XeNw0M+Om8odgRE6QGBvyKnwMxEzs5zyF/D3bhx61XmwOJ4tSPKD2QnZMU3BcgBUhF+9HPkcc7H4i5EKQ9YOUas0y/+ncLF0cjiWEpQyy0TDGC2YxdoRZntQRowmTEe3znk3FrWkvBjm4bit2gjjTezRP4aZ1QGNGXnXen7xeA2eQSFUTTx9hCszVeugdW4F0s8PrMhCgHxAg4gd023lXp5xlWk7DfsRrw6O0Ii8mqEHuAmNO9b4Pmxut+/YGxP08tK3j4QmYiY9woXq0z2ui/uuvrluXU57l9+Rzdw3rUuNJabfVY4flCoR/c826+ouMCNlrO8JwuHqOMIUX2IvQmrEgFjYTzXetyywcFFzMZQR1AYKH0XhE7GTVTVLyAm7Y1LWXKZrXlTDAFbNDIyC561fenxKV95uYvOOHBGDDjFE9Itchx9EP1ytpCj9OPOLby2nqUoJX2fgc8ab6I7fB4L7r6JdwhWGBQIqWjnVsAjh6xGQRx/pJ3HRHNMtERuzwJKZpnKeoAL11uk4+BildqCHQMhrD7Nqu3cjwhsJkayG7xmzYCtVhJtpKRLt++z0xGChWV1FhhX6cbb0cPB3qwe39sHvp43S7yQAUYi3k13iyV6g3Q62F6FsudU7T3uK5Xk+ydCuE2/lcTtdaeVh+2yzBwOrbBjqUfKsDHyb7qw985Hj1A9+O8wSbadmXzgrSyc9vuXWQX7O+mCF9ZY0BYAc9xBrh9WOownTETxeAOXEV8LcKS5qlgxFVi7TGWIYVNzxR03FfQM+qEbySKztldTcD+1Dqq7VYP6+/RRusGUEPhLypE8Rks2P2ww1cNRZ5WHAxSpUSMS9aONPgxtdvfS+ozxmGKBqEEsnsrZ8b2qfIwDXx7ESV0f2gdhbSsTe46R2dKuy8ps0msOsC07iew7aDOsC442VRMZ8f2HxDQZIEpEeW+Ti7/NC1fa3hBpamYihyZXsSdiykMsPgX1dLRsfkVeeo+9qlWDC3zH5UIErho1j55K7LoM1RTNOUJeR/HXUuOxH5TWQsCqCbuCpAlnMVFAr3p74pvRY2Hdv1kSaJuMtSQUvtUnwBDulkpHPUhUva6cQYocGed3e1Qo4PyPXhwdWE6tGVFleGZnAW/PtzoMSY9fwmvUYJXM986ke2d8IBzIJ9pVzSBLkuvhWR6+qE17OtxoNvmvclpKLypdmHiwcgv6rYHUWLY3zQ/HzdwAv88NoRNh4QWG2VHyzi4g18Z97+YW2ZbOeSj6mc2sK2kyPy6seTo9ePXtNvtlut9rJWE8zzTXgJcxDn8rHK5TqAU4yTvZo4+XS0B2f0sseyw85o10Rf92OnvRYCi+z2Gkjc3ttfC5F77UWCeUsSudfeXgORKmGsrteq2z06Pj5fiUieFWhvay/eMmMXnf6caYjnamH92XLWijLb3tvfebuzrDob8zGrM+Pg08mnY7xFcalFYcYwxgxCJUeEdOaFGJRCUARrL0u9DDnNKBQmY70m+IJbY5Zw2oRbhPDn6H6kx+nvJ52zTmAgDHjMaYp3Dv9tmzv6NIOI/GLs7zGmBNIMbDRgxphTeOPVty1V/JhjobTHfS2xbtulLbsHx/VtwU9mB4arwDMiYg09ie22pGEgu9h9rf3d1tJ7b8XcyDmpkT6n0ThJtlPosvKu0Vk5mznarS3m4YQKd9Ghv2KOr03iqyyDc/2Wd8/EXVZbGhW4wDDBJnhQcm7F+CrWzIJNOf+yevkPzg4PE3AbM6vuXfw5mZglNz4J8haflom5tfpGmbBvkVB4eP6lnEyoqRwy7X3j+QmFS2cTTqCceUKzuvJv0V+lKbHTVIz7RgHhRLXLTmti6voMm+ssOpqwb1Cp75kPPl2S93NapBAtwav5b81pPJ7Z23IWxhMZ3Y92onf7rVbUfrPbXhg1r8oxH09qDMtudjAS63DyMEcEWmKT82N8S0knI5YK0mxCM0V4jAR0EfOXmY6yA54NmZxInmmsVQEwlluj7KCnPeB7T7i9cheSCIRgEwlrAp+FzpQ0U74eU5ERvWVExHEuATEHW1rcYSdCqJOwFp+kPrwH1GMtfLlSRlrzkOqSYTrgkrEpaJWtfiqGWwjK0DS2lNFrW9ut9u5Wq70FsS6eDZs23bSJwmnaUvDI2KzVmEwr3n/b2ol32bvt7bb5IYnp3rv9HUqTnf0kGSy/X1zqWQ9elRpNIP+erKIJu+edk7PL6PjX4+U5toWJdbNpp1mF3Q2v+QHKyUZM4efPE2aRa7oIf7CkPFZsDIG3HdAagmfovZUi0kHlBNotGJU0g0KR0Ib5dU7bxfb+zttlz3a0HHrP3US8RAMHjERj5ajpOOXZzdLXozX69LDI4Ni+wh2ccAlIkpbmKnKMeWxJPvLaIseXIzhsJASNv0DQWBaIa0Fd9KvuTEQZnZk1xpWl0j1VNExfqkET3hjNViHzTLM05UPEprKXWdCqyWONKj4c6XLrVK4C8ipsQrOqdrvZ2rtsvznY3jvYfRO1WksVKA+ZiGKup3XV8x86HP7q2SEyLRldosgFaBaZ5hnLdC+uRGXWQvjlnWjayrS4Eh70s2+q+cydLdxV5CG2alqPsxKugp2sSr6QekQ60BdniYpK5AQ6dfS4EnUt0aFtBnLS/QxrVO2GsfQqIO11vROW7rk755BmdJkqVkM3FExWPKsKzUMmemEpSDmmJ7Ih13mCeswY9+aXqg76v2QjFdnGAWm+2Yn227tvd1oNspFSvXFAdveivdbeu/Zb8v+WVEl15il8UUw2XbbXjEeM6PP2wl/bDBHbYH4oaZanVIboLnrEpiSmxv/oizy8/T90EWddRozlEq/wY2YMU4XdwAepENLmOjd8m6rEAez5QV0LAZ/viW1gGiT27U7KWSzFnTy6dcYxzLUYQy7GkAnHbdXi6wulRdZMFu79WV7AiVCapnW9+ZvnMDxq5tnsElg0x1cJ9SJnKgzU2WCWry0e06mvQvSd3ykxrMBEQpLfTs7DvkOE2A7UFtrtjicsnWKWhGtVpIX7sSrkd7ut3YUbL5YFLNmQi6xO9XoBMzymXZs/LVEWHRBfk361hM9Vrz/lrM+W3NPGqPtTZLVYGyPEbSBmfHc+F6rItcU/6Zx1gufmcmhP7a2OHIK1Qrfe5ywTqtfhMkgnX5hzvsitsH/oyaiYRY/3MiQmEQP/kj0CidmOtqOdaAnXNKXf1OSHzL9nYfGPqbzh2TDSaV3X/RuXkg4GPCanhk1yLoUWsUghDdZYz5aC+Ri9hEp2UAXN/XhyeYwAuz9eHB+fWRzeT++PL/DHi+OjCnAufGkJAdlryx5dJCa1rr3hZg2R67wM/EH1bbaI2aULsP5QEOrrrz1kVXrk7yVe+93dhVtDBWxZDOmatv1sawA/8aby8NUVRlL5Zy+X6YjmS6jmupH3L0qg+ynPbuCqVIR5t/OAFh/dqC5Kb9NpAjTjLf+lrVar1d7eWUKtG8tCGVsLwCjC9JW1+xGfXZE4zALguJplaIP2qWL7u4RlsUiMsi3M0A9C+lRbRywRGD0WmSrO+i7TYLIe34MKuWDDn3Imp/azRhl/LRbwDoks8RBTNnvZKByoNbhOJz3z2XXRJllM7CL2c+22aABCi9EPyWJxy6SrFgXQvKKixkOUGRV1cfxj7/3JWefiv5Bzr9TnJLX+9D7vHLY6P//0/rLT6XTgd/znn6uuOhZAfQ2o9o6nSUzl/FKkQ5fGYnS2WVno5qMRjxzLo72czr0M0KLBGqZ534QlscvjSYYdoXg2TAuvwj7v9wdMSV4Z+XZ/a4Ccj38975wd9bq/vbYJ5sWiFDRwXVzwQdkBjGuntLA6CtsOwoSwd83on76cXp7AXDC2Gw5Qx/yIt1RyAKxIWTbUIxzWdlMGXovNbMY8+uXzxRHu5eMfez+Z30qkBxsv2FfepUtYzMeVhCjyikVDcr3R3rieUy2x+fvG4cGV1PRKsqSn9eSqz7Or8ZROJhG7Z0thVJf3WjXKvx4YVE2zhMqkvAWwBs7qFJ+fP8s07pIVGBvx2X72a+Gp0+9LdouOOpyTLpfEzFc5Jj7+6/TTCjzcsGkNLHzkt6wJLWaMqQJXRWIApYbV/tKfP1z+0rk4viruDJ3aP7u8OsylZJm2QBFXJ2M6ZHitcwxg7GZnf4ZJ1dUdzwyhZsOuIJDq9dtaJPKhKHAokqkQgP6G4WkBR8C85b1aWUZeZcyR1dUR6+fD4TIVE15oIel1ReGxhMVaD5VttDwTKqZZxmRPabpQYe5D1jxEqw2xnZ+3jo8uLLiwq63NoWHDIE9T1/eOJWRMUx5zkavw3hGgsL9cnFZt+SV4s/7zKnydofdhVoGPAUk3NFvL3UhsNxNMFAR/xrWSqnCzvUQ8r8ar4o1LC6BTcsD8GYqm4eHUSOIzcAsHOs+wrc521Cr1u3qwpU7R3qmJdr39WGo+oLHG33z6bMW9x4a2TSMXfBR6pTRpkkj83ewj/IlPbneDP/DJ7b79dWbMMY2D58a5Zvf4o/E97U8Ir42/OKBs/C2X6VVGwiF/gLvqJo0hmotP3aG2ajqF0bxhU/zL/V7rXTNA7K0EJzwfT98uuUwjlFhdrs0RjO40VC7TwpLbuLu7i1hKleZxFIuNwBA+yYgSY0ZiqsD1N07jmE6x2ZmteTw5N2fClpAYAsAtkU6LPGtKSqwRl5Bru5wgcCdUIBaBQ0wdGwpnW1/jENcY1w8pRIYMYRZjwNCZcs0kTcnJ+e2+H5NlcSpsmfb179dYB/jf1+TVyfHlB3Lx4dAPuv1mZ/s10hQ+GI8oICdKb5q7uwVf8muLSxy5RbgHyK5Ys2XJL7dvai+3LnpOeAn7rA0/eVFH6pHWpHFHAoRs2HSL1GpfVkd3ILGKacIHhGuszVUNs4EzoQm7ZXJqpsAK4Jnvzwzupp0wyUVCxrlC5Oq+qxpgCbo+zHXZL451eLjPyMYkG24UHXegyDsyn/19i87NbhtIOgz6nK99s51jcXagqGxuKrxW/7gO1JYWk42Zhb3+B+S8GeYnVBZVUJboZXA9gOk8TRdgeCb+sP6EtpMBlh9/uThFhBPMbLVNHqYih4YThUadBhsEyusLj5xn5Nqxdg0VD5Dqq0u4zJLFIlNaYts3o+FLcCvYxLgIcUDs+8HoYFnXHezu7mxh4u5//vFP+zn+/g8tJsutk1M9z2GtNr9k/gLAq0TYzoooBvcGhQy97OaoDp75VpljkXEtJM+GqJG8NevO5T4zqs9uEVt6R1W46LYdWyqGNlHBfNVo14FmGQIOhKYkhvapHs02LPF7ZMzs9vNf88NS5TCCHaHYwyxlGq7eM6Grmmmp7WJGe+DPy+2kCVUqUF5rr0q3wxdNyuGoXCIxFYldKA/3sfDouQ18BMQEmtaKdmNZ+p58+fR14CtzTjxI8O7uznrulwz1f+Ssth4CYFvBBPaFSkodOPEvNpI7j1n/TppVmtn4lbPxP+FsRAMsBP4IZ4nMGUPL5nQmzHdBW8jC9YdjNqQ9srY49kmhMF8/1/6pRjAZMlvqPkcs1EtG2HiiC3qAdHzy2n57pqrFN8+DDKA+03csQCmHfjh3Al2YZQ0A9AaZZEmvXjcNWhby4YiBHnaTwrmBEzdAMJMJ87pD5X3808yVVMl2DcbChyFUuzEQIryu24CCgfCDh5si9hlEh+QYku4mksVcsXTqAHug2WXKbzBbbpL3Ux4TlQ8G/N6PCM+8Mgr/YGsLH8EnIiGHryNyKafudnIykeKejykcilwBpBsfT9Ip0fSmnHZhzWOz5ints9Q26jQ2IRyidyzFVnCXp0eq0HGxiPKbOXUSK/VmNXtHxSNWX+pjF0Z/WHXDcTrrk+DN9vXBXGMZ6X3gYF5SBG6L1vna+EkcwBNmf2Ig84+cpmiL2WcybAkPujDIxkxTJwYET2b3MZugRTMSFg4VkQNnXiurFyKImVAQKC8BJ81SANUdttMUKkb4u8X79imq4L4Ygw5mjmmWicIYLb2DjUACRShklqE+S8XdfJUwX3+UdUwoW4wbUaWj/5+9N11uI0cChP/3UyDUEZ+l+cgSSYk6vOGdkElpWjvysabcPbu9ExJYBZIYFwG6gJJM/9rX2NfbJ9lA4ijUQalIiRJld0eHQySrkMgDiUwgj+ncjKAXkdYiWMitoHhOY0bJ+b6Aq76ztGA8ARbpsKMEqJ1TVI3cgs+ml+taZqjgjbGlT6XUniQTTOPsEKBi4WOxQlqsEnfJZ1eA1BNsFmQ0MmE2ygzWYmNosU0uL/o7DX1I5aJfMy5kjhso3YatwAXq09cI3pKpOBYpws3OvLInFc9AKl72ngL7yaLtJONEvY0Fvl9NwGzBhzUJ1mcz/MO9k2/d1nGATVE8eqOzX9dem9M0HPXgGuW3PTh5vxPouzodgGHbd1c1ZMWpnPDERsj4vfrg5l7Ztq70nlU12RE2EQ3Ufz9APsYIbZvocnDEhCkKmGsjT8oXz6/+5nnCK1iwwAUqREqSQM94nVnIlg0akt63tnvvIdtPTQICHTxiOjKX8D41O9Dgt5MO+o2OJ+hEiDTBLCRoQJIbkqyUD5QnB8Txr50UOnFgu7cDgfelAI/Pg4eh4XUoJ9E6mdv3ARne9lfhbe/N50EDfXhjeXzOwgb68PkN2BTZptFAvfdv7pADt7AeSR4gGSdLB1qXQFgwVi9d7BTp806JjNIov1Ny+zCceDLGjH6vyCN7dLx8UAJtf3jAoj9nK+R0LEIbx1cpo+u6tKjCHsdIQVRE+LwCFQrL4GGUEBJDV78rCAhdX3Cx24AVPH1doOG57feygQbg+HwsCXxPuT88YXSFTElAlnF5BVdFNbBbGOJPp1B3RNcvKXZP1kdeMWdjSCFmgkbgPkEb4oqwkU6r2Tpstg9Qa+91u/t67/j/b7Vet1aIJnH4DcmI1yoQtTKCOpG9BnLt42brCJBrv95vve50H4ScttSvvpD5FY7Hak1MpmuS0hM7vjtAtP3DfbfiCykvyk+DVXcXD70wTYqxmI+arwDje+XoCSJxrB4IzU8ZgsiRWgeQu82UiuwnV3exRA5GhZx1O+2H04R8m3FW71J5UezXqRkiOxUmUNKtwFIXKF8Dv4Nud+/Q0p9F5JuPFEIRD69MxFT++9Xp8MBSMXAKRr87v83jtJjhUBeQobLsYHRa+0crzl6QhOL4KtfU6dH9UUa/pgRpUDbHCPY2J+PVuyocVoAuE5KwcJ6dGtmEbH32APIwm2AT6d5A1O8xoi+jbOQ6B7cvVvaN8t1c72E3dBYlVKJzt3v29u1x77B/+vasdXzUOu63O73eyapaxTWmX7vO9ArOjxRJPWpn3fE9bfIH0bXEpkSRSPiHKdoUGPGUQbTUPzi6wGyMesl8JrlpqDEP0IAQdxU8pnKSDiGfaMxjzMa7Y747jPlwd8zbQXt/VyThbggD7CrCwD/BmP96sbd32LzY65ZvA3Ul6ObqGt0cMjyPPy2cQ22nUcRP9ycJxjEf4thZkoyscKJZQPc5/OVHc5ctGpvgLxfVlj220gUgFjjMg8s3maHcQBdvBpihM+UKUxFyz6FuKAcqAPd5XbKwMb5yjgYPROq5neVFCzrH1kfEcQM84wLKq2L1c3i5pgTqeg0ur9utAmosoJJM1g6osYH4AY4pXtfx/5YyfwHANhFOw1rQprOOIMA7SPiCcG2ZpICqzf7w8wMg/A7rsqWhaWGPc+faJobPVbhTvynhngf/i/0xgVBfLv0hE/I1pVAidc5TuPNKBUEYvTu//HSKTi4v/7/eP6H6pFcCx6HgoRuUsg9e/Ym2/tU8GRMmt1D9LEjHmrXVBAS+0KjEkFzHNJODA5V1IDEHDckE31Ce+NRz1y1THpGYGNOyRDyf+NUU9wetIL6bI43KhB60ut3O0uRdo42xVSxT8KJIDLfKJSKfRGeURUtTeRZjqZTVWnWMA/K09PYztX73M7VO/hiUUqVOvqc27wn+RCd9U2ul91H/AQ3ZTCYVDj8M9J/vdaQxfPCH/DAa0ZCgvYOufm6AsXnDlsxl90qEFQN/3CqJcPStVnIG4EpKbt3lNUA+klyNjeVkxKeNFZeHr8mcwC3ec9wccxiUuWD9ciwlDr8EUyoTAi1j7AC7oCN3l2bPWrMmJ+beXpluSy5YxwGfkEstWH1QqFfMO12WXH+45DzOrV6Gai6jSs5BG9USwxSQusyQyhIKn8YcAFBVTAjQ/7gT4ZyVBqM0cuFGaJt8CxbLqX5F7F6etFqtzi7aKVMMfqkizDo3cj+J3MpqbSL5NCkJyMOJVKZRPme/QKYn1rRpEm8Ssfzhy4SrO0qeriScwDn40yxNC+3Bq9MOtBw57Vti97Ld6h5XSB98v4BCj7tGHyU37A7Ne6c5vzQfFlhXa+NDj0+n0EiXRWigsWBj3aNhlhB7HV/m0TMpiNr0vMd/WRs967+7gLAiHT6VroDAdK0wfKgP1b/+WA8jb6vVXqQ6glar9s31AuJuoJpZrEmWZNDdrtqaGfSR35JkMCFxfau1mkPPo2Rqk9on7yLLfs2kXu79u9nhmBHr8xdJJSy3C31dBy2YXyNtVRe6nyihd6eykiOs3lJ+GNP1QiEPUJg6FAKNeJgKxPXpqx0foZmtS0ulIPEI9iQKJdXg3iGeI3zDaSQQZc2IzCDdEMdzQUUW6q6n8C3oto7NqP4lHXSN1QfhpvK+613tr1xLiZDOJms7pR/ovFBzQWBLamiQWuyiNHFf69JbPklLavFicHXa6/92evVpcHL1x/nlb1cnp4Ordufoqve2d6WvzOsuyDCmhMmgHFf/6KnUp++atjSlkJhFTRxzlr9a5ZAgmgWL6LmVYp5SkYKQTFMJfzQhV1boGrbouozSVTiBojQCrn+ygBI3KKTe6ORVfVeAJWSolFunnJ8HQe0bsEUzWROJT6BWJB/laO0BN5XDpvgLQemseLHtiAFTvIsXK/Egq7FjuYClCevJQnh05RWIbPTDHbX+gHmVky7+3NJM2Wog+1f9E0czzzW3hO/lNFPW208fSSnc3vW7KKJjoq8s+6efHP/yLRsRhF3cv2QKAVU6M0t3CfT6+fnZeS7IqiqgSpdXdTFUuX7iWWe+s8OD3uFZp9ftvj3rH/aPTo/eHp3tvz17e9bqHZ/Wbljg82SNffDvZwp0yn/pXDk+3Tve6x/vtfeOjo6O+p2jo87BQa/TP253O+39frvf7vVO33Zqx1cVuJNtNc/Cn073oJpDjoZeL9KHcygbVXPqcdbNwdHh2cHBwUmru3961j48aR2dds467YPO6cnb/d7bXqvfOeietvuHR4fdt6eH+2/P9nqH7U7v5LjTPzmrHcptcNTJBmtiWkUclZfpZ8uzwwzsJzDhKjeiXKVEj0ulo40s9egT5xL1TiBF6ZyNEqyrIqUJQZcETxuo33vjsmL7vTdL5GwY4P/Be+vavrUS0MWEskL+Gq6AwuaRsqUnOjF8jmYkUaKmRGwwuNjN7GuEJphFYoK/lMs8RfukO2wfRQfDbjc8bHcOO0fHe51OOzw+GOJO/Z44hhyPkc3Rx5LsQsaDZyNDJTYNpE5yh78yK/IgXnVanXazpf6/hPyH163Wcj0aPHwfnN2xLMLFZI/7kG0fH7YeA1koBpWsM+7yRBneIY5jpSwZGrw/NzpVkjgWJmgHMgZ1JsyECwlaRXL9jbdXWv0AYeJSkqk+4tT3hMqZQpIH6A9d4S8XU36DaYyH0JZeFkuij4mi/Ixqf/c6IkrB6Q5XpnhkdVLY0tUiLc21rnxO/VzSyJkmdmS5VyNP5/o3UMV9HqZTVzj+kTSxSGe6qc+V9qXXFUzi3CoDptp2yDnx+psJiWNe5bAs8OA73YOrf/TeKQ9+72hf+TPZg6e9/l2POr5sreT//JX//3z5/z4Lfvbk/0pavLDM/wocNiGN4YWl/VdQcWPyGFbK+a9A6LlzGNae8H8PzhuQ0/Ak2f4VZPhBkyB8TH+4PP8icj9Okr+P2Y+W4b8At583vX8BQX6u3P4FRHgJif3+1P/K6n/CrP4c4f9K6X+6lP4c4X/wfP5qXF9WMn8VDpvgAr+cTP4qCm6M+7tSGn8VRs/t/z5qDv99CG6As7tsAn8VSj+B4/oiU/fX6c8sCGDMPBzbTnZMbwgz1yQNfaGJZ7OYhngYl2+iBQlnne5BUttzIULiYQyKvQamQ85jglkVQm/1T2gU4xxapsz75cUAMTLmkur7qlssvHabyvB0JpVMMBPQkN3EwzJEGNhD6nPKGIlrLzdGvskrGxr7pKx08bhDAl/BvEkUoI+mfr72sRDNt+s4P3l/krVJ3vY7AlHMMIQnY6Gs1ClhUuzKWDRdAzWFQ1OPu/CH4NtETuNfcTxjTTvHJo3ETiFEynReyZyGmN+SBFqJVLa52m0HtYUuISKdrlXgqCgEUYPAGbjQ/sVhq8TrmzZwilJaW8z0ffpmRvyauS0b8VtG6bkifhfNZE0kXmfEr8+LlXiwmRG/Zp4/TMSvZdNLjvj1efJjRPw+J1ceO+K3wJ0fJOK3JoeyUV9gxK/Bca0Rv4OlYntLMb3ZHqHnWnLlniS21wD/D95bWxBZdXCvBvxowb17x/v7+208POgedvdJp9M6HLZJe7jfPRzuHey36xdq0vR4rCtcIfF0Vop1NYGdmxDc6+H7KLe6yyD85MG9Btn1BpoOaoeUFhRyhQIoBR2tTQH8FQf5fHGQPgt+9jjISlq8sDjIChw24RLohcVBVlBxYy6CVoqDrEDoue+B1h4HeQ/OG3A19CRxkBVk+EGvk3xMf7g4yCJyP04cpI/ZjxYHuQC3nzcOcgFBfq44yAVEeAlxkP7U/4qDfMI4yBzh/4qDfLo4yBzhf/A4yGpcX1YcZBUOm+ACv5w4yCoKboz7u1IcZBVGz+3/Pmoc5H0IboCzu2wcZBVKP4Hj+iLjIPPX9I892/faNEMznLirDXvdPMOJMPFa8D1P6Jgq4dPRaRUXOUGn9uG45cWawwPfK+rH9DuJdAgdXGG76EDYRHw070PRFhhdiKATuxlmtgZyFU5ljBbgk8PmlTHZaWY62i4fM8zAjraNoUKuq/grNSETHJLgFzPzE/1wQsyFFdzv85lyzyFUTw+CdSQohvi9BhJpOIFQAGgNQYTUsaEQVmDGVSuNhgRWLkYRlnioiP01Jck80HKRSf9odIyPjo/aw8MwjLr4lxok1Vg8IU2LZIPPuu6q0EWTZzFB5AZoGNMvxCeZCVQbEuVSIsnHRJFKu072Ss+MjJVbnTjCTjCLYu2COSCUSZI0TUAliSytRZGu+8PRcWe01z08HO7tR/gA74XkuHMctUiL7B/uHeTJaef6xES1YGvLq/8O1TWUJnQ8UcSCKav3bnnyBU0JFmliPEoQYieURoAdyX0xtptEgZit1qh1cIhxa4iPW53hoUe8NNEKyxQa/vzpAj4uLjT8+dOFLSEM+12kjFSo9qOdP65Amv0QJ1I55J8/XQh9PWmetJNX+A8Tgr9QNkYRv2VKPDgS4YRMSQPpIk4NNMNyYt7nyIbT1qkdrAdYk0J+1YfRrTikSZwpl618naktJwIInTMk+JRABLTSQoqeUzzXJbBNnPr5R4XtriKhomtEExLKeN5w5ws4j5r2mwM1NhxaqLEbOg7cXSKjWziuGHMFQ/10bWpkacr5M9QIqYmZu2g1z5hKkuAYnX+8OXBjEhbG3BwgXv95DTy6/vc12j4/vTxDn856btDO4V5nR8/JfzA7C7HnKRD9O1T0mUlYAWZd2em6EfW0XxU3tooKXy5Jwcaxr0sioKC/mlZGOB1Eq7SrBV5hhpgl7FADWYIY3siG18UER3qVSI9Vl+XRqUAQRiCIRFRpIRNK3VByybhUaj6ZQ531CWyD+fcLg1uwM5JQHqFpKiQMMlSaXM2PRPmdIMtJ0A8PCdqasbFXBku9vhWo7zxY77k0Uci3ugicwQvsGjXPbJeyMxVo27qtEifB+PtOAzB3YwLZsLLRmR8Q6ARre2v8fauh56NH2Nopy9PMnE5ZIRoleDytdwi9kgx95Ik0VrdRKwiuqPQi+PXaUzKSz7YK/Lr+9VrfOcmcIWwnbdBzuKRxHXPVBpmYL5+4mcv5SDfJULsItBKlU6UVMYMtb85TqNSe6by5x2shuR+2RRm6TpM4UONdQxYUBJOCztTrlgo4mmQ6fIlE2q0D69IqIjCT3JCCp0lYncpiE24ybfR6f39vVxCchJO/f31jvteff5V8luONVQ4bz59Xn9mUR8o0ijKNBmIrkCCE5ejm6FWx8ilDTPdORFPOqOTKcdEKhQ/BsIncbjkkSnMZsQBOJgQLn9EYksJQzMei4fYz6FIgCUP/UbrJOQ4mOBgMjdyC8uViSozIudfcsFgoPXuLhZtoI2cIMS7LimUlEVGjLfg5Jz0zLISnex49f8gMn/V8gA0sKMxBTpaX3gIcOSnA8PSfIcRWASxPlrwh1Acbr42rXDkPnunS0jz298s3CPv7e7lJge+4TrMDABhh1b8OibY+9C8mD68KByfviqYFoSrtL3+H/UXbJv6Rig8lUDob5w1IxtW7sBKT7CpMh0d4cw+M9ZnoOzeAN0yle6rhAdPIauvGjQg5ApghMp3JbD4wdf3ktXk7xExpEXcPTCEHgUmKJUFDIm8JyadUyluujfbCJqqzLElCoqv1+huXnreYAQVVaz0lhe9sRrJO0elQ/+SxsWSteWPph8GR2xpx7kcSbSmGbPlfFDWltvoMXSMiSTKljERq/wypILFJ4MCQzGeOGbIbaJGORvSbGxGegbzV17u7+hH9RMCT8U6ALpO5qSCMZ7OEf6NTHZNBhfJFBJ3O4jmS4FmWDULFyhgPSSyU9onBXIJ955bEMWB/edEXmaIJeZB+2Sqr8GKglTszAwd2XXIwgNEXq0XYWIrGtb75v35daR7q+S7YovKYWYFap5A7IKDLjTGst/s5+priWBsb5hmmu8iDQsr0AI5ji50+jSffQjLTW/aEKy9GvZayyFjWpVUcgKuO7SGG51cUZwDnhCY/XWsn+D3Up5DuXEfabm8AOcSM8czYyq2YhkeBzAMvIjQksU5IKS/g6tWe1wg+bfVxBRYymM7NCFrk9ZrHQm4FxeMBM0rONwNchbnHcTrJyqVIh51ApMN2Tq00csszm57W7saUtzHx2Rhb+jBEbQwywTTOnNSKZYpF7WtNyWdXgMYTKHMyGpEQcgqUZacFxWC/TS4v+jsNfRryhfFbpkiY0T3zP0ApNuxpIqg3f2l7i6TCUS/CzQ5XvC5pIZ+CHLxsnQ/6fpG6zzhRT/HD9zm5SQVJ1hgy8NkMX2Fw+zPQJ6PmKNd+XnyWC1IIR/bmRNdajogybRQrBYGHPNWKEx7Vvhq0miM32LnC5lQRvDwnJaYrnZKPCb4hcBJDIISDJ96RDpMJJcKYjQAE1ApPwDNk8BqNrKawx86YIQxJ9sZ71DuApyinhnG12sxNMBsTEax31fvdqfWpLk/mGWnB5J0SCF/jo0U2G2boon/yUZHwRAtt3w3lL/f6Zc4N7pA8tEYBzmcn1a91ZKanNs9HDst5/IahCs9XItvoG8oycF0sSn7iSTwkiUSnlAlJKFuWJCDTzyazAP25hVaTYG1NesvXf66iEmBvGmiKuZBkujuLsVSKc2nZ1liscQPxuaiBLTtFL+X+0WXss2v0aoovQGeYRLcSzW1GI7iT19qSIcw4m0/pd++MV5PfffwsyCiN1SK8Vi8FNLpWMqg/KASvnXEZcjbSfMZxfgNkUYW9ngoSLS+uRUENs/yMxxRSe3sgKtJ2B812s9vstJudVme/s3/c7hweHTY7B8ed/c7xfmu/2dnrto+7B4dHB812a4lS1QbFshSviuTjq+fBhCfG9+MJivnYu8CtohUOyIqqOeHx2tKTXW0hHW6hICGsTTRJs3VubLECSq/+3PpCh5jhKxxNKdtqoK2EgDPIxldqwCUq9vxw1pK7KrYOwU9pEGbYb6hJmE3wL6Owgig/sVlYJMJLNQyLeGykaZhN8i/j8CHGYUbHH9g8zJD8uQ3EjA4/hYn4HBaEH9+0icZB/eCaR7Ac7Ox+VKMgj99G7vf5KT79Vm7h/7VLL9ylLYle6gbsKpVv1t5aX9M9cON10Tg/w54qcTIm8qc8mjCob+i5hJndptodz3AoYSjyoxofy1JgI82TZZHYyLMIM8O/TJyHHEQYIr5UI6g+hhtmJj3xEYQhwg9sK/lBUVd4bDN2vNAolH1bI0BKj2HDpBjk4kOt3inRMfAYDRN+62U/u9V9OSFzk3UiJvwWqZ2IoVsytCm9kKOihqJsnAXUm2T+1E3VBrPXj2mKiBr+qdS1gVbkJf044Yzc46OsZUIZ6craBY9wQnOTWiLf6vlMNuZJxVVOKooYvuPfaRzj3W7QQtuaB/8F9T5+NvxAHwao3blq65DMdzhUX/xrB53MZjH5gwz/SeXuQasbtIN2181z+5+/Xb67aOh3/kHCL3zHFgnZbXeCFnrHhzQmu+3uaXv/yBB596C1b1o6OVKLYISnNF5XQsyHAdLjo20byZmQaIJlA0VkSDFroFFCyFBEDXRLWcRvxU6JgPrJ0rzrZUxupov9QZfGYGNjBlqzn/mJxq5FRwIltrSxW5IuLTDv+H/wDSnS6AtJGFmXc1bCQUNz09aVPfDtonWxH+wHrWa73WlCIU8aFme/gW7bgzlsywZ4/F3E0n8V6WFdhafip4Vn1m5ImOSigdJhymR613rFyS0trVc1sbW5A0IHs18bOKaSAngFWJIxT+h3/QQvIkmZ5I65Sh2bLWuYcBxBOT+ShMrABz1GifB8hQ/ucUHQiMcxv1Ujmz6AWe4zZLZtu1pBO69RTFn6rYGmOASKMvotS74wdC2XgfgwQHOevnqVqB0eQ54FhPSbNCKT3BtTIRsmbd/L29ClAtyQMz5Lla8UBehjTLAgKCYSpQIyHNBwrgjFFATMdPlODeq0N2goqs4SPuOCIOrl++Eogh6P5Rh9QLOuRcxFsN7yVCU5r6uw2q2gXdxA1ztVr+7XPWaU2vQ9Y/smNhumMbN/vzh5X8fAVs9Z0xonWU6mcRXn6KjVCdpfkcTjbbGjk8FmOPxCpCs8JHQuBxaIsjGUJoFuGPpPGB8LwUNqquupIZhN1gYfHZx4hbVbmNiV/DXA9JZoO0G6lfJe56wHCvsqLBIS8iRSw1E2jg22Eo8hbQy0QwrlHaD9pGXeRBc0UBP92qSs+RURFuKZSPUsRcMcMVTNDOXy0OV8RkMvf81kT0DJFuwS7gVhgidomwTjAP1PQr400B80IWKCky87kE1Ob0g8R84NgwOlBI+gInKBEpQxkizkqh4C6YcMchmDBdq2eSFmVPNbHv+dBUjejZ7Gz4y7LJZ3oKe13S9Wncdzp38pcxpK4c4qZEUJuu5GRCw5JB6PQReYIT8MbbswT7it9Aa+lJtdoEL+7ONmSCfb/hES1F5xq8LUA7MHTxEVYULgoKu4wsyYMANvvEV8GdGE3OI4Fg2UgPCLhj7pwBEa4hizkCRiCT93bYeqgNB5XzsQSiSyetKO+mV9XXfPWaMb/GFmqmsCBnCUtAwOPJWCRvdUKndaP40ZSfCQusqvVv2Xfli8D6htIDdQjYw0XAEaldLTbOvn7KCpVjqYNuDWWrIBWj/xkTUIlD5PwgmVRPfNAkRkiS4YwodElo97CYagKYpireemW9/bI/92ow9erYI1+Dw43VF/6IYGMTzoBs1esNUPeYLOzLrdyWWSZt2lv6Y4notxipMo0H9DVe6vt2Q4IfFsd8SvoHJPvKvsvZhEY6KG3s0heGVtZyKCiZz++d9hIDexPDGyZ/+9U1m3xdagsrmCZTPx1Z9bFq8lbmDDWG0WNsl7TVICTRpygFxh0xwVRMiTzLLMMSc7u/HLzUDTDugBHt4IsVsuTvv7oHYlbW/GG+Y2l2jpfVFNSFhyZqcSbuPGMeyBPtiqtxcsivCGBFMqE6J7rivNtTvCX0G441/DG3IFCbFX3uTEVZgQ5Sb92YPC7g6sr1Ep0Tvw6bcZF0pf9H4/9TH8d4mr50z5RB8GSHeFQZ2g3QkOGn65lTw5jG/36WNviTbbBHokrHtZWN3p3SaBvaMvPam4gzXlJVHFooo1cVqXBGuzRxTmFmOjELbP+zs2+d80vsgVzajaIpHOwQ7QuZ82jdL8BZ0BYAa1t8lluhb3jLqifzvB8oqKK7UEaLRjZL0o45mjX5T18/6/K3jU1J2GWq1W7W4zUHmTrK9O+AlKiC57tljB5Kxmo210ydMplXSsnR5HC8sMJ/1RgS9FwlRzJBzT5pAy9S2c8oZj+nf1xxtHx4N2ewkyKsG7WqvwG9+RJ0iEmFWLamXvqXarfRQsIxRqfEaS4IawiK+rwvqlKeayaFuHKSA9hRJal4ThYVy/nVDIExIMs0Y0dyEzijmu3EZfDdQwuqJDgtnY3H62gpays9utoGXqsqg/0ZDYW4UpFxIJckMSv/bfW2VYCjMiVz6nstOEIEJM4boVtPYs5lRaokyJTGgo0DaWEodf0A2E5mTnmLrs3jcq5w00S+gNjcmYmOrDJh5DkkSXYN5pIDqd4VBmo/rRFWoMN656bZzAsGooEycFczKtV6Hw8wIjoMLosgY6iG4z4mGqUN4p2afdoLsciwm7oQlnarRat5lPxOtTf1r3MR2zOXJFJUFKDIcaaBUOwZ08TYgaX2wAiySZzniySdy5NDO6jzFwJTjFMtWEViSNqFfoqpHbry2vwsdbFzUpvN4TcnDf39sOJrlzjsxh3n7/e38n2+yhKpiEFtKORsAGkE/MvlA2hoPprQt+u9VAW+9IRNPplpbmrd/oeLIFLFDOGbrpKKY69elGBEkQxWNHiPzLYEkAlY21F7RMdak5nBxGZERZvmyuGiF7OMcjT4rgCSoQv2Uk0tYLZnisT5zOzj8NLoMPyVg3rUHb8IVSnujzoKm77DPOmrOEj6jnanntYhrodsKVMqDC1rqWHE1IPAO9D+fogoQgnMqyBT2hrK8ZZ14DNknwVCAcJlxow/mWJ3G0QETZTRQwKmQw5jdwUtE0qgjEtawM9JVIPVE1LFmjdeG4XmlhQF0mRT1QFHYTxNB7DRqex45ms4TyhErDCJSQMU4gZsBTAatRsGTEKzChA33P6eO3buvYP3SETjW9Qgv2O++fqFBWQKw3B33zoj0RtbDsMaRaLN8KffJFrhemfz5JdReNeI5iPh6bLg7o8mKAlDLV9zcRHVPYCW2HvKztnaMICVOpbDw0pAwnVNkxg9135+9O89CYiVYf8giegQ0Ux3MB5Y6hkLqdJYdz/C9uzf5hq637Tcd0QKvQHSXU2w2osO1udyGS71r9AN2IrgMYxow4wWJChJW3/umnJmFq18i3vVdqxsWam7YA6s1raLcCxetzlypDkl0eu9s+fVulJ6JeDsQEd7oH1zsOvdMbw1QsswBav4Ft6VDZ3hhl12mikZ+KJYXuiaTp4deRNMfOitvmAAtdy1gEXv+ma9PewYwIP4cxJUwagta/+8AxLFS1rUDGwbriOV2zK9OQzoNr6lFuD07e7wQ6Ak/BEegGJ3Ol+cPCcgTzwPbg1IaCxxM42hlCE021DCHKUnMua2ahpLz/foB8jBHaVkPZctLCmOW5RA5Sbrn56m9e9e3aVobr/P8MLR5dh8fVmqNX9MBfvve9w/852j6KImr1+z6aeW9Cq8fluKc7PbpOjsqEaqAPn98U+r1Db8c7OO3Wyqoc35gWj++UUCit8Dslt0si8dxdHVdbuOcsfACeG9DccTm0C5K9JOo/aBNIxuUVtIOpgc7KPf0Zh+4IJKnT17/TarYOoa//3ut29/Xe8XJ9/RVC+j5qnRjBGUMdbNrHzdYRYNN+vd963ekuh43Xp33dTbdPXGd6G+ijL/JlqZl9Ecsl2lp7+IRpcrOuRQQX3Wp8jYsJTyFxrB4IzU9ep3qvl7jngaGaDfuVLzrrdmpfBXhEIN9mnNVr/rSoAf+pGSLrPEESKAGeZ5oOYqiH0EG3u3fo3NCIfCtEiPPwSseFFSPH6yMu6Pc6zF+ENBxF0O/uosPjpZjhUDliaEhl2TrvtPaP6h+nJBTH6+2Ja5IYNSh7NwpbjhPb6t0NjkZAAQlJWOifW4/MjTWUUgeOzyaY6Xa2DUSlF9OtvVVpThQ4OEmxMizgemM206Hebuisu16JsN3u2du3x73D/unbs9bxUeu43+70eif1G97bY4u1K7rzfEpzrju6nYSvEf4gEPI4nRK48vGLwest2R6zoH9wdIHZGPWS+UxyFNNhgpN5gAaEuBvTMZWTdAhxTGMeYzbeHfPdYcyHu2PeDtr7uyIJd0MYYFf57vBPMOa/XuztHTYv9rrl3kDKLO8eNJdQw1mX/WdwN4XzNxc1I394L3mH33O4k6t7k3bem+BOFlWPPahRi2ehPzm4fJPZoA108SbXON/zN/WZPXiXj8btjXElc0gvi8Vz+5KLFmWOcQ9BagMcxwKOtdH4QZ3AF9P9v6kgv0ZDAlfYmIUTnuiPzdBGNpp7m7f6mdwU/iuM3bMdkMyepF539xD2CgFuPOPYNJmE42c11coTc0hlmnAhPUWt6YRj6ppIzrCc2Ie9BysmqP7rk1lCQridaMINQfYiXMfAJ5rPasLMplXl5qfwCySdku82b37x9HRUe+HhKR3r+MvXSCYpyY+uKZIblsNiMV/pD1dVcrMAdccfCK+BK/9xmgBTNLAq/GqQXnHIf+5OtGDQVXl658iKuMrcJyKgTEjvEPVeGsGxhH4X2XcRjeyyCGOeRtkK6KmPNl4gQVMicYQlrl4U78yvOugjzL0KgYWZP4Kj6AoeuLJDqidDIoQOKvPXSA5zeCmgUzz26tJmVUemtImHYdTu7FXqj0xAztUI6Lzvwhb1dC1FjHj8ik4Up+AhHke+oNoJqfkHelYW13tYXfnwnez2YNgJZiGNd4NxCLnnl4ZUQ3oLsOqKsQdtisMJZeTKy42+G5h5wU+mrgvLj8K6qqHQ7n6rLtRZwkGL1WSceXx5viVknFl9d8PIPVo5vlULEQ+/gKwavdC3nyuWl/4N7A61P8YxgabVoBT0b2qFiwlP5JXWzJk9YbdjDa/pdMKCbdNNC1XcTOdfySkRvTtATSv3YxWxPIJVv1JJtAWglMZZHhpoOm9BLQm18GY9oKuDMw1M0a/o8kP/w2v0G79V5sUUz3RtgL+X5pLb6NHdmz1arM+R0+l6CoGVXLX/ZnL7m/5UMcg5G3FfWs22AG05ra7xBFR9XymeZt847Q38PGPbO1IEJBTBfBoH5jmdKIcTfdbKOGtmbxbq5HLXMHKxpC9mTa7Smx1iyHlMMKtJ3lFGEUjMydhehstFMExpXAZZ5qjbvbfaR/1263ir3nQ+DBBA8ONlqicS8ohUroO75iJkQmQ4qT8ZC0WXrGRzJ4Ff0iFJGJEQImDk8J/+dxXjZr87mytvQGWDIl8K79aq2Uv3atbcpO+WuSLFZzyqVjtLLWaPAjOuj5XKzFWg0godviqkjzxCn8/71YDorAQn91V9EOcfyxDAKZ/hsEw2n+ZVdC+OkvthMUXumXJh2m56ZRCurF2eE+uAXQJhYRul/7dK+KUtBt2/zRQeuZri2YyysXl+629bj4CN2SyneFaJE5TN1OdqLwwxb+aAXVnYeVQyah62cpktC7YAWMENfzhAO2BVDQMF8f/+7/8jTB2w8pQqxHU1a6guJ+vh5AlkacqLpHET5n2vvAkSQ0rW5k3dzax64gmZxTTEIl8dFj1YerNxFyyaiMxiPp8WDqUeDjgbdwFgOK4epfGjo+wNvAD0PV7TqoDdsOZuLKIjyO2Vuo+0bZ6fVVlNUibplOxYA9LYapn1+NF9UTED82NmN7pDqyo7LxsbLWXkkW913UoDIcgyB+5wLYtg+C0jyb0WUY4KFn94Ne8cZG/cZUMtZcUsvLeonFutctP52Sxp0d07n6oqFkWYubISeaiVPzGeTAtxPD4BFpaJrKRRzUrT9r/s7Bd6AfxiF81/eMy/UNzEqeQRFZA7mK2g/6Z/RX3zyxz5zyHvcPbec+6KoXxHzczDDbnoBsg8F+iLgHyq4BIXH/aGzEQB8ZGbgFctrxomvet+bgG4UxxOTCXoCc7VazBxjyFmaEgQoXKS0TVCUaqLw0icyHRm+asHolCqfqpLRbirG0iHmeEET4lUiCUmfRT4RiSc2uhm/fCF+tgw9QhgapB0hmM1hBQ6+Ov8o37CaChEowZkCkE+aW5KkH0mBVCmmoQmkWaW8CgN5fKEhGhDt1GYYRAdIYfbXWBXFpcc2FfCFYDc9iDv3APaq0WwJGT9rgsUceh7siDUbgjlNymrnkeaxKtB//zpAk34rQ500+CMtMJM7iJ6mCaF2+z8SdoCqH9MCCyDDL9bLJyIm1NHnMqJ2h5scaUEMS7dYVLxitoV46lxSb3k/fQv/gWt2bWL+28O6hmNCcJSJnSYSpvVVKXrBJEpvYt+Tql7RkF+kyBSxygSmBuscMjX00NfoyGVCkyAPkwpxCZyRflbKkjh5lcQOV7fXMZLzUWXe19emhE6MaXEdMBHArnUpkodKEk040JQxXPyTSfRGmDIL7CG9FqA3MV8Axpp1gvVIhvxWxZzHJlrnQB9YPHcG0akM+MRU1PfqYFuKNYnl+/655JM/5iQhJwlfCoykfH3dksrOrIzLSSzMi7LnYGWrNFVqGe9gLgu6pnpFNbvJLJVlU1dv1S3SlHLF1oXqXGRIDgJJ77nqI19g46yIEqyCNWQFxrjpfDlwemFesEYlFlGNXCw0oL3e1AUiFE0KEvQtEVtQPBc9JPzV7ln3tcdFkZ6JRw2apDiwLkuTasPbZol8cTbyr1jGXJD4ntgZAGmrSXgwsjBL79UMOBOlfpZVPkwudsed0CTRnTxBVE+TUM9aivPlPyjaoHxvKIaxPcgnPeLZM65NMsNxqDwfw5vyCSHIoP1kD9zz6+VAkUwDydDcUTmNUGwY+Y94ypvedGQph1Zlbu86Axg+YuXEryMKgs93tUGrhAUgW8KRttCGRmoR9cqHh6Eh0uGN9gjCIUe7UnkwQf1WKLgj6mp8f8CAAD//0z2rqQ=" } diff --git a/filebeat/docs/fields.asciidoc b/filebeat/docs/fields.asciidoc index c02d5a30503..d942723b5f0 100644 --- a/filebeat/docs/fields.asciidoc +++ b/filebeat/docs/fields.asciidoc @@ -85721,16 +85721,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/filebeat/include/fields.go b/filebeat/include/fields.go index bb2b6865148..2c3ead4f919 100644 --- a/filebeat/include/fields.go +++ b/filebeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/heartbeat/docs/fields.asciidoc b/heartbeat/docs/fields.asciidoc index fddd1b41649..467a0eb8e8e 100644 --- a/heartbeat/docs/fields.asciidoc +++ b/heartbeat/docs/fields.asciidoc @@ -14904,16 +14904,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/heartbeat/include/fields.go b/heartbeat/include/fields.go index 7836f5c36d5..81aae07fb38 100644 --- a/heartbeat/include/fields.go +++ b/heartbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/journalbeat/docs/fields.asciidoc b/journalbeat/docs/fields.asciidoc index 91c9f4f93c1..4b1e74e67e2 100644 --- a/journalbeat/docs/fields.asciidoc +++ b/journalbeat/docs/fields.asciidoc @@ -15249,16 +15249,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/journalbeat/include/fields.go b/journalbeat/include/fields.go index 560bdab513e..d6795ac304a 100644 --- a/journalbeat/include/fields.go +++ b/journalbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/libbeat/autodiscover/providers/kubernetes/pod.go b/libbeat/autodiscover/providers/kubernetes/pod.go index de63c3925e2..65b64ccdc48 100644 --- a/libbeat/autodiscover/providers/kubernetes/pod.go +++ b/libbeat/autodiscover/providers/kubernetes/pod.go @@ -186,7 +186,8 @@ func (p *pod) GenerateHints(event bus.Event) bus.Event { } // Look at all the namespace level default annotations and do a merge with priority going to the pod annotations. - if rawNsAnn, ok := kubeMeta["namespace_annotations"]; ok { + rawNsAnn, err := kubeMeta.GetValue("namespace.annotations") + if err == nil { namespaceAnnotations, _ := rawNsAnn.(common.MapStr) if len(namespaceAnnotations) != 0 { annotations.DeepUpdateNoOverwrite(namespaceAnnotations) @@ -381,7 +382,7 @@ func (p *pod) containerPodEvents(flag string, pod *kubernetes.Pod, c *containerI "runtime": c.runtime, } if len(namespaceAnnotations) != 0 { - kubemeta["namespace_annotations"] = namespaceAnnotations + kubemeta.Put("namespace.annotations", namespaceAnnotations) } ports := c.spec.Ports @@ -433,7 +434,7 @@ func (p *pod) podEvent(flag string, pod *kubernetes.Pod, ports common.MapStr, in kubemeta = kubemeta.Clone() kubemeta["annotations"] = annotations if len(namespaceAnnotations) != 0 { - kubemeta["namespace_annotations"] = namespaceAnnotations + kubemeta.Put("namespace.annotations", namespaceAnnotations) } // Don't set a port on the event diff --git a/libbeat/autodiscover/providers/kubernetes/pod_test.go b/libbeat/autodiscover/providers/kubernetes/pod_test.go index 3c89a5acf20..4a7097d4802 100644 --- a/libbeat/autodiscover/providers/kubernetes/pod_test.go +++ b/libbeat/autodiscover/providers/kubernetes/pod_test.go @@ -162,17 +162,19 @@ func TestGenerateHints(t *testing.T) { "co.elastic.logs/json.keys_under_root": "true", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + }), + }, }, }, result: bus.Event{ @@ -182,17 +184,19 @@ func TestGenerateHints(t *testing.T) { "co.elastic.logs/json.keys_under_root": "true", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - "co.elastic.metrics/module": "prometheus", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + "co.elastic.metrics/module": "prometheus", + }), + }, }, "hints": common.MapStr{ "logs": common.MapStr{ @@ -227,12 +231,14 @@ func TestGenerateHints(t *testing.T) { "co.elastic.metrics.foobar/period": "15s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - "co.elastic.metrics.foobar/period": "25s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + "co.elastic.metrics.foobar/period": "25s", + }), + }, "container": common.MapStr{ "name": "foobar", "id": "abc", @@ -248,17 +254,19 @@ func TestGenerateHints(t *testing.T) { "co.elastic.metrics.foobar/period": "15s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - "co.elastic.metrics.foobar/period": "25s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + "co.elastic.metrics.foobar/period": "25s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -279,32 +287,36 @@ func TestGenerateHints(t *testing.T) { { event: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + }), + }, }, }, result: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - "co.elastic.metrics.foobar/period": "15s", - }), "container": common.MapStr{ "name": "foobar", "id": "abc", "runtime": "docker", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + "co.elastic.metrics.foobar/period": "15s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -407,12 +419,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -445,12 +461,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -535,12 +555,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -573,12 +597,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -618,12 +646,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -704,12 +736,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -740,12 +776,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -783,12 +823,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -916,12 +960,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -950,12 +998,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1019,12 +1071,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1055,12 +1111,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1141,12 +1201,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1177,12 +1241,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1220,12 +1288,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1320,12 +1392,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1358,12 +1434,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1401,12 +1481,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1477,12 +1561,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1515,12 +1603,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1593,12 +1685,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1631,12 +1727,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1740,12 +1840,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1779,12 +1883,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1825,12 +1933,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -1871,12 +1983,16 @@ func TestPod_EmitEvent(t *testing.T) { "node": common.MapStr{ "name": "node", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "pod": common.MapStr{ "name": "filebeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", diff --git a/libbeat/autodiscover/providers/kubernetes/service.go b/libbeat/autodiscover/providers/kubernetes/service.go index 3def44028bf..d8e800fe85e 100644 --- a/libbeat/autodiscover/providers/kubernetes/service.go +++ b/libbeat/autodiscover/providers/kubernetes/service.go @@ -137,7 +137,8 @@ func (s *service) GenerateHints(event bus.Event) bus.Event { } // Look at all the namespace level default annotations and do a merge with priority going to the pod annotations. - if rawNsAnn, ok := kubeMeta["namespace_annotations"]; ok { + rawNsAnn, err := kubeMeta.GetValue("namespace.annotations") + if err == nil { nsAnn, _ := rawNsAnn.(common.MapStr) if len(nsAnn) != 0 { annotations.DeepUpdateNoOverwrite(nsAnn) @@ -211,7 +212,7 @@ func (s *service) emit(svc *kubernetes.Service, flag string) { for k, v := range namespace.GetAnnotations() { safemapstr.Put(nsAnns, k, v) } - kubemeta["namespace_annotations"] = nsAnns + kubemeta.Put("namespace.annotations", nsAnns) } } } diff --git a/libbeat/autodiscover/providers/kubernetes/service_test.go b/libbeat/autodiscover/providers/kubernetes/service_test.go index c9ee7764632..1a8dd4696c6 100644 --- a/libbeat/autodiscover/providers/kubernetes/service_test.go +++ b/libbeat/autodiscover/providers/kubernetes/service_test.go @@ -108,13 +108,15 @@ func TestGenerateHints_Service(t *testing.T) { "co.elastic.metrics/module": "prometheus", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/period": "10s", - }), "service": common.MapStr{ "name": "foobar", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/period": "10s", + }), + }, }, }, result: bus.Event{ @@ -126,10 +128,12 @@ func TestGenerateHints_Service(t *testing.T) { "service": common.MapStr{ "name": "foobar", }, - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/period": "10s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/period": "10s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -150,11 +154,13 @@ func TestGenerateHints_Service(t *testing.T) { "co.elastic.metrics/period": "10s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + }), + }, "service": common.MapStr{ "name": "foobar", }, @@ -167,11 +173,13 @@ func TestGenerateHints_Service(t *testing.T) { "co.elastic.metrics/period": "10s", "not.to.include": "true", }), - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "dropwizard", - "co.elastic.metrics/period": "60s", - }), - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "dropwizard", + "co.elastic.metrics/period": "60s", + }), + }, "service": common.MapStr{ "name": "foobar", }, @@ -190,26 +198,30 @@ func TestGenerateHints_Service(t *testing.T) { { event: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - }), "service": common.MapStr{ "name": "foobar", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + }), + }, }, }, result: bus.Event{ "kubernetes": common.MapStr{ - "namespace_annotations": getNestedAnnotations(common.MapStr{ - "co.elastic.metrics/module": "prometheus", - "co.elastic.metrics/period": "10s", - }), "service": common.MapStr{ "name": "foobar", }, - "namespace": "ns", + "namespace": common.MapStr{ + "name": "ns", + "annotations": getNestedAnnotations(common.MapStr{ + "co.elastic.metrics/module": "prometheus", + "co.elastic.metrics/period": "10s", + }), + }, }, "hints": common.MapStr{ "metrics": common.MapStr{ @@ -286,12 +298,16 @@ func TestEmitEvent_Service(t *testing.T) { "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "service": common.MapStr{ "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", @@ -373,12 +389,16 @@ func TestEmitEvent_Service(t *testing.T) { "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "annotations": common.MapStr{}, }, "meta": common.MapStr{ "kubernetes": common.MapStr{ - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "service": common.MapStr{ "name": "metricbeat", "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", diff --git a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go index 0279e0a9a4d..3497a0a0361 100644 --- a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go +++ b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore.go @@ -62,7 +62,7 @@ func (kr *KubernetesKeystoresRegistry) GetKeystore(event bus.Event) keystore.Key namespace := "" if val, ok := event["kubernetes"]; ok { kubernetesMeta := val.(common.MapStr) - ns, err := kubernetesMeta.GetValue("namespace") + ns, err := kubernetesMeta.GetValue("namespace.name") if err != nil { kr.logger.Debugf("Cannot retrieve kubernetes namespace from event: %s", event) return nil diff --git a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go index 359479b9eb8..68656b0b4e7 100644 --- a/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go +++ b/libbeat/common/kubernetes/k8skeystore/kubernetes_keystore_test.go @@ -34,10 +34,10 @@ import ( func TestGetKeystore(t *testing.T) { kRegistry := NewKubernetesKeystoresRegistry(nil, nil) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": "my_namespace"}}) - k2 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": "my_namespace"}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": "my_namespace"}}}) + k2 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": "my_namespace"}}}) assert.Equal(t, k1, k2) - k3 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": "my_namespace_2"}}) + k3 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": "my_namespace_2"}}}) assert.NotEqual(t, k2, k3) } @@ -64,7 +64,7 @@ func TestGetKeystoreAndRetrieve(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(nil, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret.secret_value" secure, err := k1.Retrieve(key) if err != nil { @@ -100,7 +100,7 @@ func TestGetKeystoreAndRetrieveWithNonAllowedNamespace(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace_HACK.testing_secret.secret_value" _, err = k1.Retrieve(key) assert.Error(t, err) @@ -130,7 +130,7 @@ func TestGetKeystoreAndRetrieveWithWrongKeyFormat(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "HACK_test_namespace_HACK.testing_secret.secret_value" _, err = k1.Retrieve(key) assert.Error(t, err) @@ -142,7 +142,7 @@ func TestGetKeystoreAndRetrieveWithNoSecretsExistent(t *testing.T) { ns := "test_namespace" kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret.secret_value" _, err := k1.Retrieve(key) assert.Error(t, err) @@ -172,7 +172,7 @@ func TestGetKeystoreAndRetrieveWithWrongSecretName(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret_WRONG.secret_value" _, err = k1.Retrieve(key) assert.Error(t, err) @@ -202,7 +202,7 @@ func TestGetKeystoreAndRetrieveWithWrongSecretValue(t *testing.T) { } kRegistry := NewKubernetesKeystoresRegistry(logger, client) - k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": ns}}) + k1 := kRegistry.GetKeystore(bus.Event{"kubernetes": common.MapStr{"namespace": common.MapStr{"name": ns}}}) key := "kubernetes.test_namespace.testing_secret.secret_value_WRONG" _, err = k1.Retrieve(key) assert.Error(t, err) diff --git a/libbeat/common/kubernetes/metadata/namespace.go b/libbeat/common/kubernetes/metadata/namespace.go index 697f6b599f8..424eab15d9a 100644 --- a/libbeat/common/kubernetes/metadata/namespace.go +++ b/libbeat/common/kubernetes/metadata/namespace.go @@ -70,8 +70,7 @@ func (n *namespace) GenerateK8s(obj kubernetes.Resource, opts ...FieldOptions) c } meta := n.resource.GenerateK8s(resource, obj, opts...) - // TODO: remove this call when moving to 8.0 - meta = flattenMetadata(meta) + meta = unifyResourceMetadata(meta) // TODO: Add extra fields in here if need be return meta @@ -95,25 +94,39 @@ func (n *namespace) GenerateFromName(name string, opts ...FieldOptions) common.M return nil } -func flattenMetadata(in common.MapStr) common.MapStr { - out := common.MapStr{} - rawFields, err := in.GetValue(resource) - if err != nil { - return nil - } - - fields, ok := rawFields.(common.MapStr) +// unifyResourceMetadata moves all the resource's metadata (labels, annotations) +// under the resource field +// example input: +// "kubernetes": common.MapStr{ +// "labels": common.MapStr{ +// "foo": "bar", +// }, +// "annotations": common.MapStr{ +// "spam": "baz", +// }, +// "namespace": common.MapStr{ +// "name": name, +// "uid": uid, +// }, +// }, +// example output: +// "kubernetes": common.MapStr{ +// "namespace": common.MapStr{ +// "name": name, +// "uid": uid, +// "labels": common.MapStr{ +// "foo": "bar", +// }, +// "annotations": common.MapStr{ +// "spam": "baz", +// }, +// }, +// }, +func unifyResourceMetadata(in common.MapStr) common.MapStr { + resourceValues, ok := in[resource].(common.MapStr) if !ok { - return nil + return in } - for k, v := range fields { - if k == "name" { - out[resource] = v - } else { - out[resource+"_"+k] = v - } - } - populateFromKeys := []string{"labels", "annotations"} for _, key := range populateFromKeys { rawValues, err := in.GetValue(key) @@ -122,9 +135,10 @@ func flattenMetadata(in common.MapStr) common.MapStr { } values, ok := rawValues.(common.MapStr) if ok { - out[resource+"_"+key] = values + resourceValues.Put(key, values) + in.Delete(key) } } - return out + return in } diff --git a/libbeat/common/kubernetes/metadata/namespace_test.go b/libbeat/common/kubernetes/metadata/namespace_test.go index aff54bac26f..12f4f1377d9 100644 --- a/libbeat/common/kubernetes/metadata/namespace_test.go +++ b/libbeat/common/kubernetes/metadata/namespace_test.go @@ -61,29 +61,20 @@ func TestNamespace_Generate(t *testing.T) { APIVersion: "v1", }, }, - // Use this for 8.0 - /* - output: common.MapStr{ - "kubernetes": common.MapStr{ - "namespace": common.MapStr{ - "name": name, - "uid": uid, - "labels": common.MapStr{ - "foo": "bar", - }, + output: common.MapStr{ + "kubernetes": common.MapStr{ + "namespace": common.MapStr{ + "name": name, + "uid": uid, + "labels": common.MapStr{ + "foo": "bar", + }, + "annotations": common.MapStr{ + "spam": "baz", }, }, - },*/ - output: common.MapStr{"kubernetes": common.MapStr{ - "namespace": name, - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "foo": "bar", - }, - "namespace_annotations": common.MapStr{ - "spam": "baz", }, - }}, + }, }, } @@ -129,25 +120,16 @@ func TestNamespace_GenerateFromName(t *testing.T) { APIVersion: "v1", }, }, - // Use this for 8.0 - /* - output: common.MapStr{ - "namespace": common.MapStr{ - "name": name, - "uid": uid, - "labels": common.MapStr{ - "foo": "bar", - }, - }, - },*/ output: common.MapStr{ - "namespace": name, - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "foo": "bar", - }, - "namespace_annotations": common.MapStr{ - "spam": "baz", + "namespace": common.MapStr{ + "name": name, + "uid": uid, + "labels": common.MapStr{ + "foo": "bar", + }, + "annotations": common.MapStr{ + "spam": "baz", + }, }, }, }, diff --git a/libbeat/common/kubernetes/metadata/pod_test.go b/libbeat/common/kubernetes/metadata/pod_test.go index d21307678a5..040d2d2fba8 100644 --- a/libbeat/common/kubernetes/metadata/pod_test.go +++ b/libbeat/common/kubernetes/metadata/pod_test.go @@ -133,7 +133,9 @@ func TestPod_Generate(t *testing.T) { "annotations": common.MapStr{ "app": "production", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "node": common.MapStr{ "name": "testnode", }, @@ -179,7 +181,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -234,7 +238,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "daemonset": common.MapStr{ "name": "owner", }, @@ -289,7 +295,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "nginx-deployment", }, @@ -347,7 +355,9 @@ func TestPod_Generate(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "nginx-deployment", }, @@ -422,7 +432,9 @@ func TestPod_GenerateFromName(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "node": common.MapStr{ "name": "testnode", }, @@ -472,7 +484,9 @@ func TestPod_GenerateFromName(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -579,10 +593,12 @@ func TestPod_GenerateWithNodeNamespace(t *testing.T) { "uid": uid, "ip": "127.0.0.5", }, - "namespace": "default", - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "nskey": "nsvalue", + "namespace": common.MapStr{ + "name": "default", + "uid": uid, + "labels": common.MapStr{ + "nskey": "nsvalue", + }, }, "node": common.MapStr{ "name": "testnode", diff --git a/libbeat/common/kubernetes/metadata/resource.go b/libbeat/common/kubernetes/metadata/resource.go index 7bbd05e4b98..e9591eebbcf 100644 --- a/libbeat/common/kubernetes/metadata/resource.go +++ b/libbeat/common/kubernetes/metadata/resource.go @@ -107,8 +107,7 @@ func (r *Resource) GenerateK8s(kind string, obj kubernetes.Resource, options ... } if accessor.GetNamespace() != "" { - // TODO make this namespace.name in 8.0 - safemapstr.Put(meta, "namespace", accessor.GetNamespace()) + safemapstr.Put(meta, "namespace.name", accessor.GetNamespace()) } // Add controller metadata if present diff --git a/libbeat/common/kubernetes/metadata/resource_test.go b/libbeat/common/kubernetes/metadata/resource_test.go index 5ed6f20fce0..2cbe6d3a970 100644 --- a/libbeat/common/kubernetes/metadata/resource_test.go +++ b/libbeat/common/kubernetes/metadata/resource_test.go @@ -67,7 +67,9 @@ func TestResource_Generate(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, }, }, }, @@ -106,7 +108,9 @@ func TestResource_Generate(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, diff --git a/libbeat/common/kubernetes/metadata/service_test.go b/libbeat/common/kubernetes/metadata/service_test.go index e77de70ca8a..197627aa92c 100644 --- a/libbeat/common/kubernetes/metadata/service_test.go +++ b/libbeat/common/kubernetes/metadata/service_test.go @@ -81,7 +81,9 @@ func TestService_Generate(t *testing.T) { "app": "istiod", "istio": "pilot", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, }, }, }, @@ -130,7 +132,9 @@ func TestService_Generate(t *testing.T) { "app": "istiod", "istio": "pilot", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -184,7 +188,9 @@ func TestService_GenerateFromName(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, }, }, { @@ -221,7 +227,9 @@ func TestService_GenerateFromName(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - "namespace": "default", + "namespace": common.MapStr{ + "name": "default", + }, "deployment": common.MapStr{ "name": "owner", }, @@ -295,19 +303,12 @@ func TestService_GenerateWithNamespace(t *testing.T) { "labels": common.MapStr{ "foo": "bar", }, - // Use this for 8.0 - /* - "namespace": common.MapStr{ - "name": "default", - "uid": uid, - "labels": common.MapStr{ - "nskey": "nsvalue", - }, - },*/ - "namespace": "default", - "namespace_uid": uid, - "namespace_labels": common.MapStr{ - "nskey": "nsvalue", + "namespace": common.MapStr{ + "name": "default", + "uid": uid, + "labels": common.MapStr{ + "nskey": "nsvalue", + }, }, }, }, diff --git a/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml b/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml index 2686e545826..8a1611ff65a 100644 --- a/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml +++ b/libbeat/processors/add_kubernetes_metadata/_meta/fields.yml @@ -24,9 +24,28 @@ Kubernetes Pod IP - name: namespace - type: keyword - description: > - Kubernetes namespace + type: group + fields: + - name: name + type: keyword + description: > + Kubernetes namespace name + - name: uuid + type: keyword + description: > + Kubernetes namespace uuid + - name: labels.* + type: object + object_type: keyword + object_type_mapping_type: "*" + description: > + Kubernetes namespace labels map + - name: annotations.* + type: object + object_type: keyword + object_type_mapping_type: "*" + description: > + Kubernetes namespace annotations map - name: node.name type: keyword diff --git a/libbeat/processors/add_kubernetes_metadata/indexers_test.go b/libbeat/processors/add_kubernetes_metadata/indexers_test.go index eb17833dea4..a28775641fd 100644 --- a/libbeat/processors/add_kubernetes_metadata/indexers_test.go +++ b/libbeat/processors/add_kubernetes_metadata/indexers_test.go @@ -73,7 +73,9 @@ func TestPodIndexer(t *testing.T) { "labels": common.MapStr{ "labelkey": "labelvalue", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, @@ -125,7 +127,9 @@ func TestPodUIDIndexer(t *testing.T) { "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", "ip": "127.0.0.5", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, @@ -183,7 +187,9 @@ func TestContainerIndexer(t *testing.T) { "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", "ip": "127.0.0.5", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, @@ -431,7 +437,9 @@ func TestIpPortIndexer(t *testing.T) { "uid": "005f3b90-4b9d-12f8-acf0-31020a840133", "ip": "1.2.3.4", }, - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "node": common.MapStr{ "name": "testnode", }, diff --git a/metricbeat/docs/fields.asciidoc b/metricbeat/docs/fields.asciidoc index 63346f9b198..05d1111c9d6 100644 --- a/metricbeat/docs/fields.asciidoc +++ b/metricbeat/docs/fields.asciidoc @@ -40127,16 +40127,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/metricbeat/include/fields/fields.go b/metricbeat/include/fields/fields.go index 5bf3b244c5d..4652406599f 100644 --- a/metricbeat/include/fields/fields.go +++ b/metricbeat/include/fields/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/metricbeat/module/kubernetes/container/data.go b/metricbeat/module/kubernetes/container/data.go index 53a795624d9..78c6d29b83e 100644 --- a/metricbeat/module/kubernetes/container/data.go +++ b/metricbeat/module/kubernetes/container/data.go @@ -43,7 +43,9 @@ func eventMapping(content []byte, perfMetrics *util.PerfMetricsCache) ([]common. for _, container := range pod.Containers { containerEvent := common.MapStr{ mb.ModuleDataKey: common.MapStr{ - "namespace": pod.PodRef.Namespace, + "namespace": common.MapStr{ + "name": pod.PodRef.Namespace, + }, "node": common.MapStr{ "name": node.NodeName, }, diff --git a/metricbeat/module/kubernetes/event/event.go b/metricbeat/module/kubernetes/event/event.go index f4ec9fdf576..210f65a92f1 100644 --- a/metricbeat/module/kubernetes/event/event.go +++ b/metricbeat/module/kubernetes/event/event.go @@ -126,8 +126,10 @@ func generateMapStrFromEvent(eve *kubernetes.Event, dedotConfig dedotConfig) com "timestamp": common.MapStr{ "created": kubernetes.Time(&eve.ObjectMeta.CreationTimestamp).UTC(), }, + "namespace": common.MapStr{ + "name": eve.ObjectMeta.GetNamespace(), + }, "name": eve.ObjectMeta.GetName(), - "namespace": eve.ObjectMeta.GetNamespace(), "self_link": eve.ObjectMeta.GetSelfLink(), "generate_name": eve.ObjectMeta.GetGenerateName(), "uid": eve.ObjectMeta.GetUID(), diff --git a/metricbeat/module/kubernetes/pod/data.go b/metricbeat/module/kubernetes/pod/data.go index bb24d31905c..8e4ffc759eb 100644 --- a/metricbeat/module/kubernetes/pod/data.go +++ b/metricbeat/module/kubernetes/pod/data.go @@ -59,7 +59,9 @@ func eventMapping(content []byte, perfMetrics *util.PerfMetricsCache) ([]common. podEvent := common.MapStr{ mb.ModuleDataKey: common.MapStr{ - "namespace": pod.PodRef.Namespace, + "namespace": common.MapStr{ + "name": pod.PodRef.Namespace, + }, "node": common.MapStr{ "name": node.NodeName, }, diff --git a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected index 9bfecbe3c39..004b0ee9968 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.3.0.expected @@ -10,7 +10,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -51,30 +53,37 @@ { "RootFields": { "container": { - "id": "e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", + "id": "ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", "image": { - "name": "gcr.io/google_containers/kube-apiserver-amd64:v1.9.7" + "name": "k8s.gcr.io/kube-addon-manager:v8.6" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-apiserver-minikube" + "name": "kube-addon-manager-minikube" } }, "MetricSetFields": { "cpu": { "request": { - "cores": 0.25 + "cores": 0.005 } }, - "id": "docker://e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", - "name": "kube-apiserver", + "id": "docker://ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", + "memory": { + "request": { + "bytes": 52428800 + } + }, + "name": "kube-addon-manager", "status": { "phase": "running", "ready": true, @@ -95,25 +104,32 @@ { "RootFields": { "container": { - "id": "76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", + "id": "e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", "image": { - "name": "gcr.io/google_containers/kube-proxy-amd64:v1.9.7" + "name": "gcr.io/google_containers/kube-apiserver-amd64:v1.9.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-proxy-znhg6" + "name": "kube-apiserver-minikube" } }, "MetricSetFields": { - "id": "docker://76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", - "name": "kube-proxy", + "cpu": { + "request": { + "cores": 0.25 + } + }, + "id": "docker://e9568dfef1dd249cabac4bf09e6bf4a239fe738ae20eba072b6516676fce4bf6", + "name": "kube-apiserver", "status": { "phase": "running", "ready": true, @@ -134,30 +150,43 @@ { "RootFields": { "container": { - "id": "4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", + "id": "948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", "image": { - "name": "gcr.io/google_containers/kube-controller-manager-amd64:v1.9.7" + "name": "k8s.gcr.io/addon-resizer:1.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-controller-manager-minikube" + "name": "kube-state-metrics-6479d88c5c-5b6cl" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.1 + }, "request": { - "cores": 0.2 + "cores": 0.1 } }, - "id": "docker://4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", - "name": "kube-controller-manager", + "id": "docker://948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", + "memory": { + "limit": { + "bytes": 31457280 + }, + "request": { + "bytes": 31457280 + } + }, + "name": "addon-resizer", "status": { "phase": "running", "ready": true, @@ -178,41 +207,27 @@ { "RootFields": { "container": { - "id": "948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", + "id": "76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", "image": { - "name": "k8s.gcr.io/addon-resizer:1.7" + "name": "gcr.io/google_containers/kube-proxy-amd64:v1.9.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-6479d88c5c-5b6cl" + "name": "kube-proxy-znhg6" } }, "MetricSetFields": { - "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "docker://948c4ebd8ca4fdf352e7fbf7f5c5d381af7e615ced435dc42fde0c1d25851320", - "memory": { - "limit": { - "bytes": 31457280 - }, - "request": { - "bytes": 31457280 - } - }, - "name": "addon-resizer", + "id": "docker://76c260259ddfd0267b5acb4e514465215ef1ebfa93a4057d592828772e6b39f5", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, @@ -241,7 +256,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -285,7 +302,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -329,25 +348,32 @@ { "RootFields": { "container": { - "id": "6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", + "id": "4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", "image": { - "name": "gcr.io/google_containers/etcd-amd64:3.1.11" + "name": "gcr.io/google_containers/kube-controller-manager-amd64:v1.9.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "etcd-minikube" + "name": "kube-controller-manager-minikube" } }, "MetricSetFields": { - "id": "docker://6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", - "name": "etcd", + "cpu": { + "request": { + "cores": 0.2 + } + }, + "id": "docker://4beb9aab887ca162c9cb3534c4826156636241052cd548153eaa2a170b6d102f", + "name": "kube-controller-manager", "status": { "phase": "running", "ready": true, @@ -368,35 +394,43 @@ { "RootFields": { "container": { - "id": "ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", + "id": "88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", "image": { - "name": "k8s.gcr.io/kube-addon-manager:v8.6" + "name": "quay.io/coreos/kube-state-metrics:v1.3.0" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-addon-manager-minikube" + "name": "kube-state-metrics-6479d88c5c-5b6cl" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.101 + }, "request": { - "cores": 0.005 + "cores": 0.101 } }, - "id": "docker://ab382dbe8f8265f88ee9fec7de142f778da4a5fd9fe0334e3bdb6fe851124c08", + "id": "docker://88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", "memory": { + "limit": { + "bytes": 106954752 + }, "request": { - "bytes": 52428800 + "bytes": 106954752 } }, - "name": "kube-addon-manager", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, @@ -417,44 +451,41 @@ { "RootFields": { "container": { - "id": "88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", + "id": "aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", "image": { - "name": "quay.io/coreos/kube-state-metrics:v1.3.0" + "name": "gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.7" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-6479d88c5c-5b6cl" + "name": "kube-dns-6f4fd4bdf-wlmht" } }, "MetricSetFields": { "cpu": { - "limit": { - "cores": 0.101 - }, "request": { - "cores": 0.101 + "cores": 0.01 } }, - "id": "docker://88951e0178ea5131fa3e2d7cafacb3a7e63700795dd6fa0d40ed2e4ac1f52f9c", + "id": "docker://aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", "memory": { - "limit": { - "bytes": 106954752 - }, "request": { - "bytes": 106954752 + "bytes": 20971520 } }, - "name": "kube-state-metrics", + "name": "sidecar", "status": { "phase": "running", "ready": true, + "reason": "OOMKilled", "restarts": 0 } }, @@ -480,7 +511,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -511,39 +544,30 @@ { "RootFields": { "container": { - "id": "aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", + "id": "6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", "image": { - "name": "gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.7" + "name": "gcr.io/google_containers/etcd-amd64:3.1.11" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-6f4fd4bdf-wlmht" + "name": "etcd-minikube" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.01 - } - }, - "id": "docker://aad0addd205dc72dc7abc8f9d02a1b429a2f2e1df3acc60431ca6b79746c093b", - "memory": { - "request": { - "bytes": 20971520 - } - }, - "name": "sidecar", + "id": "docker://6e96fd8a687409b2314dcc01f209bb0c813c2fb08b8f75ad1695e120d41e1a2a", + "name": "etcd", "status": { "phase": "running", "ready": true, - "reason": "OOMKilled", "restarts": 0 } }, @@ -569,7 +593,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, diff --git a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected index 4277911c4b3..ce83e911445 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v1.8.0.expected @@ -2,38 +2,31 @@ { "RootFields": { "container": { - "id": "f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", + "id": "30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", "image": { - "name": "k8s.gcr.io/kube-addon-manager:v9.0.2" + "name": "busybox:latest" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-addon-manager-minikube" + "name": "hello-1578512100-vr7wj" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.005 - } - }, - "id": "docker://f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", - "memory": { - "request": { - "bytes": 52428800 - } - }, - "name": "kube-addon-manager", + "id": "docker://30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", + "name": "hello", "status": { - "phase": "running", - "ready": true, + "phase": "terminated", + "ready": false, + "reason": "Completed", "restarts": 0 } }, @@ -59,7 +52,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -95,25 +90,40 @@ { "RootFields": { "container": { - "id": "c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", + "id": "15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", "image": { - "name": "k8s.gcr.io/kube-proxy:v1.16.2" + "name": "k8s.gcr.io/coredns:1.6.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-proxy-dwg6l" + "name": "coredns-5644d7b6d9-k6wsp" } }, "MetricSetFields": { - "id": "docker://c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", - "name": "kube-proxy", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "docker://15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "coredns", "status": { "phase": "running", "ready": true, @@ -134,30 +144,27 @@ { "RootFields": { "container": { - "id": "465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", + "id": "a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", "image": { - "name": "k8s.gcr.io/kube-controller-manager:v1.16.2" + "name": "k8s.gcr.io/nginx-slim:0.8" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-controller-manager-minikube" + "name": "web-0" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.2 - } - }, - "id": "docker://465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", - "name": "kube-controller-manager", + "id": "docker://a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", + "name": "nginx", "status": { "phase": "running", "ready": true, @@ -178,29 +185,30 @@ { "RootFields": { "container": { - "id": "30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", + "id": "e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", "image": { - "name": "busybox:latest" + "name": "gcr.io/k8s-minikube/storage-provisioner:v1.8.1" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "hello-1578512100-vr7wj" + "name": "storage-provisioner" } }, "MetricSetFields": { - "id": "docker://30216f9823ca7d3454987075dd7256b665b14b2333c9a6762b127b6378516609", - "name": "hello", + "id": "docker://e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", + "name": "storage-provisioner", "status": { - "phase": "terminated", - "ready": false, - "reason": "Completed", + "phase": "running", + "ready": true, "restarts": 0 } }, @@ -218,38 +226,37 @@ { "RootFields": { "container": { - "id": "f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", + "id": "f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", "image": { - "name": "k8s.gcr.io/coredns:1.6.2" + "name": "k8s.gcr.io/kube-addon-manager:v9.0.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "coredns-5644d7b6d9-fhwjd" + "name": "kube-addon-manager-minikube" } }, "MetricSetFields": { "cpu": { "request": { - "cores": 0.1 + "cores": 0.005 } }, - "id": "docker://f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", + "id": "docker://f13c53a3ed0f3626b33b3c588d6913257320f65714eff28f25ead8f7663dc93b", "memory": { - "limit": { - "bytes": 178257920 - }, "request": { - "bytes": 73400320 + "bytes": 52428800 } }, - "name": "coredns", + "name": "kube-addon-manager", "status": { "phase": "running", "ready": true, @@ -270,25 +277,27 @@ { "RootFields": { "container": { - "id": "e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", + "id": "669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", "image": { - "name": "gcr.io/k8s-minikube/storage-provisioner:v1.8.1" + "name": "k8s.gcr.io/nginx-slim:0.8" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "storage-provisioner" + "name": "web-1" } }, "MetricSetFields": { - "id": "docker://e0b05fcb32abf937c395942e0234b5dfc834206149bbb95afa585c51693650f3", - "name": "storage-provisioner", + "id": "docker://669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", + "name": "nginx", "status": { "phase": "running", "ready": true, @@ -309,25 +318,32 @@ { "RootFields": { "container": { - "id": "2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", + "id": "cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", "image": { - "name": "quay.io/coreos/kube-state-metrics:v1.8.0" + "name": "k8s.gcr.io/kube-apiserver:v1.16.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-898d4db8d-dqmtg" + "name": "kube-apiserver-minikube" } }, "MetricSetFields": { - "id": "docker://2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", - "name": "kube-state-metrics", + "cpu": { + "request": { + "cores": 0.25 + } + }, + "id": "docker://cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", + "name": "kube-apiserver", "status": { "phase": "running", "ready": true, @@ -348,38 +364,27 @@ { "RootFields": { "container": { - "id": "15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", + "id": "c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", "image": { - "name": "k8s.gcr.io/coredns:1.6.2" + "name": "k8s.gcr.io/kube-proxy:v1.16.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "coredns-5644d7b6d9-k6wsp" + "name": "kube-proxy-dwg6l" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.1 - } - }, - "id": "docker://15ada7864628d1c8007c01420e5887a501590d3bc9c25628a4770172ad615112", - "memory": { - "limit": { - "bytes": 178257920 - }, - "request": { - "bytes": 73400320 - } - }, - "name": "coredns", + "id": "docker://c152296116c064db311061cf6c39cff2de8d66339c954505cb68816464cf4a03", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, @@ -400,25 +405,40 @@ { "RootFields": { "container": { - "id": "669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", + "id": "f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", "image": { - "name": "k8s.gcr.io/nginx-slim:0.8" + "name": "k8s.gcr.io/coredns:1.6.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "web-1" + "name": "coredns-5644d7b6d9-fhwjd" } }, "MetricSetFields": { - "id": "docker://669cc415d86b872450deaada60c73cca387ca23a7b0f21c5b146467b95cf1f76", - "name": "nginx", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "docker://f8fe5be1dbb1931d702c89235c79965730cbcced7b0ced9895f6c54c1ae8e5c3", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "coredns", "status": { "phase": "running", "ready": true, @@ -439,30 +459,27 @@ { "RootFields": { "container": { - "id": "cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", + "id": "2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", "image": { - "name": "k8s.gcr.io/kube-apiserver:v1.16.2" + "name": "quay.io/coreos/kube-state-metrics:v1.8.0" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-apiserver-minikube" + "name": "kube-state-metrics-898d4db8d-dqmtg" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.25 - } - }, - "id": "docker://cdaefb4df2f2add498f884fdc717a6ca8d2681c1636934747de600e6427e0c0d", - "name": "kube-apiserver", + "id": "docker://2e0519a3fcd62acea8f4253b994ce53356d89171c0eb0920a13fe58b637d8cdb", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, @@ -491,7 +508,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, @@ -522,25 +541,32 @@ { "RootFields": { "container": { - "id": "a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", + "id": "465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", "image": { - "name": "k8s.gcr.io/nginx-slim:0.8" + "name": "k8s.gcr.io/kube-controller-manager:v1.16.2" }, "runtime": "docker" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "web-0" + "name": "kube-controller-manager-minikube" } }, "MetricSetFields": { - "id": "docker://a4cec783af3614b137f4b449eebf3ac61eaf0a8661cb2f4847741be5a24de0bf", - "name": "nginx", + "cpu": { + "request": { + "cores": 0.2 + } + }, + "id": "docker://465ebffafd7fc238a2fa2e764255efcbff88d5513f4c68f57d70932985428d12", + "name": "kube-controller-manager", "status": { "phase": "running", "ready": true, diff --git a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected index a8f3b293465..b1824708ae8 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_container/_meta/test/ksm.v2.0.0.expected @@ -2,38 +2,43 @@ { "RootFields": { "container": { - "id": "3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", + "id": "3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", "image": { - "name": "k8s.gcr.io/coredns:1.6.2" + "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" }, "pod": { - "name": "coredns-5644d7b6d9-zgdsx" + "name": "kindnet-tg7tl" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.1 + }, "request": { "cores": 0.1 } }, - "id": "containerd://3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", + "id": "containerd://3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", "memory": { "limit": { - "bytes": 178257920 + "bytes": 52428800 }, "request": { - "bytes": 73400320 + "bytes": 52428800 } }, - "name": "coredns", + "name": "kindnet-cni", "status": { "phase": "running", "ready": true, @@ -54,33 +59,72 @@ { "RootFields": { "container": { - "id": "ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", + "id": "a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", "image": { - "name": "k8s.gcr.io/kube-apiserver:v1.16.15" + "name": "k8s.gcr.io/kube-proxy:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "kube-apiserver-kind-control-plane" + "name": "kube-proxy-cm525" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.25 - } - }, - "id": "containerd://ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", - "name": "kube-apiserver", + "id": "containerd://a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, + "restarts": 4 + } + }, + "Index": "", + "ID": "", + "Namespace": "kubernetes.container", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": { + "container": { + "id": "a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", + "image": { + "name": "docker.io/library/busybox:latest" + }, + "runtime": "containerd" + } + }, + "ModuleFields": { + "namespace": { + "name": "default" + }, + "node": { + "name": "kind-worker" + }, + "pod": { + "name": "hello-zf6gh" + } + }, + "MetricSetFields": { + "id": "containerd://a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", + "name": "hello", + "status": { + "phase": "terminated", + "ready": false, + "reason": "Completed", "restarts": 0 } }, @@ -106,7 +150,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker2" }, @@ -137,25 +183,32 @@ { "RootFields": { "container": { - "id": "8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", + "id": "1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", "image": { - "name": "k8s.gcr.io/kube-proxy:v1.16.15" + "name": "k8s.gcr.io/kube-controller-manager:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" }, "pod": { - "name": "kube-proxy-22znl" + "name": "kube-controller-manager-kind-control-plane" } }, "MetricSetFields": { - "id": "containerd://8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", - "name": "kube-proxy", + "cpu": { + "request": { + "cores": 0.2 + } + }, + "id": "containerd://1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", + "name": "kube-controller-manager", "status": { "phase": "running", "ready": true, @@ -176,29 +229,31 @@ { "RootFields": { "container": { - "id": "02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", + "id": "8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", "image": { - "name": "docker.io/odise/busybox-python:latest" + "name": "k8s.gcr.io/kube-proxy:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" }, "pod": { - "name": "hello-python-566b5479f5-ndwdl" + "name": "kube-proxy-22znl" } }, "MetricSetFields": { - "id": "containerd://02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", - "name": "hello-python", + "id": "containerd://8af6de6644ef1e5bb36b9d1f87d65e9b893096ae2c0f3e57061fad70f094d1be", + "name": "kube-proxy", "status": { "phase": "running", "ready": true, - "restarts": 18 + "restarts": 4 } }, "Index": "", @@ -215,7 +270,7 @@ { "RootFields": { "container": { - "id": "09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", + "id": "9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", "image": { "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" }, @@ -223,12 +278,14 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker" }, "pod": { - "name": "kindnet-kch2v" + "name": "kindnet-9fgst" } }, "MetricSetFields": { @@ -240,7 +297,7 @@ "cores": 0.1 } }, - "id": "containerd://09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", + "id": "containerd://9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", "memory": { "limit": { "bytes": 52428800 @@ -270,34 +327,39 @@ { "RootFields": { "container": { - "id": "cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", + "id": "fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", "image": { - "name": "k8s.gcr.io/kube-scheduler:v1.16.15" + "name": "docker.io/library/redis:5.0.4" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" }, "pod": { - "name": "kube-scheduler-kind-control-plane" + "name": "redis" } }, "MetricSetFields": { "cpu": { + "limit": { + "cores": 0.1 + }, "request": { "cores": 0.1 } }, - "id": "containerd://cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", - "name": "kube-scheduler", + "id": "containerd://fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", + "name": "redis", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 1 } }, "Index": "", @@ -314,29 +376,36 @@ { "RootFields": { "container": { - "id": "1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", + "id": "cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", "image": { - "name": "docker.io/rancher/local-path-provisioner:v0.0.14" + "name": "k8s.gcr.io/kube-scheduler:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "local-path-storage", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "local-path-provisioner-5bf465b47d-h8hjn" + "name": "kube-scheduler-kind-control-plane" } }, "MetricSetFields": { - "id": "containerd://1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", - "name": "local-path-provisioner", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "containerd://cd368e1731c278b039642fab2fe90902e2cfa470fd70a7ccfd5c2549a552cea5", + "name": "kube-scheduler", "status": { "phase": "running", "ready": true, - "restarts": 8 + "restarts": 4 } }, "Index": "", @@ -353,7 +422,7 @@ { "RootFields": { "container": { - "id": "d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", + "id": "90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", "image": { "name": "docker.elastic.co/beats/metricbeat:7.15.0-SNAPSHOT" }, @@ -361,12 +430,14 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker2" + "name": "kind-worker" }, "pod": { - "name": "metricbeat-55fp7" + "name": "metricbeat-bvr2v" } }, "MetricSetFields": { @@ -375,7 +446,7 @@ "cores": 0.1 } }, - "id": "containerd://d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", + "id": "containerd://90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", "memory": { "limit": { "bytes": 209715200 @@ -413,7 +484,9 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, @@ -457,37 +530,31 @@ { "RootFields": { "container": { - "id": "fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", + "id": "3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", "image": { - "name": "docker.io/library/redis:5.0.4" + "name": "k8s.gcr.io/etcd:3.3.15-0" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker2" + "name": "kind-control-plane" }, "pod": { - "name": "redis" + "name": "etcd-kind-control-plane" } }, "MetricSetFields": { - "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "containerd://fae8ef6fa6ea716f5ce0a65a1b2407d1e4839b04452d6013cdb6d5be8db8ada0", - "name": "redis", + "id": "containerd://3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", + "name": "etcd", "status": { "phase": "running", "ready": true, - "restarts": 1 + "restarts": 0 } }, "Index": "", @@ -504,45 +571,36 @@ { "RootFields": { "container": { - "id": "9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", + "id": "ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", "image": { - "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" + "name": "k8s.gcr.io/kube-apiserver:v1.16.15" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" }, "pod": { - "name": "kindnet-9fgst" + "name": "kube-apiserver-kind-control-plane" } }, "MetricSetFields": { "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "containerd://9afadbf7fd5374d1849b008e8ad4287cdbfbbf499bab9740bf0c7a5cd6730ad9", - "memory": { - "limit": { - "bytes": 52428800 - }, "request": { - "bytes": 52428800 + "cores": 0.25 } }, - "name": "kindnet-cni", + "id": "containerd://ffdc200c097349d8ed96f5768387d276751497297730121e6335a31c2d3332a4", + "name": "kube-apiserver", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 0 } }, "Index": "", @@ -559,29 +617,44 @@ { "RootFields": { "container": { - "id": "ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", + "id": "3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", "image": { - "name": "k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.1.0" + "name": "k8s.gcr.io/coredns:1.6.2" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" }, "pod": { - "name": "kube-state-metrics-f655d484d-hj69w" + "name": "coredns-5644d7b6d9-zgdsx" } }, "MetricSetFields": { - "id": "containerd://ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", - "name": "kube-state-metrics", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "containerd://3101d1525d6133851881f4b7cd439033663daefeb4849e5322d1428f09620628", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "coredns", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 4 } }, "Index": "", @@ -598,7 +671,7 @@ { "RootFields": { "container": { - "id": "90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", + "id": "d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", "image": { "name": "docker.elastic.co/beats/metricbeat:7.15.0-SNAPSHOT" }, @@ -606,12 +679,14 @@ } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-worker2" }, "pod": { - "name": "metricbeat-bvr2v" + "name": "metricbeat-55fp7" } }, "MetricSetFields": { @@ -620,7 +695,7 @@ "cores": 0.1 } }, - "id": "containerd://90560da422742a41de53c281969942c25f24d7b6bf73af6e4f226ee62338f640", + "id": "containerd://d66f649ad0f6c1822039f1c4ea27b6f792f6a86029bf862e77afa2966042a1ce", "memory": { "limit": { "bytes": 209715200 @@ -650,69 +725,31 @@ { "RootFields": { "container": { - "id": "a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", + "id": "ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", "image": { - "name": "docker.io/library/busybox:latest" + "name": "k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.1.0" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "default", - "node": { - "name": "kind-worker" + "namespace": { + "name": "kube-system" }, - "pod": { - "name": "hello-zf6gh" - } - }, - "MetricSetFields": { - "id": "containerd://a84953a247df489898d85ecfd0f893c2655ed1915ac902b309ee6e3658c7e258", - "name": "hello", - "status": { - "phase": "terminated", - "ready": false, - "reason": "Completed", - "restarts": 0 - } - }, - "Index": "", - "ID": "", - "Namespace": "kubernetes.container", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": { - "container": { - "id": "a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", - "image": { - "name": "k8s.gcr.io/kube-proxy:v1.16.15" - }, - "runtime": "containerd" - } - }, - "ModuleFields": { - "namespace": "kube-system", "node": { - "name": "kind-control-plane" + "name": "kind-worker" }, "pod": { - "name": "kube-proxy-cm525" + "name": "kube-state-metrics-f655d484d-hj69w" } }, "MetricSetFields": { - "id": "containerd://a55ee307ef431d293c02a7eb96417963d7b81b298a8ebfac2f77fe4ca58e1461", - "name": "kube-proxy", + "id": "containerd://ae513b826459c9382984bea986eb3546aa45fd0e650051cb9591ab7a8efed6ea", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 2 } }, "Index": "", @@ -729,29 +766,47 @@ { "RootFields": { "container": { - "id": "3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", + "id": "09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", "image": { - "name": "k8s.gcr.io/etcd:3.3.15-0" + "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "etcd-kind-control-plane" + "name": "kindnet-kch2v" } }, "MetricSetFields": { - "id": "containerd://3f9250f160ca15f681b8c7da78fdf34cd8be8a86fde3910b682ad413b940a8c5", - "name": "etcd", + "cpu": { + "limit": { + "cores": 0.1 + }, + "request": { + "cores": 0.1 + } + }, + "id": "containerd://09603a8146bd6aacb32d55a1e52e929143f003ea30c84052f765efca129fd90a", + "memory": { + "limit": { + "bytes": 52428800 + }, + "request": { + "bytes": 52428800 + } + }, + "name": "kindnet-cni", "status": { "phase": "running", "ready": true, - "restarts": 0 + "restarts": 4 } }, "Index": "", @@ -768,45 +823,31 @@ { "RootFields": { "container": { - "id": "3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", + "id": "02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", "image": { - "name": "docker.io/kindest/kindnetd:v20210326-1e038dc5" + "name": "docker.io/odise/busybox-python:latest" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-worker2" + "name": "kind-worker" }, "pod": { - "name": "kindnet-tg7tl" + "name": "hello-python-566b5479f5-ndwdl" } }, "MetricSetFields": { - "cpu": { - "limit": { - "cores": 0.1 - }, - "request": { - "cores": 0.1 - } - }, - "id": "containerd://3037e577635e9cbcefe1f273e5b06784d36807af76158e4add887e840c42e1ef", - "memory": { - "limit": { - "bytes": 52428800 - }, - "request": { - "bytes": 52428800 - } - }, - "name": "kindnet-cni", + "id": "containerd://02b0705f60dc6131a6b5d4e9a48e2510463f89a0f77e7e1bafa6b5f45cc595e8", + "name": "hello-python", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 18 } }, "Index": "", @@ -823,34 +864,31 @@ { "RootFields": { "container": { - "id": "1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", + "id": "1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", "image": { - "name": "k8s.gcr.io/kube-controller-manager:v1.16.15" + "name": "docker.io/rancher/local-path-provisioner:v0.0.14" }, "runtime": "containerd" } }, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "local-path-storage" + }, "node": { "name": "kind-control-plane" }, "pod": { - "name": "kube-controller-manager-kind-control-plane" + "name": "local-path-provisioner-5bf465b47d-h8hjn" } }, "MetricSetFields": { - "cpu": { - "request": { - "cores": 0.2 - } - }, - "id": "containerd://1c1919c3b07bf3369b5e1a4bf187762f2724b3bc7eb113239af3919f12202337", - "name": "kube-controller-manager", + "id": "containerd://1a223dbb8b51a7404836789fd049701a9e4df7bb69878fb893ab10419ff4eb29", + "name": "local-path-provisioner", "status": { "phase": "running", "ready": true, - "restarts": 4 + "restarts": 8 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json b/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json index 91d3176317d..a38d8487d34 100644 --- a/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_container/_meta/testdata/ksm-v1_3_0.plain-expected.json @@ -1,9 +1,9 @@ [ { "container": { - "id": "469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", + "id": "52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", "image": { - "name": "gcr.io/kubernetes-helm/tiller:v2.3.1" + "name": "gcr.io/google_containers/exechealthz-amd64:1.2" }, "runtime": "docker" }, @@ -14,20 +14,35 @@ }, "kubernetes": { "container": { - "id": "docker://469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", - "name": "tiller", + "cpu": { + "request": { + "cores": 0.01 + } + }, + "id": "docker://52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", + "memory": { + "limit": { + "bytes": 52428800 + }, + "request": { + "bytes": 52428800 + } + }, + "name": "healthz", "status": { "phase": "running", "ready": true, - "restarts": 1 + "restarts": 2 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "tiller-deploy-3067024529-9lpmb" + "name": "kube-dns-v20-5g5cb" } }, "metricset": { @@ -41,9 +56,9 @@ }, { "container": { - "id": "3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", + "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", "image": { - "name": "gcr.io/google_containers/kubernetes-dashboard-amd64:v1.5.1" + "name": "gcr.io/google_containers/kubedns-amd64:1.9" }, "runtime": "docker" }, @@ -54,20 +69,35 @@ }, "kubernetes": { "container": { - "id": "docker://3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", - "name": "kubernetes-dashboard", + "cpu": { + "request": { + "cores": 0.1 + } + }, + "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", + "memory": { + "limit": { + "bytes": 178257920 + }, + "request": { + "bytes": 73400320 + } + }, + "name": "kubedns", "status": { "phase": "running", "ready": true, "restarts": 2 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kubernetes-dashboard-vw0l6" + "name": "kube-dns-v20-5g5cb" } }, "metricset": { @@ -80,6 +110,13 @@ } }, { + "container": { + "id": "91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", + "image": { + "name": "gcr.io/google-containers/kube-addon-manager:v6.3" + }, + "runtime": "docker" + }, "event": { "dataset": "kubernetes.container", "duration": 115000, @@ -88,26 +125,31 @@ "kubernetes": { "container": { "cpu": { - "limit": { - "cores": 0.2 - }, "request": { - "cores": 0.1 + "cores": 0.005 } }, + "id": "docker://91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", "memory": { - "limit": { - "bytes": 52428800 - }, "request": { - "bytes": 31457280 + "bytes": 52428800 } }, - "name": "kube-state-metrics" + "name": "kube-addon-manager", + "status": { + "phase": "running", + "ready": true, + "restarts": 2 + } + }, + "namespace": { + "name": "kube-system" + }, + "node": { + "name": "minikube" }, - "namespace": "kube-system", "pod": { - "name": "kube-state-metrics-1303537707-mnzbp" + "name": "kube-addon-manager-minikube" } }, "metricset": { @@ -121,9 +163,9 @@ }, { "container": { - "id": "973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", + "id": "3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", "image": { - "name": "gcr.io/google_containers/kube-state-metrics:v0.4.1" + "name": "gcr.io/google_containers/kubernetes-dashboard-amd64:v1.5.1" }, "runtime": "docker" }, @@ -134,36 +176,22 @@ }, "kubernetes": { "container": { - "cpu": { - "limit": { - "cores": 0.2 - }, - "request": { - "cores": 0.1 - } - }, - "id": "docker://973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", - "memory": { - "limit": { - "bytes": 52428800 - }, - "request": { - "bytes": 31457280 - } - }, - "name": "kube-state-metrics", + "id": "docker://3aaee8bdd311c015240e99fa2a5a5f2f26b11b51236a683b39d8c1902e423978", + "name": "kubernetes-dashboard", "status": { "phase": "running", "ready": true, - "restarts": 1 + "restarts": 2 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-state-metrics-1303537707-7ncd1" + "name": "kubernetes-dashboard-vw0l6" } }, "metricset": { @@ -177,9 +205,9 @@ }, { "container": { - "id": "e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", + "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", "image": { - "name": "jenkinsci/jenkins:2.46.1" + "name": "gcr.io/google_containers/kubedns-amd64:1.9-test" }, "runtime": "docker" }, @@ -195,25 +223,30 @@ "cores": 0.2 } }, - "id": "docker://e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", + "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", "memory": { + "limit": { + "bytes": 278257920 + }, "request": { - "bytes": 268435456 + "bytes": 83400320 } }, - "name": "wise-lynx-jenkins", + "name": "kubedns", "status": { - "phase": "running", - "ready": true, - "restarts": 1 + "phase": "terminated", + "ready": false, + "restarts": 3 } }, - "namespace": "jenkins", + "namespace": { + "name": "test" + }, "node": { - "name": "minikube" + "name": "minikube-test" }, "pod": { - "name": "wise-lynx-jenkins-1616735317-svn6k" + "name": "kube-dns-v20-5g5cb-test" } }, "metricset": { @@ -227,9 +260,9 @@ }, { "container": { - "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", + "id": "e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", "image": { - "name": "gcr.io/google_containers/kubedns-amd64:1.9" + "name": "jenkinsci/jenkins:2.46.1" }, "runtime": "docker" }, @@ -242,31 +275,30 @@ "container": { "cpu": { "request": { - "cores": 0.1 + "cores": 0.2 } }, - "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62", + "id": "docker://e2ee1c2c7b8d4e5fd8c834b83cba8377d6b0e39da18157688ccc1a06b7c53117", "memory": { - "limit": { - "bytes": 178257920 - }, "request": { - "bytes": 73400320 + "bytes": 268435456 } }, - "name": "kubedns", + "name": "wise-lynx-jenkins", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 1 } }, - "namespace": "kube-system", + "namespace": { + "name": "jenkins" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb" + "name": "wise-lynx-jenkins-1616735317-svn6k" } }, "metricset": { @@ -279,13 +311,6 @@ } }, { - "container": { - "id": "4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", - "image": { - "name": "bitnami/redis:3.2.8-r2" - }, - "runtime": "docker" - }, "event": { "dataset": "kubernetes.container", "duration": 115000, @@ -294,29 +319,28 @@ "kubernetes": { "container": { "cpu": { + "limit": { + "cores": 0.2 + }, "request": { "cores": 0.1 } }, - "id": "docker://4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", "memory": { + "limit": { + "bytes": 52428800 + }, "request": { - "bytes": 268435456 + "bytes": 31457280 } }, - "name": "jumpy-owl-redis", - "status": { - "phase": "waiting", - "ready": false, - "restarts": 270 - } + "name": "kube-state-metrics" }, - "namespace": "default", - "node": { - "name": "minikube" + "namespace": { + "name": "kube-system" }, "pod": { - "name": "jumpy-owl-redis-3481028193-s78x9" + "name": "kube-state-metrics-1303537707-mnzbp" } }, "metricset": { @@ -330,9 +354,9 @@ }, { "container": { - "id": "fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", + "id": "9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", "image": { - "name": "gcr.io/google_containers/kubedns-amd64:1.9-test" + "name": "gcr.io/google_containers/kube-dnsmasq-amd64:1.4" }, "runtime": "docker" }, @@ -343,33 +367,22 @@ }, "kubernetes": { "container": { - "cpu": { - "request": { - "cores": 0.2 - } - }, - "id": "docker://fa3d83f648de42492b38fa3e8501d109376f391c50f2bd210c895c8477ae4b62-test", - "memory": { - "limit": { - "bytes": 278257920 - }, - "request": { - "bytes": 83400320 - } - }, - "name": "kubedns", + "id": "docker://9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", + "name": "dnsmasq", "status": { - "phase": "terminated", - "ready": false, - "restarts": 3 + "phase": "running", + "ready": true, + "restarts": 2 } }, - "namespace": "test", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "minikube-test" + "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb-test" + "name": "kube-dns-v20-5g5cb" } }, "metricset": { @@ -383,9 +396,9 @@ }, { "container": { - "id": "91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", + "id": "973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", "image": { - "name": "gcr.io/google-containers/kube-addon-manager:v6.3" + "name": "gcr.io/google_containers/kube-state-metrics:v0.4.1" }, "runtime": "docker" }, @@ -397,29 +410,37 @@ "kubernetes": { "container": { "cpu": { + "limit": { + "cores": 0.2 + }, "request": { - "cores": 0.005 + "cores": 0.1 } }, - "id": "docker://91fdd43f6b1b4c3dd133cfca53e0b1210bc557c2ae56006026b5ccdb5f52826f", + "id": "docker://973cbe45982c5126a5caf8c58d964c0ab1d5bb2c165ccc59715fcc1ebd58ab3d", "memory": { - "request": { + "limit": { "bytes": 52428800 + }, + "request": { + "bytes": 31457280 } }, - "name": "kube-addon-manager", + "name": "kube-state-metrics", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 1 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-addon-manager-minikube" + "name": "kube-state-metrics-1303537707-7ncd1" } }, "metricset": { @@ -433,9 +454,9 @@ }, { "container": { - "id": "52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", + "id": "4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", "image": { - "name": "gcr.io/google_containers/exechealthz-amd64:1.2" + "name": "bitnami/redis:3.2.8-r2" }, "runtime": "docker" }, @@ -448,31 +469,30 @@ "container": { "cpu": { "request": { - "cores": 0.01 + "cores": 0.1 } }, - "id": "docker://52fa55e051dc5b68e44c027588685b7edd85aaa03b07f7216d399249ff4fc821", + "id": "docker://4fa227874ee68536bf902394fb662f07b99099798ca9cd5c1506b79075acc065", "memory": { - "limit": { - "bytes": 52428800 - }, "request": { - "bytes": 52428800 + "bytes": 268435456 } }, - "name": "healthz", + "name": "jumpy-owl-redis", "status": { - "phase": "running", - "ready": true, - "restarts": 2 + "phase": "waiting", + "ready": false, + "restarts": 270 } }, - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb" + "name": "jumpy-owl-redis-3481028193-s78x9" } }, "metricset": { @@ -486,9 +506,9 @@ }, { "container": { - "id": "9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", + "id": "469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", "image": { - "name": "gcr.io/google_containers/kube-dnsmasq-amd64:1.4" + "name": "gcr.io/kubernetes-helm/tiller:v2.3.1" }, "runtime": "docker" }, @@ -499,20 +519,22 @@ }, "kubernetes": { "container": { - "id": "docker://9a4c9462cd078d7be4f0a9b94bcfeb69d5fdd76bff67142df3f58367ac7e8d61", - "name": "dnsmasq", + "id": "docker://469f5d2b7854eb52e5d13dc0cd3e664c1b682b157aabaf596ffe4984f1516902", + "name": "tiller", "status": { "phase": "running", "ready": true, - "restarts": 2 + "restarts": 1 } }, - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { - "name": "kube-dns-v20-5g5cb" + "name": "tiller-deploy-3067024529-9lpmb" } }, "metricset": { diff --git a/metricbeat/module/kubernetes/state_container/state_container.go b/metricbeat/module/kubernetes/state_container/state_container.go index 23c34bf040f..56ab2d8adac 100644 --- a/metricbeat/module/kubernetes/state_container/state_container.go +++ b/metricbeat/module/kubernetes/state_container/state_container.go @@ -78,7 +78,7 @@ var ( Labels: map[string]p.LabelMap{ "pod": p.KeyLabel(mb.ModuleDataKey + ".pod.name"), "container": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "node": p.Label(mb.ModuleDataKey + ".node.name"), "container_id": p.Label("id"), diff --git a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected index 926f896d112..35dea56dcff 100644 --- a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "active": { diff --git a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected index 0702ef4cfe2..aedf4d80e84 100644 --- a/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_cronjob/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "active": { diff --git a/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go b/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go index 272dc58aca6..ffed1e92b67 100644 --- a/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go +++ b/metricbeat/module/kubernetes/state_cronjob/state_cronjob.go @@ -74,7 +74,7 @@ func NewCronJobMetricSet(base mb.BaseMetricSet) (mb.MetricSet, error) { }, Labels: map[string]p.LabelMap{ "cronjob": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "schedule": p.KeyLabel("schedule"), "concurrency_policy": p.KeyLabel("concurrency"), }, diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/data.json b/metricbeat/module/kubernetes/state_daemonset/_meta/data.json index 5856069d568..158d2a34eeb 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/data.json +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/data.json @@ -7,7 +7,7 @@ }, "kubernetes": { "daemonset": { - "name": "kube-proxy", + "name": "kindnet", "replicas": { "available": 1, "desired": 1, @@ -15,7 +15,9 @@ "unavailable": 0 } }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_daemonset", diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected index 93e2d068788..73dfd269be2 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.3.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kube-proxy", diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected index 93e2d068788..73dfd269be2 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kube-proxy", diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected index fbb6670ecd7..ff94aebc50a 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/test/ksm.v2.0.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-proxy", + "name": "kindnet", "replicas": { "available": 3, "desired": 3, @@ -27,14 +29,16 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "metricbeat", + "name": "kube-proxy", "replicas": { - "available": 2, - "desired": 2, - "ready": 2, + "available": 3, + "desired": 3, + "ready": 3, "unavailable": 0 } }, @@ -52,14 +56,16 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kindnet", + "name": "metricbeat", "replicas": { - "available": 3, - "desired": 3, - "ready": 3, + "available": 2, + "desired": 2, + "ready": 2, "unavailable": 0 } }, diff --git a/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json index 9768d8d3928..a95bd894fb0 100644 --- a/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_daemonset/_meta/testdata/docs.plain-expected.json @@ -7,7 +7,7 @@ }, "kubernetes": { "daemonset": { - "name": "kube-proxy", + "name": "kindnet", "replicas": { "available": 1, "desired": 1, @@ -15,7 +15,9 @@ "unavailable": 0 } }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_daemonset", @@ -34,7 +36,7 @@ }, "kubernetes": { "daemonset": { - "name": "kindnet", + "name": "kube-proxy", "replicas": { "available": 1, "desired": 1, @@ -42,7 +44,9 @@ "unavailable": 0 } }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_daemonset", diff --git a/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go b/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go index 1066afa2195..95e580744b1 100644 --- a/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go +++ b/metricbeat/module/kubernetes/state_daemonset/state_daemonset.go @@ -50,7 +50,7 @@ var ( Labels: map[string]p.LabelMap{ "daemonset": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected index b2dce007146..fa3dbf2df80 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.3.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics", + "name": "kube-dns", "paused": false, "replicas": { "available": 1, @@ -28,7 +30,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kubernetes-dashboard", @@ -54,10 +58,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-dns", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected index 3f1255e36c6..b83cb15d7fd 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v1.8.0.expected @@ -2,16 +2,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics", + "name": "coredns", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 2, + "desired": 2, "unavailable": 0, - "updated": 1 + "updated": 2 } }, "Index": "", @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "coredns", + "name": "kube-state-metrics", "paused": false, "replicas": { - "available": 2, - "desired": 2, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 2 + "updated": 1 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected index de439f14386..5f0b8c20689 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_deployment/_meta/test/ksm.v2.0.0.expected @@ -2,16 +2,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics", + "name": "coredns", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 2, + "desired": 2, "unavailable": 0, - "updated": 1 + "updated": 2 } }, "Index": "", @@ -28,7 +30,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "local-path-storage" + "namespace": { + "name": "local-path-storage" + } }, "MetricSetFields": { "name": "local-path-provisioner", @@ -54,10 +58,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "hello-python", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, @@ -80,16 +86,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "name": "coredns", + "name": "hello-python", "paused": false, "replicas": { - "available": 2, - "desired": 2, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 2 + "updated": 1 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json index 19faf98a4ce..fabdb0fabb0 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.3.0.plain-expected.json @@ -7,16 +7,18 @@ }, "kubernetes": { "deployment": { - "name": "tiller-deploy", - "paused": false, + "name": "jumpy-owl-redis", + "paused": true, "replicas": { - "available": 1, - "desired": 1, - "unavailable": 0, - "updated": 1 + "available": 6, + "desired": 2, + "unavailable": 7, + "updated": 8 } }, - "namespace": "kube-system" + "namespace": { + "name": "test" + } }, "metricset": { "name": "state_deployment", @@ -35,16 +37,18 @@ }, "kubernetes": { "deployment": { - "name": "wise-lynx-jenkins", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, - "desired": 1, - "unavailable": 0, - "updated": 1 + "desired": 2, + "unavailable": 1, + "updated": 2 } }, - "namespace": "jenkins" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_deployment", @@ -64,15 +68,17 @@ "kubernetes": { "deployment": { "name": "jumpy-owl-redis", - "paused": true, + "paused": false, "replicas": { - "available": 6, - "desired": 2, - "unavailable": 7, - "updated": 8 + "available": 0, + "desired": 1, + "unavailable": 1, + "updated": 1 } }, - "namespace": "test" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_deployment", @@ -91,16 +97,18 @@ }, "kubernetes": { "deployment": { - "name": "jumpy-owl-redis", + "name": "tiller-deploy", "paused": false, "replicas": { - "available": 0, + "available": 1, "desired": 1, - "unavailable": 1, + "unavailable": 0, "updated": 1 } }, - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "metricset": { "name": "state_deployment", @@ -119,16 +127,18 @@ }, "kubernetes": { "deployment": { - "name": "kube-state-metrics", + "name": "wise-lynx-jenkins", "paused": false, "replicas": { "available": 1, - "desired": 2, - "unavailable": 1, - "updated": 2 + "desired": 1, + "unavailable": 0, + "updated": 1 } }, - "namespace": "kube-system" + "namespace": { + "name": "jenkins" + } }, "metricset": { "name": "state_deployment", diff --git a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json index b766e4068f4..bfc922814ee 100644 --- a/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_deployment/_meta/testdata/ksm-v1.8.0.plain-expected.json @@ -7,7 +7,7 @@ }, "kubernetes": { "deployment": { - "name": "metricbeat", + "name": "springboot-cr-applier", "paused": false, "replicas": { "available": 1, @@ -16,7 +16,9 @@ "updated": 1 } }, - "namespace": "openshift-logging" + "namespace": { + "name": "telenet-cluster-ops" + } }, "metricset": { "name": "state_deployment", @@ -35,7 +37,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "namespace-operator", "paused": false, "replicas": { "available": 1, @@ -44,7 +46,9 @@ "updated": 1 } }, - "namespace": "bi" + "namespace": { + "name": "telenet-operators" + } }, "metricset": { "name": "state_deployment", @@ -63,7 +67,7 @@ }, "kubernetes": { "deployment": { - "name": "tiller", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -72,7 +76,9 @@ "updated": 1 } }, - "namespace": "tiller" + "namespace": { + "name": "devops-playground" + } }, "metricset": { "name": "state_deployment", @@ -91,16 +97,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "kube-state-metrics", "paused": false, "replicas": { - "available": 0, - "desired": 0, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 0 + "updated": 1 } }, - "namespace": "adc-vault" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -119,16 +127,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "webconsole", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 3, + "desired": 3, "unavailable": 0, - "updated": 1 + "updated": 3 } }, - "namespace": "paas-demo" + "namespace": { + "name": "openshift-web-console" + } }, "metricset": { "name": "state_deployment", @@ -147,7 +157,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-cr-applier", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -156,7 +166,9 @@ "updated": 1 } }, - "namespace": "telenet-cluster-ops" + "namespace": { + "name": "gdpr" + } }, "metricset": { "name": "state_deployment", @@ -184,7 +196,9 @@ "updated": 1 } }, - "namespace": "paas-demo" + "namespace": { + "name": "edev-communication" + } }, "metricset": { "name": "state_deployment", @@ -203,7 +217,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -212,7 +226,9 @@ "updated": 1 } }, - "namespace": "edev-communication" + "namespace": { + "name": "telenet-baseimages" + } }, "metricset": { "name": "state_deployment", @@ -231,7 +247,7 @@ }, "kubernetes": { "deployment": { - "name": "kube-state-metrics", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -240,7 +256,9 @@ "updated": 1 } }, - "namespace": "openshift-logging" + "namespace": { + "name": "bi" + } }, "metricset": { "name": "state_deployment", @@ -259,7 +277,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "dynatrace-oneagent-operator", "paused": false, "replicas": { "available": 1, @@ -268,7 +286,9 @@ "updated": 1 } }, - "namespace": "devops-playground" + "namespace": { + "name": "dynatrace" + } }, "metricset": { "name": "state_deployment", @@ -296,7 +316,9 @@ "updated": 1 } }, - "namespace": "edev-tools" + "namespace": { + "name": "darwin-integrations" + } }, "metricset": { "name": "state_deployment", @@ -324,7 +346,9 @@ "updated": 1 } }, - "namespace": "devops-playground" + "namespace": { + "name": "paas-demo" + } }, "metricset": { "name": "state_deployment", @@ -352,7 +376,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -371,16 +397,18 @@ }, "kubernetes": { "deployment": { - "name": "tiller-deploy", + "name": "jenkins-cr-applier", "paused": false, "replicas": { - "available": 0, + "available": 1, "desired": 1, - "unavailable": 1, + "unavailable": 0, "updated": 1 } }, - "namespace": "tiller" + "namespace": { + "name": "telenet-cluster-ops" + } }, "metricset": { "name": "state_deployment", @@ -399,16 +427,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "tiller-deploy", "paused": false, "replicas": { - "available": 1, + "available": 0, "desired": 1, - "unavailable": 0, + "unavailable": 1, "updated": 1 } }, - "namespace": "darwin-integrations" + "namespace": { + "name": "tiller" + } }, "metricset": { "name": "state_deployment", @@ -427,16 +457,18 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "elasticsearch", "paused": false, "replicas": { - "available": 1, + "available": 0, "desired": 1, - "unavailable": 0, + "unavailable": 1, "updated": 1 } }, - "namespace": "edev-communication" + "namespace": { + "name": "test-config" + } }, "metricset": { "name": "state_deployment", @@ -455,16 +487,18 @@ }, "kubernetes": { "deployment": { - "name": "webconsole", + "name": "jenkins-operator", "paused": false, "replicas": { - "available": 3, - "desired": 3, + "available": 0, + "desired": 0, "unavailable": 0, - "updated": 3 + "updated": 0 } }, - "namespace": "openshift-web-console" + "namespace": { + "name": "adc-vault" + } }, "metricset": { "name": "state_deployment", @@ -483,7 +517,7 @@ }, "kubernetes": { "deployment": { - "name": "console", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -492,7 +526,9 @@ "updated": 1 } }, - "namespace": "openshift-console" + "namespace": { + "name": "edev-tools" + } }, "metricset": { "name": "state_deployment", @@ -511,7 +547,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -520,7 +556,9 @@ "updated": 1 } }, - "namespace": "gdpr" + "namespace": { + "name": "devops-playground" + } }, "metricset": { "name": "state_deployment", @@ -539,7 +577,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-cr-applier", + "name": "cluster-monitoring-operator", "paused": false, "replicas": { "available": 1, @@ -548,7 +586,9 @@ "updated": 1 } }, - "namespace": "telenet-cluster-ops" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -567,7 +607,7 @@ }, "kubernetes": { "deployment": { - "name": "namespace-operator", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -576,7 +616,9 @@ "updated": 1 } }, - "namespace": "telenet-operators" + "namespace": { + "name": "paas-demo" + } }, "metricset": { "name": "state_deployment", @@ -595,7 +637,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "springboot-operator", "paused": false, "replicas": { "available": 1, @@ -604,7 +646,9 @@ "updated": 1 } }, - "namespace": "telenet-baseimages" + "namespace": { + "name": "bi" + } }, "metricset": { "name": "state_deployment", @@ -623,7 +667,7 @@ }, "kubernetes": { "deployment": { - "name": "cluster-monitoring-operator", + "name": "console", "paused": false, "replicas": { "available": 1, @@ -632,7 +676,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "openshift-console" + } }, "metricset": { "name": "state_deployment", @@ -651,16 +697,18 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "kibana-kibana", "paused": false, "replicas": { - "available": 1, - "desired": 1, + "available": 0, + "desired": 0, "unavailable": 0, - "updated": 1 + "updated": 0 } }, - "namespace": "darwin-integrations" + "namespace": { + "name": "kibana-tst" + } }, "metricset": { "name": "state_deployment", @@ -679,7 +727,7 @@ }, "kubernetes": { "deployment": { - "name": "kibana", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -688,7 +736,9 @@ "updated": 1 } }, - "namespace": "test-config" + "namespace": { + "name": "edev-tools" + } }, "metricset": { "name": "state_deployment", @@ -707,7 +757,7 @@ }, "kubernetes": { "deployment": { - "name": "dynatrace-oneagent-operator", + "name": "jenkins-operator", "paused": false, "replicas": { "available": 1, @@ -716,7 +766,9 @@ "updated": 1 } }, - "namespace": "dynatrace" + "namespace": { + "name": "edev-communication" + } }, "metricset": { "name": "state_deployment", @@ -735,7 +787,7 @@ }, "kubernetes": { "deployment": { - "name": "springboot-operator", + "name": "kube-state-metrics", "paused": false, "replicas": { "available": 1, @@ -744,7 +796,9 @@ "updated": 1 } }, - "namespace": "edev-tools" + "namespace": { + "name": "openshift-logging" + } }, "metricset": { "name": "state_deployment", @@ -763,7 +817,7 @@ }, "kubernetes": { "deployment": { - "name": "sonarqube-operator", + "name": "grafana", "paused": false, "replicas": { "available": 1, @@ -772,7 +826,9 @@ "updated": 1 } }, - "namespace": "devops-playground" + "namespace": { + "name": "openshift-monitoring" + } }, "metricset": { "name": "state_deployment", @@ -791,7 +847,7 @@ }, "kubernetes": { "deployment": { - "name": "grafana", + "name": "weblogic-operator", "paused": false, "replicas": { "available": 1, @@ -800,7 +856,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "weblogic-poc" + } }, "metricset": { "name": "state_deployment", @@ -819,16 +877,18 @@ }, "kubernetes": { "deployment": { - "name": "kibana-kibana", + "name": "jenkins-operator", "paused": false, "replicas": { - "available": 0, - "desired": 0, + "available": 1, + "desired": 1, "unavailable": 0, - "updated": 0 + "updated": 1 } }, - "namespace": "kibana-tst" + "namespace": { + "name": "gdpr" + } }, "metricset": { "name": "state_deployment", @@ -847,7 +907,7 @@ }, "kubernetes": { "deployment": { - "name": "kube-state-metrics", + "name": "sonarqube-operator", "paused": false, "replicas": { "available": 1, @@ -856,7 +916,9 @@ "updated": 1 } }, - "namespace": "openshift-monitoring" + "namespace": { + "name": "devops-playground" + } }, "metricset": { "name": "state_deployment", @@ -875,16 +937,18 @@ }, "kubernetes": { "deployment": { - "name": "elasticsearch", + "name": "kibana", "paused": false, "replicas": { - "available": 0, + "available": 1, "desired": 1, - "unavailable": 1, + "unavailable": 0, "updated": 1 } }, - "namespace": "test-config" + "namespace": { + "name": "test-config" + } }, "metricset": { "name": "state_deployment", @@ -912,7 +976,9 @@ "updated": 1 } }, - "namespace": "gdpr" + "namespace": { + "name": "darwin-integrations" + } }, "metricset": { "name": "state_deployment", @@ -931,7 +997,7 @@ }, "kubernetes": { "deployment": { - "name": "jenkins-operator", + "name": "tiller", "paused": false, "replicas": { "available": 1, @@ -940,7 +1006,9 @@ "updated": 1 } }, - "namespace": "bi" + "namespace": { + "name": "tiller" + } }, "metricset": { "name": "state_deployment", @@ -959,7 +1027,7 @@ }, "kubernetes": { "deployment": { - "name": "weblogic-operator", + "name": "metricbeat", "paused": false, "replicas": { "available": 1, @@ -968,7 +1036,9 @@ "updated": 1 } }, - "namespace": "weblogic-poc" + "namespace": { + "name": "openshift-logging" + } }, "metricset": { "name": "state_deployment", diff --git a/metricbeat/module/kubernetes/state_deployment/state_deployment.go b/metricbeat/module/kubernetes/state_deployment/state_deployment.go index 02448afdc9a..6b440baa2b9 100644 --- a/metricbeat/module/kubernetes/state_deployment/state_deployment.go +++ b/metricbeat/module/kubernetes/state_deployment/state_deployment.go @@ -51,7 +51,7 @@ var ( Labels: map[string]p.LabelMap{ "deployment": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected index 8822378f36d..5b40b8ece05 100644 --- a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "completions": { diff --git a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected index c9110a37ed0..484d805c3a0 100644 --- a/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_job/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "completions": { diff --git a/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json b/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json index afa859bc418..926fc60faaa 100644 --- a/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json +++ b/metricbeat/module/kubernetes/state_job/_meta/testdata/kube-state-metrics-v1.8.0.plain-expected.json @@ -10,7 +10,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075645", + "name": "sleep-30-ok-cron-27075628", "owner": { "is_controller": "true", "kind": "CronJob", @@ -25,10 +25,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:45:00.000Z" + "created": "2021-06-24T12:28:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -48,27 +50,33 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075617", + "name": "sleep-30-ok-cron-27075625", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 1 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:17:00.000Z" + "completed": "2021-06-24T12:37:03.000Z", + "created": "2021-06-24T12:25:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -88,27 +96,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075644", + "name": "sleep-5-parallel-cron-27075641", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:44:00.000Z" + "created": "2021-06-24T12:41:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -130,7 +140,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075549", + "name": "sleep-30-fail-cron-27075644", "owner": { "is_controller": "true", "kind": "CronJob", @@ -145,10 +155,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:09:00.000Z" + "created": "2021-06-24T12:44:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -170,11 +182,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075638", + "name": "sleep-30-fail-cron-27075618", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -185,10 +197,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:38:00.000Z" + "created": "2021-06-24T12:18:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -208,27 +222,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075639", + "name": "sleep-30-ok-cron-27075618", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:39:00.000Z" + "created": "2021-06-24T12:18:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -250,7 +266,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075535", + "name": "sleep-30-fail-cron-27075622", "owner": { "is_controller": "true", "kind": "CronJob", @@ -265,10 +281,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T10:55:00.000Z" + "created": "2021-06-24T12:22:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -288,27 +306,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075551", + "name": "sleep-30-ok-cron-27075617", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:11:00.000Z" + "created": "2021-06-24T12:17:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -330,7 +350,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075623", + "name": "sleep-5-parallel-cron-27075639", "owner": { "is_controller": "true", "kind": "CronJob", @@ -340,15 +360,17 @@ "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:23:00.000Z" + "created": "2021-06-24T12:39:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -370,7 +392,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075592", + "name": "sleep-30-ok-cron-27075590", "owner": { "is_controller": "true", "kind": "CronJob", @@ -385,10 +407,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:52:00.000Z" + "created": "2021-06-24T11:50:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -408,27 +432,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075584", + "name": "sleep-5-parallel-cron-27075622", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { - "created": "2021-06-24T11:44:00.000Z" + "created": "2021-06-24T12:22:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -450,7 +476,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075642", + "name": "sleep-30-ok-cron-27075627", "owner": { "is_controller": "true", "kind": "CronJob", @@ -460,15 +486,21 @@ "desired": 1 }, "pods": { - "active": 1, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 1 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:42:00.000Z" + "completed": "2021-06-24T12:32:20.000Z", + "created": "2021-06-24T12:27:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -488,19 +520,19 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075643", + "name": "sleep-30-ok-cron-27075643", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, @@ -508,7 +540,9 @@ "created": "2021-06-24T12:43:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -530,7 +564,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075536", + "name": "sleep-30-fail-cron-27075625", "owner": { "is_controller": "true", "kind": "CronJob", @@ -545,10 +579,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T10:56:00.000Z" + "created": "2021-06-24T12:25:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -570,7 +606,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075630", + "name": "sleep-5-parallel-cron-27075644", "owner": { "is_controller": "true", "kind": "CronJob", @@ -585,10 +621,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:30:00.000Z" + "created": "2021-06-24T12:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -608,27 +646,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075626", + "name": "sleep-30-ok-cron-27075610", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 2 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:26:00.000Z" + "created": "2021-06-24T12:10:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -648,27 +688,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075610", + "name": "sleep-5-parallel-cron-27075628", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:10:00.000Z" + "created": "2021-06-24T12:28:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -690,11 +732,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075618", + "name": "sleep-30-fail-cron-27075632", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -705,10 +747,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:18:00.000Z" + "created": "2021-06-24T12:32:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -728,27 +772,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075608", + "name": "sleep-30-fail-cron-27075612", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:08:00.000Z" + "created": "2021-06-24T12:12:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -768,27 +814,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075622", + "name": "sleep-30-ok-cron-27075633", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 2 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:22:00.000Z" + "created": "2021-06-24T12:33:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -810,7 +858,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075591", + "name": "sleep-30-fail-cron-27075615", "owner": { "is_controller": "true", "kind": "CronJob", @@ -825,10 +873,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:51:00.000Z" + "created": "2021-06-24T12:15:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -850,11 +900,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075598", + "name": "sleep-30-ok-cron-27075621", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -865,10 +915,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:58:00.000Z" + "created": "2021-06-24T12:21:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -888,27 +940,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075636", + "name": "sleep-30-fail-cron-27075591", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 4 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:36:00.000Z" + "created": "2021-06-24T11:51:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -930,11 +984,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075645", + "name": "sleep-30-ok-cron-27075639", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -945,10 +999,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:45:00.000Z" + "created": "2021-06-24T12:39:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -970,29 +1026,27 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075629", + "name": "sleep-30-fail-cron-27075638", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 1 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:42:50.000Z", - "created": "2021-06-24T12:29:00.000Z" + "created": "2021-06-24T12:38:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1012,27 +1066,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075604", + "name": "sleep-30-ok-cron-27075641", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:04:00.000Z" + "created": "2021-06-24T12:41:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1052,27 +1108,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075591", + "name": "sleep-30-ok-cron-27075636", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:51:00.000Z" + "created": "2021-06-24T12:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1092,27 +1150,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075645", + "name": "sleep-30-fail-cron-27075605", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:45:00.000Z" + "created": "2021-06-24T12:05:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1134,11 +1194,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075625", + "name": "sleep-30-ok-cron-27075634", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1149,10 +1209,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:25:00.000Z" + "created": "2021-06-24T12:34:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1174,7 +1236,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075639", + "name": "sleep-30-fail-cron-27075547", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1189,10 +1251,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:39:00.000Z" + "created": "2021-06-24T11:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1214,11 +1278,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075636", + "name": "sleep-30-ok-cron-27075592", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1229,10 +1293,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:36:00.000Z" + "created": "2021-06-24T11:52:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1252,27 +1318,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075615", + "name": "sleep-5-parallel-cron-27075601", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 3, "failed": 0, - "succeeded": 0 + "succeeded": 17 }, "time": { - "created": "2021-06-24T12:15:00.000Z" + "created": "2021-06-24T12:01:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1294,7 +1362,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075641", + "name": "sleep-5-parallel-cron-27075603", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1304,15 +1372,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:41:00.000Z" + "created": "2021-06-24T12:03:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1332,27 +1402,33 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075621", + "name": "sleep-5-parallel-cron-27075613", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 20 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:21:00.000Z" + "completed": "2021-06-24T12:28:39.000Z", + "created": "2021-06-24T12:13:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1372,27 +1448,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075623", + "name": "sleep-5-parallel-cron-27075626", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { - "created": "2021-06-24T12:23:00.000Z" + "created": "2021-06-24T12:26:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1412,27 +1490,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075563", + "name": "sleep-30-fail-cron-27075576", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:23:00.000Z" + "created": "2021-06-24T11:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1454,11 +1534,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075612", + "name": "sleep-30-ok-cron-27075547", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1469,10 +1549,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:12:00.000Z" + "created": "2021-06-24T11:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1494,7 +1576,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075634", + "name": "sleep-5-parallel-cron-27075615", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1504,15 +1586,21 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 0, "failed": 0, - "succeeded": 1 + "succeeded": 20 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T12:34:00.000Z" + "completed": "2021-06-24T12:33:19.000Z", + "created": "2021-06-24T12:15:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1532,27 +1620,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075590", + "name": "sleep-30-fail-cron-27075628", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:50:00.000Z" + "created": "2021-06-24T12:28:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1574,11 +1664,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075621", + "name": "sleep-30-ok-cron-27075640", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1589,10 +1679,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:21:00.000Z" + "created": "2021-06-24T12:40:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1614,7 +1706,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075639", + "name": "sleep-30-ok-cron-27075642", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1629,10 +1721,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:39:00.000Z" + "created": "2021-06-24T12:42:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1652,27 +1746,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075594", + "name": "sleep-5-parallel-cron-27075630", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T11:54:00.000Z" + "created": "2021-06-24T12:30:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1694,7 +1790,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075631", + "name": "sleep-5-parallel-cron-27075635", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1706,13 +1802,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 3 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:31:00.000Z" + "created": "2021-06-24T12:35:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1732,27 +1830,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075535", + "name": "sleep-5-parallel-cron-27075621", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 1 }, "time": { - "created": "2021-06-24T10:55:00.000Z" + "created": "2021-06-24T12:21:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1774,11 +1874,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075631", + "name": "sleep-30-ok-cron-27075646", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -1789,10 +1889,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:31:00.000Z" + "created": "2021-06-24T12:46:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1814,7 +1916,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075629", + "name": "sleep-5-parallel-cron-27075584", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1824,15 +1926,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 2, "failed": 0, - "succeeded": 6 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:29:00.000Z" + "created": "2021-06-24T11:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1854,7 +1958,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075633", + "name": "sleep-5-parallel-cron-27075604", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1864,15 +1968,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:33:00.000Z" + "created": "2021-06-24T12:04:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1894,7 +2000,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075616", + "name": "sleep-5-parallel-cron-27075585", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1904,15 +2010,17 @@ "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 19 + "succeeded": 10 }, "time": { - "created": "2021-06-24T12:16:00.000Z" + "created": "2021-06-24T11:45:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -1934,11 +2042,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075637", + "name": "sleep-30-fail-cron-27075603", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -1949,10 +2057,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:37:00.000Z" + "created": "2021-06-24T12:03:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -1974,7 +2084,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075616", + "name": "sleep-30-fail-cron-27075619", "owner": { "is_controller": "true", "kind": "CronJob", @@ -1989,10 +2099,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:16:00.000Z" + "created": "2021-06-24T12:19:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2014,7 +2126,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075615", + "name": "sleep-5-parallel-cron-27075620", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2032,11 +2144,13 @@ "complete": "true" }, "time": { - "completed": "2021-06-24T12:33:19.000Z", - "created": "2021-06-24T12:15:00.000Z" + "completed": "2021-06-24T12:37:24.000Z", + "created": "2021-06-24T12:20:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2058,7 +2172,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075627", + "name": "sleep-30-ok-cron-27075630", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2068,19 +2182,17 @@ "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 1 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:32:20.000Z", - "created": "2021-06-24T12:27:00.000Z" + "created": "2021-06-24T12:30:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2102,7 +2214,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075611", + "name": "sleep-30-fail-cron-27075634", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2117,10 +2229,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:11:00.000Z" + "created": "2021-06-24T12:34:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2142,25 +2256,31 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075593", + "name": "sleep-30-ok-cron-27075629", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 }, "pods": { - "active": 1, + "active": 0, "failed": 0, - "succeeded": 0 + "succeeded": 1 + }, + "status": { + "complete": "true" }, "time": { - "created": "2021-06-24T11:53:00.000Z" + "completed": "2021-06-24T12:42:50.000Z", + "created": "2021-06-24T12:29:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2182,11 +2302,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075641", + "name": "sleep-30-ok-cron-27075594", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -2197,10 +2317,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:41:00.000Z" + "created": "2021-06-24T11:54:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2220,27 +2342,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075628", + "name": "sleep-5-parallel-cron-27075532", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:28:00.000Z" + "created": "2021-06-24T10:52:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2260,31 +2384,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075625", + "name": "sleep-5-parallel-cron-27075612", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 0, + "active": 5, "failed": 0, "succeeded": 1 }, - "status": { - "complete": "true" - }, "time": { - "completed": "2021-06-24T12:37:03.000Z", - "created": "2021-06-24T12:25:00.000Z" + "created": "2021-06-24T12:12:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2306,7 +2428,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075585", + "name": "sleep-5-parallel-cron-27075610", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2316,15 +2438,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 3, "failed": 0, - "succeeded": 10 + "succeeded": 17 }, "time": { - "created": "2021-06-24T11:45:00.000Z" + "created": "2021-06-24T12:10:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2346,11 +2470,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075601", + "name": "sleep-30-ok-cron-27075536", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -2361,10 +2485,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:01:00.000Z" + "created": "2021-06-24T10:56:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2386,7 +2512,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075614", + "name": "sleep-30-fail-cron-27075636", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2401,50 +2527,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:14:00.000Z" - } - }, - "namespace": "default" - }, - "metricset": { - "name": "state_job", - "period": 10000 - }, - "service": { - "address": "127.0.0.1:55555", - "type": "kubernetes" - } - }, - { - "event": { - "dataset": "kubernetes.job", - "duration": 115000, - "module": "kubernetes" - }, - "kubernetes": { - "job": { - "completions": { - "desired": 20 - }, - "name": "sleep-5-parallel-cron-27075644", - "owner": { - "is_controller": "true", - "kind": "CronJob", - "name": "sleep-5-parallel-cron" - }, - "parallelism": { - "desired": 5 - }, - "pods": { - "active": 5, - "failed": 0, - "succeeded": 0 - }, - "time": { - "created": "2021-06-24T12:44:00.000Z" + "created": "2021-06-24T12:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2466,7 +2554,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075617", + "name": "sleep-30-fail-cron-27075549", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2481,10 +2569,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:17:00.000Z" + "created": "2021-06-24T11:09:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2506,11 +2596,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075601", + "name": "sleep-30-fail-cron-27075640", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -2521,10 +2611,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:01:00.000Z" + "created": "2021-06-24T12:40:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2546,7 +2638,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075628", + "name": "sleep-5-parallel-cron-27075592", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2556,15 +2648,17 @@ "desired": 5 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:28:00.000Z" + "created": "2021-06-24T11:52:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2586,7 +2680,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075605", + "name": "sleep-30-fail-cron-27075598", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2601,10 +2695,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:05:00.000Z" + "created": "2021-06-24T11:58:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2626,7 +2722,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075646", + "name": "sleep-30-ok-cron-27075631", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2641,10 +2737,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:46:00.000Z" + "created": "2021-06-24T12:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2666,7 +2764,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075607", + "name": "sleep-30-fail-cron-27075609", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2681,10 +2779,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:07:00.000Z" + "created": "2021-06-24T12:09:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2706,7 +2806,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075627", + "name": "sleep-5-parallel-cron-27075646", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2718,13 +2818,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 15 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:27:00.000Z" + "created": "2021-06-24T12:46:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2744,31 +2846,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075620", + "name": "sleep-30-fail-cron-27075630", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 20 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:37:24.000Z", - "created": "2021-06-24T12:20:00.000Z" + "created": "2021-06-24T12:30:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2788,30 +2888,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075600", + "name": "sleep-5-parallel-cron-27075634", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 0, - "failed": 1, - "succeeded": 0 - }, - "status": { - "failed": "true" + "active": 5, + "failed": 0, + "succeeded": 1 }, "time": { - "created": "2021-06-24T12:00:00.000Z" + "created": "2021-06-24T12:34:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2833,7 +2932,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075607", + "name": "sleep-5-parallel-cron-27075632", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2843,15 +2942,17 @@ "desired": 5 }, "pods": { - "active": 3, + "active": 5, "failed": 0, - "succeeded": 17 + "succeeded": 1 }, "time": { - "created": "2021-06-24T12:07:00.000Z" + "created": "2021-06-24T12:32:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2873,7 +2974,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075590", + "name": "sleep-30-fail-cron-27075563", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2888,10 +2989,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:50:00.000Z" + "created": "2021-06-24T11:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -2911,27 +3014,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075617", + "name": "sleep-5-parallel-cron-27075535", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:17:00.000Z" + "created": "2021-06-24T10:55:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2953,7 +3058,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075610", + "name": "sleep-5-parallel-cron-27075643", "owner": { "is_controller": "true", "kind": "CronJob", @@ -2963,15 +3068,17 @@ "desired": 5 }, "pods": { - "active": 3, + "active": 5, "failed": 0, - "succeeded": 17 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:10:00.000Z" + "created": "2021-06-24T12:43:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -2991,27 +3098,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075572", + "name": "sleep-30-fail-cron-27075641", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:32:00.000Z" + "created": "2021-06-24T12:41:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3033,11 +3142,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075641", + "name": "sleep-30-fail-cron-27075633", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3048,10 +3157,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:41:00.000Z" + "created": "2021-06-24T12:33:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3073,7 +3184,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075547", + "name": "sleep-30-fail-cron-27075614", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3088,10 +3199,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:07:00.000Z" + "created": "2021-06-24T12:14:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3113,11 +3226,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075630", + "name": "sleep-30-fail-cron-27075604", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3128,10 +3241,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:30:00.000Z" + "created": "2021-06-24T12:04:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3151,27 +3266,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075621", + "name": "sleep-30-fail-cron-27075643", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:21:00.000Z" + "created": "2021-06-24T12:43:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3191,27 +3308,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075624", + "name": "sleep-5-parallel-cron-27075642", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:24:00.000Z" + "created": "2021-06-24T12:42:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3231,27 +3350,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075619", + "name": "sleep-5-parallel-cron-27075551", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:19:00.000Z" + "created": "2021-06-24T11:11:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3273,7 +3394,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075601", + "name": "sleep-5-parallel-cron-27075614", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3283,15 +3404,17 @@ "desired": 5 }, "pods": { - "active": 3, + "active": 5, "failed": 0, - "succeeded": 17 + "succeeded": 15 }, "time": { - "created": "2021-06-24T12:01:00.000Z" + "created": "2021-06-24T12:14:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3313,7 +3436,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075643", + "name": "sleep-30-fail-cron-27075607", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3328,10 +3451,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:43:00.000Z" + "created": "2021-06-24T12:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3353,11 +3478,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075635", + "name": "sleep-30-fail-cron-27075588", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3368,10 +3493,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:35:00.000Z" + "created": "2021-06-24T11:48:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3393,11 +3520,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075547", + "name": "sleep-30-fail-cron-27075590", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3408,10 +3535,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:07:00.000Z" + "created": "2021-06-24T11:50:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3433,11 +3562,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075588", + "name": "sleep-30-ok-cron-27075612", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -3448,10 +3577,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:48:00.000Z" + "created": "2021-06-24T12:12:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3473,7 +3604,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075612", + "name": "sleep-30-ok-cron-27075535", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3488,10 +3619,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:12:00.000Z" + "created": "2021-06-24T10:55:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3511,27 +3644,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075646", + "name": "sleep-30-ok-cron-27075637", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:46:00.000Z" + "created": "2021-06-24T12:37:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3553,7 +3688,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075604", + "name": "sleep-30-fail-cron-27075620", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3568,10 +3703,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:04:00.000Z" + "created": "2021-06-24T12:20:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3593,11 +3730,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075640", + "name": "sleep-30-ok-cron-27075638", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -3608,10 +3745,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:40:00.000Z" + "created": "2021-06-24T12:38:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3633,11 +3772,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075631", + "name": "sleep-30-fail-cron-27075592", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3648,10 +3787,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:31:00.000Z" + "created": "2021-06-24T11:52:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3673,7 +3814,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075635", + "name": "sleep-30-fail-cron-27075629", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3688,10 +3829,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:35:00.000Z" + "created": "2021-06-24T12:29:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3713,11 +3856,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075634", + "name": "sleep-30-fail-cron-27075554", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -3728,10 +3871,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:34:00.000Z" + "created": "2021-06-24T11:14:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3753,7 +3898,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075592", + "name": "sleep-5-parallel-cron-27075591", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3768,10 +3913,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:52:00.000Z" + "created": "2021-06-24T11:51:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3793,7 +3940,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075618", + "name": "sleep-30-fail-cron-27075600", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3803,15 +3950,62 @@ "desired": 1 }, "pods": { - "active": 1, - "failed": 0, + "active": 0, + "failed": 1, "succeeded": 0 }, + "status": { + "failed": "true" + }, + "time": { + "created": "2021-06-24T12:00:00.000Z" + } + }, + "namespace": { + "name": "default" + } + }, + "metricset": { + "name": "state_job", + "period": 10000 + }, + "service": { + "address": "127.0.0.1:55555", + "type": "kubernetes" + } + }, + { + "event": { + "dataset": "kubernetes.job", + "duration": 115000, + "module": "kubernetes" + }, + "kubernetes": { + "job": { + "completions": { + "desired": 20 + }, + "name": "sleep-5-parallel-cron-27075618", + "owner": { + "is_controller": "true", + "kind": "CronJob", + "name": "sleep-5-parallel-cron" + }, + "parallelism": { + "desired": 5 + }, + "pods": { + "active": 2, + "failed": 0, + "succeeded": 18 + }, "time": { "created": "2021-06-24T12:18:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3833,7 +4027,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075642", + "name": "sleep-30-fail-cron-27075645", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3848,10 +4042,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:42:00.000Z" + "created": "2021-06-24T12:45:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -3873,7 +4069,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075535", + "name": "sleep-5-parallel-cron-27075636", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3883,15 +4079,17 @@ "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 19 + "succeeded": 4 }, "time": { - "created": "2021-06-24T10:55:00.000Z" + "created": "2021-06-24T12:36:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3913,7 +4111,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075566", + "name": "sleep-5-parallel-cron-27075548", "owner": { "is_controller": "true", "kind": "CronJob", @@ -3928,10 +4126,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:26:00.000Z" + "created": "2021-06-24T11:08:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3951,27 +4151,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075634", + "name": "sleep-5-parallel-cron-27075607", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 3, "failed": 0, - "succeeded": 0 + "succeeded": 17 }, "time": { - "created": "2021-06-24T12:34:00.000Z" + "created": "2021-06-24T12:07:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -3993,7 +4195,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075602", + "name": "sleep-30-fail-cron-27075606", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4008,10 +4210,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:02:00.000Z" + "created": "2021-06-24T12:06:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4031,27 +4235,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075640", + "name": "sleep-30-fail-cron-27075536", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:40:00.000Z" + "created": "2021-06-24T10:56:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4071,31 +4277,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075613", + "name": "sleep-30-fail-cron-27075642", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 0, + "active": 1, "failed": 0, - "succeeded": 20 - }, - "status": { - "complete": "true" + "succeeded": 0 }, "time": { - "completed": "2021-06-24T12:28:39.000Z", - "created": "2021-06-24T12:13:00.000Z" + "created": "2021-06-24T12:42:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4117,7 +4321,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075624", + "name": "sleep-5-parallel-cron-27075645", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4129,13 +4333,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 7 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:24:00.000Z" + "created": "2021-06-24T12:45:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4155,27 +4361,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075637", + "name": "sleep-5-parallel-cron-27075637", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { "created": "2021-06-24T12:37:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4197,7 +4405,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075606", + "name": "sleep-30-fail-cron-27075646", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4212,10 +4420,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:06:00.000Z" + "created": "2021-06-24T12:46:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4235,27 +4445,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075632", + "name": "sleep-5-parallel-cron-27075594", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 9 }, "time": { - "created": "2021-06-24T12:32:00.000Z" + "created": "2021-06-24T11:54:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4275,27 +4487,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075627", + "name": "sleep-5-parallel-cron-27075631", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 3 }, "time": { - "created": "2021-06-24T12:27:00.000Z" + "created": "2021-06-24T12:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4317,7 +4531,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075571", + "name": "sleep-5-parallel-cron-27075572", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4332,10 +4546,12 @@ "succeeded": 18 }, "time": { - "created": "2021-06-24T11:31:00.000Z" + "created": "2021-06-24T11:32:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4355,27 +4571,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075564", + "name": "sleep-30-fail-cron-27075610", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:24:00.000Z" + "created": "2021-06-24T12:10:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4395,27 +4613,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075622", + "name": "sleep-5-parallel-cron-27075566", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:22:00.000Z" + "created": "2021-06-24T11:26:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4435,27 +4655,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075536", + "name": "sleep-5-parallel-cron-27075623", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T10:56:00.000Z" + "created": "2021-06-24T12:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4475,27 +4697,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075612", + "name": "sleep-30-fail-cron-27075608", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:12:00.000Z" + "created": "2021-06-24T12:08:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4517,7 +4741,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075619", + "name": "sleep-5-parallel-cron-27075625", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4527,15 +4751,17 @@ "desired": 5 }, "pods": { - "active": 4, + "active": 5, "failed": 0, - "succeeded": 16 + "succeeded": 11 }, "time": { - "created": "2021-06-24T12:19:00.000Z" + "created": "2021-06-24T12:25:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4555,27 +4781,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075638", + "name": "sleep-30-ok-cron-27075645", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:38:00.000Z" + "created": "2021-06-24T12:45:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4597,11 +4825,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075590", + "name": "sleep-30-fail-cron-27075602", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -4612,10 +4840,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:50:00.000Z" + "created": "2021-06-24T12:02:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4637,11 +4867,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075626", + "name": "sleep-30-fail-cron-27075593", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -4652,10 +4882,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:26:00.000Z" + "created": "2021-06-24T11:53:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4675,27 +4907,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075625", + "name": "sleep-30-fail-cron-27075586", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 11 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:25:00.000Z" + "created": "2021-06-24T11:46:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4717,7 +4951,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075603", + "name": "sleep-5-parallel-cron-27075616", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4732,10 +4966,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T12:03:00.000Z" + "created": "2021-06-24T12:16:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4757,11 +4993,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075643", + "name": "sleep-30-fail-cron-27075613", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -4772,10 +5008,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:43:00.000Z" + "created": "2021-06-24T12:13:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4795,27 +5033,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075548", + "name": "sleep-30-fail-cron-27075594", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:08:00.000Z" + "created": "2021-06-24T11:54:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4835,27 +5075,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075632", + "name": "sleep-30-fail-cron-27075584", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 1 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:32:00.000Z" + "created": "2021-06-24T11:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4877,7 +5119,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075637", + "name": "sleep-5-parallel-cron-27075627", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4889,13 +5131,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 2 + "succeeded": 15 }, "time": { - "created": "2021-06-24T12:37:00.000Z" + "created": "2021-06-24T12:27:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -4917,7 +5161,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075628", + "name": "sleep-30-ok-cron-27075626", "owner": { "is_controller": "true", "kind": "CronJob", @@ -4932,10 +5176,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:28:00.000Z" + "created": "2021-06-24T12:26:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4957,11 +5203,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075620", + "name": "sleep-30-ok-cron-27075632", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -4972,10 +5218,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:20:00.000Z" + "created": "2021-06-24T12:32:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -4995,27 +5243,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075633", + "name": "sleep-5-parallel-cron-27075589", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:33:00.000Z" + "created": "2021-06-24T11:49:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5037,11 +5287,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075640", + "name": "sleep-30-fail-cron-27075611", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -5052,10 +5302,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:40:00.000Z" + "created": "2021-06-24T12:11:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5077,7 +5329,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075593", + "name": "sleep-5-parallel-cron-27075608", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5092,10 +5344,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:53:00.000Z" + "created": "2021-06-24T12:08:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5117,7 +5371,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075635", + "name": "sleep-5-parallel-cron-27075640", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5129,13 +5383,15 @@ "pods": { "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 1 }, "time": { - "created": "2021-06-24T12:35:00.000Z" + "created": "2021-06-24T12:40:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5155,27 +5411,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075554", + "name": "sleep-5-parallel-cron-27075624", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 7 }, "time": { - "created": "2021-06-24T11:14:00.000Z" + "created": "2021-06-24T12:24:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5197,11 +5455,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075609", + "name": "sleep-30-ok-cron-27075623", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -5212,10 +5470,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:09:00.000Z" + "created": "2021-06-24T12:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5237,11 +5497,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075633", + "name": "sleep-30-fail-cron-27075535", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -5252,10 +5512,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:33:00.000Z" + "created": "2021-06-24T10:55:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5277,7 +5539,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075557", + "name": "sleep-5-parallel-cron-27075593", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5292,10 +5554,12 @@ "succeeded": 19 }, "time": { - "created": "2021-06-24T11:17:00.000Z" + "created": "2021-06-24T11:53:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5317,7 +5581,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075608", + "name": "sleep-30-fail-cron-27075616", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5332,10 +5596,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:08:00.000Z" + "created": "2021-06-24T12:16:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5355,27 +5621,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075636", + "name": "sleep-5-parallel-cron-27075557", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:36:00.000Z" + "created": "2021-06-24T11:17:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5395,27 +5663,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075610", + "name": "sleep-5-parallel-cron-27075571", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:10:00.000Z" + "created": "2021-06-24T11:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5437,7 +5707,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075632", + "name": "sleep-30-fail-cron-27075631", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5452,10 +5722,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:32:00.000Z" + "created": "2021-06-24T12:31:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5475,27 +5747,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075594", + "name": "sleep-30-fail-cron-27075635", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 9 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:54:00.000Z" + "created": "2021-06-24T12:35:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5515,27 +5789,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075584", + "name": "sleep-30-fail-cron-27075601", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 2, + "active": 1, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:44:00.000Z" + "created": "2021-06-24T12:01:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5555,27 +5831,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075614", + "name": "sleep-30-fail-cron-27075627", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 15 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:14:00.000Z" + "created": "2021-06-24T12:27:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5595,27 +5873,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075638", + "name": "sleep-5-parallel-cron-27075617", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:38:00.000Z" + "created": "2021-06-24T12:17:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5635,27 +5915,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075576", + "name": "sleep-5-parallel-cron-27075599", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, - "succeeded": 0 + "succeeded": 2 }, "time": { - "created": "2021-06-24T11:36:00.000Z" + "created": "2021-06-24T11:59:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5677,7 +5959,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075626", + "name": "sleep-30-fail-cron-27075624", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5692,10 +5974,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:26:00.000Z" + "created": "2021-06-24T12:24:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5717,11 +6001,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075563", + "name": "sleep-30-ok-cron-27075635", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -5732,10 +6016,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:23:00.000Z" + "created": "2021-06-24T12:35:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5757,11 +6043,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075646", + "name": "sleep-30-ok-cron-27075601", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { "desired": 1 @@ -5772,10 +6058,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:46:00.000Z" + "created": "2021-06-24T12:01:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5797,7 +6085,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075532", + "name": "sleep-5-parallel-cron-27075629", "owner": { "is_controller": "true", "kind": "CronJob", @@ -5807,15 +6095,17 @@ "desired": 5 }, "pods": { - "active": 2, + "active": 5, "failed": 0, - "succeeded": 18 + "succeeded": 6 }, "time": { - "created": "2021-06-24T10:52:00.000Z" + "created": "2021-06-24T12:29:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5835,27 +6125,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075613", + "name": "sleep-5-parallel-cron-27075563", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T12:13:00.000Z" + "created": "2021-06-24T11:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5875,27 +6167,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075599", + "name": "sleep-30-fail-cron-27075626", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, - "succeeded": 2 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:59:00.000Z" + "created": "2021-06-24T12:26:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5915,27 +6209,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075589", + "name": "sleep-30-ok-cron-27075644", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-ok-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { "active": 1, "failed": 0, - "succeeded": 19 + "succeeded": 0 }, "time": { - "created": "2021-06-24T11:49:00.000Z" + "created": "2021-06-24T12:44:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -5955,27 +6251,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-ok-cron-27075644", + "name": "sleep-5-parallel-cron-27075590", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { "active": 1, "failed": 0, - "succeeded": 0 + "succeeded": 19 }, "time": { - "created": "2021-06-24T12:44:00.000Z" + "created": "2021-06-24T11:50:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -5997,11 +6295,11 @@ "completions": { "desired": 1 }, - "name": "sleep-30-ok-cron-27075594", + "name": "sleep-30-fail-cron-27075621", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-ok-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { "desired": 1 @@ -6012,10 +6310,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:54:00.000Z" + "created": "2021-06-24T12:21:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6035,27 +6335,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075629", + "name": "sleep-5-parallel-cron-27075619", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 4, "failed": 0, - "succeeded": 0 + "succeeded": 16 }, "time": { - "created": "2021-06-24T12:29:00.000Z" + "created": "2021-06-24T12:19:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -6075,27 +6377,29 @@ "kubernetes": { "job": { "completions": { - "desired": 20 + "desired": 1 }, - "name": "sleep-5-parallel-cron-27075642", + "name": "sleep-30-fail-cron-27075617", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-5-parallel-cron" + "name": "sleep-30-fail-cron" }, "parallelism": { - "desired": 5 + "desired": 1 }, "pods": { - "active": 5, + "active": 1, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:42:00.000Z" + "created": "2021-06-24T12:17:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6117,7 +6421,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075603", + "name": "sleep-30-fail-cron-27075639", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6132,10 +6436,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:03:00.000Z" + "created": "2021-06-24T12:39:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6157,7 +6463,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075623", + "name": "sleep-30-fail-cron-27075637", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6172,10 +6478,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T12:23:00.000Z" + "created": "2021-06-24T12:37:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6197,7 +6505,7 @@ "completions": { "desired": 1 }, - "name": "sleep-30-fail-cron-27075586", + "name": "sleep-30-fail-cron-27075623", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6212,10 +6520,12 @@ "succeeded": 0 }, "time": { - "created": "2021-06-24T11:46:00.000Z" + "created": "2021-06-24T12:23:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "metricset": { "name": "state_job", @@ -6235,27 +6545,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075630", + "name": "sleep-5-parallel-cron-27075638", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 5, "failed": 0, "succeeded": 0 }, "time": { - "created": "2021-06-24T12:30:00.000Z" + "created": "2021-06-24T12:38:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -6277,7 +6589,7 @@ "completions": { "desired": 20 }, - "name": "sleep-5-parallel-cron-27075618", + "name": "sleep-5-parallel-cron-27075633", "owner": { "is_controller": "true", "kind": "CronJob", @@ -6287,15 +6599,17 @@ "desired": 5 }, "pods": { - "active": 2, + "active": 5, "failed": 0, - "succeeded": 18 + "succeeded": 0 }, "time": { - "created": "2021-06-24T12:18:00.000Z" + "created": "2021-06-24T12:33:00.000Z" } }, - "namespace": "parallel-ns" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", @@ -6315,27 +6629,29 @@ "kubernetes": { "job": { "completions": { - "desired": 1 + "desired": 20 }, - "name": "sleep-30-fail-cron-27075592", + "name": "sleep-5-parallel-cron-27075564", "owner": { "is_controller": "true", "kind": "CronJob", - "name": "sleep-30-fail-cron" + "name": "sleep-5-parallel-cron" }, "parallelism": { - "desired": 1 + "desired": 5 }, "pods": { - "active": 1, + "active": 2, "failed": 0, - "succeeded": 0 + "succeeded": 18 }, "time": { - "created": "2021-06-24T11:52:00.000Z" + "created": "2021-06-24T11:24:00.000Z" } }, - "namespace": "default" + "namespace": { + "name": "parallel-ns" + } }, "metricset": { "name": "state_job", diff --git a/metricbeat/module/kubernetes/state_job/state_job.go b/metricbeat/module/kubernetes/state_job/state_job.go index 1b072eae742..bfad2bcba8b 100644 --- a/metricbeat/module/kubernetes/state_job/state_job.go +++ b/metricbeat/module/kubernetes/state_job/state_job.go @@ -65,7 +65,7 @@ var ( Labels: map[string]p.LabelMap{ // Jobs are uniquely identified by the combination of name and namespace. "job_name": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), // Add owner information provided by the "kube_job_owner" InfoMetric. "owner_kind": p.Label("owner.kind"), "owner_name": p.Label("owner.name"), diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected index 1bafc31a84c..fbc1e75a94e 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.unit.v1.8.0.expected @@ -5,7 +5,9 @@ "labels": { "app": "mysql-server" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", @@ -30,15 +32,12 @@ }, { "RootFields": {}, - "ModuleFields": { - "namespace": "default" - }, + "ModuleFields": null, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "prometheus-data", - "phase": "Pending", - "storage_class": "rbd", - "volume_name": "pvc-prometheus-data" + "name": "mongo-data", + "phase": "Lost", + "storage_class": "\u003cnone\u003e" }, "Index": "", "ID": "", @@ -53,12 +52,17 @@ }, { "RootFields": {}, - "ModuleFields": null, + "ModuleFields": { + "namespace": { + "name": "default" + } + }, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "mongo-data", - "phase": "Lost", - "storage_class": "\u003cnone\u003e" + "name": "prometheus-data", + "phase": "Pending", + "storage_class": "rbd", + "volume_name": "pvc-prometheus-data" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected index e5c4c21bd2f..925b651362e 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v1.8.0.expected @@ -5,17 +5,19 @@ "labels": { "app": "nginx" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "www-web-0", + "name": "www-web-1", "phase": "Bound", "request_storage": { "bytes": 1073741824 }, "storage_class": "standard", - "volume_name": "pvc-c87e31f9-f853-4b20-b5db-fc41466c8b56" + "volume_name": "pvc-539a19cf-ea44-43a4-84c5-4acca3f9b583" }, "Index": "", "ID": "", @@ -34,17 +36,19 @@ "labels": { "app": "nginx" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", - "name": "www-web-1", + "name": "www-web-0", "phase": "Bound", "request_storage": { "bytes": 1073741824 }, "storage_class": "standard", - "volume_name": "pvc-539a19cf-ea44-43a4-84c5-4acca3f9b583" + "volume_name": "pvc-c87e31f9-f853-4b20-b5db-fc41466c8b56" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected index 09a2c61e789..dc1ada939b5 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "access_mode": "ReadWriteOnce", diff --git a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go index 3cf414c498a..15072c5710c 100644 --- a/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go +++ b/metricbeat/module/kubernetes/state_persistentvolumeclaim/state_persistentvolumeclaim.go @@ -69,7 +69,7 @@ func NewpersistentvolumeclaimMetricSet(base mb.BaseMetricSet) (mb.MetricSet, err "kube_persistentvolumeclaim_status_phase": p.LabelMetric("phase", "phase"), }, Labels: map[string]p.LabelMap{ - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "persistentvolumeclaim": p.KeyLabel("name"), "storageclass": p.Label("storage_class"), "volumename": p.Label("volume_name"), diff --git a/metricbeat/module/kubernetes/state_pod/_meta/data.json b/metricbeat/module/kubernetes/state_pod/_meta/data.json index 474341cacd3..2a002a1470e 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/data.json +++ b/metricbeat/module/kubernetes/state_pod/_meta/data.json @@ -6,14 +6,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "jenkins" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.2", - "name": "tiller-deploy-3067024529-9lpmb", + "ip": "172.17.0.7", + "name": "wise-lynx-jenkins-1616735317-svn6k", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected index b47439bb83e..b8ffd59a24b 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.3.0.expected @@ -2,15 +2,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "10.0.2.15", - "name": "kube-scheduler-minikube", + "ip": "172.17.0.5", + "name": "kube-state-metrics-6479d88c5c-5b6cl", "status": { "phase": "running", "ready": "true", @@ -31,7 +33,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -39,7 +43,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "kube-apiserver-minikube", + "name": "kube-proxy-znhg6", "status": { "phase": "running", "ready": "true", @@ -60,7 +64,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -68,7 +74,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "kube-addon-manager-minikube", + "name": "kube-controller-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -89,15 +95,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "172.17.0.3", - "name": "kubernetes-dashboard-77d8b98585-vqtzm", + "ip": "10.0.2.15", + "name": "storage-provisioner", "status": { "phase": "running", "ready": "true", @@ -118,15 +126,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "172.17.0.2", - "name": "kube-dns-6f4fd4bdf-wlmht", + "ip": "10.0.2.15", + "name": "etcd-minikube", "status": { "phase": "running", "ready": "true", @@ -147,15 +157,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "10.0.2.15", - "name": "kube-controller-manager-minikube", + "ip": "172.17.0.2", + "name": "kube-dns-6f4fd4bdf-wlmht", "status": { "phase": "running", "ready": "true", @@ -176,15 +188,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "10.0.2.15", - "name": "storage-provisioner", + "ip": "172.17.0.3", + "name": "kubernetes-dashboard-77d8b98585-vqtzm", "status": { "phase": "running", "ready": "true", @@ -205,7 +219,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -213,7 +229,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "etcd-minikube", + "name": "kube-scheduler-minikube", "status": { "phase": "running", "ready": "true", @@ -234,15 +250,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "10.0.2.15", - "ip": "172.17.0.5", - "name": "kube-state-metrics-6479d88c5c-5b6cl", + "ip": "10.0.2.15", + "name": "kube-addon-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -263,7 +281,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -271,7 +291,7 @@ "MetricSetFields": { "host_ip": "10.0.2.15", "ip": "10.0.2.15", - "name": "kube-proxy-znhg6", + "name": "kube-apiserver-minikube", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected index 3048bed3e48..8e4e7e97417 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v1.8.0.expected @@ -2,18 +2,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.7", - "name": "hello-1578512100-vr7wj", + "ip": "192.168.64.6", + "name": "kube-scheduler-minikube", "status": { - "phase": "succeeded", - "ready": "false", + "phase": "running", + "ready": "true", "scheduled": "true" } }, @@ -31,15 +33,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "etcd-minikube", + "ip": "172.17.0.6", + "name": "web-1", "status": { "phase": "running", "ready": "true", @@ -60,15 +64,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.6", - "name": "web-1", + "ip": "192.168.64.6", + "name": "kube-addon-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -89,15 +95,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.2", - "name": "coredns-5644d7b6d9-fhwjd", + "ip": "172.17.0.3", + "name": "coredns-5644d7b6d9-k6wsp", "status": { "phase": "running", "ready": "true", @@ -118,15 +126,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.5", - "name": "web-0", + "ip": "192.168.64.6", + "name": "storage-provisioner", "status": { "phase": "running", "ready": "true", @@ -147,7 +157,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -155,7 +167,7 @@ "MetricSetFields": { "host_ip": "192.168.64.6", "ip": "192.168.64.6", - "name": "kube-proxy-dwg6l", + "name": "kube-controller-manager-minikube", "status": { "phase": "running", "ready": "true", @@ -176,7 +188,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -184,7 +198,7 @@ "MetricSetFields": { "host_ip": "192.168.64.6", "ip": "192.168.64.6", - "name": "kube-scheduler-minikube", + "name": "kube-apiserver-minikube", "status": { "phase": "running", "ready": "true", @@ -205,15 +219,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "kube-addon-manager-minikube", + "ip": "172.17.0.4", + "name": "kube-state-metrics-898d4db8d-dqmtg", "status": { "phase": "running", "ready": "true", @@ -234,15 +250,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.3", - "name": "coredns-5644d7b6d9-k6wsp", + "ip": "172.17.0.5", + "name": "web-0", "status": { "phase": "running", "ready": "true", @@ -263,7 +281,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } @@ -271,7 +291,7 @@ "MetricSetFields": { "host_ip": "192.168.64.6", "ip": "192.168.64.6", - "name": "storage-provisioner", + "name": "kube-proxy-dwg6l", "status": { "phase": "running", "ready": "true", @@ -292,18 +312,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "kube-controller-manager-minikube", + "ip": "172.17.0.7", + "name": "hello-1578512100-vr7wj", "status": { - "phase": "running", - "ready": "true", + "phase": "succeeded", + "ready": "false", "scheduled": "true" } }, @@ -321,15 +343,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "192.168.64.6", - "name": "kube-apiserver-minikube", + "ip": "172.17.0.2", + "name": "coredns-5644d7b6d9-fhwjd", "status": { "phase": "running", "ready": "true", @@ -350,15 +374,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" } }, "MetricSetFields": { "host_ip": "192.168.64.6", - "ip": "172.17.0.4", - "name": "kube-state-metrics-898d4db8d-dqmtg", + "ip": "192.168.64.6", + "name": "etcd-minikube", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected index 9ee91db17f4..865ffcf6449 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_pod/_meta/test/ksm.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" } @@ -10,7 +12,7 @@ "MetricSetFields": { "host_ip": "172.20.0.4", "ip": "172.20.0.4", - "name": "kube-proxy-22znl", + "name": "metricbeat-bvr2v", "status": { "phase": "running", "ready": "true", @@ -31,15 +33,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-worker2" + "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "10.244.1.2", - "name": "redis", + "host_ip": "172.20.0.4", + "ip": "10.244.2.3", + "name": "hello-python-566b5479f5-ndwdl", "status": { "phase": "running", "ready": "true", @@ -60,15 +64,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } }, "MetricSetFields": { "host_ip": "172.20.0.2", - "ip": "10.244.0.3", - "name": "coredns-5644d7b6d9-zgdsx", + "ip": "172.20.0.2", + "name": "kube-proxy-cm525", "status": { "phase": "running", "ready": "true", @@ -89,15 +95,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } }, "MetricSetFields": { "host_ip": "172.20.0.2", - "ip": "10.244.0.2", - "name": "coredns-5644d7b6d9-nnwmb", + "ip": "172.20.0.2", + "name": "kube-scheduler-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -118,15 +126,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-worker2" } }, "MetricSetFields": { - "host_ip": "172.20.0.4", - "ip": "172.20.0.4", - "name": "kindnet-9fgst", + "host_ip": "172.20.0.3", + "ip": "172.20.0.3", + "name": "metricbeat-55fp7", "status": { "phase": "running", "ready": "true", @@ -147,15 +157,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { "name": "kind-worker2" } }, "MetricSetFields": { "host_ip": "172.20.0.3", - "ip": "172.20.0.3", - "name": "kube-proxy-lf6md", + "ip": "10.244.1.2", + "name": "redis", "status": { "phase": "running", "ready": "true", @@ -176,15 +188,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "kube-controller-manager-kind-control-plane", + "host_ip": "172.20.0.4", + "ip": "10.244.2.2", + "name": "kube-state-metrics-f655d484d-hj69w", "status": { "phase": "running", "ready": "true", @@ -205,7 +219,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } @@ -213,7 +229,7 @@ "MetricSetFields": { "host_ip": "172.20.0.2", "ip": "172.20.0.2", - "name": "kube-apiserver-kind-control-plane", + "name": "kindnet-kch2v", "status": { "phase": "running", "ready": "true", @@ -234,15 +250,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "etcd-kind-control-plane", + "host_ip": "172.20.0.3", + "ip": "172.20.0.3", + "name": "kindnet-tg7tl", "status": { "phase": "running", "ready": "true", @@ -263,15 +281,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" } }, "MetricSetFields": { "host_ip": "172.20.0.4", - "ip": "10.244.2.3", - "name": "hello-python-566b5479f5-ndwdl", + "ip": "172.20.0.4", + "name": "kindnet-9fgst", "status": { "phase": "running", "ready": "true", @@ -292,7 +312,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } @@ -300,7 +322,7 @@ "MetricSetFields": { "host_ip": "172.20.0.2", "ip": "172.20.0.2", - "name": "kube-proxy-cm525", + "name": "kube-controller-manager-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -321,15 +343,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "local-path-storage", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-control-plane" } }, "MetricSetFields": { "host_ip": "172.20.0.2", - "ip": "10.244.0.4", - "name": "local-path-provisioner-5bf465b47d-h8hjn", + "ip": "172.20.0.2", + "name": "kube-apiserver-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -350,15 +374,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.4", - "ip": "10.244.2.2", - "name": "kube-state-metrics-f655d484d-hj69w", + "host_ip": "172.20.0.2", + "ip": "172.20.0.2", + "name": "etcd-kind-control-plane", "status": { "phase": "running", "ready": "true", @@ -379,18 +405,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "default" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "kube-scheduler-kind-control-plane", + "host_ip": "172.20.0.3", + "ip": "10.244.2.2", + "name": "hello-zf6gh", "status": { - "phase": "running", - "ready": "true", + "phase": "succeeded", + "ready": "false", "scheduled": "true" } }, @@ -408,18 +436,20 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default", + "namespace": { + "name": "kube-system" + }, "node": { "name": "kind-worker" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "10.244.2.2", - "name": "hello-zf6gh", + "host_ip": "172.20.0.4", + "ip": "172.20.0.4", + "name": "kube-proxy-22znl", "status": { - "phase": "succeeded", - "ready": "false", + "phase": "running", + "ready": "true", "scheduled": "true" } }, @@ -437,15 +467,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-control-plane" + "name": "kind-worker2" } }, "MetricSetFields": { - "host_ip": "172.20.0.2", - "ip": "172.20.0.2", - "name": "kindnet-kch2v", + "host_ip": "172.20.0.3", + "ip": "172.20.0.3", + "name": "kube-proxy-lf6md", "status": { "phase": "running", "ready": "true", @@ -466,15 +498,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "local-path-storage" + }, "node": { - "name": "kind-worker2" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "172.20.0.3", - "name": "metricbeat-55fp7", + "host_ip": "172.20.0.2", + "ip": "10.244.0.4", + "name": "local-path-provisioner-5bf465b47d-h8hjn", "status": { "phase": "running", "ready": "true", @@ -495,15 +529,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.4", - "ip": "172.20.0.4", - "name": "metricbeat-bvr2v", + "host_ip": "172.20.0.2", + "ip": "10.244.0.3", + "name": "coredns-5644d7b6d9-zgdsx", "status": { "phase": "running", "ready": "true", @@ -524,15 +560,17 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "kind-worker2" + "name": "kind-control-plane" } }, "MetricSetFields": { - "host_ip": "172.20.0.3", - "ip": "172.20.0.3", - "name": "kindnet-tg7tl", + "host_ip": "172.20.0.2", + "ip": "10.244.0.2", + "name": "coredns-5644d7b6d9-nnwmb", "status": { "phase": "running", "ready": "true", diff --git a/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json index 09de4a43609..7816dfea70f 100644 --- a/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_pod/_meta/testdata/docs.plain-expected.json @@ -6,14 +6,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "jenkins" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.2", - "name": "tiller-deploy-3067024529-9lpmb", + "ip": "172.17.0.7", + "name": "wise-lynx-jenkins-1616735317-svn6k", "status": { "phase": "running", "ready": "true", @@ -37,14 +39,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.3", - "name": "kube-state-metrics-1303537707-7ncd1", + "ip": "172.17.0.6", + "name": "kube-dns-v20-5g5cb", "status": { "phase": "running", "ready": "true", @@ -68,7 +72,9 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "node": { "name": "minikube" }, @@ -99,18 +105,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "test", + "namespace": { + "name": "kube-system" + }, "node": { - "name": "minikube-test" + "name": "minikube" }, "pod": { - "host_ip": "192.168.99.200", - "ip": "172.17.0.5", - "name": "jumpy-owl-redis-3481028193-s78x9", + "host_ip": "192.168.99.100", + "ip": "172.17.0.3", + "name": "kube-state-metrics-1303537707-7ncd1", "status": { "phase": "running", "ready": "true", - "scheduled": "false" + "scheduled": "true" } } }, @@ -130,18 +138,14 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "jenkins", - "node": { - "name": "minikube" + "namespace": { + "name": "kube-system" }, "pod": { - "host_ip": "192.168.99.100", - "ip": "172.17.0.7", - "name": "wise-lynx-jenkins-1616735317-svn6k", + "name": "kube-state-metrics-1303537707-mnzbp", "status": { - "phase": "running", - "ready": "true", - "scheduled": "true" + "phase": "pending", + "scheduled": "false" } } }, @@ -161,12 +165,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, + "node": { + "name": "minikube" + }, "pod": { - "name": "kube-state-metrics-1303537707-mnzbp", + "host_ip": "192.168.99.100", + "ip": "172.17.0.5", + "name": "kubernetes-dashboard-vw0l6", "status": { - "phase": "pending", - "scheduled": "false" + "phase": "running", + "ready": "true", + "scheduled": "true" } } }, @@ -186,18 +198,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "test" + }, "node": { - "name": "minikube" + "name": "minikube-test" }, "pod": { - "host_ip": "192.168.99.100", - "ip": "172.17.0.6", - "name": "kube-dns-v20-5g5cb", + "host_ip": "192.168.99.200", + "ip": "172.17.0.5", + "name": "jumpy-owl-redis-3481028193-s78x9", "status": { "phase": "running", "ready": "true", - "scheduled": "true" + "scheduled": "false" } } }, @@ -217,14 +231,16 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, "pod": { "host_ip": "192.168.99.100", - "ip": "172.17.0.5", - "name": "kubernetes-dashboard-vw0l6", + "ip": "172.17.0.2", + "name": "tiller-deploy-3067024529-9lpmb", "status": { "phase": "running", "ready": "true", @@ -248,7 +264,9 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "node": { "name": "minikube" }, diff --git a/metricbeat/module/kubernetes/state_pod/state_pod.go b/metricbeat/module/kubernetes/state_pod/state_pod.go index ea742ab26bd..e4bd290850b 100644 --- a/metricbeat/module/kubernetes/state_pod/state_pod.go +++ b/metricbeat/module/kubernetes/state_pod/state_pod.go @@ -49,7 +49,7 @@ var ( Labels: map[string]p.LabelMap{ "pod": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "node": p.Label(mb.ModuleDataKey + ".node.name"), "pod_ip": p.Label("ip"), diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/data.json b/metricbeat/module/kubernetes/state_replicaset/_meta/data.json index f4441104d6b..0c1091c8ad5 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/data.json +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/data.json @@ -6,15 +6,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "jenkins" + }, "replicaset": { - "name": "jumpy-owl-redis-3481028193", + "name": "wise-lynx-jenkins-1616735317", "replicas": { "available": 1, "desired": 1, "labeled": 1, "observed": 1, - "ready": 0 + "ready": 1 } } }, diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected index 1705a5a87dc..c8a26911c7b 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.3.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kubernetes-dashboard-77d8b98585", + "name": "kube-state-metrics-6479d88c5c", "replicas": { "available": 1, "desired": 1, @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics-6479d88c5c", + "name": "kube-state-metrics-86dd856df7", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, - "observed": 1, - "ready": 1 + "available": 0, + "desired": 0, + "labeled": 0, + "observed": 2, + "ready": 0 } }, "Index": "", @@ -54,7 +58,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "name": "kube-dns-6f4fd4bdf", @@ -80,16 +86,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics-86dd856df7", + "name": "kubernetes-dashboard-77d8b98585", "replicas": { - "available": 0, - "desired": 0, - "labeled": 0, - "observed": 2, - "ready": 0 + "available": 1, + "desired": 1, + "labeled": 1, + "observed": 1, + "ready": 1 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected index d292785f458..9cc72c20d21 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v1.8.0.expected @@ -2,16 +2,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "coredns-5644d7b6d9", + "name": "kube-state-metrics-898d4db8d", "replicas": { - "available": 2, - "desired": 2, - "labeled": 2, + "available": 1, + "desired": 1, + "labeled": 1, "observed": 1, - "ready": 2 + "ready": 1 } }, "Index": "", @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "kube-state-metrics-898d4db8d", + "name": "coredns-5644d7b6d9", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, + "available": 2, + "desired": 2, + "labeled": 2, "observed": 1, - "ready": 1 + "ready": 2 } }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected index fb06db2106b..229e8e3f5db 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/test/ksm.v2.0.0.expected @@ -2,10 +2,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "name": "kube-state-metrics-f655d484d", + "name": "hello-python-566b5479f5", "replicas": { "available": 1, "desired": 1, @@ -28,16 +30,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "hello-python-566b5479f5", + "name": "coredns-5644d7b6d9", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, + "available": 2, + "desired": 2, + "labeled": 2, "observed": 1, - "ready": 1 + "ready": 2 } }, "Index": "", @@ -54,16 +58,18 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "local-path-storage" + } }, "MetricSetFields": { - "name": "coredns-5644d7b6d9", + "name": "local-path-provisioner-5bf465b47d", "replicas": { - "available": 2, - "desired": 2, - "labeled": 2, + "available": 1, + "desired": 1, + "labeled": 1, "observed": 1, - "ready": 2 + "ready": 1 } }, "Index": "", @@ -80,10 +86,12 @@ { "RootFields": null, "ModuleFields": { - "namespace": "local-path-storage" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "name": "local-path-provisioner-5bf465b47d", + "name": "kube-state-metrics-f655d484d", "replicas": { "available": 1, "desired": 1, diff --git a/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json index cfdafbd4cc3..72df48f77e8 100644 --- a/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_replicaset/_meta/testdata/docs.plain-expected.json @@ -6,15 +6,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "jenkins" + }, "replicaset": { - "name": "jumpy-owl-redis-3481028193", + "name": "wise-lynx-jenkins-1616735317", "replicas": { "available": 1, "desired": 1, "labeled": 1, "observed": 1, - "ready": 0 + "ready": 1 } } }, @@ -34,15 +36,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "test", + "namespace": { + "name": "kube-system" + }, "replicaset": { - "name": "kube-state-metrics-1303537707", + "name": "tiller-deploy-3067024529", "replicas": { - "available": 7, - "desired": 3, - "labeled": 4, - "observed": 5, - "ready": 6 + "available": 1, + "desired": 1, + "labeled": 1, + "observed": 1, + "ready": 1 } } }, @@ -62,15 +66,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "test" + }, "replicaset": { "name": "kube-state-metrics-1303537707", "replicas": { - "available": 2, - "desired": 2, - "labeled": 2, - "observed": 1, - "ready": 1 + "available": 7, + "desired": 3, + "labeled": 4, + "observed": 5, + "ready": 6 } } }, @@ -90,15 +96,17 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "jenkins", + "namespace": { + "name": "default" + }, "replicaset": { - "name": "wise-lynx-jenkins-1616735317", + "name": "jumpy-owl-redis-3481028193", "replicas": { "available": 1, "desired": 1, "labeled": 1, "observed": 1, - "ready": 1 + "ready": 0 } } }, @@ -118,13 +126,15 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "kube-system", + "namespace": { + "name": "kube-system" + }, "replicaset": { - "name": "tiller-deploy-3067024529", + "name": "kube-state-metrics-1303537707", "replicas": { - "available": 1, - "desired": 1, - "labeled": 1, + "available": 2, + "desired": 2, + "labeled": 2, "observed": 1, "ready": 1 } diff --git a/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go b/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go index 7ee8e62864a..5a28a237a77 100644 --- a/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go +++ b/metricbeat/module/kubernetes/state_replicaset/state_replicaset.go @@ -51,7 +51,7 @@ var ( Labels: map[string]p.LabelMap{ "replicaset": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected index 071423392dc..5946cf6c8cb 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_resourcequota/_meta/test/ksm.v1.8.0.expected @@ -2,12 +2,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 10, - "resource": "services", + "quota": 20, + "resource": "replicationcontrollers", "type": "hard" }, "Index": "", @@ -24,13 +26,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 0, - "resource": "replicationcontrollers", - "type": "used" + "quota": 4, + "resource": "pods", + "type": "hard" }, "Index": "", "ID": "", @@ -46,13 +50,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 0, - "resource": "requests.memory", - "type": "used" + "name": "object-counts", + "quota": 10, + "resource": "configmaps", + "type": "hard" }, "Index": "", "ID": "", @@ -68,13 +74,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "created": { - "sec": 1578507202 - }, - "name": "compute-resources" + "name": "object-counts", + "quota": 4, + "resource": "persistentvolumeclaims", + "type": "hard" }, "Index": "", "ID": "", @@ -90,12 +98,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "compute-resources", - "quota": 2147483648, - "resource": "limits.memory", + "quota": 1073741824, + "resource": "requests.memory", "type": "hard" }, "Index": "", @@ -112,13 +122,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 4, + "quota": 0, "resource": "persistentvolumeclaims", - "type": "hard" + "type": "used" }, "Index": "", "ID": "", @@ -134,13 +146,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "compute-resources", - "quota": 1073741824, - "resource": "requests.memory", - "type": "hard" + "quota": 0, + "resource": "limits.memory", + "type": "used" }, "Index": "", "ID": "", @@ -156,13 +170,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 0, - "resource": "persistentvolumeclaims", - "type": "used" + "quota": 10, + "resource": "services", + "type": "hard" }, "Index": "", "ID": "", @@ -178,13 +194,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 4, - "resource": "pods", - "type": "hard" + "name": "compute-resources", + "quota": 0, + "resource": "requests.memory", + "type": "used" }, "Index": "", "ID": "", @@ -200,13 +218,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 20, + "quota": 0, "resource": "replicationcontrollers", - "type": "hard" + "type": "used" }, "Index": "", "ID": "", @@ -222,12 +242,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 10, - "resource": "configmaps", + "name": "compute-resources", + "quota": 2147483648, + "resource": "limits.memory", "type": "hard" }, "Index": "", @@ -244,13 +266,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 0, - "resource": "limits.memory", - "type": "used" + "created": { + "sec": 1578507202 + }, + "name": "compute-resources" }, "Index": "", "ID": "", @@ -266,13 +290,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 10, - "resource": "secrets", - "type": "hard" + "created": { + "sec": 1578507217 + }, + "name": "object-counts" }, "Index": "", "ID": "", @@ -288,12 +314,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", + "name": "compute-resources", "quota": 0, - "resource": "services", + "resource": "requests.nvidia.com/gpu", "type": "used" }, "Index": "", @@ -310,13 +338,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 2, - "resource": "services.loadbalancers", - "type": "hard" + "quota": 1, + "resource": "secrets", + "type": "used" }, "Index": "", "ID": "", @@ -332,12 +362,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", + "name": "object-counts", "quota": 0, - "resource": "limits.cpu", + "resource": "pods", "type": "used" }, "Index": "", @@ -354,13 +386,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 0, - "resource": "configmaps", - "type": "used" + "name": "compute-resources", + "quota": 1, + "resource": "requests.cpu", + "type": "hard" }, "Index": "", "ID": "", @@ -376,13 +410,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 1, - "resource": "secrets", - "type": "used" + "name": "compute-resources", + "quota": 4, + "resource": "requests.nvidia.com/gpu", + "type": "hard" }, "Index": "", "ID": "", @@ -398,13 +434,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "object-counts", - "quota": 0, - "resource": "pods", - "type": "used" + "name": "compute-resources", + "quota": 2, + "resource": "limits.cpu", + "type": "hard" }, "Index": "", "ID": "", @@ -420,12 +458,14 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", + "name": "object-counts", "quota": 0, - "resource": "requests.nvidia.com/gpu", + "resource": "services.loadbalancers", "type": "used" }, "Index": "", @@ -442,13 +482,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "created": { - "sec": 1578507217 - }, - "name": "object-counts" + "name": "compute-resources", + "quota": 0, + "resource": "requests.cpu", + "type": "used" }, "Index": "", "ID": "", @@ -464,13 +506,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "object-counts", - "quota": 0, - "resource": "services.loadbalancers", - "type": "used" + "quota": 10, + "resource": "secrets", + "type": "hard" }, "Index": "", "ID": "", @@ -486,13 +530,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 2, - "resource": "limits.cpu", - "type": "hard" + "name": "object-counts", + "quota": 0, + "resource": "services", + "type": "used" }, "Index": "", "ID": "", @@ -508,13 +554,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 0, - "resource": "requests.cpu", - "type": "used" + "name": "object-counts", + "quota": 2, + "resource": "services.loadbalancers", + "type": "hard" }, "Index": "", "ID": "", @@ -530,13 +578,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { - "name": "compute-resources", - "quota": 1, - "resource": "requests.cpu", - "type": "hard" + "name": "object-counts", + "quota": 0, + "resource": "configmaps", + "type": "used" }, "Index": "", "ID": "", @@ -552,13 +602,15 @@ { "RootFields": {}, "ModuleFields": { - "namespace": "myspace" + "namespace": { + "name": "myspace" + } }, "MetricSetFields": { "name": "compute-resources", - "quota": 4, - "resource": "requests.nvidia.com/gpu", - "type": "hard" + "quota": 0, + "resource": "limits.cpu", + "type": "used" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go index eb8bc6ddf35..5fb72e5b577 100644 --- a/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go +++ b/metricbeat/module/kubernetes/state_resourcequota/state_resourcequota.go @@ -63,7 +63,7 @@ func NewResourceQuotaMetricSet(base mb.BaseMetricSet) (mb.MetricSet, error) { "kube_resourcequota": p.Metric("quota"), }, Labels: map[string]p.LabelMap{ - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "resourcequota": p.KeyLabel("name"), "resource": p.KeyLabel("resource"), diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected index d0c0c46a4ad..8f34da5871b 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.unit.v1.8.0.expected @@ -3,15 +3,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example2" + "app": "example4" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "1.2.3.5", "created": "2017-07-14T02:40:00.000Z", - "name": "test-service2", - "type": "NodePort" + "external_name": "www.example.com", + "name": "test-service4", + "type": "ExternalName" }, "Index": "", "ID": "", @@ -28,16 +30,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example3" + "app": "example2" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "1.2.3.6", + "cluster_ip": "1.2.3.5", "created": "2017-07-14T02:40:00.000Z", - "load_balancer_ip": "1.2.3.7", - "name": "test-service3", - "type": "LoadBalancer" + "name": "test-service2", + "type": "NodePort" }, "Index": "", "ID": "", @@ -54,15 +57,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example5" + "app": "example3" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { + "cluster_ip": "1.2.3.6", "created": "2017-07-14T02:40:00.000Z", - "ingress_hostname": "www.example.com", - "ingress_ip": "1.2.3.8", - "name": "test-service5", + "load_balancer_ip": "1.2.3.7", + "name": "test-service3", "type": "LoadBalancer" }, "Index": "", @@ -80,15 +85,18 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "example4" + "app": "example5" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": "2017-07-14T02:40:00.000Z", - "external_name": "www.example.com", - "name": "test-service4", - "type": "ExternalName" + "ingress_hostname": "www.example.com", + "ingress_ip": "1.2.3.8", + "name": "test-service5", + "type": "LoadBalancer" }, "Index": "", "ID": "", @@ -107,7 +115,9 @@ "labels": { "app": "example6" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": "2017-07-14T02:40:00.000Z", @@ -132,7 +142,9 @@ "labels": { "app": "example1" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "cluster_ip": "1.2.3.4", diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected index 5717193d8a2..8921833ee55 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.3.0.expected @@ -3,18 +3,19 @@ "RootFields": null, "ModuleFields": { "labels": { - "addonmanager_kubernetes_io_mode": "Reconcile", - "app": "kubernetes-dashboard", - "kubernetes_io_minikube_addons": "dashboard", - "kubernetes_io_minikube_addons_endpoint": "dashboard" + "k8s_app": "kube-dns", + "kubernetes_io_cluster_service": "true", + "kubernetes_io_name": "KubeDNS" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "10.109.175.127", - "created": "2018-05-30T16:24:44.000Z", - "name": "kubernetes-dashboard", - "type": "NodePort" + "cluster_ip": "10.96.0.10", + "created": "2018-05-30T16:24:36.000Z", + "name": "kube-dns", + "type": "ClusterIP" }, "Index": "", "ID": "", @@ -31,16 +32,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "k8s_app": "kube-dns", - "kubernetes_io_cluster_service": "true", - "kubernetes_io_name": "KubeDNS" + "component": "apiserver", + "provider": "kubernetes" }, - "namespace": "kube-system" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.10", - "created": "2018-05-30T16:24:36.000Z", - "name": "kube-dns", + "cluster_ip": "10.96.0.1", + "created": "2018-05-30T16:24:29.000Z", + "name": "kubernetes", "type": "ClusterIP" }, "Index": "", @@ -58,16 +60,20 @@ "RootFields": null, "ModuleFields": { "labels": { - "component": "apiserver", - "provider": "kubernetes" + "addonmanager_kubernetes_io_mode": "Reconcile", + "app": "kubernetes-dashboard", + "kubernetes_io_minikube_addons": "dashboard", + "kubernetes_io_minikube_addons_endpoint": "dashboard" }, - "namespace": "default" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.1", - "created": "2018-05-30T16:24:29.000Z", - "name": "kubernetes", - "type": "ClusterIP" + "cluster_ip": "10.109.175.127", + "created": "2018-05-30T16:24:44.000Z", + "name": "kubernetes-dashboard", + "type": "NodePort" }, "Index": "", "ID": "", @@ -86,7 +92,9 @@ "labels": { "k8s_app": "kube-state-metrics" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "cluster_ip": "10.108.182.194", diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected index 9e7b4c7cd3b..d56cabf40b5 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v1.8.0.expected @@ -5,7 +5,9 @@ "labels": { "k8s_app": "kube-state-metrics" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "cluster_ip": "10.101.63.187", @@ -32,7 +34,9 @@ "kubernetes_io_cluster_service": "true", "kubernetes_io_name": "KubeDNS" }, - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { "cluster_ip": "10.96.0.10", @@ -55,14 +59,17 @@ "RootFields": null, "ModuleFields": { "labels": { - "app": "nginx" + "component": "apiserver", + "provider": "kubernetes" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "None", - "created": "2020-01-08T18:15:25.000Z", - "name": "nginx", + "cluster_ip": "10.96.0.1", + "created": "2020-01-07T16:11:02.000Z", + "name": "kubernetes", "type": "ClusterIP" }, "Index": "", @@ -80,15 +87,16 @@ "RootFields": null, "ModuleFields": { "labels": { - "component": "apiserver", - "provider": "kubernetes" + "app": "nginx" }, - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.1", - "created": "2020-01-07T16:11:02.000Z", - "name": "kubernetes", + "cluster_ip": "None", + "created": "2020-01-08T18:15:25.000Z", + "name": "nginx", "type": "ClusterIP" }, "Index": "", diff --git a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected index 096ec78662d..58c5637cf15 100644 --- a/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_service/_meta/test/ksm.v2.0.0.expected @@ -2,12 +2,14 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "10.96.0.10", - "created": "2021-08-12T14:24:46.000Z", - "name": "kube-dns", + "cluster_ip": "None", + "created": "2021-08-23T13:04:03.000Z", + "name": "kube-state-metrics", "type": "ClusterIP" }, "Index": "", @@ -24,12 +26,14 @@ { "RootFields": null, "ModuleFields": { - "namespace": "kube-system" + "namespace": { + "name": "kube-system" + } }, "MetricSetFields": { - "cluster_ip": "None", - "created": "2021-08-23T13:04:03.000Z", - "name": "kube-state-metrics", + "cluster_ip": "10.96.0.10", + "created": "2021-08-12T14:24:46.000Z", + "name": "kube-dns", "type": "ClusterIP" }, "Index": "", @@ -46,7 +50,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "cluster_ip": "10.96.0.1", diff --git a/metricbeat/module/kubernetes/state_service/state_service.go b/metricbeat/module/kubernetes/state_service/state_service.go index 6794c36c44f..e46ab08623a 100644 --- a/metricbeat/module/kubernetes/state_service/state_service.go +++ b/metricbeat/module/kubernetes/state_service/state_service.go @@ -75,7 +75,7 @@ func NewServiceMetricSet(base mb.BaseMetricSet) (mb.MetricSet, error) { "kube_service_status_load_balancer_ingress": p.InfoMetric(), }, Labels: map[string]p.LabelMap{ - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), "service": p.KeyLabel("name"), "cluster_ip": p.Label("cluster_ip"), "external_name": p.Label("external_name"), diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/data.json b/metricbeat/module/kubernetes/state_statefulset/_meta/data.json index 776b4a48d93..96a17077792 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/data.json +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/data.json @@ -6,18 +6,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "statefulset": { - "created": 1511989697, + "created": 1511973651, "generation": { - "desired": 4, - "observed": 2 + "desired": 3, + "observed": 1 }, - "name": "mysql", + "name": "elasticsearch", "replicas": { - "desired": 5, - "observed": 2, - "ready": 2 + "desired": 4, + "observed": 1, + "ready": 1 } } }, diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected index d55d49a0b85..d2fe830a9f1 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.unit.v2.0.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": 1629966737, diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected index a5c1c584229..ae8659926a3 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/test/ksm.v1.8.0.expected @@ -2,7 +2,9 @@ { "RootFields": null, "ModuleFields": { - "namespace": "default" + "namespace": { + "name": "default" + } }, "MetricSetFields": { "created": 1578507325, diff --git a/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json b/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json index 8ab015da061..ef3ba87ef22 100644 --- a/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json +++ b/metricbeat/module/kubernetes/state_statefulset/_meta/testdata/docs.plain-expected.json @@ -6,18 +6,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "statefulset": { - "created": 1511989697, + "created": 1511973651, "generation": { - "desired": 4, - "observed": 2 + "desired": 3, + "observed": 1 }, - "name": "mysql", + "name": "elasticsearch", "replicas": { - "desired": 5, - "observed": 2, - "ready": 2 + "desired": 4, + "observed": 1, + "ready": 1 } } }, @@ -37,7 +39,9 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "custom", + "namespace": { + "name": "custom" + }, "statefulset": { "created": 1511999697, "generation": { @@ -68,18 +72,20 @@ "module": "kubernetes" }, "kubernetes": { - "namespace": "default", + "namespace": { + "name": "default" + }, "statefulset": { - "created": 1511973651, + "created": 1511989697, "generation": { - "desired": 3, - "observed": 1 + "desired": 4, + "observed": 2 }, - "name": "elasticsearch", + "name": "mysql", "replicas": { - "desired": 4, - "observed": 1, - "ready": 1 + "desired": 5, + "observed": 2, + "ready": 2 } } }, diff --git a/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go b/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go index c2c02195206..59de9bfeff1 100644 --- a/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go +++ b/metricbeat/module/kubernetes/state_statefulset/state_statefulset.go @@ -51,7 +51,7 @@ var ( Labels: map[string]p.LabelMap{ "statefulset": p.KeyLabel("name"), - "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace"), + "namespace": p.KeyLabel(mb.ModuleDataKey + ".namespace.name"), }, } ) diff --git a/metricbeat/module/kubernetes/util/kubernetes.go b/metricbeat/module/kubernetes/util/kubernetes.go index c037c327526..58aab72f1ff 100644 --- a/metricbeat/module/kubernetes/util/kubernetes.go +++ b/metricbeat/module/kubernetes/util/kubernetes.go @@ -191,7 +191,7 @@ func NewResourceMetadataEnricher( }, // index func(e common.MapStr) string { - return join(getString(e, mb.ModuleDataKey+".namespace"), getString(e, "name")) + return join(getString(e, mb.ModuleDataKey+".namespace.name"), getString(e, "name")) }, ) diff --git a/metricbeat/module/kubernetes/volume/data.go b/metricbeat/module/kubernetes/volume/data.go index 6170bbadbcc..03508a37155 100644 --- a/metricbeat/module/kubernetes/volume/data.go +++ b/metricbeat/module/kubernetes/volume/data.go @@ -40,7 +40,9 @@ func eventMapping(content []byte) ([]common.MapStr, error) { for _, volume := range pod.Volume { volumeEvent := common.MapStr{ mb.ModuleDataKey: common.MapStr{ - "namespace": pod.PodRef.Namespace, + "namespace": common.MapStr{ + "name": pod.PodRef.Namespace, + }, "node": common.MapStr{ "name": node.NodeName, }, diff --git a/metricbeat/module/openmetrics/collector/_meta/data.json b/metricbeat/module/openmetrics/collector/_meta/data.json index 5c3e9aec6ba..d20778fec4a 100644 --- a/metricbeat/module/openmetrics/collector/_meta/data.json +++ b/metricbeat/module/openmetrics/collector/_meta/data.json @@ -11,7 +11,7 @@ }, "openmetrics": { "labels": { - "device": "br-3a285aa5e58c", + "device": "br-33d819d5f834", "job": "openmetrics" }, "metrics": { diff --git a/metricbeat/module/prometheus/collector/_meta/data.json b/metricbeat/module/prometheus/collector/_meta/data.json index dba9f7771c4..a46b63c74fe 100644 --- a/metricbeat/module/prometheus/collector/_meta/data.json +++ b/metricbeat/module/prometheus/collector/_meta/data.json @@ -11,12 +11,10 @@ }, "prometheus": { "labels": { - "job": "prometheus", - "listener_name": "http" + "job": "prometheus" }, "metrics": { - "net_conntrack_listener_conn_accepted_total": 3, - "net_conntrack_listener_conn_closed_total": 0 + "up": 1 } }, "service": { diff --git a/packetbeat/docs/fields.asciidoc b/packetbeat/docs/fields.asciidoc index b2566e9cdb6..27b54a13cdc 100644 --- a/packetbeat/docs/fields.asciidoc +++ b/packetbeat/docs/fields.asciidoc @@ -16710,16 +16710,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/packetbeat/include/fields.go b/packetbeat/include/fields.go index d5fc9f86ff3..017f52379ab 100644 --- a/packetbeat/include/fields.go +++ b/packetbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/winlogbeat/docs/fields.asciidoc b/winlogbeat/docs/fields.asciidoc index bdfc76c59e0..828ea1a1c92 100644 --- a/winlogbeat/docs/fields.asciidoc +++ b/winlogbeat/docs/fields.asciidoc @@ -14733,16 +14733,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/winlogbeat/include/fields.go b/winlogbeat/include/fields.go index 3028ffa5f95..34e37fa2add 100644 --- a/winlogbeat/include/fields.go +++ b/winlogbeat/include/fields.go @@ -32,5 +32,5 @@ func init() { // AssetBuildFieldsFieldsCommonYml returns asset data. // This is the base64 encoded zlib format compressed contents of build/fields/fields.common.yml. func AssetBuildFieldsFieldsCommonYml() string { - return "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" + return "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" } diff --git a/x-pack/filebeat/module/coredns/log/test/coredns-json.log b/x-pack/filebeat/module/coredns/log/test/coredns-json.log index 9a2f9b6dea4..52f20388d10 100644 --- a/x-pack/filebeat/module/coredns/log/test/coredns-json.log +++ b/x-pack/filebeat/module/coredns/log/test/coredns-json.log @@ -1,3 +1,3 @@ -{"message":"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \"A IN httpbin.org.cluster.local. udp 43 false 512\" NXDOMAIN qr,rd,ra 136 0.000102078s", "stream": "stdout", "time": "2019-02-12T00:27:28.903433597Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": "kube-system", "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } -{"message":"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \"A IN httpbin.org. udp 29 false 512\" NOERROR qr,rd,ra 83 0.000082083s\n","stream":"stdout","time":"2019-03-19T02:57:23.214583742Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": "kube-system", "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } -{"message":"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \"AAAA IN czbaoyu.com. udp 29 false 512\" NOERROR qr,rd,ra 100 0.00006286s\n","stream":"stdout","time":"2019-03-11T07:16:34.013970788Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": "kube-system", "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } +{"message":"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \"A IN httpbin.org.cluster.local. udp 43 false 512\" NXDOMAIN qr,rd,ra 136 0.000102078s", "stream": "stdout", "time": "2019-02-12T00:27:28.903433597Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": { "name": "kube-system" }, "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } +{"message":"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \"A IN httpbin.org. udp 29 false 512\" NOERROR qr,rd,ra 83 0.000082083s\n","stream":"stdout","time":"2019-03-19T02:57:23.214583742Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": { "name": "kube-system" }, "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } +{"message":"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \"AAAA IN czbaoyu.com. udp 29 false 512\" NOERROR qr,rd,ra 100 0.00006286s\n","stream":"stdout","time":"2019-03-11T07:16:34.013970788Z", "kubernetes": { "container": { "name": "coredns" }, "node": { "name": "minikube" }, "pod": { "uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "name": "coredns-86c58d9df4-jwhsg" }, "namespace": { "name": "kube-system" }, "replicaset": { "name": "coredns-86c58d9df4" }, "labels": { "pod-template-hash": "86c58d9df4", "k8s-app": "kube-dns" } } } diff --git a/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json b/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json index 9a1c8520b76..a16494f4b44 100644 --- a/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json +++ b/x-pack/filebeat/module/coredns/log/test/coredns-json.log-expected.json @@ -20,7 +20,7 @@ "event.duration": 102078, "event.kind": "event", "event.module": "coredns", - "event.original": "{\"message\":\"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \\\"A IN httpbin.org.cluster.local. udp 43 false 512\\\" NXDOMAIN qr,rd,ra 136 0.000102078s\", \"stream\": \"stdout\", \"time\": \"2019-02-12T00:27:28.903433597Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": \"kube-system\", \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", + "event.original": "{\"message\":\"2019-02-12T00:27:28.903Z [INFO] 172.17.0.4:36413 - 21583 \\\"A IN httpbin.org.cluster.local. udp 43 false 512\\\" NXDOMAIN qr,rd,ra 136 0.000102078s\", \"stream\": \"stdout\", \"time\": \"2019-02-12T00:27:28.903433597Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": { \"name\": \"kube-system\" }, \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", "event.outcome": "failure", "event.type": [ "protocol" @@ -30,7 +30,7 @@ "kubernetes.container.name": "coredns", "kubernetes.labels.k8s-app": "kube-dns", "kubernetes.labels.pod-template-hash": "86c58d9df4", - "kubernetes.namespace": "kube-system", + "kubernetes.namespace.name": "kube-system", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "coredns-86c58d9df4-jwhsg", "kubernetes.pod.uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", @@ -72,7 +72,7 @@ "event.duration": 82083, "event.kind": "event", "event.module": "coredns", - "event.original": "{\"message\":\"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \\\"A IN httpbin.org. udp 29 false 512\\\" NOERROR qr,rd,ra 83 0.000082083s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-19T02:57:23.214583742Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": \"kube-system\", \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", + "event.original": "{\"message\":\"2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \\\"A IN httpbin.org. udp 29 false 512\\\" NOERROR qr,rd,ra 83 0.000082083s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-19T02:57:23.214583742Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": { \"name\": \"kube-system\" }, \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", "event.outcome": "success", "event.type": [ "protocol" @@ -82,13 +82,13 @@ "kubernetes.container.name": "coredns", "kubernetes.labels.k8s-app": "kube-dns", "kubernetes.labels.pod-template-hash": "86c58d9df4", - "kubernetes.namespace": "kube-system", + "kubernetes.namespace.name": "kube-system", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "coredns-86c58d9df4-jwhsg", "kubernetes.pod.uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "kubernetes.replicaset.name": "coredns-86c58d9df4", "log.level": "INFO", - "log.offset": 550, + "log.offset": 562, "message": "2019-03-19T02:57:23.213Z [INFO] 172.17.0.9:37723 - 6966 \"A IN httpbin.org. udp 29 false 512\" NOERROR qr,rd,ra 83 0.000082083s\n", "network.protocol": "dns", "network.transport": "udp", @@ -124,7 +124,7 @@ "event.duration": 62860, "event.kind": "event", "event.module": "coredns", - "event.original": "{\"message\":\"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \\\"AAAA IN czbaoyu.com. udp 29 false 512\\\" NOERROR qr,rd,ra 100 0.00006286s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-11T07:16:34.013970788Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": \"kube-system\", \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", + "event.original": "{\"message\":\"2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \\\"AAAA IN czbaoyu.com. udp 29 false 512\\\" NOERROR qr,rd,ra 100 0.00006286s\\n\",\"stream\":\"stdout\",\"time\":\"2019-03-11T07:16:34.013970788Z\", \"kubernetes\": { \"container\": { \"name\": \"coredns\" }, \"node\": { \"name\": \"minikube\" }, \"pod\": { \"uid\": \"d57d545e-2a9d-11e9-995f-08002730e0dc\", \"name\": \"coredns-86c58d9df4-jwhsg\" }, \"namespace\": { \"name\": \"kube-system\" }, \"replicaset\": { \"name\": \"coredns-86c58d9df4\" }, \"labels\": { \"pod-template-hash\": \"86c58d9df4\", \"k8s-app\": \"kube-dns\" } } }", "event.outcome": "success", "event.type": [ "protocol" @@ -134,13 +134,13 @@ "kubernetes.container.name": "coredns", "kubernetes.labels.k8s-app": "kube-dns", "kubernetes.labels.pod-template-hash": "86c58d9df4", - "kubernetes.namespace": "kube-system", + "kubernetes.namespace.name": "kube-system", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "coredns-86c58d9df4-jwhsg", "kubernetes.pod.uid": "d57d545e-2a9d-11e9-995f-08002730e0dc", "kubernetes.replicaset.name": "coredns-86c58d9df4", "log.level": "INFO", - "log.offset": 1081, + "log.offset": 1105, "message": "2019-03-11T07:16:34.013Z [INFO] [::1]:37915 - 62762 \"AAAA IN czbaoyu.com. udp 29 false 512\" NOERROR qr,rd,ra 100 0.00006286s\n", "network.protocol": "dns", "network.transport": "udp", @@ -155,4 +155,4 @@ "coredns" ] } -] \ No newline at end of file +] diff --git a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log index 31cb674f4c7..65d689e46eb 100644 --- a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log +++ b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log @@ -1,2 +1,2 @@ -{"message":"ACCESS [2019-04-10T03:49:34.451Z] \"GET /httpbin/status/501 HTTP/1.1\" 501 - 0 0 180 179 \"172.17.0.3\" \"curl/7.59.0\" \"413bf460-bd56-4515-ada4-2a69c5e78e54\" \"httpbin.org\" \"52.71.234.219:80\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": "default", "labels": { "service": "ambassador" }}} -{"message":"ACCESS [2019-04-06T06:20:05.972Z] \"- - -\" 0 UF,URX 0 0 0 - \"-\" \"-\" \"-\" \"-\" \"127.0.0.1:9200\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": "default", "labels": { "service": "ambassador" }}}} +{"message":"ACCESS [2019-04-10T03:49:34.451Z] \"GET /httpbin/status/501 HTTP/1.1\" 501 - 0 0 180 179 \"172.17.0.3\" \"curl/7.59.0\" \"413bf460-bd56-4515-ada4-2a69c5e78e54\" \"httpbin.org\" \"52.71.234.219:80\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": { "name": "default" }, "labels": { "service": "ambassador" }}} +{"message":"ACCESS [2019-04-06T06:20:05.972Z] \"- - -\" 0 UF,URX 0 0 0 - \"-\" \"-\" \"-\" \"-\" \"127.0.0.1:9200\"","stream":"stdout","time":"2019-02-12T18:37:43.139620629Z", "kubernetes": { "container": { "name": "ambassador" }, "node": { "name": "minikube" }, "pod": { "uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", "name": "ambassador-76c58d9df4-jwhsg" }, "namespace": { "name": "default" }, "labels": { "service": "ambassador" }}}} diff --git a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json index 483625d8bea..ba4147a3f70 100644 --- a/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json +++ b/x-pack/filebeat/module/envoyproxy/log/test/envoy-json.log-expected.json @@ -42,7 +42,7 @@ "input.type": "log", "kubernetes.container.name": "ambassador", "kubernetes.labels.service": "ambassador", - "kubernetes.namespace": "default", + "kubernetes.namespace.name": "default", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "ambassador-76c58d9df4-jwhsg", "kubernetes.pod.uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", @@ -97,11 +97,11 @@ "input.type": "log", "kubernetes.container.name": "ambassador", "kubernetes.labels.service": "ambassador", - "kubernetes.namespace": "default", + "kubernetes.namespace.name": "default", "kubernetes.node.name": "minikube", "kubernetes.pod.name": "ambassador-76c58d9df4-jwhsg", "kubernetes.pod.uid": "e57d545e-2a9d-11e9-995f-08002730e0dc", - "log.offset": 518, + "log.offset": 530, "message": "ACCESS [2019-04-06T06:20:05.972Z] \"- - -\" 0 UF,URX 0 0 0 - \"-\" \"-\" \"-\" \"-\" \"127.0.0.1:9200\"", "network.transport": "tcp", "related.ip": [ @@ -113,4 +113,4 @@ "envoyproxy" ] } -] \ No newline at end of file +] diff --git a/x-pack/functionbeat/docs/fields.asciidoc b/x-pack/functionbeat/docs/fields.asciidoc index b6dab3f6bb3..94b6eaf44a7 100644 --- a/x-pack/functionbeat/docs/fields.asciidoc +++ b/x-pack/functionbeat/docs/fields.asciidoc @@ -14556,16 +14556,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/x-pack/functionbeat/include/fields.go b/x-pack/functionbeat/include/fields.go index d650fc6a25a..31a2a8bae12 100644 --- a/x-pack/functionbeat/include/fields.go +++ b/x-pack/functionbeat/include/fields.go @@ -19,5 +19,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/x-pack/heartbeat/include/fields.go b/x-pack/heartbeat/include/fields.go index 7a55f9788cb..3d0d0faeedd 100644 --- a/x-pack/heartbeat/include/fields.go +++ b/x-pack/heartbeat/include/fields.go @@ -19,5 +19,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } diff --git a/x-pack/metricbeat/module/prometheus/collector/_meta/data.json b/x-pack/metricbeat/module/prometheus/collector/_meta/data.json index d35cd24a921..b1fd95460ad 100644 --- a/x-pack/metricbeat/module/prometheus/collector/_meta/data.json +++ b/x-pack/metricbeat/module/prometheus/collector/_meta/data.json @@ -11,11 +11,10 @@ }, "prometheus": { "labels": { - "device": "br-33d819d5f834", "job": "prometheus" }, - "node_network_carrier": { - "value": 0 + "up": { + "value": 1 } }, "service": { diff --git a/x-pack/osquerybeat/docs/fields.asciidoc b/x-pack/osquerybeat/docs/fields.asciidoc index cc4b4281cfa..e3e47f7edb3 100644 --- a/x-pack/osquerybeat/docs/fields.asciidoc +++ b/x-pack/osquerybeat/docs/fields.asciidoc @@ -14551,16 +14551,47 @@ type: ip -- -*`kubernetes.namespace`*:: + +*`kubernetes.namespace.name`*:: + -- -Kubernetes namespace +Kubernetes namespace name type: keyword -- +*`kubernetes.namespace.uuid`*:: ++ +-- +Kubernetes namespace uuid + + +type: keyword + +-- + +*`kubernetes.namespace.labels.*`*:: ++ +-- +Kubernetes namespace labels map + + +type: object + +-- + +*`kubernetes.namespace.annotations.*`*:: ++ +-- +Kubernetes namespace annotations map + + +type: object + +-- + *`kubernetes.node.name`*:: + -- diff --git a/x-pack/osquerybeat/include/fields.go b/x-pack/osquerybeat/include/fields.go index 83dee592406..5cff88f2846 100644 --- a/x-pack/osquerybeat/include/fields.go +++ b/x-pack/osquerybeat/include/fields.go @@ -19,5 +19,5 @@ func init() { // AssetFieldsYml returns asset data. // This is the base64 encoded zlib format compressed contents of fields.yml. func AssetFieldsYml() string { - return "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" + return "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" } From 056c4d7849e5396d7108d5f6769d463dc088a104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Mon, 11 Oct 2021 17:06:09 +0200 Subject: [PATCH 14/25] Remove GCP support from Functionbeat (#28253) --- CHANGELOG.next.asciidoc | 3 + NOTICE.txt | 424 +++++++++--------- go.mod | 1 - x-pack/functionbeat/Jenkinsfile.yml | 2 +- x-pack/functionbeat/Makefile | 4 - .../_meta/config/beat.reference.yml.tmpl | 108 ----- .../functionbeat/_meta/config/beat.yml.tmpl | 101 ----- .../dev-tools/packaging/packages.yml | 12 - .../docs/config-options-gcp.asciidoc | 198 -------- .../docs/configuring-howto.asciidoc | 3 - .../docs/getting-started.asciidoc | 62 --- .../docs/iam-permissions.asciidoc | 15 - .../functionbeat/functionbeat.reference.yml | 108 ----- x-pack/functionbeat/functionbeat.yml | 101 ----- x-pack/functionbeat/include/feature.go | 2 - x-pack/functionbeat/magefile.go | 29 +- .../functionbeat/manager/gcp/cli_manager.go | 206 --------- .../manager/gcp/cli_manager_test.go | 5 - x-pack/functionbeat/manager/gcp/config.go | 12 - .../manager/gcp/function_context.go | 18 - x-pack/functionbeat/manager/gcp/gcp.go | 24 - .../manager/gcp/op_create_function.go | 75 ---- .../manager/gcp/op_delete_file_bucket.go | 49 -- .../manager/gcp/op_delete_function.go | 68 --- .../manager/gcp/op_ensure_bucket.go | 69 --- .../manager/gcp/op_update_function.go | 72 --- .../manager/gcp/op_upload_to_bucket.go | 67 --- .../manager/gcp/op_wait_for_function.go | 66 --- .../manager/gcp/template_builder.go | 195 -------- .../functionbeat/provider/gcp/gcp/config.go | 61 --- .../functionbeat/provider/gcp/gcp/pubsub.go | 113 ----- .../functionbeat/provider/gcp/gcp/storage.go | 113 ----- .../provider/gcp/gcp/transformer.go | 83 ---- .../provider/gcp/include/feature.go | 28 -- .../provider/gcp/pubsub/pubsub.go | 57 --- .../provider/gcp/storage/storage.go | 55 --- x-pack/functionbeat/scripts/mage/providers.go | 1 - x-pack/functionbeat/scripts/mage/update.go | 45 +- 38 files changed, 218 insertions(+), 2437 deletions(-) delete mode 100644 x-pack/functionbeat/docs/config-options-gcp.asciidoc delete mode 100644 x-pack/functionbeat/manager/gcp/cli_manager.go delete mode 100644 x-pack/functionbeat/manager/gcp/cli_manager_test.go delete mode 100644 x-pack/functionbeat/manager/gcp/config.go delete mode 100644 x-pack/functionbeat/manager/gcp/function_context.go delete mode 100644 x-pack/functionbeat/manager/gcp/gcp.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_create_function.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_delete_function.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_ensure_bucket.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_update_function.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go delete mode 100644 x-pack/functionbeat/manager/gcp/op_wait_for_function.go delete mode 100644 x-pack/functionbeat/manager/gcp/template_builder.go delete mode 100644 x-pack/functionbeat/provider/gcp/gcp/config.go delete mode 100644 x-pack/functionbeat/provider/gcp/gcp/pubsub.go delete mode 100644 x-pack/functionbeat/provider/gcp/gcp/storage.go delete mode 100644 x-pack/functionbeat/provider/gcp/gcp/transformer.go delete mode 100644 x-pack/functionbeat/provider/gcp/include/feature.go delete mode 100644 x-pack/functionbeat/provider/gcp/pubsub/pubsub.go delete mode 100644 x-pack/functionbeat/provider/gcp/storage/storage.go diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 8e8e99a9e12..734033bea89 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -141,6 +141,9 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Functionbeat* +- Support for Google Cloud Functions have been removed, as it has been in Beta for a long time and been broken +for a few releases. Please use other tools provided by Elastic to fetch data from GCP (e.g. Filebeat). + ==== Bugfixes diff --git a/NOTICE.txt b/NOTICE.txt index 41518c53964..5dfebf5dbec 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -645,218 +645,6 @@ Contents of probable licence file $GOMODCACHE/cloud.google.com/go/pubsub@v1.3.1/ limitations under the License. --------------------------------------------------------------------------------- -Dependency : cloud.google.com/go/storage -Version: v1.10.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/cloud.google.com/go/storage@v1.10.0/LICENSE: - - - 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. - - -------------------------------------------------------------------------------- Dependency : code.cloudfoundry.org/go-loggregator Version: v7.4.0+incompatible @@ -19348,6 +19136,218 @@ Contents of probable licence file $GOMODCACHE/k8s.io/client-go@v0.21.1/LICENSE: Indirect dependencies +-------------------------------------------------------------------------------- +Dependency : cloud.google.com/go/storage +Version: v1.10.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/cloud.google.com/go/storage@v1.10.0/LICENSE: + + + 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. + + -------------------------------------------------------------------------------- Dependency : code.cloudfoundry.org/go-diodes Version: v0.0.0-20190809170250-f77fb823c7ee diff --git a/go.mod b/go.mod index 20cd451a630..439b9d09cf2 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,6 @@ require ( cloud.google.com/go v0.83.0 cloud.google.com/go/bigquery v1.8.0 cloud.google.com/go/pubsub v1.3.1 - cloud.google.com/go/storage v1.10.0 code.cloudfoundry.org/go-diodes v0.0.0-20190809170250-f77fb823c7ee // indirect code.cloudfoundry.org/go-loggregator v7.4.0+incompatible code.cloudfoundry.org/rfc5424 v0.0.0-20180905210152-236a6d29298a // indirect diff --git a/x-pack/functionbeat/Jenkinsfile.yml b/x-pack/functionbeat/Jenkinsfile.yml index 325dca6daf3..ed7b9aa407c 100644 --- a/x-pack/functionbeat/Jenkinsfile.yml +++ b/x-pack/functionbeat/Jenkinsfile.yml @@ -31,7 +31,7 @@ stages: parameters: - "armTest" unitTest: - mage: "mage build unitTest && GO_VERSION=1.13.1 mage testGCPFunctions" + mage: "mage build unitTest" stage: mandatory goIntegTest: mage: "mage goIntegTest" diff --git a/x-pack/functionbeat/Makefile b/x-pack/functionbeat/Makefile index 60d069da395..be4e2ceaeb3 100644 --- a/x-pack/functionbeat/Makefile +++ b/x-pack/functionbeat/Makefile @@ -8,7 +8,3 @@ ES_BEATS?=../../ # Includes # include $(ES_BEATS)/dev-tools/make/mage.mk - -.PHONY: test-gcp-functions -test-gcp-functions: mage - mage testGCPFunctions diff --git a/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl b/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl index 64d00a2fc1c..c5b5b0524fa 100644 --- a/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl +++ b/x-pack/functionbeat/_meta/config/beat.reference.yml.tmpl @@ -295,111 +295,3 @@ functionbeat.provider.aws.functions: # Set to true to publish fields with null values in events. #keep_null: false - -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" diff --git a/x-pack/functionbeat/_meta/config/beat.yml.tmpl b/x-pack/functionbeat/_meta/config/beat.yml.tmpl index 00caf63d94c..48c0e6ae40b 100644 --- a/x-pack/functionbeat/_meta/config/beat.yml.tmpl +++ b/x-pack/functionbeat/_meta/config/beat.yml.tmpl @@ -251,104 +251,3 @@ functionbeat.provider.aws.functions: # Default is 1. #parallelization_factor: 1 -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" -#==================== Elasticsearch template setting ========================== - -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false diff --git a/x-pack/functionbeat/dev-tools/packaging/packages.yml b/x-pack/functionbeat/dev-tools/packaging/packages.yml index e6c3346bf1a..480b31820b5 100644 --- a/x-pack/functionbeat/dev-tools/packaging/packages.yml +++ b/x-pack/functionbeat/dev-tools/packaging/packages.yml @@ -65,18 +65,6 @@ shared: pkg/functionbeat-aws: source: 'provider/aws/build/golang-crossbuild/aws-linux-amd64' mode: 0755 - pkg/pubsub/vendor: - source: 'provider/gcp/build/pubsub/vendor' - mode: 0644 - pkg/storage/vendor: - source: 'provider/gcp/build/storage/vendor' - mode: 0644 - pkg/pubsub/pubsub.go: - source: 'provider/gcp/pubsub/pubsub.go' - mode: 0655 - pkg/storage/storage.go: - source: 'provider/gcp/storage/storage.go' - mode: 0655 # specs is a list of named packaging "flavors". specs: diff --git a/x-pack/functionbeat/docs/config-options-gcp.asciidoc b/x-pack/functionbeat/docs/config-options-gcp.asciidoc deleted file mode 100644 index 6ee6a1f21df..00000000000 --- a/x-pack/functionbeat/docs/config-options-gcp.asciidoc +++ /dev/null @@ -1,198 +0,0 @@ -[id="configuration-{beatname_lc}-gcp-options"] -[role="xpack"] -== Configure Google Functions - -++++ -Google functions -++++ - -beta[] - -{beatname_uc} runs as a Google Function on Google Cloud Platform (GCP). - -Before deploying {beatname_uc}, you need to configure one or more functions and -specify details about the services that will trigger the functions. - -You configure the functions in the the +{beatname_lc}.yml+ configuration file. -When you're done, you can <> -to your serverless environment. - -The following example configures two functions: `pubsub` and `storage`. The -`pubsub` function collects log events from https://cloud.google.com/pubsub/[Google -Pub/Sub]. The `storage` function collects log events from -https://cloud.google.com/storage/[Google Cloud Storage]. Both functions in the -example forward the events to {es}. - -["source","sh",subs="attributes"] ----- -functionbeat.provider.gcp.location_id: "europe-west2" -functionbeat.provider.gcp.project_id: "my-project-123456" -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" -functionbeat.provider.gcp.functions: - - name: pubsub - enabled: true - type: pubsub - description: "Google Cloud Function for Pub/Sub" - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - name: storage - enabled: true - type: storage - description: "Google Cloud Function for Cloud Storage" - trigger: - resource: "projects/my-project/buckets/my-storage" - event_type: "google.storage.object.finalize" - -cloud.id: "MyESDeployment:SomeLongString==" -cloud.auth: "elastic:mypassword" ----- - -[id="{beatname_lc}-gcp-options"] -[float] -=== Configuration options -Specify the following options to configure the functions -that you want to deploy to Google Cloud Platform (GCP). - -TIP: If you change the configuration after deploying the function, use -the <> to update your deployment. - -[float] -[id="{beatname_lc}-gcp-location_id"] -==== `provider.gcp.location_id` - -The region where your GCP project is located. - -[float] -[id="{beatname_lc}-gcp-project_id"] -==== `provider.gcp.project_id` - -The ID of the GCP project where the function artifacts will be deployed. See the -https://cloud.google.com/about/locations/[Google Cloud Function documentation] -to verify that Cloud Functions are supported in the region you specify. - -[float] -[id="{beatname_lc}-gcp-storage_name"] -==== `provider.gcp.storage_name` - -The name of the Google Cloud storage bucket where the function artifacts will be -deployed. If the bucket doesn't exist, it will be created, if you have the -correct project permissions (`storage.objects.create`). - -[float] -[id="{beatname_lc}-gcp-functions"] -==== `functionbeat.provider.gcp.functions` -A list of functions that are available for deployment. - -[float] -[id="{beatname_lc}-gcp-name"] -===== `name` - -A unique name for the Google function. - -[float] -[id="{beatname_lc}-gcp--type"] -===== `type` - -The type of GCP service to monitor. For this release, the supported types -are: - -[horizontal] -`pubsub`:: Collect log events from Google Pub/Sub. -`storage`:: Collect log events from Google Cloud storage buckets. - -[float] -[id="{beatname_lc}-gcp-description"] -===== `description` - -A description of the function. This description is useful when you are running -multiple functions and need more context about how each function is used. - -[float] -[id="{beatname_lc}-gcp-memory-size"] -==== `memory_size` - -The maximum amount of memory to allocate for this function. -The default is `256MB`. - -[float] -[id="{beatname_lc}-gcp-timeout"] -==== `timeout` - -The execution timeout in seconds. If the function does not finish in time, -it is considered failed and terminated. The default is `60s`. Increase this -value if you see timeout messages is the Google Stackdriver logs. - -[float] -[id="{beatname_lc}-gcp-service_account_email"] -==== `service_account_email` - -The email of the service account that the function will assume as its identity. -The default is {projectid}@appspot.gserviceaccount.com.email. - -[float] -[id="{beatname_lc}-gcp-labels"] -==== `labels` - -One or more labels to apply to the function. A label is a key-value pair that -helps you organize your Google Cloud resources. - -[float] -[id="{beatname_lc}-gcp-vpc_connector"] -==== `vpc_connector` - -A VPC connector that the function can connect to when sending requests to -resources in your VPC network. - -Use the format `projects/*/locations/*/connectors/*` or a fully qualified -URI. - -[float] -[id="{beatname_lc}-gcp-maximum_instances"] -==== `maximum_instances` - -The maximum instances that can be running at the same time. The default is -unlimited. - -[float] -[id="{beatname_lc}-gcp-triggers"] -===== `trigger` - -The trigger that will cause the function to execute. - -* If `type` is `pubsub`, specify the name of the Pub/Sub topic to watch for -messages. - -* If `type` is `storage`, specify the Cloud Storage bucket to watch for object -events. For `event_type`, specify the type of object event that will trigger the -function. See the https://cloud.google.com/functions/docs/calling/storage[Google Cloud -docs] for a list of available event types. - -[float] -[id="{beatname_lc}-gcp-keep_null"] -==== `keep_null` - -If `true`, fields with null values will be published in the output document. By -default, `keep_null` is `false`. - -[float] -[id="{beatname_lc}-gcp-fields"] -==== `fields` - -Optional fields that you can specify to add additional information to the -output. Fields can be scalar values, arrays, dictionaries, or any nested -combination of these. - -[float] -[id="{beatname_lc}-gcp-processors"] -==== `processors` - -Define custom processors for this function. For example, you can specify a -dissect processor to tokenize a string: - -[source,yaml] ----- -processors: - - dissect: - tokenizer: "%{key1} %{key2}" ----- diff --git a/x-pack/functionbeat/docs/configuring-howto.asciidoc b/x-pack/functionbeat/docs/configuring-howto.asciidoc index 3d72f9b5a55..fad0629261b 100644 --- a/x-pack/functionbeat/docs/configuring-howto.asciidoc +++ b/x-pack/functionbeat/docs/configuring-howto.asciidoc @@ -11,7 +11,6 @@ include::{libbeat-dir}/shared/configuring-intro.asciidoc[] * <> -* <> * <> * <> * <> @@ -28,8 +27,6 @@ include::{libbeat-dir}/shared/configuring-intro.asciidoc[] include::./config-options-aws.asciidoc[] -include::./config-options-gcp.asciidoc[] - include::./general-options.asciidoc[] [role="xpack"] diff --git a/x-pack/functionbeat/docs/getting-started.asciidoc b/x-pack/functionbeat/docs/getting-started.asciidoc index 2ba0caf85ed..ff5700cf71d 100644 --- a/x-pack/functionbeat/docs/getting-started.asciidoc +++ b/x-pack/functionbeat/docs/getting-started.asciidoc @@ -75,33 +75,6 @@ function. + See <> for more examples. -* *Google cloud example*: This example configures a function called -`storage` that collects log events from Google Cloud Storage. When the specified -event type occurs on the Cloud Storage bucket, the cloud function executes and -sends events to the configured output: -+ -["source","sh",subs="attributes"] ----- -functionbeat.provider.gcp.location_id: "europe-west2" -functionbeat.provider.gcp.project_id: "my-project-123456" -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" <1> -functionbeat.provider.gcp.functions: - - name: storage <2> - enabled: true - type: storage - description: "Google Cloud Function for Cloud Storage" - trigger: - resource: "projects/my-project/buckets/my-storage" - event_type: "google.storage.object.finalize" ----- -<1> The name of the GCP storage bucket where the function artifacts will be -deployed. -<2> Details about the function you want to deploy, including the name of the -function, the type of resource to monitor, and the resource event that triggers -the function. -+ -See <> for more examples. - -- include::{libbeat-dir}/shared/config-check.asciidoc[] @@ -176,41 +149,6 @@ If deployment fails, see <> for help troubleshooting. :fnexample!: -[float] -[[deploy-to-gcp]] -==== Deploy to Google Cloud Platform - -beta[] - -. In Google Cloud, create a service account that has these required roles: -+ --- -include::iam-permissions.asciidoc[tag=gcp-roles-deployment] --- -+ -See the https://cloud.google.com/docs/authentication/getting-started[Google -Cloud documentation] for more information about creating a service account. - -. Set the `GOOGLE_APPLICATION_CREDENTIALS` environment variable to point to -the JSON file that contains your service account key. For example: -+ --- -include::tab-widgets/credentials-google-widget.asciidoc[] --- - -. Deploy the cloud functions. -+ -For example, the following command deploys a function called `storage`: -+ --- -include::tab-widgets/deploy-google-widget.asciidoc[] --- -+ -The function is deployed to Google Cloud Platform and ready to send events -to the configured output. -+ -If deployment fails, see <> for help troubleshooting. - [float] [[view-data]] === Step 6: View your data in {kib} diff --git a/x-pack/functionbeat/docs/iam-permissions.asciidoc b/x-pack/functionbeat/docs/iam-permissions.asciidoc index 25dc16a236c..9b09d4d9a4e 100644 --- a/x-pack/functionbeat/docs/iam-permissions.asciidoc +++ b/x-pack/functionbeat/docs/iam-permissions.asciidoc @@ -10,7 +10,6 @@ This section describes the minimum privileges or roles required to deploy functions to your cloud provider: * <> -* <> [[iam-permissions-aws]] @@ -130,17 +129,3 @@ function that reads from SQS queues or Kinesis data streams. ] } ---- - -[[iam-permissions-gcp]] -===== Roles required by Google Cloud Platform - -The following roles are required to deploy Cloud Functions to Google Cloud -Platform: - -// tag::gcp-roles-deployment[] -* Cloud Functions Developer -* Cloud Functions Service Agent -* Service Account User -* Storage Admin -* Storage Object Admin -// end::gcp-roles-deployment[] diff --git a/x-pack/functionbeat/functionbeat.reference.yml b/x-pack/functionbeat/functionbeat.reference.yml index 5531351df49..e5ccc87ba83 100644 --- a/x-pack/functionbeat/functionbeat.reference.yml +++ b/x-pack/functionbeat/functionbeat.reference.yml @@ -296,114 +296,6 @@ functionbeat.provider.aws.functions: # Set to true to publish fields with null values in events. #keep_null: false -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Set to true to publish fields with null values in events. - #keep_null: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - # ================================== General =================================== # The name of the shipper that publishes the network data. It can be used to group diff --git a/x-pack/functionbeat/functionbeat.yml b/x-pack/functionbeat/functionbeat.yml index 3575f5e1d81..63b2b56bdcb 100644 --- a/x-pack/functionbeat/functionbeat.yml +++ b/x-pack/functionbeat/functionbeat.yml @@ -251,107 +251,6 @@ functionbeat.provider.aws.functions: # Default is 1. #parallelization_factor: 1 -# Configure functions to run on Google Cloud Platform, currently we assume that the credentials -# are present in the environment to correctly create the function when using the CLI. -# -# Configure which region your project is located in. -functionbeat.provider.gcp.location_id: "europe-west2" -# Configure which Google Cloud project to deploy your functions. -functionbeat.provider.gcp.project_id: "my-project-123456" -# Configure the Google Cloud Storage we should upload the function artifact. -functionbeat.provider.gcp.storage_name: "functionbeat-deploy" - -functionbeat.provider.gcp.functions: - # Define the list of function availables, each function required to have a unique name. - # Create a function that accepts events coming from Google Pub/Sub. - - name: pubsub - enabled: false - type: pubsub - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Pub/Sub" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - trigger: - resource: "projects/_/pubsub/myPubSub" - #service: "pubsub.googleapis.com" - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" - - # Create a function that accepts events coming from Google Cloud Storage. - - name: storage - enabled: false - type: storage - - # Description of the method to help identify them when you run multiples functions. - description: "Google Cloud Function for Cloud Storage" - - # The maximum memory allocated for this function. - # Default is 256MB. - #memory_size: 256MB - - # Execution timeout in seconds. If the function does not finish in time, - # it is considered failed and terminated. Default is 60s. - #timeout: 60s - - # Email of the service account of the function. Defaults to {projectid}@appspot.gserviceaccount.com - #service_account_email: {projectid}@appspot.gserviceaccount.com - - trigger: - resource: "projects/my-project/buckets/my-storage" - #event_type: "google.storage.object.finalize" - - # Labels of the function. - #labels: - # mylabel: label - - # VPC Connector this function can connect to. - # Format: projects/*/locations/*/connectors/* or fully-qualified URI - #vpc_connector: "" - - # Number of maximum instances running at the same time. Default is unlimited. - #maximum_instances: 0 - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - # Define custom processors for this function. - #processors: - # - dissect: - # tokenizer: "%{key1} %{key2}" -#==================== Elasticsearch template setting ========================== - -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false # ================================== General =================================== diff --git a/x-pack/functionbeat/include/feature.go b/x-pack/functionbeat/include/feature.go index f66f8532f74..1770a05ef5a 100644 --- a/x-pack/functionbeat/include/feature.go +++ b/x-pack/functionbeat/include/feature.go @@ -7,14 +7,12 @@ package include import ( "github.com/elastic/beats/v7/libbeat/feature" "github.com/elastic/beats/v7/x-pack/functionbeat/manager/aws" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/gcp" "github.com/elastic/beats/v7/x-pack/functionbeat/provider/local/local" ) // Bundle feature enabled. var Bundle = feature.MustBundle( aws.Bundle, - gcp.Bundle, local.Bundle, ) diff --git a/x-pack/functionbeat/magefile.go b/x-pack/functionbeat/magefile.go index afe34d59dcf..7a755bc4b87 100644 --- a/x-pack/functionbeat/magefile.go +++ b/x-pack/functionbeat/magefile.go @@ -167,11 +167,7 @@ func BuildPkgForFunctions() error { err := os.RemoveAll("pkg") filesToCopy := map[string]string{ - filepath.Join("provider", "aws", "functionbeat-aws"): filepath.Join("pkg", "functionbeat-aws"), - filepath.Join("provider", "gcp", "pubsub", "pubsub.go"): filepath.Join("pkg", "pubsub", "pubsub.go"), - filepath.Join("provider", "gcp", "storage", "storage.go"): filepath.Join("pkg", "storage", "storage.go"), - filepath.Join("provider", "gcp", "build", "pubsub", "vendor"): filepath.Join("pkg", "pubsub", "vendor"), - filepath.Join("provider", "gcp", "build", "storage", "vendor"): filepath.Join("pkg", "storage", "vendor"), + filepath.Join("provider", "aws", "functionbeat-aws"): filepath.Join("pkg", "functionbeat-aws"), } for src, dest := range filesToCopy { c := &devtools.CopyTask{ @@ -186,29 +182,6 @@ func BuildPkgForFunctions() error { return nil } -// TestGCPFunctions are used by the CI to test if the GCP functions can be built with -// the selected Go version. -// The version is 1.13.1 (Ref: https://cloud.google.com/functions/docs/concepts/go-runtime) -func TestGCPFunctions() error { - for _, f := range []string{"pubsub", "storage"} { - params := devtools.DefaultBuildArgs() - inputFiles := filepath.Join("provider", "gcp", f, f+".go") - params.InputFiles = []string{inputFiles} - params.Name = f - params.CGO = false - params.Env = map[string]string{ - "GOOS": "linux", - "GOARCH": "amd64", - } - - err := devtools.Build(params) - if err != nil { - return fmt.Errorf("error while building %s for GCP: %+v", f, err) - } - } - return nil -} - // BuildSystemTestBinary build a binary for testing that is instrumented for // testing and measuring code coverage. The binary is only instrumented for // coverage when TEST_COVERAGE=true (default is false). diff --git a/x-pack/functionbeat/manager/gcp/cli_manager.go b/x-pack/functionbeat/manager/gcp/cli_manager.go deleted file mode 100644 index d286f1e465a..00000000000 --- a/x-pack/functionbeat/manager/gcp/cli_manager.go +++ /dev/null @@ -1,206 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - "io/ioutil" - "os" - "strings" - - "github.com/pkg/errors" - "golang.org/x/oauth2" - "golang.org/x/oauth2/google" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" - fngcp "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -type installer interface { - Config() *fngcp.FunctionConfig - Name() string -} - -// CLIManager interacts with Google Cloud to deploy, update or remove a function. -type CLIManager struct { - templateBuilder *defaultTemplateBuilder - location string - tokenSrc oauth2.TokenSource - log *logp.Logger - config *Config -} - -// Deploy uploads the function to GCP. -func (c *CLIManager) Deploy(name string) error { - c.log.Debugf("Deploying function: %s", name) - defer c.log.Debugf("Deploy finish for function '%s'", name) - - err := c.deploy(false, name) - if err != nil { - return err - } - - c.log.Debugf("Successfully created function '%s'", name) - return nil -} - -// Update updates the function. -func (c *CLIManager) Update(name string) error { - c.log.Debugf("Starting updating function '%s'", name) - defer c.log.Debugf("Update complete for function '%s'", name) - - err := c.deploy(true, name) - if err != nil { - return err - } - - c.log.Debugf("Successfully updated function: '%s'", name) - return nil -} - -// deploy uploads to bucket and creates a function on GCP. -func (c *CLIManager) deploy(update bool, name string) error { - functionData, err := c.templateBuilder.execute(name) - if err != nil { - return err - } - - executer := executor.NewExecutor(c.log) - executer.Add(newOpEnsureBucket(c.log, c.config)) - executer.Add(newOpUploadToBucket(c.log, c.config, name, functionData.raw)) - - token, err := c.getTokenSrc() - if err != nil { - return err - } - - ctx := &functionContext{} - if update { - executer.Add(newOpUpdateFunction(ctx, c.log, token, functionData.function.Name, functionData.function)) - } else { - executer.Add(newOpCreateFunction(ctx, c.log, token, c.location, name, functionData.function)) - } - - executer.Add(newOpWaitForFunction(ctx, c.log, token)) - - if err := executer.Execute(nil); err != nil { - if rollbackErr := executer.Rollback(nil); rollbackErr != nil { - return errors.Wrapf(err, "could not rollback, error: %s", rollbackErr) - } - return err - } - return nil -} - -// Remove removes a stack and unregister any resources created. -func (c *CLIManager) Remove(name string) error { - c.log.Debugf("Removing function: %s", name) - defer c.log.Debugf("Removal of function '%s' complete", name) - - functionData, err := c.templateBuilder.execute(name) - if err != nil { - return err - } - - token, err := c.getTokenSrc() - if err != nil { - return err - } - - ctx := &functionContext{} - executer := executor.NewExecutor(c.log) - executer.Add(newOpDeleteFunction(ctx, c.log, c.location, functionData.function.Name, token)) - executer.Add(newOpDeleteFromBucket(c.log, c.config, name)) - - if err := executer.Execute(nil); err != nil { - if rollbackErr := executer.Rollback(nil); rollbackErr != nil { - return errors.Wrapf(err, "could not rollback, error: %s", rollbackErr) - } - return err - } - - c.log.Debugf("Successfully deleted function: '%s'", name) - return nil -} - -// Export prints the exported function data. -func (c *CLIManager) Export(name string) error { - tmpl, err := c.templateBuilder.RawTemplate(name) - if err != nil { - return err - } - fmt.Println(tmpl) - - return nil -} - -// Package packages functions for GCP. -func (c *CLIManager) Package(outputPattern string) error { - resources := zipResources() - for providerSuffix, r := range resources { - content, err := core.MakeZip(packageUncompressedLimit, packageCompressedLimit, r) - if err != nil { - return err - } - - output := strings.ReplaceAll(outputPattern, "{{.Provider}}", providerSuffix) - err = ioutil.WriteFile(output, content, 0644) - if err != nil { - return err - } - - fmt.Fprintf(os.Stderr, "Generated package for provider %s at: %s\n", providerSuffix, output) - } - return nil -} - -func (c *CLIManager) getTokenSrc() (oauth2.TokenSource, error) { - if c.tokenSrc != nil { - return c.tokenSrc, nil - } - - var err error - c.tokenSrc, err = google.DefaultTokenSource(context.Background(), "https://www.googleapis.com/auth/cloud-platform") - if err != nil { - return nil, fmt.Errorf("error while creating CLIManager: %+v", err) - } - - return c.tokenSrc, nil -} - -// NewCLI returns the interface to manage functions on Google Cloud Platform. -func NewCLI( - log *logp.Logger, - cfg *common.Config, - provider provider.Provider, -) (provider.CLIManager, error) { - config := &Config{} - if err := cfg.Unpack(config); err != nil { - return nil, err - } - - builder, err := provider.TemplateBuilder() - if err != nil { - return nil, err - } - templateBuilder, ok := builder.(*defaultTemplateBuilder) - if !ok { - return nil, fmt.Errorf("not defaultTemplateBuilder") - } - - location := fmt.Sprintf(locationTemplate, config.ProjectID, config.Location) - - return &CLIManager{ - config: config, - log: logp.NewLogger("gcp"), - location: location, - templateBuilder: templateBuilder, - }, nil -} diff --git a/x-pack/functionbeat/manager/gcp/cli_manager_test.go b/x-pack/functionbeat/manager/gcp/cli_manager_test.go deleted file mode 100644 index 63d3e1f445b..00000000000 --- a/x-pack/functionbeat/manager/gcp/cli_manager_test.go +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp diff --git a/x-pack/functionbeat/manager/gcp/config.go b/x-pack/functionbeat/manager/gcp/config.go deleted file mode 100644 index d6fcd9b24e0..00000000000 --- a/x-pack/functionbeat/manager/gcp/config.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -// Config exposes the configuration options of the GCP provider. -type Config struct { - Location string `config:"location_id" validate:"required"` - ProjectID string `config:"project_id" validate:"required"` - FunctionStorage string `config:"storage_name" validate:"required"` -} diff --git a/x-pack/functionbeat/manager/gcp/function_context.go b/x-pack/functionbeat/manager/gcp/function_context.go deleted file mode 100644 index 9a558214ee8..00000000000 --- a/x-pack/functionbeat/manager/gcp/function_context.go +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "errors" -) - -var ( - errWrongContext = errors.New("invalid type, expecting function context") - errMissingFunctionName = errors.New("missing function operation name") -) - -type functionContext struct { - name string -} diff --git a/x-pack/functionbeat/manager/gcp/gcp.go b/x-pack/functionbeat/manager/gcp/gcp.go deleted file mode 100644 index c33ae2493a6..00000000000 --- a/x-pack/functionbeat/manager/gcp/gcp.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -// Bundle exposes the trigger supported by the gcp provider. -var Bundle = provider.MustCreate( - "gcp", - provider.NewDefaultProvider("gcp", NewCLI, NewTemplateBuilder), - feature.MakeDetails("Google Cloud Functions", "listen to events on Google Cloud", feature.Stable), -).MustAddFunction("pubsub", - gcp.NewPubSub, - gcp.PubSubDetails(), -).MustAddFunction("storage", - gcp.NewStorage, - gcp.StorageDetails(), -).Bundle() diff --git a/x-pack/functionbeat/manager/gcp/op_create_function.go b/x-pack/functionbeat/manager/gcp/op_create_function.go deleted file mode 100644 index cf970a77091..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_create_function.go +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opCreateFunction struct { - ctx *functionContext - log *logp.Logger - tokenSrc oauth2.TokenSource - location string - name string - function *cloudfunctions.CloudFunction -} - -func newOpCreateFunction( - ctx *functionContext, - log *logp.Logger, - tokenSrc oauth2.TokenSource, - location string, - name string, - f *cloudfunctions.CloudFunction, -) *opCreateFunction { - return &opCreateFunction{ - ctx: ctx, - log: log, - tokenSrc: tokenSrc, - name: name, - location: location, - function: f, - } -} - -// Execute creates a function from the zip uploaded. -func (o *opCreateFunction) Execute(_ executor.Context) error { - o.log.Debugf("Creating function %s at %s", o.function.Name, o.function.SourceArchiveUrl) - - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - functionSvc := cloudfunctions.NewProjectsLocationsFunctionsService(svc) - operation, err := functionSvc.Create(o.location, o.function).Context(context.TODO()).Do() - if err != nil { - return fmt.Errorf("error while creating function: %+v", err) - } - - o.ctx.name = operation.Name - - if operation.Done { - o.log.Debugf("Function %s created successfully", o.function.Name) - } else { - o.log.Debugf("Operation '%s' is in progress to create function %s", operation.Name, o.function.Name) - } - - return nil -} - -// Rollback removes the deployed function. -func (o *opCreateFunction) Rollback(_ executor.Context) error { - return newOpDeleteFunction(o.ctx, o.log, o.location, o.function.Name, o.tokenSrc).Execute(nil) -} diff --git a/x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go b/x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go deleted file mode 100644 index 50841bd7f63..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_delete_file_bucket.go +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/storage" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opDeleteFromBucket struct { - log *logp.Logger - config *Config - name string -} - -func newOpDeleteFromBucket(log *logp.Logger, config *Config, name string) *opDeleteFromBucket { - return &opDeleteFromBucket{ - log: log, - config: config, - name: name, - } -} - -// Execute removes the function from the bucket. -// storage.objects.delete permission is required. -func (o *opDeleteFromBucket) Execute(_ executor.Context) error { - o.log.Debugf("Removing file '%s' from bucket '%s'", o.name, o.config.FunctionStorage) - - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return fmt.Errorf("could not create storage client: %+v", err) - } - - err = client.Bucket(o.config.FunctionStorage).Object(o.name).Delete(ctx) - if err != nil { - return err - } - - o.log.Debugf("Successfully removed function '%s' from bucket '%s'", o.name, o.config.FunctionStorage) - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_delete_function.go b/x-pack/functionbeat/manager/gcp/op_delete_function.go deleted file mode 100644 index 97b8b25cf11..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_delete_function.go +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opDeleteFunction struct { - ctx *functionContext - log *logp.Logger - location string - name string - tokenSrc oauth2.TokenSource -} - -func newOpDeleteFunction( - ctx *functionContext, - log *logp.Logger, - location string, - name string, - tokenSrc oauth2.TokenSource, -) *opDeleteFunction { - return &opDeleteFunction{ - ctx: ctx, - log: log, - location: location, - name: name, - tokenSrc: tokenSrc, - } -} - -// Execute creates a function from the zip uploaded. -func (o *opDeleteFunction) Execute(_ executor.Context) error { - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - functionSvc := cloudfunctions.NewProjectsLocationsFunctionsService(svc) - operation, err := functionSvc.Delete(o.name).Context(context.TODO()).Do() - if err != nil { - return fmt.Errorf("error while removing function %s: %+v", o.name, err) - } - - o.ctx.name = operation.Name - - if operation.Done { - o.log.Debugf("Function %s removed successfully", o.name) - } - - return nil -} - -// Rollback -func (o *opDeleteFunction) Rollback(_ executor.Context) error { - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_ensure_bucket.go b/x-pack/functionbeat/manager/gcp/op_ensure_bucket.go deleted file mode 100644 index 06da4fb446f..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_ensure_bucket.go +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/storage" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opEnsureBucket struct { - log *logp.Logger - config *Config - created bool -} - -func newOpEnsureBucket(log *logp.Logger, cfg *Config) *opEnsureBucket { - return &opEnsureBucket{log: log, config: cfg, created: false} -} - -func (o *opEnsureBucket) Execute(_ executor.Context) error { - o.log.Debugf("Verifying presence of Cloud Storage bucket: '%s'", o.config.FunctionStorage) - - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return err - } - - bucket := client.Bucket(o.config.FunctionStorage) - attrs, err := bucket.Attrs(ctx) - if err == storage.ErrBucketNotExist { - berr := bucket.Create(ctx, o.config.ProjectID, nil) - if berr != nil { - return fmt.Errorf("cannot create bucket for function: %+v", berr) - } - o.created = true - o.log.Debugf("Cloud Storage bucket created with name '%s', attributes: %+v", o.config.FunctionStorage, attrs) - return nil - } - - if err != nil { - return fmt.Errorf("cannot get info on bucket: %+v", err) - } - - o.log.Debugf("Cloud Storage bucket exists with name '%s', attributes: %+v", o.config.FunctionStorage, attrs) - return nil -} - -func (o *opEnsureBucket) Rollback(_ executor.Context) error { - if o.created { - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return err - } - err = client.Bucket(o.config.FunctionStorage).Delete(ctx) - if err != nil { - return err - } - } - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_update_function.go b/x-pack/functionbeat/manager/gcp/op_update_function.go deleted file mode 100644 index ca70af1aad8..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_update_function.go +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opUpdateFunction struct { - ctx *functionContext - log *logp.Logger - tokenSrc oauth2.TokenSource - name string - function *cloudfunctions.CloudFunction -} - -func newOpUpdateFunction( - ctx *functionContext, - log *logp.Logger, - tokenSrc oauth2.TokenSource, - name string, - f *cloudfunctions.CloudFunction, -) *opUpdateFunction { - return &opUpdateFunction{ - ctx: ctx, - log: log, - tokenSrc: tokenSrc, - name: name, - function: f, - } -} - -// Execute updates an existing function. -func (o *opUpdateFunction) Execute(_ executor.Context) error { - o.log.Debugf("Updating function %s at %s", o.function.Name, o.function.SourceArchiveUrl) - - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - functionSvc := cloudfunctions.NewProjectsLocationsFunctionsService(svc) - operation, err := functionSvc.Patch(o.name, o.function).Context(context.TODO()).Do() - if err != nil { - return fmt.Errorf("error while updating function: %+v", err) - } - - o.ctx.name = operation.Name - - if operation.Done { - o.log.Debugf("Function %s updated successfully", o.function.Name) - } else { - o.log.Debugf("Operation '%s' is in progress to update function %s", operation.Name, o.function.Name) - } - - return nil -} - -// Rollback updates the deployed function. -func (o *opUpdateFunction) Rollback(_ executor.Context) error { - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go b/x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go deleted file mode 100644 index a05a16c7b71..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_upload_to_bucket.go +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/storage" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -type opUploadToBucket struct { - log *logp.Logger - config *Config - name string - raw []byte -} - -func newOpUploadToBucket(log *logp.Logger, config *Config, name string, raw []byte) *opUploadToBucket { - return &opUploadToBucket{ - log: log, - config: config, - name: name, - raw: raw, - } -} - -// Execute loads function to bucket. -// If function needs to be overwritten, storage.objects.delete permission is required. -func (o *opUploadToBucket) Execute(_ executor.Context) error { - o.log.Debugf("Uploading file '%s' to bucket '%s' with size %d bytes", o.name, o.config.FunctionStorage, len(o.raw)) - - ctx := context.Background() - client, err := storage.NewClient(ctx) - if err != nil { - return fmt.Errorf("could not create storage client: %+v", err) - } - - w := client.Bucket(o.config.FunctionStorage).Object(o.name).NewWriter(ctx) - w.ContentType = "text/plain" - _, err = w.Write(o.raw) - if err != nil { - return fmt.Errorf("error while writing function: %+v", err) - } - err = w.Close() - if err != nil { - return fmt.Errorf("error while closing writer: %+v", err) - } - - o.log.Debugf("Upload to bucket was successful") - - return nil -} - -// Rollback removes the loaded archive. -func (o *opUploadToBucket) Rollback(ctx executor.Context) error { - err := newOpDeleteFromBucket(o.log, o.config, o.name).Execute(ctx) - if err != nil { - o.log.Debugf("Fail to delete file from bucket, error: %+v", err) - } - return nil -} diff --git a/x-pack/functionbeat/manager/gcp/op_wait_for_function.go b/x-pack/functionbeat/manager/gcp/op_wait_for_function.go deleted file mode 100644 index 94cf2dcbc0d..00000000000 --- a/x-pack/functionbeat/manager/gcp/op_wait_for_function.go +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - "time" - - "golang.org/x/oauth2" - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/executor" -) - -var periodicCheck = 5 * time.Second - -type opWaitForFunction struct { - ctx *functionContext - log *logp.Logger - tokenSrc oauth2.TokenSource -} - -func newOpWaitForFunction(ctx *functionContext, log *logp.Logger, tokenSrc oauth2.TokenSource) *opWaitForFunction { - return &opWaitForFunction{ - ctx: ctx, - log: log, - tokenSrc: tokenSrc, - } -} - -func (o *opWaitForFunction) Execute(_ executor.Context) error { - if o.ctx.name == "" { - return errMissingFunctionName - } - - client := oauth2.NewClient(context.TODO(), o.tokenSrc) - svc, err := cloudfunctions.New(client) - if err != nil { - return fmt.Errorf("error while creating cloud functions service: %+v", err) - } - - opSvc := cloudfunctions.NewOperationsService(svc) - for { - op, err := opSvc.Get(o.ctx.name).Context(context.Background()).Do() - if err != nil { - return err - } - - if op.Done { - if op.Error != nil { - return fmt.Errorf("error while creating function (code: %d):\n%s", op.Error.Code, op.Error.Message) - } - o.log.Debugf("Successfully deployed function") - return nil - } - - o.log.Debugf("Operation %s has not finished yet. Retrying in 5 seconds.", o.ctx.name) - - timer := time.NewTimer(periodicCheck) - <-timer.C - } -} diff --git a/x-pack/functionbeat/manager/gcp/template_builder.go b/x-pack/functionbeat/manager/gcp/template_builder.go deleted file mode 100644 index c6f1292ce15..00000000000 --- a/x-pack/functionbeat/manager/gcp/template_builder.go +++ /dev/null @@ -1,195 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "errors" - "fmt" - "path/filepath" - - cloudfunctions "google.golang.org/api/cloudfunctions/v1" - yaml "gopkg.in/yaml.v2" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/manager/core/bundle" - fngcp "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -const ( - runtime = "go113" // Golang 1.13 - archiveURL = "gs://%s/%s" // path to the function archive - locationTemplate = "projects/%s/locations/%s" // full name of the location - functionName = locationTemplate + "/functions/%s" // full name of the functions - - // Package size limits for GCP provider - // Ref: https://cloud.google.com/functions/quotas - packageCompressedLimit = 100 * 1000 * 1000 // 100MB - packageUncompressedLimit = 500 * 1000 * 1000 // 500MB -) - -// defaultTemplateBuilder builds request object when deploying Functionbeat using -// the command deploy. -type defaultTemplateBuilder struct { - provider provider.Provider - log *logp.Logger - gcpConfig *Config -} - -type functionData struct { - raw []byte - function *cloudfunctions.CloudFunction -} - -// NewTemplateBuilder returns the requested template builder -func NewTemplateBuilder(log *logp.Logger, cfg *common.Config, p provider.Provider) (provider.TemplateBuilder, error) { - gcpCfg := &Config{} - err := cfg.Unpack(gcpCfg) - if err != nil { - return &defaultTemplateBuilder{}, err - } - - return &defaultTemplateBuilder{log: log, gcpConfig: gcpCfg, provider: p}, nil -} - -func (d *defaultTemplateBuilder) execute(name string) (*functionData, error) { - d.log.Debug("Compressing all assets into an artifact") - - fn, err := findFunction(d.provider, name) - if err != nil { - return nil, err - } - - resources := zipResourcesOfFunc(fn.Name()) - raw, err := core.MakeZip(packageUncompressedLimit, packageCompressedLimit, resources) - if err != nil { - return nil, err - } - - d.log.Debugf("Compression is successful (zip size: %d bytes)", len(raw)) - - return &functionData{ - raw: raw, - function: d.cloudFunction(name, fn.Config()), - }, nil -} - -func findFunction(p provider.Provider, name string) (installer, error) { - fn, err := p.FindFunctionByName(name) - if err != nil { - return nil, err - } - - function, ok := fn.(installer) - if !ok { - return nil, errors.New("incompatible type received, expecting: 'functionManager'") - } - - return function, nil -} - -func (d *defaultTemplateBuilder) cloudFunction(name string, config *fngcp.FunctionConfig) *cloudfunctions.CloudFunction { - fnName := fmt.Sprintf(functionName, d.gcpConfig.ProjectID, d.gcpConfig.Location, name) - sourceArchiveURL := fmt.Sprintf(archiveURL, d.gcpConfig.FunctionStorage, name) - - return &cloudfunctions.CloudFunction{ - Name: fnName, - Description: config.Description, - EntryPoint: config.EntryPoint(), - EnvironmentVariables: map[string]string{ - "ENABLED_FUNCTIONS": name, - "BEAT_STRICT_PERMS": "false", - }, - EventTrigger: &cloudfunctions.EventTrigger{ - EventType: config.Trigger.EventType, - Resource: config.Trigger.Resource, - Service: config.Trigger.Service, - }, - Labels: config.Labels, - MaxInstances: int64(config.MaxInstances), - Runtime: runtime, - ServiceAccountEmail: config.ServiceAccountEmail, - SourceArchiveUrl: sourceArchiveURL, - Timeout: config.Timeout, - VpcConnector: config.VPCConnector, - } -} - -// RawTemplate returns the JSON to POST to the endpoint. -func (d *defaultTemplateBuilder) RawTemplate(name string) (string, error) { - fn, err := findFunction(d.provider, name) - if err != nil { - return "", err - } - config := fn.Config() - - properties := common.MapStr{ - "codeLocation": "pkg/" + fn.Name(), - "codeBucket": d.gcpConfig.FunctionStorage, - "codeBucketObject": "functionbeat.zip", - "location": d.gcpConfig.Location, - "runtime": runtime, - "entryPoint": config.EntryPoint(), - "eventTrigger": config.Trigger, - "environmentVariables": common.MapStr{ - "ENABLED_FUNCTIONS": name, - "BEAT_STRICT_PERMS": false, - }, - } - - if config.Timeout != "" { - properties["timeout"] = config.Timeout - } - if config.MemorySize != "" { - properties["availableMemoryMb"] = config.MemorySize - } - if len(config.ServiceAccountEmail) > 0 { - properties["serviceAccountEmail"] = config.ServiceAccountEmail - } - if len(config.Labels) > 0 { - properties["labels"] = config.Labels - } - if config.MaxInstances > 0 { - properties["maxInstances"] = config.MaxInstances - } - if len(config.VPCConnector) > 0 { - properties["vpcConnector"] = config.VPCConnector - } - - output := common.MapStr{ - "resources": []common.MapStr{ - common.MapStr{ - "name": fmt.Sprintf(functionName, d.gcpConfig.ProjectID, d.gcpConfig.Location, name), - "type": "google.cloud.functions.v1.CloudFunction", - "properties": properties, - }, - }, - } - - yamlBytes, err := yaml.Marshal(output) - return string(yamlBytes), err -} - -func zipResources() map[string][]bundle.Resource { - functions, err := provider.ListFunctions("gcp") - if err != nil { - fmt.Println(err) - return nil - } - - resources := make(map[string][]bundle.Resource) - for _, f := range functions { - resources["gcp-"+f] = zipResourcesOfFunc(f) - } - return resources -} - -func zipResourcesOfFunc(typeName string) []bundle.Resource { - root := filepath.Join("pkg", typeName) - vendor := bundle.Folder(filepath.Join("pkg", typeName, "vendor"), filepath.Join("pkg", typeName), 0644) - return append(vendor, &bundle.LocalFile{Path: filepath.Join(root, typeName+".go"), FileMode: 0755}) -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/config.go b/x-pack/functionbeat/provider/gcp/gcp/config.go deleted file mode 100644 index 0af370edcf2..00000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/config.go +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "fmt" -) - -// FunctionConfig stores the configuration of a Google Cloud Function -type FunctionConfig struct { - Description string `config:"description"` - MemorySize string `config:"memory_size"` - Timeout string `config:"timeout"` - ServiceAccountEmail string `config:"service_account_email"` - Labels map[string]string `config:"labels"` - VPCConnector string `config:"vpc_connector"` - MaxInstances int `config:"maximum_instances"` - Trigger Trigger `config:"trigger" validate:"required"` - - entryPoint string -} - -// Trigger stores the configuration of the function trigger. -type Trigger struct { - EventType string `config:"event_type" json:"eventType"` - Resource string `config:"resource" validate:"required" json:"resource"` - Service string `config:"service" json:"service,omitempty" yaml:"service,omitempty"` -} - -func defaultPubSubFunctionConfig() *FunctionConfig { - return &FunctionConfig{ - Trigger: Trigger{ - EventType: "google.pubsub.topic.publish", - }, - entryPoint: "RunPubSub", - } -} - -func defaultStorageFunctionConfig() *FunctionConfig { - return &FunctionConfig{ - Trigger: Trigger{ - EventType: "google.storage.object.finalize", - }, - entryPoint: "RunCloudStorage", - } -} - -// Validate checks a function configuration. -func (c *FunctionConfig) Validate() error { - if c.entryPoint == "" { - return fmt.Errorf("entryPoint cannot be empty") - } - return nil -} - -// EntryPoint returns the name of the function to run on GCP. -func (c *FunctionConfig) EntryPoint() string { - return c.entryPoint -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/pubsub.go b/x-pack/functionbeat/provider/gcp/gcp/pubsub.go deleted file mode 100644 index 19b45428bbd..00000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/pubsub.go +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/functions/metadata" - "cloud.google.com/go/pubsub" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/telemetry" -) - -const ( - pubSubEventCtxStr = "pub_sub_event" -) - -// PubSub represents a Google Cloud function which reads event from Google Pub/Sub triggers. -type PubSub struct { - log *logp.Logger - config *FunctionConfig -} - -// PubSubEventKey is an alias to string -type PubSubEventKey string - -// NewPubSub returns a new function to read from Google Pub/Sub. -func NewPubSub(provider provider.Provider, cfg *common.Config) (provider.Function, error) { - config := defaultPubSubFunctionConfig() - err := cfg.Unpack(config) - if err != nil { - return &PubSub{}, err - } - - return &PubSub{ - log: logp.NewLogger("pubsub"), - config: config, - }, nil -} - -// PubSubEvent stores the context and the message from Google Pub/Sub. -type PubSubEvent struct { - Metadata *metadata.Metadata - Message pubsub.Message -} - -// NewPubSubContext creates a context from context and message returned from Google Pub/Sub. -func NewPubSubContext(beatCtx, ctx context.Context, m pubsub.Message) (context.Context, error) { - data, err := metadata.FromContext(ctx) - if err != nil { - return nil, err - } - e := PubSubEvent{ - Metadata: data, - Message: m, - } - - return context.WithValue(beatCtx, PubSubEventKey(pubSubEventCtxStr), e), nil -} - -// Run start -func (p *PubSub) Run(ctx context.Context, client core.Client, t telemetry.T) error { - t.AddTriggeredFunction() - - pubsubEvent, err := p.getEventDataFromContext(ctx) - if err != nil { - return err - } - event, err := transformPubSub(pubsubEvent.Metadata, pubsubEvent.Message) - if err := client.Publish(event); err != nil { - p.log.Errorf("error while publishing Pub/Sub event %+v", err) - return err - } - client.Wait() - - return nil -} - -func (p *PubSub) getEventDataFromContext(ctx context.Context) (PubSubEvent, error) { - iPubSubEvent := ctx.Value(PubSubEventKey(pubSubEventCtxStr)) - if iPubSubEvent == nil { - return PubSubEvent{}, fmt.Errorf("no pub_sub_event in context") - } - event, ok := iPubSubEvent.(PubSubEvent) - if !ok { - return PubSubEvent{}, fmt.Errorf("not PubSubEvent: %+v", iPubSubEvent) - } - - return event, nil -} - -// PubSubDetails returns the details of the feature. -func PubSubDetails() feature.Details { - return feature.MakeDetails("Google Pub/Sub trigger", "receive messages from Google Pub/Sub.", feature.Stable) -} - -// Name returns the name of the function. -func (p *PubSub) Name() string { - return "pubsub" -} - -// Config returns the configuration to use when creating the function. -func (p *PubSub) Config() *FunctionConfig { - return p.config -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/storage.go b/x-pack/functionbeat/provider/gcp/gcp/storage.go deleted file mode 100644 index 5b1d6e7f4e6..00000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/storage.go +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "context" - "fmt" - - "cloud.google.com/go/functions/metadata" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/core" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/telemetry" -) - -const ( - storageEvtCtxStr = "storage_event" -) - -// Storage represents a Google Cloud function which reads event from Google Cloud Storage. -type Storage struct { - log *logp.Logger - config *FunctionConfig -} - -// StorageEventKey is an alias to string -type StorageEventKey string - -// StorageEventWithMeta stores the storage event received from Google Cloud Storage. -type StorageEventWithMeta struct { - Metadata *metadata.Metadata - Event StorageEvent -} - -// NewStorage returns a new function to read from Google Cloud Storage. -func NewStorage(provider provider.Provider, cfg *common.Config) (provider.Function, error) { - config := defaultStorageFunctionConfig() - err := cfg.Unpack(config) - if err != nil { - return &Storage{}, err - } - - return &Storage{ - log: logp.NewLogger("storage"), - config: config, - }, nil -} - -// NewStorageContext creates a context from context and message returned from Google Cloud Storage. -func NewStorageContext(beatCtx, ctx context.Context, e StorageEvent) (context.Context, error) { - data, err := metadata.FromContext(ctx) - if err != nil { - return nil, err - } - - evt := StorageEventWithMeta{ - Metadata: data, - Event: e, - } - - return context.WithValue(beatCtx, StorageEventKey(storageEvtCtxStr), evt), nil -} - -// Run start -func (s *Storage) Run(ctx context.Context, client core.Client, t telemetry.T) error { - t.AddTriggeredFunction() - - evt, err := s.getEventDataFromContext(ctx) - if err != nil { - return err - } - event, err := transformStorage(evt.Metadata, evt.Event) - if err := client.Publish(event); err != nil { - s.log.Errorf("error while publishing Google Cloud Storage event %+v", err) - return err - } - client.Wait() - - return nil -} - -func (s *Storage) getEventDataFromContext(ctx context.Context) (StorageEventWithMeta, error) { - iEvt := ctx.Value(StorageEventKey(storageEvtCtxStr)) - if iEvt == nil { - return StorageEventWithMeta{}, fmt.Errorf("no storage_event in context") - } - evt, ok := iEvt.(StorageEventWithMeta) - if !ok { - return StorageEventWithMeta{}, fmt.Errorf("not StorageEvent: %+v", iEvt) - } - - return evt, nil -} - -// StorageDetails returns the details of the feature. -func StorageDetails() feature.Details { - return feature.MakeDetails("Google Cloud Storage trigger", "receive events from Google Cloud Storage.", feature.Stable) -} - -// Name returns the name of the function. -func (s *Storage) Name() string { - return "storage" -} - -// Config returns the configuration to use when creating the function. -func (s *Storage) Config() *FunctionConfig { - return s.config -} diff --git a/x-pack/functionbeat/provider/gcp/gcp/transformer.go b/x-pack/functionbeat/provider/gcp/gcp/transformer.go deleted file mode 100644 index beb4fa7f354..00000000000 --- a/x-pack/functionbeat/provider/gcp/gcp/transformer.go +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package gcp - -import ( - "time" - - "cloud.google.com/go/functions/metadata" - "cloud.google.com/go/pubsub" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" -) - -// StorageEvent is the event from Google Cloud Storage -type StorageEvent struct { - Bucket string `json:"bucket"` - Name string `json:"name"` - Metageneration string `json:"metageneration"` - ResourceState string `json:"resourceState"` - Created time.Time `json:"timeCreated"` - Updated time.Time `json:"updated"` -} - -// transformPubSub takes a Pub/Sub message and context and transforms it into an event. -func transformPubSub(mData *metadata.Metadata, msg pubsub.Message) (beat.Event, error) { - return beat.Event{ - Timestamp: mData.Timestamp, - Fields: common.MapStr{ - "event": common.MapStr{ - "kind": "event", - }, - "cloud": common.MapStr{ - "provider": "gcp", - }, - "read_timestamp": time.Now(), - "message": string(msg.Data), - "attributes": msg.Attributes, - "id": mData.EventID, - "resource": common.MapStr{ - "service": mData.Resource.Service, - "name": mData.Resource.Name, - "event_type": mData.Resource.Type, - }, - }, - }, nil -} - -// transformStorage takes a Cloud Storage object and transforms it into an event. -func transformStorage(mData *metadata.Metadata, evt StorageEvent) (beat.Event, error) { - - return beat.Event{ - Timestamp: mData.Timestamp, - Fields: common.MapStr{ - "event": common.MapStr{ - "kind": "event", - "category": []string{"file"}, - "type": []string{"info"}, - }, - "cloud": common.MapStr{ - "provider": "gcp", - }, - "read_timestamp": time.Now(), - "id": mData.EventID, - "resource": common.MapStr{ - "service": mData.Resource.Service, - "name": mData.Resource.Name, - "event_type": mData.Resource.Type, - "state": evt.ResourceState, - }, - "storage_bucket": evt.Bucket, - "file": common.MapStr{ - "name": evt.Name, - "mtime": evt.Updated, - "ctime": evt.Updated, - "created": evt.Created, - }, - "meta-generation": evt.Metageneration, - }, - }, nil -} diff --git a/x-pack/functionbeat/provider/gcp/include/feature.go b/x-pack/functionbeat/provider/gcp/include/feature.go deleted file mode 100644 index 7af761e82de..00000000000 --- a/x-pack/functionbeat/provider/gcp/include/feature.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package include - -import ( - "github.com/elastic/beats/v7/libbeat/feature" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/provider" - "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" -) - -// Bundle exposes the trigger supported by the GCP provider. -var bundle = provider.MustCreate( - "gcp", - provider.NewDefaultProvider("gcp", provider.NewNullCli, provider.NewNullTemplateBuilder), - feature.MakeDetails("Google Cloud Platform", "listen to events from Google Cloud Platform", feature.Stable), -).MustAddFunction("pubsub", - gcp.NewPubSub, - gcp.PubSubDetails(), -).MustAddFunction("storage", - gcp.NewStorage, - gcp.StorageDetails(), -).Bundle() - -func init() { - feature.MustRegisterBundle(bundle) -} diff --git a/x-pack/functionbeat/provider/gcp/pubsub/pubsub.go b/x-pack/functionbeat/provider/gcp/pubsub/pubsub.go deleted file mode 100644 index 813a0df9cc0..00000000000 --- a/x-pack/functionbeat/provider/gcp/pubsub/pubsub.go +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package pubsub - -import ( - "context" - "fmt" - - gpubsub "cloud.google.com/go/pubsub" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/cfgfile" - "github.com/elastic/beats/v7/libbeat/cmd/instance" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/cfgwarn" - "github.com/elastic/beats/v7/x-pack/functionbeat/config" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/beater" - prov "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" - _ "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/include" -) - -func RunPubSub(ctx context.Context, m gpubsub.Message) error { - cfgwarn.Beta("Google Cloud Platform support is in beta") - settings := instance.Settings{ - Name: "functionbeat", - IndexPrefix: "functionbeat", - ConfigOverrides: config.FunctionOverrides, - } - - cfgfile.SetConfigPath("/srv/src/pubsub") - cfgfile.ChangeDefaultCfgfileFlag(settings.Name) - - return instance.Run(settings, initFunctionbeat(ctx, m)) -} - -func initFunctionbeat(ctx context.Context, m gpubsub.Message) func(*beat.Beat, *common.Config) (beat.Beater, error) { - return func(b *beat.Beat, cfg *common.Config) (beat.Beater, error) { - bt, err := beater.New(b, cfg) - if err != nil { - return nil, err - } - - fnbeat, ok := bt.(*beater.Functionbeat) - if !ok { - return nil, fmt.Errorf("not Functionbeat") - } - - fnbeat.Ctx, err = prov.NewPubSubContext(fnbeat.Ctx, ctx, m) - if err != nil { - return nil, err - } - - return fnbeat, nil - } -} diff --git a/x-pack/functionbeat/provider/gcp/storage/storage.go b/x-pack/functionbeat/provider/gcp/storage/storage.go deleted file mode 100644 index 2de829392d2..00000000000 --- a/x-pack/functionbeat/provider/gcp/storage/storage.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package storage - -import ( - "context" - "fmt" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/cfgfile" - "github.com/elastic/beats/v7/libbeat/cmd/instance" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/cfgwarn" - "github.com/elastic/beats/v7/x-pack/functionbeat/config" - "github.com/elastic/beats/v7/x-pack/functionbeat/function/beater" - "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/gcp" - _ "github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/include" -) - -func RunCloudStorage(ctx context.Context, e gcp.StorageEvent) error { - cfgwarn.Beta("Google Cloud Platform support is in beta") - settings := instance.Settings{ - Name: "functionbeat", - IndexPrefix: "functionbeat", - ConfigOverrides: config.FunctionOverrides, - } - - cfgfile.SetConfigPath("/srv/src/storage") - cfgfile.ChangeDefaultCfgfileFlag(settings.Name) - - return instance.Run(settings, initFunctionbeat(ctx, e)) -} - -func initFunctionbeat(ctx context.Context, e gcp.StorageEvent) func(*beat.Beat, *common.Config) (beat.Beater, error) { - return func(b *beat.Beat, cfg *common.Config) (beat.Beater, error) { - bt, err := beater.New(b, cfg) - if err != nil { - return nil, err - } - - fnbeat, ok := bt.(*beater.Functionbeat) - if !ok { - return nil, fmt.Errorf("not Functionbeat") - } - - fnbeat.Ctx, err = gcp.NewStorageContext(fnbeat.Ctx, ctx, e) - if err != nil { - return nil, err - } - - return fnbeat, nil - } -} diff --git a/x-pack/functionbeat/scripts/mage/providers.go b/x-pack/functionbeat/scripts/mage/providers.go index 538fcdda071..d77c1da548d 100644 --- a/x-pack/functionbeat/scripts/mage/providers.go +++ b/x-pack/functionbeat/scripts/mage/providers.go @@ -13,7 +13,6 @@ import ( var ( availableProviders = []ProviderDetails{ {Name: "aws", Buildable: true, GOOS: "linux", GOARCH: "amd64"}, - {Name: "gcp", Buildable: false}, } ) diff --git a/x-pack/functionbeat/scripts/mage/update.go b/x-pack/functionbeat/scripts/mage/update.go index 99f1b9a3ce3..468bdafbe0f 100644 --- a/x-pack/functionbeat/scripts/mage/update.go +++ b/x-pack/functionbeat/scripts/mage/update.go @@ -5,13 +5,9 @@ package mage import ( - "os" - "path/filepath" - "github.com/magefile/mage/mg" devtools "github.com/elastic/beats/v7/dev-tools/mage" - "github.com/elastic/beats/v7/dev-tools/mage/gotool" ) // Update target namespace. @@ -24,7 +20,7 @@ var Aliases = map[string]interface{}{ // All updates all generated content. func (Update) All() { - mg.Deps(Update.Fields, Update.IncludeFields, Update.Config, Update.FieldDocs, Update.VendorBeats) + mg.Deps(Update.Fields, Update.IncludeFields, Update.Config, Update.FieldDocs) } // Config generates both the short and reference configs. @@ -50,42 +46,3 @@ func (Update) IncludeFields() error { return devtools.GenerateAllInOneFieldsGo() } - -// VendorBeats collects the vendor folder required to deploy the function for GCP. -func (Update) VendorBeats() error { - for _, f := range []string{"pubsub", "storage"} { - gcpVendorPath := filepath.Join("provider", "gcp", "build", f, "vendor") - err := os.RemoveAll(gcpVendorPath) - if err != nil { - return err - } - - deps, err := gotool.ListDepsLocation("github.com/elastic/beats/v7/x-pack/functionbeat/provider/gcp/" + f) - if err != nil { - return err - } - - for importPath, location := range deps { - cp := &devtools.CopyTask{ - Source: location, - Dest: filepath.Join(gcpVendorPath, importPath), - Mode: 0600, - DirMode: os.ModeDir | 0750, - Exclude: []string{ - ".*_test.go$", - ".*.yml", - // XXX GCP function metadata lib must be removed to avoid build failures - // GH issue: https://github.com/googleapis/google-cloud-go/issues/1947 - ".*cloud.google.com/go.*/functions/metadata.*", - }, - } - err = cp.Execute() - if err != nil { - return err - } - } - - } - - return nil -} From 5b26c25cee8ec4304ab8da81270564845aa22065 Mon Sep 17 00:00:00 2001 From: Aleksandr Maus Date: Mon, 11 Oct 2021 09:15:21 -0700 Subject: [PATCH 15/25] Fix build tags for Go 1.17 (#28338) --- dev-tools/cmd/asset/asset.go | 1 + dev-tools/mage/keychain_test.go | 1 + dev-tools/magefile.go | 1 + dev-tools/packaging/preference-pane/magefile.go | 1 + magefile.go | 1 + x-pack/osquerybeat/internal/install/install_unix.go | 3 ++- x-pack/osquerybeat/internal/install/install_windows.go | 3 ++- x-pack/osquerybeat/internal/osqd/osqueryd_unix.go | 1 + x-pack/osquerybeat/internal/osqd/osqueryd_windows.go | 1 + x-pack/osquerybeat/magefile.go | 1 + 10 files changed, 12 insertions(+), 2 deletions(-) diff --git a/dev-tools/cmd/asset/asset.go b/dev-tools/cmd/asset/asset.go index 1696e078136..e33f1b82aa7 100644 --- a/dev-tools/cmd/asset/asset.go +++ b/dev-tools/cmd/asset/asset.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build ignore // +build ignore package main diff --git a/dev-tools/mage/keychain_test.go b/dev-tools/mage/keychain_test.go index 949ca9ac5bf..1becebf5e87 100644 --- a/dev-tools/mage/keychain_test.go +++ b/dev-tools/mage/keychain_test.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build darwin // +build darwin package mage diff --git a/dev-tools/magefile.go b/dev-tools/magefile.go index 5bdc2479042..7f703ba2077 100644 --- a/dev-tools/magefile.go +++ b/dev-tools/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/dev-tools/packaging/preference-pane/magefile.go b/dev-tools/packaging/preference-pane/magefile.go index 77eb9c437da..4369fc92da6 100644 --- a/dev-tools/packaging/preference-pane/magefile.go +++ b/dev-tools/packaging/preference-pane/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/magefile.go b/magefile.go index 75c6d60faef..70b9f6cfecf 100644 --- a/magefile.go +++ b/magefile.go @@ -15,6 +15,7 @@ // specific language governing permissions and limitations // under the License. +//go:build mage // +build mage package main diff --git a/x-pack/osquerybeat/internal/install/install_unix.go b/x-pack/osquerybeat/internal/install/install_unix.go index 6a16368540b..769e5ba1485 100644 --- a/x-pack/osquerybeat/internal/install/install_unix.go +++ b/x-pack/osquerybeat/internal/install/install_unix.go @@ -2,7 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -//+build !windows +//go:build !windows +// +build !windows package install diff --git a/x-pack/osquerybeat/internal/install/install_windows.go b/x-pack/osquerybeat/internal/install/install_windows.go index b28608e7e92..090303f4d0b 100644 --- a/x-pack/osquerybeat/internal/install/install_windows.go +++ b/x-pack/osquerybeat/internal/install/install_windows.go @@ -2,7 +2,8 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. -//+build windows +//go:build windows +// +build windows package install diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go b/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go index 0d5da3e1cfa..4840bad4329 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd_unix.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build !windows // +build !windows package osqd diff --git a/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go b/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go index 758dce74500..5be16ba8669 100644 --- a/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go +++ b/x-pack/osquerybeat/internal/osqd/osqueryd_windows.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build windows // +build windows package osqd diff --git a/x-pack/osquerybeat/magefile.go b/x-pack/osquerybeat/magefile.go index 583b3e917cb..d3e1923561b 100644 --- a/x-pack/osquerybeat/magefile.go +++ b/x-pack/osquerybeat/magefile.go @@ -2,6 +2,7 @@ // or more contributor license agreements. Licensed under the Elastic License; // you may not use this file except in compliance with the Elastic License. +//go:build mage // +build mage package main From b191b59f3fd14786511fa7687d09457707fca4f8 Mon Sep 17 00:00:00 2001 From: Blake Rouse Date: Mon, 11 Oct 2021 14:12:38 -0400 Subject: [PATCH 16/25] [Elastic Agent] Add ability to communicate with Kibana through service token (#28096) * Add ability to communicate with Kibana through service token. Add ability to pass service token to container subcommand. * Add changelog entry. * Fix go fmt. --- libbeat/kibana/client.go | 28 +++++++++------- libbeat/kibana/client_config.go | 32 ++++++++++--------- libbeat/kibana/client_config_test.go | 6 ++++ libbeat/kibana/client_test.go | 20 ++++++++++++ x-pack/elastic-agent/CHANGELOG.next.asciidoc | 1 + .../elastic-agent/pkg/agent/cmd/container.go | 1 + .../pkg/agent/cmd/setup_config.go | 22 +++++++------ 7 files changed, 74 insertions(+), 36 deletions(-) diff --git a/libbeat/kibana/client.go b/libbeat/kibana/client.go index 4a96546dee2..111db2e3816 100644 --- a/libbeat/kibana/client.go +++ b/libbeat/kibana/client.go @@ -48,11 +48,12 @@ var ( ) type Connection struct { - URL string - Username string - Password string - APIKey string - Headers http.Header + URL string + Username string + Password string + APIKey string + ServiceToken string + Headers http.Header HTTP *http.Client Version common.Version @@ -196,12 +197,13 @@ func NewClientWithConfigDefault(config *ClientConfig, defaultPort int, beatname client := &Client{ Connection: Connection{ - URL: kibanaURL, - Username: username, - Password: password, - APIKey: config.APIKey, - Headers: headers, - HTTP: rt, + URL: kibanaURL, + Username: username, + Password: password, + APIKey: config.APIKey, + ServiceToken: config.ServiceToken, + Headers: headers, + HTTP: rt, }, log: log, } @@ -267,6 +269,10 @@ func (conn *Connection) SendWithContext(ctx context.Context, method, extraPath s v := "ApiKey " + base64.StdEncoding.EncodeToString([]byte(conn.APIKey)) req.Header.Set("Authorization", v) } + if conn.ServiceToken != "" { + v := "Bearer " + conn.ServiceToken + req.Header.Set("Authorization", v) + } addHeaders(req.Header, conn.Headers) addHeaders(req.Header, headers) diff --git a/libbeat/kibana/client_config.go b/libbeat/kibana/client_config.go index 6219fb3c718..c8c3758c71b 100644 --- a/libbeat/kibana/client_config.go +++ b/libbeat/kibana/client_config.go @@ -25,13 +25,14 @@ import ( // ClientConfig to connect to Kibana type ClientConfig struct { - Protocol string `config:"protocol" yaml:"protocol,omitempty"` - Host string `config:"host" yaml:"host,omitempty"` - Path string `config:"path" yaml:"path,omitempty"` - SpaceID string `config:"space.id" yaml:"space.id,omitempty"` - Username string `config:"username" yaml:"username,omitempty"` - Password string `config:"password" yaml:"password,omitempty"` - APIKey string `config:"api_key" yaml:"api_key,omitempty"` + Protocol string `config:"protocol" yaml:"protocol,omitempty"` + Host string `config:"host" yaml:"host,omitempty"` + Path string `config:"path" yaml:"path,omitempty"` + SpaceID string `config:"space.id" yaml:"space.id,omitempty"` + Username string `config:"username" yaml:"username,omitempty"` + Password string `config:"password" yaml:"password,omitempty"` + APIKey string `config:"api_key" yaml:"api_key,omitempty"` + ServiceToken string `config:"service_token" yaml:"service_token,omitempty"` // Headers holds headers to include in every request sent to Kibana. Headers map[string]string `config:"headers" yaml:"headers,omitempty"` @@ -44,14 +45,15 @@ type ClientConfig struct { // DefaultClientConfig connects to a locally running kibana over HTTP func DefaultClientConfig() ClientConfig { return ClientConfig{ - Protocol: "http", - Host: "localhost:5601", - Path: "", - SpaceID: "", - Username: "", - Password: "", - APIKey: "", - Transport: httpcommon.DefaultHTTPTransportSettings(), + Protocol: "http", + Host: "localhost:5601", + Path: "", + SpaceID: "", + Username: "", + Password: "", + APIKey: "", + ServiceToken: "", + Transport: httpcommon.DefaultHTTPTransportSettings(), } } diff --git a/libbeat/kibana/client_config_test.go b/libbeat/kibana/client_config_test.go index 1355e696aad..0e365644341 100644 --- a/libbeat/kibana/client_config_test.go +++ b/libbeat/kibana/client_config_test.go @@ -46,6 +46,12 @@ func TestClientConfigValdiate(t *testing.T) { APIKey: "api-key", }, err: nil, + }, { + name: "service_token", + c: &ClientConfig{ + ServiceToken: "service_token", + }, + err: nil, }, { name: "username and api_key", c: &ClientConfig{ diff --git a/libbeat/kibana/client_test.go b/libbeat/kibana/client_test.go index 27dfc53f370..d3e2a66f8d3 100644 --- a/libbeat/kibana/client_test.go +++ b/libbeat/kibana/client_test.go @@ -96,6 +96,26 @@ func TestSuccess(t *testing.T) { assert.NoError(t, err) } +func TestServiceToken(t *testing.T) { + serviceToken := "fakeservicetoken" + + kibanaTs := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(`{}`)) + + assert.Equal(t, "Bearer "+serviceToken, r.Header.Get("Authorization")) + })) + defer kibanaTs.Close() + + conn := Connection{ + URL: kibanaTs.URL, + HTTP: http.DefaultClient, + ServiceToken: serviceToken, + } + code, _, err := conn.Request(http.MethodPost, "", url.Values{}, http.Header{"foo": []string{"bar"}}, nil) + assert.Equal(t, http.StatusOK, code) + assert.NoError(t, err) +} + func TestNewKibanaClient(t *testing.T) { var requests []*http.Request kibanaTs := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { diff --git a/x-pack/elastic-agent/CHANGELOG.next.asciidoc b/x-pack/elastic-agent/CHANGELOG.next.asciidoc index e51e9f1ed66..95f7b90e89b 100644 --- a/x-pack/elastic-agent/CHANGELOG.next.asciidoc +++ b/x-pack/elastic-agent/CHANGELOG.next.asciidoc @@ -145,3 +145,4 @@ - Agent now adapts the beats queue size based on output settings. {issue}26638[26638] {pull}27429[27429] - Support ephemeral containers in Kubernetes dynamic provider. {issue}27020[#27020] {pull}27707[27707] - Add complete k8s metadata through composable provider. {pull}27691[27691] +- Add `KIBANA_FLEET_SERVICE_TOKEN` to Elastic Agent container. {pull}28096[28096] diff --git a/x-pack/elastic-agent/pkg/agent/cmd/container.go b/x-pack/elastic-agent/pkg/agent/cmd/container.go index 5faba8548c4..8d0a4bb4287 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/container.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/container.go @@ -471,6 +471,7 @@ func kibanaClient(cfg kibanaConfig, headers map[string]string) (*kibana.Client, Host: cfg.Fleet.Host, Username: cfg.Fleet.Username, Password: cfg.Fleet.Password, + ServiceToken: cfg.Fleet.ServiceToken, IgnoreVersion: true, Transport: transport, Headers: headers, diff --git a/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go b/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go index 4330c967e9f..f0076af5435 100644 --- a/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go +++ b/x-pack/elastic-agent/pkg/agent/cmd/setup_config.go @@ -53,11 +53,12 @@ type kibanaConfig struct { } type kibanaFleetConfig struct { - CA string `config:"ca"` - Host string `config:"host"` - Password string `config:"password"` - Setup bool `config:"setup"` - Username string `config:"username"` + CA string `config:"ca"` + Host string `config:"host"` + Password string `config:"password"` + Setup bool `config:"setup"` + Username string `config:"username"` + ServiceToken string `config:"service_token"` } func defaultAccessConfig() (setupConfig, error) { @@ -104,11 +105,12 @@ func defaultAccessConfig() (setupConfig, error) { // Remove FLEET_SETUP in 8.x // The FLEET_SETUP environment variable boolean is a fallback to the old name. The name was updated to // reflect that its setting up Fleet in Kibana versus setting up Fleet Server. - Setup: envBool("KIBANA_FLEET_SETUP", "FLEET_SETUP"), - Host: envWithDefault("http://kibana:5601", "KIBANA_FLEET_HOST", "KIBANA_HOST"), - Username: envWithDefault("elastic", "KIBANA_FLEET_USERNAME", "KIBANA_USERNAME", "ELASTICSEARCH_USERNAME"), - Password: envWithDefault("changeme", "KIBANA_FLEET_PASSWORD", "KIBANA_PASSWORD", "ELASTICSEARCH_PASSWORD"), - CA: envWithDefault("", "KIBANA_FLEET_CA", "KIBANA_CA", "ELASTICSEARCH_CA"), + Setup: envBool("KIBANA_FLEET_SETUP", "FLEET_SETUP"), + Host: envWithDefault("http://kibana:5601", "KIBANA_FLEET_HOST", "KIBANA_HOST"), + Username: envWithDefault("elastic", "KIBANA_FLEET_USERNAME", "KIBANA_USERNAME", "ELASTICSEARCH_USERNAME"), + Password: envWithDefault("changeme", "KIBANA_FLEET_PASSWORD", "KIBANA_PASSWORD", "ELASTICSEARCH_PASSWORD"), + ServiceToken: envWithDefault("", "KIBANA_FLEET_SERVICE_TOKEN", "FLEET_SERVER_SERVICE_TOKEN"), + CA: envWithDefault("", "KIBANA_FLEET_CA", "KIBANA_CA", "ELASTICSEARCH_CA"), }, RetrySleepDuration: retrySleepDuration, RetryMaxCount: retryMaxCount, From d416312efb679ef23783eeb3466e6ebbe71a25e0 Mon Sep 17 00:00:00 2001 From: LaZyDK Date: Mon, 11 Oct 2021 21:22:13 +0200 Subject: [PATCH 17/25] Add username to ASA Security negotiation log (#26975) * Add username to ASA Security negotiation log I added the username user.name field to ASA Security negotiation log line. * adding support for both formats * adding changelog entry * updating geo fields in expected output files * reverse formatting * reverting to older version of file * reverting formatting again * regenrate golden files again * remove formatting, ready for review * fixing missing message due to no newline * fix dissect pattern to fit correctly Co-authored-by: Marius Iversen --- CHANGELOG.next.asciidoc | 1 + .../cisco/asa/test/additional_messages.log | 1 + .../additional_messages.log-expected.json | 65 +++++++++++++++++-- .../cisco/shared/ingest/asa-ftd-pipeline.yml | 7 ++ 4 files changed, 67 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 734033bea89..c61c57145f0 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -316,6 +316,7 @@ for a few releases. Please use other tools provided by Elastic to fetch data fro - sophos/xg fileset: Add missing pipeline for System Health logs. {pull}27827[27827] {issue}27826[27826] - Resolve issue with @timestamp for defender_atp. {pull}28272[28272] - Tolerate faults when Windows Event Log session is interrupted {issue}27947[27947] {pull}28191[28191] +- Add support for username in cisco asa security negotiation logs {pull}26975[26975] *Heartbeat* diff --git a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log index e1666f72432..75271900c57 100644 --- a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log +++ b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log @@ -83,6 +83,7 @@ Apr 27 2020 02:03:03 dev01: %ASA-6-713904: All IPSec SA proposals found unaccept Apr 27 2020 02:03:03 dev01: %ASA-6-713903: IP = 192.128.1.1, All IPSec SA proposals found unacceptable! Apr 27 2020 02:03:03 dev01: %ASA-6-713902: Group = 100.60.140.10, All IPSec SA proposals found unacceptable! Apr 27 2020 02:03:03 dev01: %ASA-6-713901: Group = 100.60.140.10, IP = 192.128.1.1, All IPSec SA proposals found unacceptable! +Apr 27 02:03:03 dev01: %ASA-5-713049: Group = 100.60.140.10, Username = test_user, IP = 1.2.3.4, Security negotiation complete for User (test_user) Responder, Inbound SPI = 0x0000000, Outbound SPI = 0x0000000 Apr 27 2020 02:03:03 dev01: %ASA-4-106023: Deny protocol 47 src outside:100.66.124.24 dst inside:172.31.98.44 by access-group "inbound" Apr 27 2020 02:03:03 dev01: %ASA-4-106023: Deny icmp src OUTSIDE:2a05:d016:add:4002:91f2:a9b2:e09a:6fc6 dst OUTSIDE:fe00:afa0::1 (type 128, code 0) by access-group "OUTSIDE_in" Apr 27 2020 02:03:03 dev01: %ASA-4-302016: Teardown UDP connection 123364823 for OUTSIDE:82.0.0.1/500 to identity:85.0.0.1/500 duration 92:24:20 bytes 4671944 diff --git a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json index 8866c2baa1b..6505354dafc 100644 --- a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json +++ b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json @@ -4268,6 +4268,57 @@ "forwarded" ] }, + { + "cisco.asa.message_id": "713049", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 713049, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-5-713049: Group = 100.60.140.10, Username = test_user, IP = 1.2.3.4, Security negotiation complete for User (test_user) Responder, Inbound SPI = 0x0000000, Outbound SPI = 0x0000000", + "event.severity": 5, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "host.hostname": "dev01", + "input.type": "log", + "log.level": "notification", + "log.offset": 12205, + "observer.hostname": "dev01", + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.hosts": [ + "dev01" + ], + "related.ip": [ + "1.2.3.4" + ], + "related.user": [ + "test_user" + ], + "service.type": "cisco", + "source.address": "1.2.3.4", + "source.geo.city_name": "Moscow", + "source.geo.continent_name": "Europe", + "source.geo.country_iso_code": "RU", + "source.geo.country_name": "Russia", + "source.geo.location.lat": 55.7527, + "source.geo.location.lon": 37.6172, + "source.geo.region_iso_code": "RU-MOW", + "source.geo.region_name": "Moscow", + "source.ip": "1.2.3.4", + "tags": [ + "cisco-asa", + "forwarded" + ], + "user.name": "test_user" + }, { "cisco.asa.destination_interface": "inside", "cisco.asa.message_id": "106023", @@ -4295,7 +4346,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12205, + "log.offset": 12414, "network.community_id": "1:Uo11LCySQ1S0c9jtHZVIb4Pm/2k=", "network.iana_number": 47, "observer.egress.interface.name": "inside", @@ -4346,7 +4397,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12341, + "log.offset": 12550, "network.community_id": "1:VA3lwFPBuRus2kxMs1BexFp+gp4=", "network.iana_number": 1, "network.transport": "icmp", @@ -4421,7 +4472,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12518, + "log.offset": 12727, "network.bytes": 4671944, "network.community_id": "1:rwM9yFUsWh6N2utKviU7S94dS9U=", "network.iana_number": 17, @@ -4482,7 +4533,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12677, + "log.offset": 12886, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", @@ -4523,7 +4574,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 12907, + "log.offset": 13116, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", @@ -4564,7 +4615,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 13142, + "log.offset": 13351, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", @@ -4605,7 +4656,7 @@ "host.hostname": "dev01", "input.type": "log", "log.level": "warning", - "log.offset": 13384, + "log.offset": 13593, "observer.hostname": "dev01", "observer.product": "asa", "observer.type": "firewall", diff --git a/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml b/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml index ee379156ce6..ee612bc54f8 100644 --- a/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml +++ b/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml @@ -651,6 +651,13 @@ processors: field: "message" description: "713049" pattern: "Group = %{}, IP = %{source.address}, Security negotiation complete for LAN-to-LAN Group (%{}) %{}, Inbound SPI = %{}, Outbound SPI = %{}" + ignore_failure: true + - dissect: + if: "ctx._temp_.cisco.message_id == '713049'" + field: "message" + description: "713049" + pattern: "Group = %{}, Username = %{user.name}, IP = %{source.address}, Security negotiation complete for User (%{}) %{}, Inbound SPI = %{}, Outbound SPI = %{}" + ignore_failure: true - grok: if: "ctx._temp_.cisco.message_id == '716002'" field: "message" From c77da381e2436a4f566fd4368d31ac8927304fb9 Mon Sep 17 00:00:00 2001 From: Dan Kortschak <90160302+efd6@users.noreply.github.com> Date: Tue, 12 Oct 2021 08:58:38 +1030 Subject: [PATCH 18/25] x-pack/filebeat/module/cisco: loosen time parsing and add group and session type capture (#28325) --- CHANGELOG.next.asciidoc | 1 + filebeat/docs/fields.asciidoc | 10 + .../module/cisco/asa/_meta/fields.yml | 6 + .../additional_messages.log-expected.json | 7 +- .../cisco/asa/test/asa_missing_groups.log | 5 + .../test/asa_missing_groups.log-expected.json | 192 ++++++++++++++++++ x-pack/filebeat/module/cisco/fields.go | 2 +- .../cisco/shared/ingest/asa-ftd-pipeline.yml | 4 +- 8 files changed, 222 insertions(+), 5 deletions(-) create mode 100644 x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log create mode 100644 x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index c61c57145f0..dd36d373d32 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -317,6 +317,7 @@ for a few releases. Please use other tools provided by Elastic to fetch data fro - Resolve issue with @timestamp for defender_atp. {pull}28272[28272] - Tolerate faults when Windows Event Log session is interrupted {issue}27947[27947] {pull}28191[28191] - Add support for username in cisco asa security negotiation logs {pull}26975[26975] +- Relax time parsing and capture group and session type in Cisco ASA module {issue}24710[24710] {pull}28325[28325] *Heartbeat* diff --git a/filebeat/docs/fields.asciidoc b/filebeat/docs/fields.asciidoc index d942723b5f0..8b238b89b6e 100644 --- a/filebeat/docs/fields.asciidoc +++ b/filebeat/docs/fields.asciidoc @@ -21573,6 +21573,16 @@ type: keyword SA type (remote access or L2L) +type: keyword + +-- + +*`cisco.asa.session_type`*:: ++ +-- +Session type (for example, IPsec or UDP) + + type: keyword -- diff --git a/x-pack/filebeat/module/cisco/asa/_meta/fields.yml b/x-pack/filebeat/module/cisco/asa/_meta/fields.yml index e321a6cf3a2..cad7404512d 100644 --- a/x-pack/filebeat/module/cisco/asa/_meta/fields.yml +++ b/x-pack/filebeat/module/cisco/asa/_meta/fields.yml @@ -199,3 +199,9 @@ default_field: false description: > SA type (remote access or L2L) + + - name: session_type + type: keyword + default_field: false + description: > + Session type (for example, IPsec or UDP) diff --git a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json index 6505354dafc..88cc9aee21c 100644 --- a/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json +++ b/x-pack/filebeat/module/cisco/asa/test/additional_messages.log-expected.json @@ -3235,6 +3235,7 @@ }, { "cisco.asa.message_id": "113019", + "cisco.asa.session_type": "LAN-to-LAN", "destination.address": "91.240.17.178", "destination.as.number": 201126, "destination.as.organization.name": "CDW Ltd", @@ -3254,13 +3255,14 @@ ], "event.code": 113019, "event.dataset": "cisco.asa", - "event.duration": 0, + "event.duration": 1936000000000, "event.end": "2021-04-27T02:03:03.000-02:00", "event.kind": "event", "event.module": "cisco", "event.original": "%ASA-4-113019: Group = 91.240.17.178, Username = 91.240.17.178, IP = 91.240.17.178, Session disconnected. Session Type: LAN-to-LAN, Duration: 0h:32m:16s, Bytes xmt: 297103, Bytes rcv: 1216163, Reason: User Requested", + "event.reason": "User Requested", "event.severity": 4, - "event.start": "2021-04-27T04:03:03.000Z", + "event.start": "2021-04-27T03:30:47.000Z", "event.timezone": "-02:00", "event.type": [ "info" @@ -3285,6 +3287,7 @@ ], "service.type": "cisco", "source.bytes": 297103, + "source.user.group.name": "91.240.17.178", "source.user.name": "91.240.17.178", "tags": [ "cisco-asa", diff --git a/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log new file mode 100644 index 00000000000..8e53e5f2d89 --- /dev/null +++ b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log @@ -0,0 +1,5 @@ +Jun 08 2020 12:59:57: %ASA-4-113019: Group = TheBeatles, Username = Ringo, IP = 234.56.12.87, Session disconnected. Session Type: AnyConnect-Parent, Duration: 0h:01m:52s, Bytes xmt: 32452, Bytes rcv: 0, Reason: User Requested +Oct 20 2019 15:42:53: %ASA-4-113019: Group = TheBeatles, Username = John, IP = 234.28.45.42, Session disconnected. Session Type: SSL, Duration: 2h:27m:34s, Bytes xmt: 45323434, Bytes rcv: 43252324, Reason: Idle Timeout +Oct 20 2019 15:42:54: %ASA-4-722037: Group User IP <83.212.241.149> SVC closing connection: DPD failure. +Aug 6 2020 11:01:37: %ASA-4-722037: Group User IP <234.63.56.32> SVC closing connection: Transport closing. +Aug 6 2020 11:01:38: %ASA-4-722051: Group User IP <234.24.156.94> IPv4 Address <234.56.47.98> IPv6 address <::> assigned to session diff --git a/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json new file mode 100644 index 00000000000..154add732eb --- /dev/null +++ b/x-pack/filebeat/module/cisco/asa/test/asa_missing_groups.log-expected.json @@ -0,0 +1,192 @@ +[ + { + "cisco.asa.message_id": "113019", + "cisco.asa.session_type": "AnyConnect-Parent", + "destination.address": "234.56.12.87", + "destination.bytes": 0, + "destination.ip": "234.56.12.87", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 113019, + "event.dataset": "cisco.asa", + "event.duration": 112000000000, + "event.end": "2020-06-08T12:59:57.000-02:00", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-113019: Group = TheBeatles, Username = Ringo, IP = 234.56.12.87, Session disconnected. Session Type: AnyConnect-Parent, Duration: 0h:01m:52s, Bytes xmt: 32452, Bytes rcv: 0, Reason: User Requested", + "event.reason": "User Requested", + "event.severity": 4, + "event.start": "2020-06-08T14:58:05.000Z", + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 0, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.ip": [ + "234.56.12.87" + ], + "related.user": [ + "Ringo" + ], + "service.type": "cisco", + "source.bytes": 32452, + "source.user.group.name": "TheBeatles", + "source.user.name": "Ringo", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.message_id": "113019", + "cisco.asa.session_type": "SSL", + "destination.address": "234.28.45.42", + "destination.bytes": 43252324, + "destination.ip": "234.28.45.42", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 113019, + "event.dataset": "cisco.asa", + "event.duration": 8854000000000, + "event.end": "2019-10-20T15:42:53.000-02:00", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-113019: Group = TheBeatles, Username = John, IP = 234.28.45.42, Session disconnected. Session Type: SSL, Duration: 2h:27m:34s, Bytes xmt: 45323434, Bytes rcv: 43252324, Reason: Idle Timeout", + "event.reason": "Idle Timeout", + "event.severity": 4, + "event.start": "2019-10-20T15:15:19.000Z", + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 226, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.ip": [ + "234.28.45.42" + ], + "related.user": [ + "John" + ], + "service.type": "cisco", + "source.bytes": 45323434, + "source.user.group.name": "TheBeatles", + "source.user.name": "John", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.message_id": "722037", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 722037, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-722037: Group User IP <83.212.241.149> SVC closing connection: DPD failure.", + "event.severity": 4, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 445, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "service.type": "cisco", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.message_id": "722037", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 722037, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-722037: Group User IP <234.63.56.32> SVC closing connection: Transport closing.", + "event.severity": 4, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 582, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "service.type": "cisco", + "tags": [ + "cisco-asa", + "forwarded" + ] + }, + { + "cisco.asa.assigned_ip": "234.56.47.98", + "cisco.asa.message_id": "722051", + "cisco.asa.webvpn.group_name": "GroupPolicy_TheBeatles", + "event.action": "firewall-rule", + "event.category": [ + "network" + ], + "event.code": 722051, + "event.dataset": "cisco.asa", + "event.kind": "event", + "event.module": "cisco", + "event.original": "%ASA-4-722051: Group User IP <234.24.156.94> IPv4 Address <234.56.47.98> IPv6 address <::> assigned to session", + "event.severity": 4, + "event.timezone": "-02:00", + "event.type": [ + "info" + ], + "fileset.name": "asa", + "input.type": "log", + "log.level": "warning", + "log.offset": 724, + "observer.product": "asa", + "observer.type": "firewall", + "observer.vendor": "Cisco", + "related.ip": [ + "234.24.156.94" + ], + "related.user": [ + "George" + ], + "service.type": "cisco", + "source.address": "234.24.156.94", + "source.ip": "234.24.156.94", + "source.user.name": "George", + "tags": [ + "cisco-asa", + "forwarded" + ] + } +] \ No newline at end of file diff --git a/x-pack/filebeat/module/cisco/fields.go b/x-pack/filebeat/module/cisco/fields.go index a1e5fe24bef..f8b4209c028 100644 --- a/x-pack/filebeat/module/cisco/fields.go +++ b/x-pack/filebeat/module/cisco/fields.go @@ -19,5 +19,5 @@ func init() { // AssetCisco returns asset data. // This is the base64 encoded zlib format compressed contents of module/cisco. func AssetCisco() string { - return "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" + return "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" } diff --git a/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml b/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml index ee612bc54f8..65a1889f034 100644 --- a/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml +++ b/x-pack/filebeat/module/cisco/shared/ingest/asa-ftd-pipeline.yml @@ -326,7 +326,7 @@ processors: if: "ctx._temp_.cisco.message_id == '113019'" field: "message" description: "113019" - pattern: "Group = %{}, Username = %{source.user.name}, IP = %{destination.address}, Session disconnected. Session Type: %{}, Duration: %{_temp_.duration_hms}, Bytes xmt: %{source.bytes}, Bytes rcv: %{destination.bytes}, Reason: %{message}" + pattern: "Group = %{source.user.group.name}, Username = %{source.user.name}, IP = %{destination.address}, Session disconnected. Session Type: %{_temp_.cisco.session_type}, Duration: %{_temp_.duration_hms}, Bytes xmt: %{source.bytes}, Bytes rcv: %{destination.bytes}, Reason: %{event.reason}" - grok: if: '["302013", "302015"].contains(ctx._temp_.cisco.message_id)' field: "message" @@ -1325,7 +1325,7 @@ processors: } else if (c == (char)':') { total = (total + cur) * 60; cur = 0; - } else { + } else if (c != (char)'h' && c == (char)'m' && c == (char)'s') { return 0; } } From a8c1ecd68b6e80db0252289c2fa3485598bef6cc Mon Sep 17 00:00:00 2001 From: Andrea Spacca Date: Tue, 12 Oct 2021 10:19:38 +0200 Subject: [PATCH 19/25] Redis: remove deprecated fields (#28246) * Redis: remove deprecated fields --- CHANGELOG.next.asciidoc | 1 + libbeat/kibana/testdata/extensive/fields.yml | 14 ----- .../testdata/extensive/metricbeat-6.ndjson | 2 +- metricbeat/docs/fields.asciidoc | 49 ++-------------- metricbeat/module/redis/fields.go | 2 +- metricbeat/module/redis/info/_meta/data.json | 56 +++++++++---------- metricbeat/module/redis/info/_meta/fields.yml | 34 +++-------- metricbeat/module/redis/info/data.go | 11 ++-- metricbeat/module/redis/info/info.go | 7 +-- metricbeat/module/redis/test_redis.py | 3 +- 10 files changed, 50 insertions(+), 129 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index dd36d373d32..c0e9dcd2a7a 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -118,6 +118,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Remove deprecated fields in Docker module. {issue}11835[11835] {pull}27933[27933] - Remove deprecated fields in Kafka module. {pull}27938[27938] - Remove deprecated config option default_region from aws module. {pull}28120[28120] +- Remove deprecated fields in Redis module. {issue}11835[11835] {pull}28246[28246] *Packetbeat* diff --git a/libbeat/kibana/testdata/extensive/fields.yml b/libbeat/kibana/testdata/extensive/fields.yml index d39183a8720..3f4e1c08f09 100644 --- a/libbeat/kibana/testdata/extensive/fields.yml +++ b/libbeat/kibana/testdata/extensive/fields.yml @@ -4943,16 +4943,6 @@ description: > Number of client connections (excluding connections from slaves). - - name: longest_output_list - type: long - description: > - Longest output list among current client connections. - - - name: biggest_input_buf - type: long - description: > - Biggest input buffer among current client connections. - - name: blocked type: long description: > @@ -5109,10 +5099,6 @@ type: long description: - - name: master_offset - type: long - description: - - name: backlog.active type: long description: diff --git a/libbeat/kibana/testdata/extensive/metricbeat-6.ndjson b/libbeat/kibana/testdata/extensive/metricbeat-6.ndjson index 73baec7c088..7b642031ece 100644 --- a/libbeat/kibana/testdata/extensive/metricbeat-6.ndjson +++ b/libbeat/kibana/testdata/extensive/metricbeat-6.ndjson @@ -1,2 +1,2 @@ -{ "attributes": { "fields": "[{\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.timezone\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"@timestamp\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"fields\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"error.message\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"error.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.provider\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.instance_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.instance_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.machine_type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.availability_zone\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.project_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.region\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.image\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.annotations\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.image\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.module\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.rtt\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.not_found\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.success\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.timeout\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.not_found\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.success\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.timeout\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.write.error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.write.success\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.write.timeout\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.available.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.free.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.hwm_breached\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.free.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.data.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.index.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.sindex.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.node.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.objects.master\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.objects.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.stop_writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.total_accesses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.total_kbytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.requests_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.bytes_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.bytes_per_request\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.workers.busy\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.workers.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.uptime.server_uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.uptime.uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.load\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.system\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.children_user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.children_system\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.async.writing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.async.keep_alive\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.async.closing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.load.1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.load.5\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.load.15\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.starting_up\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.reading_request\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.sending_reply\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.keepalive\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.dns_lookup\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.closing_connection\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.logging\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.gracefully_finishing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.idle_cleanup\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.open_slot\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.waiting_for_connection\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_disk.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_disk.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_disk.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.overall_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.timechecks.epoch\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.timechecks.round.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.timechecks.round.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.read_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.write_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.read_op_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.write_op_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.misplace.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.misplace.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.misplace.ratio\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.degraded.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.degraded.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.degraded.ratio\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.data_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.avail_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.total_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.used_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg_state.state_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg_state.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg_state.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.full\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.nearfull\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_up_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_in_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_in_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.epoch\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.available.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.health\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.available.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.total.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.used.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.last_updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.log.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.misc.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.sst.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.last_updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.used.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.data.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.disk.fetches\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.disk.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.quota.ram.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.quota.use.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.ops_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.item_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.quota.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.used.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.used.by_data.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.max_bucket_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.quota.index_memory.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.quota.memory.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.total.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.total.per_node.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.used.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.used.per_node.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.used.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.used.by_data.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.cmd_get\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.docs.disk_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.docs.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.spatial.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.spatial.disk_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.views.disk_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.views.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.cpu_utilization_rate.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.current_items.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.current_items.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.ep_bg_fetched\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.get_hits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.mcd_memory.allocated.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.mcd_memory.reserved.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.memory.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.memory.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.ops\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.swap.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.swap.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.uptime.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.vb_replica_curr_items\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.size.root_fs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.size.rw\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.kernel.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.kernel.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.system.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.system.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.user.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.user.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.total.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.diskio.reads\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.diskio.writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.diskio.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.failingstreak\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.end_date\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.start_date\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.output\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.exit_code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.id.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.id.parent\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.size.virtual\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.size.regular\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.paused\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.running\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.stopped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.images\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.fail.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.rss.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.rss.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.usage.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.usage.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.usage.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.interface\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.cluster.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.jvm.memory.heap_init.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.jvm.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.docs.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.docs.deleted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.segments.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.segments.memory.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.store.size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.peak.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.peak_max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.peak.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.peak_max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.peak.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.peak_max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.old.collection.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.young.collection.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.expvar.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.total_pause.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.total_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.next_gc_limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.cpu_fraction\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.sum.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.max.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.avg.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.obtained\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.stack\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.released\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.mallocs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.frees\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.allocated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"graphite.server.example\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.processes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.process_num\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.run_queue\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.tasks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.uptime.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.memory.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ulimit_n\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.compress.bps.in\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.compress.bps.out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.compress.bps.rate_limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.ssl.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.ssl.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.ssl.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.hard_max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.requests.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.sockets.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.requests.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pipes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pipes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pipes.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.session.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.session.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.session.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.frontend.key_rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.frontend.key_rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.frontend.session_reuse.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.backend.key_rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.backend.key_rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.cached_lookups\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.cache_misses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.zlib_mem_usage.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.zlib_mem_usage.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.idle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.weight\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.downtime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.component_type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.process_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.service_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.last_change\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.throttle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.selected.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.tracked.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.connection.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.connection.retried\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.connection.time.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.denied\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.queued.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.queued.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.redispatched\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.connection.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.time.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.denied\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.1xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.2xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.3xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.4xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.5xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.other\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.duration\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.health.last\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.health.fail\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.agent.last\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.failed\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.down\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.client.aborted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.aborted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.backup\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.bypassed.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.response.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.proxy.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.proxy.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.queue.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.queue.time.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.request.header\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.request.method\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.request.body\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.response.header\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.response.status_code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.response.body\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.broker.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.broker.address\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.topic\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.partition\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.offset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"kafka.consumergroup.meta\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.client.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.client.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.client.member_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.offset.newest\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.offset.oldest\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.leader\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.isr\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.replica\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.insync_replica\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.topic.error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.topic.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.broker.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.broker.address\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.uuid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.version.number\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.status.overall.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.metrics.concurrent_connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.metrics.requests.disconnects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.metrics.requests.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.usage.core.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.usage.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.inodes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.inodes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.workingset.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.pagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.majorpagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.message\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.reason\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.timestamp.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.resource_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.uid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.self_link\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.api_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.kind\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.resource_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.uid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.usage.core.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.usage.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.workingset.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.pagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.majorpagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.rx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.rx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.tx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.tx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.inodes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.inodes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.runtime.imagefs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.runtime.imagefs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.runtime.imagefs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.rx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.rx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.tx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.tx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.status.phase\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.status.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.status.restarts\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.limit.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.request.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.request.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.paused\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.desired\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.unavailable\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.status.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.status.unschedulable\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.allocatable.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.capacity.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.allocatable.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.pod.allocatable.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.pod.capacity.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.host_ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.status.phase\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.status.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.status.scheduled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.desired\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.observed\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.labeled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.container\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.cpu.usage.core.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.cpu.usage.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.workingset.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.pagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.majorpagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.inodes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.inodes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.uptime.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.threads\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.connections.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.connections.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.get.hits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.get.misses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.cmd.get\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.cmd.set\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.read.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.written.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.items.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.items.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.evictions\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.avg_obj_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.collections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.db\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.file_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.index_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.indexes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.num_extents\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.storage_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.ns_size_mb.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.data_file_version.major\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.data_file_version.minor\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.extent_free_list.num\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.extent_free_list.size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.uptime.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.local_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.regular\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.warning\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.msg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.rollovers\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.flushes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.total.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.average.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.last.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.last_finished\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.connections.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.connections.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.connections.total_created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.commits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.journaled.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.write_to_data_files.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.compression\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.commits_in_write_lock\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.early_commits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.dt.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.prep_log_buffer.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.write_to_journal.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.write_to_data_files.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.remap_private_view.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.commits.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.commits_in_write_lock.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.extra_info.heap_usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.extra_info.page_faults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.network.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.network.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.network.requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.insert\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.query\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.update\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.getmore\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.insert\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.query\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.update\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.getmore\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.bits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.resident.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.virtual.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.mapped.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.mapped_with_journal.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.write_backs_queued\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.storage_engine.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.write.out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.write.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.write.total_tickets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.read.out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.read.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.read.total_tickets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.maximum.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.dirty.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.pages.read\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.pages.write\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.pages.evicted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.write.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.max_file_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.flushes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.scans\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.syncs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.aborted.clients\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.aborted.connects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.binlog.cache.disk_use\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.binlog.cache.use\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.bytes.received\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.bytes.sent\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.cached\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.connected\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.running\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.created.tmp.disk_tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.created.tmp.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.created.tmp.tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.delayed.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.delayed.insert_threads\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.delayed.writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.flush_commands\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.max_used_connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.open.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.open.streams\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.open.tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.opened_tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.insert\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.select\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.update\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.accepts\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.handled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.reading\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.writing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.waiting\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.connections.accepted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.connections.queued\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.processes.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.processes.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.slow_requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.database.oid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.database.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.user.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.user.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.application_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.client.address\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.client.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.client.port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.backend_start\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.transaction_start\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.query_start\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.state_change\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.waiting\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.query\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.scheduled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.requested\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.times.write.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.times.sync.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.checkpoints\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.clean\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.clean_full\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.backend\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.backend_fsync\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.allocated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.stats_reset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.oid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.number_of_backends\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.transactions.commit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.transactions.rollback\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.read\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.hit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.time.read.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.time.write.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.returned\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.fetched\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.inserted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.deleted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.conflicts\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.temporary.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.temporary.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.deadlocks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.stats_reset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.notifications.queue_length\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.notifications.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.processes.open_fds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.storage.chunks_to_persist\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.disk.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.disk.free.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.fd.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.fd.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.gc.num.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.gc.reclaimed.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.file_handle.open_attempt.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.file_handle.open_attempt.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.read.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.read.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.reopen.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.seek.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.seek.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.sync.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.sync.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.write.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.write.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mem.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mem.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mnesia.disk.tx.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mnesia.ram.tx.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.msg.store_read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.msg.store_write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.proc.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.proc.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.processors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.queue.index.journal_write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.queue.index.read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.queue.index.write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.run.queue\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.socket.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.socket.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.vhost\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.durable\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.auto_delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.exclusive\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.node\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.arguments.max_priority\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.consumers.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.consumers.utilisation.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.total.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.ready.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.unacknowledged.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.persistent.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.memory.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.disk.reads.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.disk.writes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.clients.connected\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.clients.longest_output_list\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.clients.biggest_input_buf\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.clients.blocked\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cluster.enabled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.sys\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.sys_children\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.user_children\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.rss\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.peak\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.lua\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.allocator\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.loading\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.last_save.changes_since\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.in_progress\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.last_save.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.last_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.last_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.current_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.enabled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.in_progress\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.scheduled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.last_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.current_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.bgrewrite.last_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.write.last_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.role\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.connected_slaves\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.master_offset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.first_byte_offset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.histlen\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.git_sha1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.git_dirty\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.build_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.mode\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.os\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.arch_bits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.multiplexing_api\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.gcc_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.process_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.run_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.tcp_port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.hz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.lru_clock\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.config_file\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.connections.received\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.connections.rejected\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.commands_processed\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.net.input.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.net.output.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.instantaneous.ops_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.instantaneous.input_kbps\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.instantaneous.output_kbps\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.sync.full\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.sync.partial.ok\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.sync.partial.err\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keys.expired\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keys.evicted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keyspace.hits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keyspace.misses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.pubsub.channels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.pubsub.patterns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.latest_fork_usec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.migrate_cached_sockets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.avg_ttl\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.keys\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.expires\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.user.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.user.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.system.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.system.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.nice.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.nice.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.idle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.idle.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.iowait.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.iowait.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.irq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.irq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.softirq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.softirq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.steal.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.steal.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.user.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.system.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.nice.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.idle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.iowait.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.irq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.softirq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.steal.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.total.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.user.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.system.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.nice.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.idle.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.iowait.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.irq.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.softirq.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.steal.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.total.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.user.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.system.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.nice.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.idle.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.iowait.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.irq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.softirq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.steal.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.serial_number\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.read.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.write.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.read.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.write.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.io.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.read.request.merges_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.write.request.merges_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.read.request.per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.write.request.per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.read.per_sec.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.write.per_sec.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.request.avg_size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.queue.avg_size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.await\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.service_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.busy\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.device_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.mount_point\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.free_files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_size.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_size.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_size.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.5\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.15\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.norm.1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.norm.5\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.norm.15\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.actual.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.actual.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.actual.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.ppid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.pgid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.username\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cwd\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.env\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.total.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.total.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.system\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.total.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.rss.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.share\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.fd.open\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.fd.limit.soft\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.fd.limit.hard\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.cfs.period.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.cfs.quota.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.cfs.shares\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.rt.period.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.rt.runtime.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.stats.periods\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.stats.throttled.periods\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.stats.throttled.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.total.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.stats.user.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.stats.system.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.percpu\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.active_anon.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.active_file.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.cache.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.hierarchical_memory_limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.hierarchical_memsw_limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.inactive_anon.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.inactive_file.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.mapped_file.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.page_faults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.major_page_faults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.pages_in\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.pages_out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.rss_huge.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.swap.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.unevictable.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.total.ios\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.running\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.sleeping\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.stopped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.zombie\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.unknown\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.direction\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.family\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.local.ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.local.port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.etld_plus_one\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.host_error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.exe\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.user.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.user.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.uptime.duration.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.datacenter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.fstype\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.datacenter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.cpu.used.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.cpu.total.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.cpu.free.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.memory.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.memory.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.datacenter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.cpu.used.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.used.guest.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.used.host.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.total.guest.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.free.guest.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.custom_fields\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.approximate_data_size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.latency.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.ephemerals_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.followers\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.max_file_descriptor_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.latency.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.latency.min\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.num_alive_connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.open_file_descriptor_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.outstanding_requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.packets.received\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.packets.sent\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.pending_syncs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.server_state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.synced_followers\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.watch_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.znode_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_id\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"_type\", \"searchable\": true, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_index\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_score\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"number\", \"scripted\": false}]", +{ "attributes": { "fields": "[{\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.timezone\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"@timestamp\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"fields\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"error.message\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"error.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.provider\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.instance_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.instance_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.machine_type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.availability_zone\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.project_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.region\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.image\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.annotations\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.image\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.module\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.rtt\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"metricset.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.not_found\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.success\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.delete.timeout\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.not_found\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.success\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.read.timeout\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.write.error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.write.success\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.client.write.timeout\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.available.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.free.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.device.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.hwm_breached\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.free.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.data.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.index.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.sindex.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.memory.used.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.node.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.objects.master\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.objects.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"aerospike.namespace.stop_writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.total_accesses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.total_kbytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.requests_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.bytes_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.bytes_per_request\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.workers.busy\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.workers.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.uptime.server_uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.uptime.uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.load\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.system\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.children_user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.cpu.children_system\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.async.writing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.async.keep_alive\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.connections.async.closing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.load.1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.load.5\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.load.15\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.starting_up\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.reading_request\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.sending_reply\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.keepalive\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.dns_lookup\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.closing_connection\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.logging\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.gracefully_finishing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.idle_cleanup\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.open_slot\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.waiting_for_connection\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"apache.status.scoreboard.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_disk.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_disk.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_disk.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.overall_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.timechecks.epoch\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.timechecks.round.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_health.timechecks.round.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.read_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.write_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.read_op_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.traffic.write_op_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.misplace.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.misplace.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.misplace.ratio\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.degraded.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.degraded.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.degraded.ratio\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.data_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.avail_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.total_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg.used_bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg_state.state_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg_state.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.pg_state.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.full\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.nearfull\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_up_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_in_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.num_in_osds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.cluster_status.osd.epoch\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.available.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.health\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.available.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.total.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.used.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.last_updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.log.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.misc.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.sst.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.monitor_health.store_stats.last_updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"ceph.pool_disk.stats.used.kb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.data.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.disk.fetches\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.disk.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.quota.ram.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.quota.use.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.ops_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.bucket.item_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.quota.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.used.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.hdd.used.by_data.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.max_bucket_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.quota.index_memory.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.quota.memory.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.total.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.total.per_node.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.used.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.quota.used.per_node.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.used.value.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.cluster.ram.used.by_data.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.cmd_get\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.docs.disk_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.docs.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.spatial.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.spatial.disk_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.views.disk_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.couch.views.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.cpu_utilization_rate.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.current_items.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.current_items.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.ep_bg_fetched\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.get_hits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.mcd_memory.allocated.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.mcd_memory.reserved.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.memory.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.memory.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.ops\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.swap.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.swap.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.uptime.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"couchbase.node.vb_replica_curr_items\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.size.root_fs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.size.rw\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.kernel.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.kernel.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.system.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.system.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.user.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.user.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.cpu.total.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.diskio.reads\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.diskio.writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.diskio.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.failingstreak\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.end_date\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.start_date\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.output\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.healthcheck.event.exit_code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.id.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.id.parent\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.size.virtual\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.size.regular\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.image.tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.paused\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.running\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.stopped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.containers.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.info.images\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.fail.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.rss.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.rss.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.usage.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.usage.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.memory.usage.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.interface\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.in.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.network.out.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.cluster.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.jvm.memory.heap_init.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.jvm.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.docs.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.docs.deleted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.segments.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.segments.memory.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.indices.store.size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.peak.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.peak_max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.old.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.peak.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.peak_max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.young.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.peak.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.peak_max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.mem.pools.survivor.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.old.collection.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.young.collection.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.expvar.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.total_pause.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.total_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.next_gc_limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.cpu_fraction\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.sum.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.max.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.gc.pause.avg.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.obtained\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.stack\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.system.released\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.mallocs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.frees\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.allocated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"golang.heap.allocations.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"graphite.server.example\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.processes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.process_num\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.run_queue\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.tasks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.uptime.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.memory.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ulimit_n\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.compress.bps.in\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.compress.bps.out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.compress.bps.rate_limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.ssl.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.ssl.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.ssl.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.connection.hard_max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.requests.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.sockets.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.requests.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pipes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pipes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.pipes.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.session.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.session.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.session.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.frontend.key_rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.frontend.key_rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.frontend.session_reuse.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.backend.key_rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.backend.key_rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.cached_lookups\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.ssl.cache_misses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.zlib_mem_usage.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.zlib_mem_usage.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.info.idle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.weight\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.downtime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.component_type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.process_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.service_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.last_change\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.throttle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.selected.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.tracked.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.connection.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.connection.retried\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.connection.time.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.denied\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.queued.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.queued.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.redispatched\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.connection.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.request.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.time.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.denied\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.1xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.2xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.3xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.4xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.5xx\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.response.http.other\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.rate.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.rate.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.session.rate.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.duration\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.health.last\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.health.fail\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.agent.last\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.failed\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.check.down\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.client.aborted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.aborted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.server.backup\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.bypassed.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.compressor.response.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.proxy.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.proxy.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.queue.limit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"haproxy.stat.queue.time.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.request.header\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.request.method\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.request.body\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.response.header\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.response.status_code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"http.response.body\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.broker.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.broker.address\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.topic\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.partition\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.offset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"kafka.consumergroup.meta\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.client.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.client.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.consumergroup.client.member_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.offset.newest\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.offset.oldest\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.leader\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.isr\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.replica\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.insync_replica\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.partition.error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.topic.error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.topic.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.broker.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kafka.partition.broker.address\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.uuid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.version.number\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.status.overall.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.metrics.concurrent_connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.metrics.requests.disconnects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kibana.status.metrics.requests.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.usage.core.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.usage.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.inodes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.inodes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.logs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.workingset.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.pagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.majorpagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.rootfs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.message\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.reason\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.timestamp.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.resource_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.uid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.metadata.self_link\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.api_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.kind\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.resource_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.event.involved_object.uid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.usage.core.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.usage.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.workingset.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.pagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.majorpagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.rx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.rx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.tx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.network.tx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.inodes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.fs.inodes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.runtime.imagefs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.runtime.imagefs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.runtime.imagefs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.rx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.rx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.tx.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.network.tx.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.status.phase\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.status.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.status.restarts\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.limit.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.cpu.request.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.memory.request.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.paused\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.desired\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.unavailable\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.deployment.replicas.updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.status.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.status.unschedulable\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.allocatable.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.cpu.capacity.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.allocatable.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.memory.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.pod.allocatable.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.node.pod.capacity.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.host_ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.status.phase\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.status.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.status.scheduled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.desired\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.ready\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.observed\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.replicaset.replicas.labeled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.container\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.cpu.usage.core.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.cpu.usage.nanocores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.workingset.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.pagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.system.memory.majorpagefaults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.capacity.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.available.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.inodes.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.inodes.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.volume.fs.inodes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.uptime.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.threads\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.connections.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.connections.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.get.hits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.get.misses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.cmd.get\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.cmd.set\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.read.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.written.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.items.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.items.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"memcached.stats.evictions\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.avg_obj_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.collections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.data_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.db\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.file_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.index_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.indexes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.num_extents\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.objects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.storage_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.ns_size_mb.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.data_file_version.major\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.data_file_version.minor\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.extent_free_list.num\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.dbstats.extent_free_list.size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.uptime.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.local_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.regular\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.warning\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.msg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.asserts.rollovers\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.flushes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.total.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.average.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.last.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.background_flushing.last_finished\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.connections.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.connections.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.connections.total_created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.commits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.journaled.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.write_to_data_files.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.compression\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.commits_in_write_lock\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.early_commits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.dt.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.prep_log_buffer.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.write_to_journal.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.write_to_data_files.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.remap_private_view.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.commits.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.journaling.times.commits_in_write_lock.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.extra_info.heap_usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.extra_info.page_faults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.network.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.network.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.network.requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.insert\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.query\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.update\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.getmore\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.insert\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.query\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.update\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.getmore\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.opcounters_replicated.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.bits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.resident.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.virtual.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.mapped.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.memory.mapped_with_journal.mb\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.write_backs_queued\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.storage_engine.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.write.out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.write.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.write.total_tickets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.read.out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.read.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.concurrent_transactions.read.total_tickets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.maximum.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.dirty.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.pages.read\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.pages.write\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.cache.pages.evicted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.write.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.max_file_size.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.flushes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.scans\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mongodb.status.wired_tiger.log.syncs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.aborted.clients\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.aborted.connects\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.binlog.cache.disk_use\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.binlog.cache.use\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.bytes.received\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.bytes.sent\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.cached\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.created\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.connected\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.threads.running\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.created.tmp.disk_tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.created.tmp.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.created.tmp.tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.delayed.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.delayed.insert_threads\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.delayed.writes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.flush_commands\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.max_used_connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.open.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.open.streams\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.open.tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.opened_tables\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.insert\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.select\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"mysql.status.command.update\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.accepts\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.handled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.current\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.reading\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.writing\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"nginx.stubstatus.waiting\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.connections.accepted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.connections.queued\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.processes.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.processes.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"php_fpm.pool.slow_requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.database.oid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.database.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.user.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.user.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.application_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.client.address\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.client.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.client.port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.backend_start\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.transaction_start\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.query_start\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.state_change\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.waiting\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.activity.query\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.scheduled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.requested\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.times.write.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.checkpoints.times.sync.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.checkpoints\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.clean\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.clean_full\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.backend\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.backend_fsync\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.buffers.allocated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.bgwriter.stats_reset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.oid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.number_of_backends\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.transactions.commit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.transactions.rollback\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.read\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.hit\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.time.read.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.blocks.time.write.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.returned\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.fetched\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.inserted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.updated\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.rows.deleted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.conflicts\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.temporary.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.temporary.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.deadlocks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"postgresql.database.stats_reset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.notifications.queue_length\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.notifications.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.processes.open_fds\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"prometheus.stats.storage.chunks_to_persist\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.disk.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.disk.free.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.fd.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.fd.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.gc.num.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.gc.reclaimed.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.file_handle.open_attempt.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.file_handle.open_attempt.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.read.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.read.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.reopen.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.seek.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.seek.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.sync.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.sync.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.write.avg.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.write.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.io.write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mem.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mem.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mnesia.disk.tx.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.mnesia.ram.tx.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.msg.store_read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.msg.store_write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.proc.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.proc.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.processors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.queue.index.journal_write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.queue.index.read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.queue.index.write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.run.queue\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.socket.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.socket.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.node.uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.vhost\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.durable\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.auto_delete\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.exclusive\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.node\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.arguments.max_priority\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.consumers.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.consumers.utilisation.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.total.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.ready.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.unacknowledged.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.messages.persistent.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.memory.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.disk.reads.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"rabbitmq.queue.disk.writes.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.clients.connected\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.clients.blocked\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cluster.enabled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.sys\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.sys_children\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.cpu.used.user_children\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.value\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.rss\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.peak\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.used.lua\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.memory.allocator\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.loading\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.last_save.changes_since\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.in_progress\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.last_save.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.last_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.last_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.rdb.bgsave.current_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.enabled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.in_progress\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.scheduled\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"boolean\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.last_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.rewrite.current_time.sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.bgrewrite.last_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.persistence.aof.write.last_status\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.role\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.connected_slaves\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.active\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.first_byte_offset\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.replication.backlog.histlen\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.git_sha1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.git_dirty\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.build_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.mode\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.os\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.arch_bits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.multiplexing_api\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.gcc_version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.process_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.run_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.tcp_port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.uptime\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.hz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.lru_clock\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.server.config_file\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.connections.received\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.connections.rejected\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.commands_processed\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.net.input.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.net.output.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.instantaneous.ops_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.instantaneous.input_kbps\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.instantaneous.output_kbps\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.sync.full\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.sync.partial.ok\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.sync.partial.err\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keys.expired\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keys.evicted\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keyspace.hits\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.keyspace.misses\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.pubsub.channels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.pubsub.patterns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.latest_fork_usec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.info.stats.migrate_cached_sockets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.avg_ttl\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.keys\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"redis.keyspace.expires\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.user.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.user.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.system.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.system.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.nice.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.nice.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.idle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.idle.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.iowait.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.iowait.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.irq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.irq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.softirq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.softirq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.steal.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.core.steal.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.user.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.system.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.nice.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.idle.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.iowait.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.irq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.softirq.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.steal.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.total.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.user.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.system.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.nice.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.idle.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.iowait.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.irq.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.softirq.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.steal.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.total.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.user.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.system.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.nice.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.idle.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.iowait.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.irq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.softirq.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.cpu.steal.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.serial_number\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.read.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.write.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.read.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.write.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.read.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.write.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.io.time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.read.request.merges_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.write.request.merges_per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.read.request.per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.write.request.per_sec\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.read.per_sec.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.write.per_sec.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.request.avg_size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.queue.avg_size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.await\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.service_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.diskio.iostat.busy\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.available\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.device_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.mount_point\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.free_files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.filesystem.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_files\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_size.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_size.used\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.fsstat.total_size.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.5\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.15\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.norm.1\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.norm.5\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.norm.15\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.load.cores\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.actual.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.actual.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.actual.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.free\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.memory.swap.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.packets\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.errors\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.in.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.network.out.dropped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.ppid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.pgid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.username\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cwd\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.env\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.user\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.total.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.total.norm.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.system\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.total.ticks\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cpu.start_time\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.rss.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.memory.share\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.fd.open\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.fd.limit.soft\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.fd.limit.hard\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.cfs.period.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.cfs.quota.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.cfs.shares\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.rt.period.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.rt.runtime.us\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.stats.periods\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.stats.throttled.periods\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpu.stats.throttled.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.total.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.stats.user.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.stats.system.ns\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.cpuacct.percpu\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.mem.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.memsw.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.usage.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.usage.max.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.kmem_tcp.failures\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.active_anon.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.active_file.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.cache.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.hierarchical_memory_limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.hierarchical_memsw_limit.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.inactive_anon.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.inactive_file.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.mapped_file.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.page_faults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.major_page_faults\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.pages_in\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.pages_out\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.rss.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.rss_huge.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.swap.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.memory.stats.unevictable.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.path\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.cgroup.blkio.total.ios\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.total\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.running\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.idle\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.sleeping\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.stopped\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.zombie\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.process.summary.unknown\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.direction\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.family\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.local.ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.local.port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.ip\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"ip\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.port\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.host\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.etld_plus_one\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.remote.host_error\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.pid\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.command\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.cmdline\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.process.exe\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.user.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.socket.user.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"system.uptime.duration.ms\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.datacenter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.fstype\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.datastore.capacity.used.pct\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.datacenter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.cpu.used.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.cpu.total.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.cpu.free.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.memory.used.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.memory.total.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.host.memory.free.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.datacenter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.cpu.used.mhz\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.used.guest.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.used.host.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.total.guest.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.memory.free.guest.bytes\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"vsphere.virtualmachine.custom_fields\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.approximate_data_size\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.latency.avg\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.ephemerals_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.followers\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.max_file_descriptor_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.latency.max\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.latency.min\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.num_alive_connections\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.open_file_descriptor_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.outstanding_requests\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.packets.received\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.packets.sent\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.pending_syncs\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.server_state\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.synced_followers\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.watch_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"zookeeper.mntr.znode_count\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_id\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"_type\", \"searchable\": true, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_index\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_score\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"number\", \"scripted\": false}]", "fieldFormatMap": "{\"ceph.cluster_status.pg.data_bytes\": {\"id\": \"bytes\"}, \"system.filesystem.used.pct\": {\"id\": \"percent\"}, \"ceph.cluster_status.degraded.ratio\": {\"id\": \"percent\"}, \"system.cpu.nice.norm.pct\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.mapped_file.bytes\": {\"id\": \"bytes\"}, \"system.cpu.nice.pct\": {\"id\": \"percent\"}, \"system.process.memory.share\": {\"id\": \"bytes\"}, \"couchbase.node.couch.docs.disk_size.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.logs.used.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.memory.allocatable.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.rootfs.used.bytes\": {\"id\": \"bytes\"}, \"aerospike.namespace.device.used.bytes\": {\"id\": \"bytes\"}, \"system.core.nice.pct\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.cache.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.memory.usage.bytes\": {\"id\": \"bytes\"}, \"kubernetes.pod.network.tx.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.memory.rss.bytes\": {\"id\": \"bytes\"}, \"system.memory.used.pct\": {\"id\": \"percent\"}, \"ceph.cluster_disk.used.bytes\": {\"id\": \"bytes\"}, \"docker.cpu.user.pct\": {\"id\": \"percent\"}, \"ceph.cluster_disk.available.bytes\": {\"id\": \"bytes\"}, \"couchbase.node.mcd_memory.allocated.bytes\": {\"id\": \"bytes\"}, \"system.memory.actual.used.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.fs.used.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.rootfs.capacity.bytes\": {\"id\": \"bytes\"}, \"system.cpu.irq.pct\": {\"id\": \"percent\"}, \"kubernetes.container.logs.capacity.bytes\": {\"id\": \"bytes\"}, \"couchbase.bucket.quota.ram.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.old.used.bytes\": {\"id\": \"bytes\"}, \"vsphere.virtualmachine.memory.total.guest.bytes\": {\"id\": \"bytes\"}, \"system.process.cpu.total.pct\": {\"id\": \"percent\"}, \"kubernetes.node.fs.capacity.bytes\": {\"id\": \"bytes\"}, \"vsphere.host.memory.used.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.jvm.memory.heap_init.bytes\": {\"id\": \"bytes\"}, \"aerospike.namespace.memory.used.sindex.bytes\": {\"id\": \"bytes\"}, \"mongodb.dbstats.extent_free_list.size.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.wired_tiger.cache.used.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.wired_tiger.log.max_file_size.bytes\": {\"id\": \"bytes\"}, \"system.core.idle.pct\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.active_anon.bytes\": {\"id\": \"bytes\"}, \"system.core.user.pct\": {\"id\": \"percent\"}, \"kubernetes.volume.fs.available.bytes\": {\"id\": \"bytes\"}, \"system.network.out.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.network.in.bytes\": {\"id\": \"bytes\"}, \"rabbitmq.node.io.read.bytes\": {\"id\": \"bytes\"}, \"system.process.cpu.total.norm.pct\": {\"id\": \"percent\"}, \"system.network.in.bytes\": {\"id\": \"bytes\"}, \"haproxy.stat.throttle.pct\": {\"id\": \"percent\"}, \"vsphere.datastore.capacity.used.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.indices.segments.memory.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.young.used.bytes\": {\"id\": \"bytes\"}, \"aerospike.namespace.device.free.pct\": {\"id\": \"percent\"}, \"system.cpu.system.norm.pct\": {\"id\": \"percent\"}, \"haproxy.stat.compressor.out.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.hdd.quota.total.bytes\": {\"id\": \"bytes\"}, \"system.memory.total\": {\"id\": \"bytes\"}, \"system.memory.free\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.stats.active_file.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.wired_tiger.log.write.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.kmem.limit.bytes\": {\"id\": \"bytes\"}, \"system.filesystem.total\": {\"id\": \"bytes\"}, \"redis.info.memory.used.lua\": {\"id\": \"bytes\"}, \"system.memory.swap.free\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.kmem.usage.max.bytes\": {\"id\": \"bytes\"}, \"aerospike.namespace.memory.used.index.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.wired_tiger.cache.maximum.bytes\": {\"id\": \"bytes\"}, \"vsphere.host.memory.total.bytes\": {\"id\": \"bytes\"}, \"ceph.monitor_health.store_stats.misc.bytes\": {\"id\": \"bytes\"}, \"mongodb.dbstats.file_size.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.memory.workingset.bytes\": {\"id\": \"bytes\"}, \"system.fsstat.total_size.total\": {\"id\": \"bytes\"}, \"kubernetes.node.runtime.imagefs.used.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.hdd.free.bytes\": {\"id\": \"bytes\"}, \"aerospike.namespace.device.available.pct\": {\"id\": \"percent\"}, \"vsphere.host.memory.free.bytes\": {\"id\": \"bytes\"}, \"ceph.monitor_health.store_stats.sst.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.stats.rss.bytes\": {\"id\": \"bytes\"}, \"golang.heap.allocations.total\": {\"id\": \"bytes\"}, \"golang.heap.system.stack\": {\"id\": \"bytes\"}, \"@timestamp\": {\"id\": \"date\"}, \"kubernetes.node.runtime.imagefs.available.bytes\": {\"id\": \"bytes\"}, \"ceph.cluster_status.misplace.ratio\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.inactive_anon.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.ram.used.by_data.bytes\": {\"id\": \"bytes\"}, \"system.cpu.idle.pct\": {\"id\": \"percent\"}, \"kubernetes.node.memory.workingset.bytes\": {\"id\": \"bytes\"}, \"system.cpu.steal.pct\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.inactive_file.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.kmem.usage.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.old.peak.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.old.peak_max.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.memory.rss.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.memsw.limit.bytes\": {\"id\": \"bytes\"}, \"haproxy.stat.compressor.bypassed.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.memory.usage.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.ram.quota.total.per_node.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.memory.available.bytes\": {\"id\": \"bytes\"}, \"haproxy.info.memory.max.bytes\": {\"id\": \"bytes\"}, \"rabbitmq.queue.memory.bytes\": {\"id\": \"bytes\"}, \"ceph.cluster_status.traffic.read_bytes\": {\"id\": \"bytes\"}, \"haproxy.stat.in.bytes\": {\"id\": \"bytes\"}, \"vsphere.virtualmachine.memory.free.guest.bytes\": {\"id\": \"bytes\"}, \"couchbase.bucket.memory.used.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.survivor.used.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.kmem_tcp.usage.bytes\": {\"id\": \"bytes\"}, \"golang.heap.allocations.active\": {\"id\": \"bytes\"}, \"system.cpu.steal.norm.pct\": {\"id\": \"percent\"}, \"kubernetes.node.fs.available.bytes\": {\"id\": \"bytes\"}, \"vsphere.datastore.capacity.free.bytes\": {\"id\": \"bytes\"}, \"system.core.iowait.pct\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.hierarchical_memory_limit.bytes\": {\"id\": \"bytes\"}, \"system.cpu.irq.norm.pct\": {\"id\": \"percent\"}, \"vsphere.datastore.capacity.total.bytes\": {\"id\": \"bytes\"}, \"system.memory.used.bytes\": {\"id\": \"bytes\"}, \"system.cpu.total.norm.pct\": {\"id\": \"percent\"}, \"couchbase.cluster.ram.quota.used.value.bytes\": {\"id\": \"bytes\"}, \"system.diskio.read.bytes\": {\"id\": \"bytes\"}, \"system.memory.swap.used.bytes\": {\"id\": \"bytes\"}, \"vsphere.datastore.capacity.used.pct\": {\"id\": \"percent\"}, \"vsphere.virtualmachine.memory.used.host.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.memory.limit.bytes\": {\"id\": \"bytes\"}, \"docker.memory.limit\": {\"id\": \"bytes\"}, \"kubernetes.container.memory.available.bytes\": {\"id\": \"bytes\"}, \"mongodb.dbstats.storage_size.bytes\": {\"id\": \"bytes\"}, \"couchbase.bucket.disk.used.bytes\": {\"id\": \"bytes\"}, \"system.cpu.softirq.norm.pct\": {\"id\": \"percent\"}, \"ceph.cluster_status.pg.total_bytes\": {\"id\": \"bytes\"}, \"rabbitmq.node.mem.limit.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.hdd.total.bytes\": {\"id\": \"bytes\"}, \"docker.memory.rss.total\": {\"id\": \"bytes\"}, \"couchbase.cluster.ram.quota.total.value.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.network.out.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.survivor.peak.bytes\": {\"id\": \"bytes\"}, \"haproxy.stat.compressor.in.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.old.max.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.ram.used.value.bytes\": {\"id\": \"bytes\"}, \"system.cpu.user.pct\": {\"id\": \"percent\"}, \"golang.heap.system.released\": {\"id\": \"bytes\"}, \"ceph.cluster_disk.total.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.runtime.imagefs.capacity.bytes\": {\"id\": \"bytes\"}, \"system.uptime.duration.ms\": {\"params\": {\"inputFormat\": \"milliseconds\"}, \"id\": \"duration\"}, \"kubernetes.node.memory.capacity.bytes\": {\"id\": \"bytes\"}, \"rabbitmq.node.disk.free.limit.bytes\": {\"id\": \"bytes\"}, \"system.core.system.pct\": {\"id\": \"percent\"}, \"couchbase.cluster.hdd.used.by_data.bytes\": {\"id\": \"bytes\"}, \"system.cpu.iowait.norm.pct\": {\"id\": \"percent\"}, \"system.cpu.system.pct\": {\"id\": \"percent\"}, \"docker.network.in.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.stats.hierarchical_memsw_limit.bytes\": {\"id\": \"bytes\"}, \"system.filesystem.free\": {\"id\": \"bytes\"}, \"system.memory.swap.used.pct\": {\"id\": \"percent\"}, \"ceph.monitor_health.store_stats.total.bytes\": {\"id\": \"bytes\"}, \"system.core.irq.pct\": {\"id\": \"percent\"}, \"system.cpu.softirq.pct\": {\"id\": \"percent\"}, \"haproxy.stat.compressor.response.bytes\": {\"id\": \"bytes\"}, \"system.cpu.idle.norm.pct\": {\"id\": \"percent\"}, \"system.process.memory.rss.pct\": {\"id\": \"percent\"}, \"kubernetes.system.memory.workingset.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.memory.request.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.hdd.used.value.bytes\": {\"id\": \"bytes\"}, \"kubernetes.system.memory.usage.bytes\": {\"id\": \"bytes\"}, \"ceph.monitor_health.store_stats.log.bytes\": {\"id\": \"bytes\"}, \"kubernetes.volume.fs.capacity.bytes\": {\"id\": \"bytes\"}, \"vsphere.virtualmachine.memory.used.guest.bytes\": {\"id\": \"bytes\"}, \"couchbase.node.couch.docs.data_size.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.wired_tiger.log.size.bytes\": {\"id\": \"bytes\"}, \"rabbitmq.node.gc.reclaimed.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.mem.usage.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.survivor.max.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.ram.quota.used.per_node.bytes\": {\"id\": \"bytes\"}, \"golang.heap.allocations.allocated\": {\"id\": \"bytes\"}, \"system.core.steal.pct\": {\"id\": \"percent\"}, \"golang.heap.gc.next_gc_limit\": {\"id\": \"bytes\"}, \"rabbitmq.queue.consumers.utilisation.pct\": {\"id\": \"percent\"}, \"docker.cpu.total.pct\": {\"id\": \"percent\"}, \"docker.memory.usage.pct\": {\"id\": \"percent\"}, \"mysql.status.bytes.received\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.kmem_tcp.usage.max.bytes\": {\"id\": \"bytes\"}, \"redis.info.memory.used.peak\": {\"id\": \"bytes\"}, \"aerospike.namespace.memory.free.pct\": {\"id\": \"percent\"}, \"kubernetes.volume.fs.used.bytes\": {\"id\": \"bytes\"}, \"system.cpu.iowait.pct\": {\"id\": \"percent\"}, \"couchbase.bucket.data.used.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.wired_tiger.cache.dirty.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.stats.rss_huge.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.memsw.usage.bytes\": {\"id\": \"bytes\"}, \"kubernetes.pod.network.rx.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.blkio.total.bytes\": {\"id\": \"bytes\"}, \"rabbitmq.node.disk.free.bytes\": {\"id\": \"bytes\"}, \"system.filesystem.used.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.network.rx.bytes\": {\"id\": \"bytes\"}, \"system.diskio.iostat.read.per_sec.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.mem.usage.max.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.young.peak_max.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.memsw.usage.max.bytes\": {\"id\": \"bytes\"}, \"system.diskio.write.bytes\": {\"id\": \"bytes\"}, \"ceph.cluster_status.pg.used_bytes\": {\"id\": \"bytes\"}, \"haproxy.info.idle.pct\": {\"id\": \"percent\"}, \"system.process.memory.size\": {\"id\": \"bytes\"}, \"kubernetes.system.memory.rss.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.kmem_tcp.limit.bytes\": {\"id\": \"bytes\"}, \"golang.heap.allocations.idle\": {\"id\": \"bytes\"}, \"docker.network.out.bytes\": {\"id\": \"bytes\"}, \"mongodb.status.extra_info.heap_usage.bytes\": {\"id\": \"bytes\"}, \"system.cpu.total.pct\": {\"id\": \"percent\"}, \"system.process.cgroup.memory.stats.swap.bytes\": {\"id\": \"bytes\"}, \"golang.heap.system.total\": {\"id\": \"bytes\"}, \"system.fsstat.total_size.free\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.young.max.bytes\": {\"id\": \"bytes\"}, \"docker.memory.usage.total\": {\"id\": \"bytes\"}, \"mongodb.dbstats.avg_obj_size.bytes\": {\"id\": \"bytes\"}, \"couchbase.cluster.ram.total.bytes\": {\"id\": \"bytes\"}, \"kubernetes.container.logs.available.bytes\": {\"id\": \"bytes\"}, \"system.diskio.iostat.write.per_sec.bytes\": {\"id\": \"bytes\"}, \"system.filesystem.available\": {\"id\": \"bytes\"}, \"aerospike.namespace.memory.used.data.bytes\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.stats.unevictable.bytes\": {\"id\": \"bytes\"}, \"kubernetes.node.network.tx.bytes\": {\"id\": \"bytes\"}, \"ceph.pool_disk.stats.used.bytes\": {\"id\": \"bytes\"}, \"haproxy.stat.out.bytes\": {\"id\": \"bytes\"}, \"system.memory.actual.free\": {\"id\": \"bytes\"}, \"system.cpu.user.norm.pct\": {\"id\": \"percent\"}, \"system.process.memory.rss.bytes\": {\"id\": \"bytes\"}, \"ceph.pool_disk.stats.available.bytes\": {\"id\": \"bytes\"}, \"system.fsstat.total_size.used\": {\"id\": \"bytes\"}, \"system.process.cgroup.memory.mem.limit.bytes\": {\"id\": \"bytes\"}, \"docker.cpu.kernel.pct\": {\"id\": \"percent\"}, \"system.memory.swap.total\": {\"id\": \"bytes\"}, \"ceph.cluster_status.traffic.write_bytes\": {\"id\": \"bytes\"}, \"rabbitmq.node.io.write.bytes\": {\"id\": \"bytes\"}, \"system.memory.actual.used.pct\": {\"id\": \"percent\"}, \"mongodb.dbstats.data_size.bytes\": {\"id\": \"bytes\"}, \"couchbase.bucket.quota.use.pct\": {\"id\": \"percent\"}, \"haproxy.info.ssl.frontend.session_reuse.pct\": {\"id\": \"percent\"}, \"mysql.status.bytes.sent\": {\"id\": \"bytes\"}, \"docker.memory.rss.pct\": {\"id\": \"percent\"}, \"aerospike.namespace.memory.used.total.bytes\": {\"id\": \"bytes\"}, \"ceph.cluster_status.pg.avail_bytes\": {\"id\": \"bytes\"}, \"redis.info.memory.used.value\": {\"id\": \"bytes\"}, \"system.core.softirq.pct\": {\"id\": \"percent\"}, \"redis.info.memory.used.rss\": {\"id\": \"bytes\"}, \"kubernetes.container.rootfs.available.bytes\": {\"id\": \"bytes\"}, \"docker.cpu.system.pct\": {\"id\": \"percent\"}, \"elasticsearch.node.stats.jvm.mem.pools.young.peak.bytes\": {\"id\": \"bytes\"}, \"elasticsearch.node.stats.jvm.mem.pools.survivor.peak_max.bytes\": {\"id\": \"bytes\"}, \"aerospike.namespace.device.total.bytes\": {\"id\": \"bytes\"}, \"docker.memory.usage.max\": {\"id\": \"bytes\"}, \"mongodb.dbstats.index_size.bytes\": {\"id\": \"bytes\"}, \"golang.heap.system.obtained\": {\"id\": \"bytes\"}}", "timeFieldName": "@timestamp", "title": "metricbeat-*" }, "version": "7.0.0-alpha1", "type": "index-pattern", "id": "metricbeat-*" } diff --git a/metricbeat/docs/fields.asciidoc b/metricbeat/docs/fields.asciidoc index 05d1111c9d6..509cdcbdd08 100644 --- a/metricbeat/docs/fields.asciidoc +++ b/metricbeat/docs/fields.asciidoc @@ -54215,19 +54215,6 @@ Redis client stats. Number of client connections (excluding connections from slaves). -type: long - --- - -*`redis.info.clients.longest_output_list`*:: -+ --- - -deprecated:[6.5.0] - -Longest output list among current client connections (replaced by max_output_buffer). - - type: long -- @@ -54238,19 +54225,6 @@ type: long Longest output list among current client connections. -type: long - --- - -*`redis.info.clients.biggest_input_buf`*:: -+ --- - -deprecated:[6.5.0] - -Biggest input buffer among current client connections (replaced by max_input_buffer). - - type: long -- @@ -54385,7 +54359,7 @@ format: bytes *`redis.info.memory.used.lua`*:: + -- -Used memory by the Lua engine. +Used memory by the Lua engine. type: long @@ -54397,7 +54371,7 @@ format: bytes *`redis.info.memory.used.dataset`*:: + -- -The size in bytes of the dataset +The size in bytes of the dataset type: long @@ -54642,7 +54616,7 @@ format: duration *`redis.info.persistence.rdb.copy_on_write.last_size`*:: + -- -The size in bytes of copy-on-write allocations during the last RBD save operation +The size in bytes of copy-on-write allocations during the last RBD save operation type: long @@ -54771,7 +54745,7 @@ format: bytes *`redis.info.persistence.aof.size.current`*:: + -- -AOF current file size +AOF current file size type: long @@ -54835,19 +54809,6 @@ type: keyword Number of connected slaves -type: long - --- - -*`redis.info.replication.master_offset`*:: -+ --- - -deprecated:[6.5] - -The server's current replication offset - - type: long -- @@ -54877,7 +54838,7 @@ format: bytes *`redis.info.replication.backlog.first_byte_offset`*:: + -- -The master offset of the replication backlog buffer +The master offset of the replication backlog buffer type: long diff --git a/metricbeat/module/redis/fields.go b/metricbeat/module/redis/fields.go index c26955d0c56..6a66fd4986a 100644 --- a/metricbeat/module/redis/fields.go +++ b/metricbeat/module/redis/fields.go @@ -32,5 +32,5 @@ func init() { // AssetRedis returns asset data. // This is the base64 encoded zlib format compressed contents of module/redis. func AssetRedis() string { - return "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" + return "eJzsXF+P27ayf8+nGOQ+dAvsKvc+3JdFUSDbJD1B0yTYTXDQJy1FjWzWFKmSlDfupz8gKdmylpTkteVsgeOHBGtLnN8M5y855BWscHMNCnOmXwAYZjhew8tb+/fLFwA5aqpYZZgU1/DzCwAA9xuUaBSjGqjkHKnBHAolS/9j8gJAIUei8RoW5AVAwZDn+tq9fwWClLijaT9mU9lHlayr5psAYfu5d2/dA5XCECY0mCUCE4VUJbHPAhE5aEMM08bC2wdlP10oXTh2kO2XIUQDqBwyO8B0YApNrQTmkG3co/fvP777ZF8vSyLypDP0viTbT5+NLiuUMxRG7/0W42iEq92E+0EdCzrpPRMCswdICuGU5NETLSwuxSLw4wgy+/lYlxkqkEWLsCHGpNBwgd8or3MmFntfO63QnKxR/9jnZYe6JN9SWZuqNmlWFwWqGdB/kGKB2oCnA5xpA6SUFm+tlGPnEVfDiJmYFfANWzjAjgx4MqOI4UIKb+/w/8n/Dog845KuzqImGioUTjGsbXrCTk0I53Bx8+Hzp8+XcHO7++/D5693/+pAj1herc0juR9teW7Qrjc51ABRkIwPyDWTkiMRTxPte5EzSgxan0eM82Y94LoFMCa+qj6t6H75/NV7rAPlVWvME73pv7ZDpCnhmKcFl8Q8TWp3G22wdAipFLoud7HAY9eo1qjittJiTOmS8VxhaPbOADYjdGXnR+RQKUlRaxzwUA50rQdc0/Fgv2pUx8rVQjyHYKNYh8UatJ4SS6k2pzUgP+bTor4T5JrwGg/1597PXUO2MRiywQmC/SIN4SC2Xt8NBYRzaV2VE/NeWhiBr3TcB8wH/mMPtvOrfkJ2HBCryihahZEVKmJsCNPeWC9IskoIKNQsd5kbGtDsbxwIv47lCsnqO/D8GcmqVbeuMUyZJV6T74D4q8a8RdxMwoeaAIoFEziCOCeGaAw5jdkNY4lODYCJRrtk4bD3IQ1lmd/NrH/34uasZGYwD04qyRnte8MdxBVuHqQKZUQTULxdM5fYgicCRtpZhYclilYhHEKb+SgkdBnNfLqoC0UWJQrjMzxrzDIK/4iQc2sHhgzNg/UeVhtTjzlVWrsytfPdRLCxGZ1bHW6cAh/KS5QpQg1bY5qj5S5hOlW1ECwI/gR58ztOFsB88mz9NisaAOABbMVr1cj/MoEFHx9kPME6SvMb+9tSmaDW22fTUCYOgzkKDKQZARrBCgfG9BAm6CJME4/9vN5G6IgJwSONew6oveZNgNwmFM8A9G2b20yAPc27wqiHPQDeuz0jjpM8zKfCmYXccuHSsdhoW+XQ+jyy3U79uFgtpucizC3s/bGC9VyFSjNtUNC+gzjVqsihFR2XJD9nOLRpqaVpU1QCeV1WUDCONh5KcbWQYSz/A1/kGwmlXCPcN5DvbY7W/pE0q1H3LkMgeQ7SLFG17HnZQOamytdeF9oQZcCwEi/BuNLSTeCle6e1jEtIkuTH8Yio8uzgKDilglJyzXLU+9sOmawN3L65GVAnmBhlOdEm1WSNCV0SsUCdahYeDaaY1UST6azceqrgqHrlINo4vZiI207gzHDfVpIurzJii0NLThtSVha9w6prSlHrouZuTiyouL50ecgWjgEm0krJhcLgugRMsMQDWOlbJNliHrHAR7D9DBhi6mHY8dz0ANh3jk5b1jqxb3E3qyQyLJkQajuHiUZ6bPDI6wHCk3l704wywp0t7jVSKfLhcN0w2uzcPHNeW4UL8lsAEQMVHuztRlabVIr0QTHTqib7+zkk4cG1GQv3SoorB7etdNyuWl4rK46dHty8iWl5vDqTxZlj0etP73wsOiYUxTe0YF4faNFzuVi4DKUpy/cKz5HaySvdd3bjlokGSteGJvr0lglNl5jX32UWiIjw8MA4hwxhiw1kmys8dh9MA5VlxdEElmtDHP9TAkJkfqfFhJbZf1hQiPC8HxeG+PW9DMkzCQV3Ngw0PHZZ6zV2jET3PcX9jvlXaHKm8fA88PfVysh2Yv6bckxOOboCed7GdoiRWRZaX/kMWLHw20Yst1YSFfEeA7ZefSbot6hBCuDEoHZdh8rUFUjVupFpk1PojaBJ0+l1tnUKR3XbX/anzLSzrl1Hx/tXn+CvGoM7qH3wOXKyefrGxtSw6qk00KmshYkZwC5uVpzRUEg/YnkyNuTYyqSSPL4dfdSO163kW9/AhDbE5pMXlAibZr4siTaoXl5azXzpOkpfxnoEIdQQm/ou1Cj0kzQ8tsSgRywKz6oql4skujt1LLh+Pt/RpZZ4YNMzBjPi4s7TYhTspQjxE2nJ7TNTMKVNakdLZVE8oUdkYg+I11zwNE6Ae8m04QO9ck9HexfrVrFfTkQdhe/FkMwqat9x+IPeBuYu4AjlHj5fuM2rEY0q1JVNbx+WjC73gL5/o4EoBEIpVqGt9h5kzsQqnrOfwDP38nQmVnBRV69y+SB+HAVnU3Am06YgTski3msz4kEG6tqD3HQDpb+7wWwkJrRZ3TDLhoNRhbG5w/Ay0wn27La93w5v41KYBkvd1Qm+TnJxZxJijoV3fs+h7dKCgQwLqXDLUWfNaBpDz13RnJIZRYQuULnMtKnxCNz98fGXQ9aS3TTP60ofe87W/h3xbYY2grFSTCpm4u2Bx6Fsh3+UNxINBCgROcut0RRSQUEYl+sBg/aImU4VklwKHgc9x/Z7I1bXx5hf7ZEPVgU+1p2qILhzo/XP5sGEgmCNSodtxYMhnJGQm6iIWXouGMUkPkrJFt4srsGoYCHXZW3cdhbMpHpJ/u/IUDmNUM7UgO6filJWM56nLH7q6FSESpkfW/yNE5HxiDSsS1InRc35GXSIKLpMMzbQY3kyidfcsIrjNyYWKanY/FpLaTpm0qei1Zy3GdLc4RlvBkiq4AinnnVVi3MYmaFVWkl1VGAfp1JXkRadE9JY/j3v+FzVKeWSHnyK5jAyVIqCLdKCHb3yNRLRA13bRzYgHnOI3J2AVkiRrY87KBzO3nrHxrqHmFui8XMn+xD/PPrI+xMgeqKTliDdTQM6bY8XngOpJ7k90TgFp0CTuMPmTztkMhUkmgepVs2x9naxKT7TFpU/s38WWM31AI9xRQH6ksMQgbLWiax0WqFKw9v4p1xq7s8wVKiainMiVn+BwSqr5jx9bau0Rrg/+NoGlK3IdmitsH+7eRWSWETG/qqIswL3G7TjyOPF5UbQWHp6ikp4Z/yWCCi0BLVfyIpsfexBq4gyjPBEHhVMJwFs1zWhodmABYV/1agDSXUQKKo5bt3YR5qjYBNwRgGvcKMT/FYxNctVG323v8INOGp+2QbXgctp+uDWbPbrYhoajiDkNYKRUJJv3fOb00RZEYrJcqjsOgXcTuc4l3JVV41odbsLUhImIPcHU8nAyc0t5JJpPfPWY0EYx/xAwPHCrM50nbnDBwL5HMh/5TLb092qzl7pOoOWpvdc7V1IdbYdMa7QDeqKGIMq8NyMqBuaE0DHixnXgJEWUq3Sep704XELo+v5KFzi0+1eLBlVst/CGF+jcHU2ptSdv061pCucxUb3nXNDxyIXboH39/e/3r7+8haqWlVST9l+d4Ex9Q5ap0YRusI8taYzO3pnnw1Fh96h2GzBwwWp3Ap8xhGk4O7su81C3BfNlVrjHO4ftJ7dd7rbCmyW1+lkq1AVUjWXTDTnrt3Gcu/sdZPJTmTlDD6VZFLZuBViyvVJ7S6RiRwnP4ylFW7S2WfI692SGHhA1QLnmw70gQ3nx3jPMA09xHrFqupJkt9ZvXzgcpG45qvgeksA9gjkX+xYzitx+bBzpgEf1MkOXvTpHnIL4go3nUsQH5/+cOld55XDbze0/wbFE17sGpHQb7hxI47crfRogfUIkl8F+6tGYN7BmiXTLkW++LeN0lZ5rMzgpzZP+/n6J4vh57G75yyi08rFvu6uGVrKB3fP0P2XPz6/DVxSGcTDUSzM8kSK/MEN1mYITlydTJ5j6a70s/LkTBt92VB332ijmFjoS6BE5UwQzszG/4BGj0nVR+HEmH6F/FRO7prddyPbsUM26Gb+WEN0gwxdSeosshGoe3jee0lPaUS/NYjBHadnBcPYXSTbKLFepKebxtdrVGSBYAwfoRvI255KtBd9mjpqW9BN0eSnQvlPAAAA///TK+5I" } diff --git a/metricbeat/module/redis/info/_meta/data.json b/metricbeat/module/redis/info/_meta/data.json index 474a8890189..651e049b5fe 100644 --- a/metricbeat/module/redis/info/_meta/data.json +++ b/metricbeat/module/redis/info/_meta/data.json @@ -1,19 +1,16 @@ { "@timestamp": "2017-10-12T08:05:34.853Z", - "agent": { - "hostname": "host.example.com", - "name": "host.example.com" - }, "event": { "dataset": "redis.info", "duration": 115000, "module": "redis" }, "metricset": { - "name": "info" + "name": "info", + "period": 10000 }, "os": { - "full": "Linux 4.9.125-linuxkit x86_64" + "full": "Linux 5.10.47-linuxkit x86_64" }, "process": { "pid": 1 @@ -21,10 +18,8 @@ "redis": { "info": { "clients": { - "biggest_input_buf": 0, "blocked": 0, - "connected": 5, - "longest_output_list": 0, + "connected": 1, "max_input_buffer": 0, "max_output_buffer": 0 }, @@ -33,10 +28,10 @@ }, "cpu": { "used": { - "sys": 1.66, + "sys": 0.23, "sys_children": 0, - "user": 0.39, - "user_children": 0.01 + "user": 0.05, + "user_children": 0 } }, "memory": { @@ -47,7 +42,7 @@ "rss": {} }, "fragmentation": { - "ratio": 2.71 + "ratio": 2.85 }, "max": { "policy": "noeviction", @@ -55,9 +50,9 @@ }, "used": { "lua": 37888, - "peak": 945016, - "rss": 2453504, - "value": 904992 + "peak": 822456, + "rss": 2347008, + "value": 822456 } }, "persistence": { @@ -99,8 +94,8 @@ }, "copy_on_write": {}, "last_save": { - "changes_since": 35, - "time": 1548663522 + "changes_since": 0, + "time": 1633422962 } } }, @@ -116,7 +111,6 @@ "offset": 0, "sync": {} }, - "master_offset": 0, "role": "master", "slave": {} }, @@ -128,44 +122,44 @@ "git_dirty": "0", "git_sha1": "00000000", "hz": 10, - "lru_clock": 5159690, + "lru_clock": 6033096, "mode": "standalone", "multiplexing_api": "epoll", - "run_id": "0f681cb959aa47413ec40ff383715c923f9cbefd", + "run_id": "ddfd6edda7dcd357ac9f24ebfb0ef8b3ee771f8d", "tcp_port": 6379, - "uptime": 707 + "uptime": 86 }, "slowlog": { "count": 0 }, "stats": { "active_defrag": {}, - "commands_processed": 265, + "commands_processed": 2, "connections": { - "received": 848, + "received": 82, "rejected": 0 }, "instantaneous": { - "input_kbps": 0.18, - "ops_per_sec": 6, - "output_kbps": 1.39 + "input_kbps": 0, + "ops_per_sec": 0, + "output_kbps": 0 }, "keys": { "evicted": 0, "expired": 0 }, "keyspace": { - "hits": 15, + "hits": 0, "misses": 0 }, "latest_fork_usec": 0, "migrate_cached_sockets": 0, "net": { "input": { - "bytes": 7300 + "bytes": 80 }, "output": { - "bytes": 219632 + "bytes": 2111 } }, "pubsub": { @@ -183,7 +177,7 @@ } }, "service": { - "address": "127.0.0.1:6379", + "address": "localhost:53854", "type": "redis", "version": "3.2.12" } diff --git a/metricbeat/module/redis/info/_meta/fields.yml b/metricbeat/module/redis/info/_meta/fields.yml index de2f273f2dc..75bc939b487 100644 --- a/metricbeat/module/redis/info/_meta/fields.yml +++ b/metricbeat/module/redis/info/_meta/fields.yml @@ -13,20 +13,10 @@ type: long description: > Number of client connections (excluding connections from slaves). - - name: longest_output_list - type: long - deprecated: "6.5.0" - description: > - Longest output list among current client connections (replaced by max_output_buffer). - name: max_output_buffer type: long description: > Longest output list among current client connections. - - name: biggest_input_buf - type: long - deprecated: "6.5.0" - description: > - Biggest input buffer among current client connections (replaced by max_input_buffer). - name: max_input_buffer type: long description: > @@ -92,12 +82,12 @@ type: long format: bytes description: > - Used memory by the Lua engine. + Used memory by the Lua engine. - name: used.dataset type: long format: bytes description: > - The size in bytes of the dataset + The size in bytes of the dataset - name: max.value type: long @@ -209,12 +199,12 @@ format: duration description: > Duration of the on-going RDB save operation if any - + - name: copy_on_write.last_size type: long format: bytes description: > - The size in bytes of copy-on-write allocations during the last RBD save operation + The size in bytes of copy-on-write allocations during the last RBD save operation - name: aof type: group @@ -271,12 +261,12 @@ format: bytes description: > Size of the AOF buffer - + - name: size.current type: long format: bytes description: > - AOF current file size + AOF current file size - name: size.base type: long format: bytes @@ -307,12 +297,6 @@ description: > Number of connected slaves - - name: master_offset - type: long - deprecated: 6.5 - description: > - The server's current replication offset - - name: backlog.active type: long description: > @@ -325,7 +309,7 @@ - name: backlog.first_byte_offset type: long description: > - The master offset of the replication backlog buffer + The master offset of the replication backlog buffer - name: backlog.histlen type: long description: > @@ -362,7 +346,7 @@ format: duration description: > Number of seconds since last transfer I/O during a SYNC operation - + - name: slave.offset type: long description: > @@ -513,7 +497,7 @@ type: long description: > Number of evicted keys due to maxmemory limit - + - name: keyspace.hits type: long description: > diff --git a/metricbeat/module/redis/info/data.go b/metricbeat/module/redis/info/data.go index 2e3b4e4b32f..466a5fa4a98 100644 --- a/metricbeat/module/redis/info/data.go +++ b/metricbeat/module/redis/info/data.go @@ -27,12 +27,10 @@ import ( var ( schema = s.Schema{ "clients": s.Object{ - "connected": c.Int("connected_clients"), - "longest_output_list": c.Int("client_longest_output_list"), - "biggest_input_buf": c.Int("client_biggest_input_buf"), - "max_output_buffer": c.Int("client_recent_max_output_buffer"), - "max_input_buffer": c.Int("client_recent_max_input_buffer"), - "blocked": c.Int("blocked_clients"), + "connected": c.Int("connected_clients"), + "max_output_buffer": c.Int("client_recent_max_output_buffer"), + "max_input_buffer": c.Int("client_recent_max_input_buffer"), + "blocked": c.Int("blocked_clients"), }, "cluster": s.Object{ "enabled": c.Bool("cluster_enabled"), @@ -140,7 +138,6 @@ var ( "replication": s.Object{ "role": c.Str("role"), "connected_slaves": c.Int("connected_slaves"), - "master_offset": c.Int("master_repl_offset"), // ToDo Should be deprectad as master.offset introduced "backlog": s.Object{ "active": c.Int("repl_backlog_active"), "size": c.Int("repl_backlog_size"), diff --git a/metricbeat/module/redis/info/info.go b/metricbeat/module/redis/info/info.go index 2d1f88c775d..3975d92f47e 100644 --- a/metricbeat/module/redis/info/info.go +++ b/metricbeat/module/redis/info/info.go @@ -73,10 +73,9 @@ func (m *MetricSet) Fetch(r mb.ReporterV2) error { {"client_biggest_input_buf", "client_recent_max_input_buffer"}, } for _, r := range renamings { - if v, ok := info[r.new]; ok { - info[r.old] = v - } else { - info[r.new] = info[r.old] + if v, ok := info[r.old]; ok { + info[r.new] = v + delete(info, r.old) } } diff --git a/metricbeat/module/redis/test_redis.py b/metricbeat/module/redis/test_redis.py index cbfef13cf7b..8d2a3ac224a 100644 --- a/metricbeat/module/redis/test_redis.py +++ b/metricbeat/module/redis/test_redis.py @@ -16,8 +16,7 @@ CPU_FIELDS = ["used.sys", "used.sys_children", "used.user", "used.user_children"] -CLIENTS_FIELDS = ["blocked", "biggest_input_buf", - "longest_output_list", "connected", +CLIENTS_FIELDS = ["blocked", "connected", "max_input_buffer", "max_output_buffer"] From b278380cccbbfbc843f1be82717f07bd9b5ef83c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Tue, 12 Oct 2021 13:29:09 +0200 Subject: [PATCH 20/25] Disable generator tests temporarily (#28362) --- Jenkinsfile.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile.yml b/Jenkinsfile.yml index 35f682a9714..93e9d17d560 100644 --- a/Jenkinsfile.yml +++ b/Jenkinsfile.yml @@ -2,7 +2,8 @@ projects: - "auditbeat" - "deploy/kubernetes" - "filebeat" - - "generator" +# temporarly disable generator tests: https://github.com/elastic/beats/issues/28361 +# - "generator" - "heartbeat" - "journalbeat" - "libbeat" From e6780a58706969751faa06401b31c4c916603725 Mon Sep 17 00:00:00 2001 From: Mariana Dima Date: Tue, 12 Oct 2021 16:17:06 +0200 Subject: [PATCH 21/25] Windows/perfmon metricset - remove deprecated perfmon.counters configuration (#28282) * remove deprecated config * changelog --- CHANGELOG.next.asciidoc | 1 + .../windows/perfmon/_meta/docs.asciidoc | 57 ------ metricbeat/module/windows/perfmon/config.go | 33 +--- .../module/windows/perfmon/perfmon_test.go | 186 +----------------- metricbeat/module/windows/perfmon/reader.go | 12 -- .../module/windows/perfmon/reader_test.go | 21 +- 6 files changed, 7 insertions(+), 303 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index c0e9dcd2a7a..55b89291b8f 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -118,6 +118,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Remove deprecated fields in Docker module. {issue}11835[11835] {pull}27933[27933] - Remove deprecated fields in Kafka module. {pull}27938[27938] - Remove deprecated config option default_region from aws module. {pull}28120[28120] +- Remove deprecated config option perfmon.counters from windows/perfmon metricset. {pull}28282[28282] - Remove deprecated fields in Redis module. {issue}11835[11835] {pull}28246[28246] *Packetbeat* diff --git a/metricbeat/module/windows/perfmon/_meta/docs.asciidoc b/metricbeat/module/windows/perfmon/_meta/docs.asciidoc index 93c39acf1d3..9550e771ebc 100644 --- a/metricbeat/module/windows/perfmon/_meta/docs.asciidoc +++ b/metricbeat/module/windows/perfmon/_meta/docs.asciidoc @@ -34,22 +34,6 @@ to collect. The example below collects processor time and disk writes every field: "write_time" format: "float" - - // deprecated, will be removed in 8.0 - - perfmon.counters: - - instance_label: processor.name - instance_name: total - measurement_label: processor.time.total.pct - query: '\Processor Information(_Total)\% Processor Time' - - - instance_label: physical_disk.name - measurement_label: physical_disk.write.per_sec - query: '\PhysicalDisk(*)\Disk Writes/sec' - - - instance_label: physical_disk.name - measurement_label: physical_disk.write.time.pct - query: '\PhysicalDisk(*)\% Disk Write Time' ---- *`ignore_non_existent_counters`*:: A boolean option that causes the @@ -65,9 +49,6 @@ The default behaviour is for all measurements to be sent as separate events. *`refresh_wildcard_counters`*:: A boolean option to refresh the counter list at each fetch. By default, the counter list will be retrieved at the starting time, to refresh the list at each fetch, users will have to enable this setting. -*`counters`*:: Counters specifies a list of queries to perform. Each individual -counter requires three config options - `instance_label`, `measurement_label`, -and `query`. [float] ==== Query Configuration @@ -92,41 +73,3 @@ the value for this configuration option will be `% Processor Time`. *`format`*:: Format of the measurement value. The value can be either `float`, `large` or `long`. The default is `float`. - - - -[float] -==== Deprecated Counter Configuration - -Each item in the `counters` list specifies a perfmon query to perform. In the -events generated by the metricset these configuration options map to the field -values as shown below. - ----- -"%[instance_label]": "%[instance_name] or ", -"%[measurement_label]": , ----- - -*`instance_label`*:: The label used to identify the counter instance. - -*`instance_name`*:: The instance name to use in the event when the counter's -path (`query`) does not include an instance or when you want to override the -instance name. For example with `\Processor Information(_Total)` the -instance name would be `_Total` and by setting `instance_name: total` you can -override the value. -+ -The setting has no effect with wildcard queries (e.g. -`\PhysicalDisk(*)\Disk Writes/sec`). - -*`measurement_label`*:: The label used for the value returned by the query. -This field is required. - -*`query`*:: The perfmon query. This is the counter path specified in -Performance Data Helper (PDH) syntax. This field is required. For example -`\Processor Information(_Total)\% Processor Time`. An asterisk can be used in -place of an instance name to perform a wildcard query that generates an event -for each counter instance (e.g. `\PhysicalDisk(*)\Disk Writes/sec`). - -*`format`*:: Format of the measurement value. The value can be either `float`, `large` or -`long`. The default is `float`. - diff --git a/metricbeat/module/windows/perfmon/config.go b/metricbeat/module/windows/perfmon/config.go index 18354b94258..b5b72fd393c 100644 --- a/metricbeat/module/windows/perfmon/config.go +++ b/metricbeat/module/windows/perfmon/config.go @@ -24,8 +24,6 @@ import ( "time" "github.com/pkg/errors" - - "github.com/elastic/beats/v7/libbeat/common/cfgwarn" ) var allowedFormats = []string{"float", "large", "long"} @@ -36,20 +34,10 @@ type Config struct { IgnoreNECounters bool `config:"perfmon.ignore_non_existent_counters"` GroupMeasurements bool `config:"perfmon.group_measurements_by_instance"` RefreshWildcardCounters bool `config:"perfmon.refresh_wildcard_counters"` - Counters []Counter `config:"perfmon.counters"` Queries []Query `config:"perfmon.queries"` GroupAllCountersTo string `config:"perfmon.group_all_counter"` } -// Counter for the perfmon counters (old implementation deprecated). -type Counter struct { - InstanceLabel string `config:"instance_label"` - InstanceName string `config:"instance_name"` - MeasurementLabel string `config:"measurement_label" validate:"required"` - Query string `config:"query" validate:"required"` - Format string `config:"format"` -} - // QueryConfig for perfmon queries. This will be used as the new configuration format type Query struct { Name string `config:"object" validate:"required"` @@ -74,19 +62,6 @@ func (counter *QueryCounter) InitDefaults() { counter.Format = "float" } -func (counter *Counter) InitDefaults() { - counter.Format = "float" -} - -func (counter *Counter) Validate() error { - if !isValidFormat(counter.Format) { - return errors.Errorf("initialization failed: format '%s' "+ - "for counter '%s' is invalid (must be float, large or long)", - counter.Format, counter.InstanceLabel) - } - return nil -} - func (counter *QueryCounter) Validate() error { if !isValidFormat(counter.Format) { return errors.Errorf("initialization failed: format '%s' "+ @@ -97,12 +72,8 @@ func (counter *QueryCounter) Validate() error { } func (conf *Config) Validate() error { - if len(conf.Counters) == 0 && len(conf.Queries) == 0 { - return errors.New("no perfmon counters or queries have been configured") - } - if len(conf.Counters) > 0 { - cfgwarn.Deprecate("8.0", "perfmon.counters configuration option is deprecated and will be removed in the future major version, "+ - "we advise using the perfmon.queries configuration option instead.") + if len(conf.Queries) == 0 { + return errors.New("No perfmon queries have been configured. Please follow documentation on allowed configuration settings (perfmon.counters configuration option has been deprecated and is removed in 8.0, perfmon.queries configuration option can be used instead). ") } return nil } diff --git a/metricbeat/module/windows/perfmon/perfmon_test.go b/metricbeat/module/windows/perfmon/perfmon_test.go index 3dde264a401..1ed481047bc 100644 --- a/metricbeat/module/windows/perfmon/perfmon_test.go +++ b/metricbeat/module/windows/perfmon/perfmon_test.go @@ -30,7 +30,6 @@ import ( "github.com/pkg/errors" "github.com/stretchr/testify/assert" - "github.com/elastic/beats/v7/metricbeat/mb" mbtest "github.com/elastic/beats/v7/metricbeat/mb/testing" ) @@ -40,6 +39,7 @@ func TestData(t *testing.T) { config := map[string]interface{}{ "module": "windows", "metricsets": []string{"perfmon"}, + "period": "10s", "perfmon.queries": []map[string]interface{}{ { "object": "Processor Information", @@ -67,49 +67,11 @@ func TestData(t *testing.T) { } -func TestDataDeprecated(t *testing.T) { - config := map[string]interface{}{ - "module": "windows", - "metricsets": []string{"perfmon"}, - "perfmon.counters": []map[string]string{ - { - "instance_label": "processor.name", - "measurement_label": "processor.time.total.pct", - "query": `\Processor Information(_Total)\% Processor Time`, - }, - { - "instance_label": "process.name", - "measurement_label": "process.ID", - "query": `\Process(_Total)\ID Process`, - }, - { - "instance_label": "processor.name", - "measurement_label": "processor.time.user.ns", - "query": `\Processor Information(_Total)\% User Time`, - }, - }, - } - - ms := mbtest.NewReportingMetricSetV2Error(t, config) - mbtest.ReportingFetchV2Error(ms) - time.Sleep(60 * time.Millisecond) - - events, errs := mbtest.ReportingFetchV2Error(ms) - if len(errs) > 0 { - t.Fatal(errs) - } - if len(events) == 0 { - t.Fatal("no events received") - } - - beatEvent := mbtest.StandardizeEvent(ms, events[0], mb.AddMetricSetInfo) - mbtest.WriteEventToDataJSON(t, beatEvent, "") -} - func TestCounterWithNoInstanceName(t *testing.T) { config := map[string]interface{}{ "module": "windows", "metricsets": []string{"perfmon"}, + "period": "10s", "perfmon.queries": []map[string]interface{}{ { "object": "UDPv4", @@ -203,28 +165,6 @@ func TestExistingCounter(t *testing.T) { t.Log(values) } -func TestExistingCounterDeprecated(t *testing.T) { - config := Config{ - Counters: make([]Counter, 1), - } - config.Counters[0].InstanceLabel = "processor.name" - config.Counters[0].MeasurementLabel = "processor.time.total.pct" - config.Counters[0].Query = processorTimeCounter - config.Counters[0].Format = "float" - handle, err := NewReader(config) - if err != nil { - t.Fatal(err) - } - defer handle.query.Close() - - values, err := handle.Read() - if err != nil { - t.Fatal(err) - } - - t.Log(values) -} - func TestNonExistingCounter(t *testing.T) { config := Config{ Queries: make([]Query, 1), @@ -247,25 +187,6 @@ func TestNonExistingCounter(t *testing.T) { } } -func TestNonExistingCounterDeprecated(t *testing.T) { - config := Config{ - Counters: make([]Counter, 1), - } - config.Counters[0].InstanceLabel = "processor.name" - config.Counters[0].MeasurementLabel = "processor.time.total.pct" - config.Counters[0].Query = "\\Processor Information(_Total)\\not existing counter" - config.Counters[0].Format = "float" - handle, err := NewReader(config) - if assert.Error(t, err) { - assert.EqualValues(t, pdh.PDH_CSTATUS_NO_COUNTER, errors.Cause(err)) - } - - if handle != nil { - err = handle.query.Close() - assert.NoError(t, err) - } -} - func TestIgnoreNonExistentCounter(t *testing.T) { config := Config{ Queries: make([]Query, 1), @@ -294,31 +215,6 @@ func TestIgnoreNonExistentCounter(t *testing.T) { t.Log(values) } -func TestIgnoreNonExistentCounterDeprecated(t *testing.T) { - config := Config{ - Counters: make([]Counter, 1), - IgnoreNECounters: true, - } - config.Counters[0].InstanceLabel = "processor.name" - config.Counters[0].MeasurementLabel = "processor.time.total.pct" - config.Counters[0].Query = "\\Processor Information(_Total)\\not existing counter" - config.Counters[0].Format = "float" - handle, err := NewReader(config) - - values, err := handle.Read() - - if assert.Error(t, err) { - assert.EqualValues(t, pdh.PDH_NO_DATA, errors.Cause(err)) - } - - if handle != nil { - err = handle.query.Close() - assert.NoError(t, err) - } - - t.Log(values) -} - func TestNonExistingObject(t *testing.T) { config := Config{ Queries: make([]Query, 1), @@ -341,25 +237,6 @@ func TestNonExistingObject(t *testing.T) { } } -func TestNonExistingObjectDeprecated(t *testing.T) { - config := Config{ - Counters: make([]Counter, 1), - } - config.Counters[0].InstanceLabel = "processor.name" - config.Counters[0].MeasurementLabel = "processor.time.total.pct" - config.Counters[0].Query = "\\non existing object\\% Processor Performance" - config.Counters[0].Format = "float" - handle, err := NewReader(config) - if assert.Error(t, err) { - assert.EqualValues(t, pdh.PDH_CSTATUS_NO_OBJECT, errors.Cause(err)) - } - - if handle != nil { - err = handle.query.Close() - assert.NoError(t, err) - } -} - func TestLongOutputFormat(t *testing.T) { var query pdh.Query err := query.Open() @@ -575,62 +452,3 @@ func TestGroupByInstance(t *testing.T) { t.Log(values) } - -func TestGroupByInstanceDeprecated(t *testing.T) { - config := Config{ - Counters: make([]Counter, 3), - GroupMeasurements: true, - } - config.Counters[0].InstanceLabel = "processor.name" - config.Counters[0].MeasurementLabel = "processor.time.pct" - config.Counters[0].Query = `\Processor Information(_Total)\% Processor Time` - config.Counters[0].Format = "float" - - config.Counters[1].InstanceLabel = "processor.name" - config.Counters[1].MeasurementLabel = "processor.time.user.pct" - config.Counters[1].Query = `\Processor Information(_Total)\% User Time` - config.Counters[1].Format = "float" - - config.Counters[2].InstanceLabel = "processor.name" - config.Counters[2].MeasurementLabel = "processor.time.privileged.ns" - config.Counters[2].Query = `\Processor Information(_Total)\% Privileged Time` - config.Counters[2].Format = "float" - - handle, err := NewReader(config) - if err != nil { - t.Fatal(err) - } - defer handle.query.Close() - - values, _ := handle.Read() - - time.Sleep(time.Millisecond * 1000) - - values, err = handle.Read() - if err != nil { - t.Fatal(err) - } - - assert.EqualValues(t, 1, len(values)) // Assert all metrics have been grouped into a single event - - // Test all keys exist in the event - pctKey, err := values[0].MetricSetFields.HasKey("processor.time.pct") - if err != nil { - t.Fatal(err) - } - assert.True(t, pctKey) - - pctKey, err = values[0].MetricSetFields.HasKey("processor.time.user.pct") - if err != nil { - t.Fatal(err) - } - assert.True(t, pctKey) - - pctKey, err = values[0].MetricSetFields.HasKey("processor.time.privileged.ns") - if err != nil { - t.Fatal(err) - } - assert.True(t, pctKey) - - t.Log(values) -} diff --git a/metricbeat/module/windows/perfmon/reader.go b/metricbeat/module/windows/perfmon/reader.go index 49565ebfd26..dddce10f323 100644 --- a/metricbeat/module/windows/perfmon/reader.go +++ b/metricbeat/module/windows/perfmon/reader.go @@ -219,18 +219,6 @@ func (re *Reader) getCounter(query string) (bool, PerfCounter) { func (re *Reader) mapCounters(config Config) { re.counters = []PerfCounter{} - if len(config.Counters) > 0 { - for _, counter := range config.Counters { - re.counters = append(re.counters, PerfCounter{ - InstanceField: counter.InstanceLabel, - InstanceName: counter.InstanceName, - QueryField: counter.MeasurementLabel, - QueryName: counter.Query, - Format: counter.Format, - ChildQueries: nil, - }) - } - } if len(config.Queries) > 0 { for _, query := range config.Queries { for _, counter := range query.Counters { diff --git a/metricbeat/module/windows/perfmon/reader_test.go b/metricbeat/module/windows/perfmon/reader_test.go index 6131aacc3c9..7dc46deffd6 100644 --- a/metricbeat/module/windows/perfmon/reader_test.go +++ b/metricbeat/module/windows/perfmon/reader_test.go @@ -54,15 +54,6 @@ func TestMapCounters(t *testing.T) { config := Config{ IgnoreNECounters: false, GroupMeasurements: false, - Counters: []Counter{ - { - InstanceLabel: "physical_disk.name", - InstanceName: "total", - MeasurementLabel: "physical_disk.write.time.pct", - Query: `\PhysicalDisk(*)\% Disk Write Time`, - Format: "float", - }, - }, Queries: []Query{ { Name: "Process", @@ -92,17 +83,9 @@ func TestMapCounters(t *testing.T) { } reader := Reader{} reader.mapCounters(config) - assert.Equal(t, len(reader.counters), 3) + assert.Equal(t, len(reader.counters), 2) for _, readerCounter := range reader.counters { - if readerCounter.InstanceField == "physical_disk.name" { - assert.Equal(t, readerCounter.InstanceName, "total") - assert.Equal(t, readerCounter.ObjectName, "") - assert.Equal(t, readerCounter.ObjectField, "") - assert.Equal(t, readerCounter.QueryField, "physical_disk.write.time.pct") - assert.Equal(t, readerCounter.QueryName, `\PhysicalDisk(*)\% Disk Write Time`) - assert.Equal(t, len(readerCounter.ChildQueries), 0) - assert.Equal(t, readerCounter.Format, "float") - } else if readerCounter.InstanceName == "svchost*" { + if readerCounter.InstanceName == "svchost*" { assert.Equal(t, readerCounter.ObjectName, "Process") assert.Equal(t, readerCounter.ObjectField, "object") assert.Equal(t, readerCounter.QueryField, "metrics.%_processor_time") From f23aff759150b265ceaa489fe73579291f4dc338 Mon Sep 17 00:00:00 2001 From: Andrea Spacca Date: Tue, 12 Oct 2021 17:09:52 +0200 Subject: [PATCH 22/25] =?UTF-8?q?[Filebeat]=20-=20S3=20Input=20-=20Add=20s?= =?UTF-8?q?upport=20for=20only=20iterating/accessing=20only=E2=80=A6=20(#2?= =?UTF-8?q?8252)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [Filebeat] - S3 Input - Add support for only iterating/accessing only specific folders or datapaths --- CHANGELOG.next.asciidoc | 1 + filebeat/docs/modules/aws.asciidoc | 10 ++++ x-pack/filebeat/filebeat.reference.yml | 18 +++++++ x-pack/filebeat/input/awss3/config.go | 2 + x-pack/filebeat/input/awss3/config_test.go | 16 +++--- x-pack/filebeat/input/awss3/input.go | 2 + .../input/awss3/input_benchmark_test.go | 4 +- .../input/awss3/input_integration_test.go | 49 +++++++++++++++++++ x-pack/filebeat/input/awss3/interfaces.go | 5 +- .../input/awss3/mock_interfaces_test.go | 16 +++--- x-pack/filebeat/input/awss3/s3.go | 5 +- .../filebeat/input/awss3/s3_objects_test.go | 4 +- x-pack/filebeat/input/awss3/s3_test.go | 16 +++--- x-pack/filebeat/module/aws/_meta/config.yml | 18 +++++++ .../filebeat/module/aws/_meta/docs.asciidoc | 10 ++++ .../module/aws/cloudtrail/config/aws-s3.yml | 5 ++ .../module/aws/cloudtrail/manifest.yml | 1 + .../module/aws/cloudwatch/config/aws-s3.yml | 4 ++ .../module/aws/cloudwatch/manifest.yml | 1 + .../filebeat/module/aws/ec2/config/aws-s3.yml | 4 ++ x-pack/filebeat/module/aws/ec2/manifest.yml | 1 + .../filebeat/module/aws/elb/config/aws-s3.yml | 4 ++ x-pack/filebeat/module/aws/elb/manifest.yml | 1 + .../module/aws/s3access/config/aws-s3.yml | 4 ++ .../filebeat/module/aws/s3access/manifest.yml | 1 + .../module/aws/vpcflow/config/input.yml | 4 ++ .../filebeat/module/aws/vpcflow/manifest.yml | 1 + x-pack/filebeat/modules.d/aws.yml.disabled | 18 +++++++ 28 files changed, 195 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 55b89291b8f..e679c752193 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -316,6 +316,7 @@ for a few releases. Please use other tools provided by Elastic to fetch data fro - Update indentation for azure filebeat configuration. {pull}26604[26604] - Update Sophos xg module pipeline to deal with missing `date` and `time` fields. {pull}27834[27834] - sophos/xg fileset: Add missing pipeline for System Health logs. {pull}27827[27827] {issue}27826[27826] +- Add support for passing a prefix on S3 bucket list mode for AWS-S3 input {pull}28252[28252] {issue}27965[27965] - Resolve issue with @timestamp for defender_atp. {pull}28272[28272] - Tolerate faults when Windows Event Log session is interrupted {issue}27947[27947] {pull}28191[28191] - Add support for username in cisco asa security negotiation logs {pull}26975[26975] diff --git a/filebeat/docs/modules/aws.asciidoc b/filebeat/docs/modules/aws.asciidoc index 0035f225e38..097e22a741c 100644 --- a/filebeat/docs/modules/aws.asciidoc +++ b/filebeat/docs/modules/aws.asciidoc @@ -50,6 +50,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -67,6 +68,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -84,6 +86,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -101,6 +104,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -118,6 +122,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -135,6 +140,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -178,6 +184,10 @@ Use to vertically scale the input. Wait interval between completion of a list request to the S3 bucket and beginning of the next one. Default to be 120 seconds. +*`var.bucket_list_prefix`*:: + +Prefix to apply for the list request to the S3 bucket. Default empty. + *`var.endpoint`*:: Custom endpoint used to access AWS APIs. diff --git a/x-pack/filebeat/filebeat.reference.yml b/x-pack/filebeat/filebeat.reference.yml index 7fcb4efaa68..61211d8cc1e 100644 --- a/x-pack/filebeat/filebeat.reference.yml +++ b/x-pack/filebeat/filebeat.reference.yml @@ -105,6 +105,9 @@ filebeat.modules: # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -166,6 +169,9 @@ filebeat.modules: # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -215,6 +221,9 @@ filebeat.modules: # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -264,6 +273,9 @@ filebeat.modules: # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -313,6 +325,9 @@ filebeat.modules: # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -362,6 +377,9 @@ filebeat.modules: # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s diff --git a/x-pack/filebeat/input/awss3/config.go b/x-pack/filebeat/input/awss3/config.go index 404997ddc60..4105fbd9093 100644 --- a/x-pack/filebeat/input/awss3/config.go +++ b/x-pack/filebeat/input/awss3/config.go @@ -29,6 +29,7 @@ type config struct { QueueURL string `config:"queue_url"` BucketARN string `config:"bucket_arn"` BucketListInterval time.Duration `config:"bucket_list_interval"` + BucketListPrefix string `config:"bucket_list_prefix"` NumberOfWorkers int `config:"number_of_workers"` AWSConfig awscommon.ConfigAWS `config:",inline"` FileSelectors []fileSelectorConfig `config:"file_selectors"` @@ -40,6 +41,7 @@ func defaultConfig() config { APITimeout: 120 * time.Second, VisibilityTimeout: 300 * time.Second, BucketListInterval: 120 * time.Second, + BucketListPrefix: "", SQSWaitTime: 20 * time.Second, SQSMaxReceiveCount: 5, FIPSEnabled: false, diff --git a/x-pack/filebeat/input/awss3/config_test.go b/x-pack/filebeat/input/awss3/config_test.go index cd75d4df19c..f8573d60525 100644 --- a/x-pack/filebeat/input/awss3/config_test.go +++ b/x-pack/filebeat/input/awss3/config_test.go @@ -28,13 +28,15 @@ func TestConfig(t *testing.T) { parserConf := parser.Config{} require.NoError(t, parserConf.Unpack(common.MustNewConfigFrom(""))) return config{ - QueueURL: quequeURL, - BucketARN: s3Bucket, - APITimeout: 120 * time.Second, - VisibilityTimeout: 300 * time.Second, - SQSMaxReceiveCount: 5, - SQSWaitTime: 20 * time.Second, - BucketListInterval: 120 * time.Second, + QueueURL: quequeURL, + BucketARN: s3Bucket, + APITimeout: 120 * time.Second, + VisibilityTimeout: 300 * time.Second, + SQSMaxReceiveCount: 5, + SQSWaitTime: 20 * time.Second, + BucketListInterval: 120 * time.Second, + BucketListPrefix: "", + FIPSEnabled: false, MaxNumberOfMessages: 5, ReaderConfig: readerConfig{ diff --git a/x-pack/filebeat/input/awss3/input.go b/x-pack/filebeat/input/awss3/input.go index 9cdd20d8ca1..4cd5a2c82b7 100644 --- a/x-pack/filebeat/input/awss3/input.go +++ b/x-pack/filebeat/input/awss3/input.go @@ -215,6 +215,7 @@ func (in *s3Input) createS3Lister(ctx v2.Context, cancelCtx context.Context, cli log := ctx.Logger.With("bucket_arn", in.config.BucketARN) log.Infof("number_of_workers is set to %v.", in.config.NumberOfWorkers) log.Infof("bucket_list_interval is set to %v.", in.config.BucketListInterval) + log.Infof("bucket_list_prefix is set to %v.", in.config.BucketListPrefix) log.Infof("AWS region is set to %v.", in.awsConfig.Region) log.Debugf("AWS S3 service name is %v.", s3ServiceName) @@ -233,6 +234,7 @@ func (in *s3Input) createS3Lister(ctx v2.Context, cancelCtx context.Context, cli states, persistentStore, in.config.BucketARN, + in.config.BucketListPrefix, in.awsConfig.Region, in.config.NumberOfWorkers, in.config.BucketListInterval) diff --git a/x-pack/filebeat/input/awss3/input_benchmark_test.go b/x-pack/filebeat/input/awss3/input_benchmark_test.go index 00540479d5c..9c718c83ac8 100644 --- a/x-pack/filebeat/input/awss3/input_benchmark_test.go +++ b/x-pack/filebeat/input/awss3/input_benchmark_test.go @@ -134,7 +134,7 @@ func (c constantS3) GetObject(ctx context.Context, bucket, key string) (*s3.GetO return newS3GetObjectResponse(c.filename, c.data, c.contentType), nil } -func (c constantS3) ListObjectsPaginator(bucket string) s3Pager { +func (c constantS3) ListObjectsPaginator(bucket, prefix string) s3Pager { return c.pagerConstant } @@ -277,7 +277,7 @@ func benchmarkInputS3(t *testing.T, numberOfWorkers int) testing.BenchmarkResult } s3EventHandlerFactory := newS3ObjectProcessorFactory(log.Named("s3"), metrics, s3API, client, conf.FileSelectors) - s3Poller := newS3Poller(logp.NewLogger(inputName), metrics, s3API, s3EventHandlerFactory, newStates(inputCtx), store, "bucket", "region", numberOfWorkers, time.Second) + s3Poller := newS3Poller(logp.NewLogger(inputName), metrics, s3API, s3EventHandlerFactory, newStates(inputCtx), store, "bucket", "key-", "region", numberOfWorkers, time.Second) ctx, cancel := context.WithCancel(context.Background()) b.Cleanup(cancel) diff --git a/x-pack/filebeat/input/awss3/input_integration_test.go b/x-pack/filebeat/input/awss3/input_integration_test.go index 9c6ebb3cac9..74866641e11 100644 --- a/x-pack/filebeat/input/awss3/input_integration_test.go +++ b/x-pack/filebeat/input/awss3/input_integration_test.go @@ -384,3 +384,52 @@ func TestGetRegionForBucketARN(t *testing.T) { regionName, err := getRegionForBucketARN(context.Background(), s3Client, tfConfig.BucketName) assert.Equal(t, tfConfig.AWSRegion, regionName) } + +func TestPaginatorListPrefix(t *testing.T) { + logp.TestingSetup() + + // Terraform is used to setup S3 and must be executed manually. + tfConfig := getTerraformOutputs(t) + + uploadS3TestFiles(t, tfConfig.AWSRegion, tfConfig.BucketName, + "testdata/events-array.json", + "testdata/invalid.json", + "testdata/log.json", + "testdata/log.ndjson", + "testdata/multiline.json", + "testdata/multiline.json.gz", + "testdata/multiline.txt", + "testdata/log.txt", // Skipped (no match). + ) + + awsConfig, err := external.LoadDefaultAWSConfig() + awsConfig.Region = tfConfig.AWSRegion + if err != nil { + t.Fatal(err) + } + + s3Client := s3.New(awscommon.EnrichAWSConfigWithEndpoint("", "s3", "", awsConfig)) + + s3API := &awsS3API{ + client: s3Client, + } + + var objects []string + paginator := s3API.ListObjectsPaginator(tfConfig.BucketName, "log") + for paginator.Next(context.Background()) { + page := paginator.CurrentPage() + for _, object := range page.Contents { + objects = append(objects, *object.Key) + } + } + + assert.NoError(t, paginator.Err()) + + expected := []string{ + "log.json", + "log.ndjson", + "log.txt", + } + + assert.Equal(t, expected, objects) +} diff --git a/x-pack/filebeat/input/awss3/interfaces.go b/x-pack/filebeat/input/awss3/interfaces.go index 2e406717348..c777072c6c9 100644 --- a/x-pack/filebeat/input/awss3/interfaces.go +++ b/x-pack/filebeat/input/awss3/interfaces.go @@ -66,7 +66,7 @@ type s3Getter interface { } type s3Lister interface { - ListObjectsPaginator(bucket string) s3Pager + ListObjectsPaginator(bucket, prefix string) s3Pager } type s3Pager interface { @@ -204,9 +204,10 @@ func (a *awsS3API) GetObject(ctx context.Context, bucket, key string) (*s3.GetOb return resp, nil } -func (a *awsS3API) ListObjectsPaginator(bucket string) s3Pager { +func (a *awsS3API) ListObjectsPaginator(bucket, prefix string) s3Pager { req := a.client.ListObjectsRequest(&s3.ListObjectsInput{ Bucket: awssdk.String(bucket), + Prefix: awssdk.String(prefix), }) pager := s3.NewListObjectsPaginator(req) diff --git a/x-pack/filebeat/input/awss3/mock_interfaces_test.go b/x-pack/filebeat/input/awss3/mock_interfaces_test.go index 1929fa7c9ec..85c11e0fe80 100644 --- a/x-pack/filebeat/input/awss3/mock_interfaces_test.go +++ b/x-pack/filebeat/input/awss3/mock_interfaces_test.go @@ -274,17 +274,17 @@ func (mr *MockS3APIMockRecorder) GetObject(ctx, bucket, key interface{}) *gomock } // ListObjectsPaginator mocks base method. -func (m *MockS3API) ListObjectsPaginator(bucket string) s3Pager { +func (m *MockS3API) ListObjectsPaginator(bucket, prefix string) s3Pager { m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "ListObjectsPaginator", bucket) + ret := m.ctrl.Call(m, "ListObjectsPaginator", bucket, prefix) ret0, _ := ret[0].(s3Pager) return ret0 } // ListObjectsPaginator indicates an expected call of ListObjectsPaginator. -func (mr *MockS3APIMockRecorder) ListObjectsPaginator(bucket interface{}) *gomock.Call { +func (mr *MockS3APIMockRecorder) ListObjectsPaginator(bucket, prefix interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListObjectsPaginator", reflect.TypeOf((*MockS3API)(nil).ListObjectsPaginator), bucket) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListObjectsPaginator", reflect.TypeOf((*MockS3API)(nil).ListObjectsPaginator), bucket, prefix) } // Mocks3Getter is a mock of s3Getter interface. @@ -349,17 +349,17 @@ func (m *Mocks3Lister) EXPECT() *Mocks3ListerMockRecorder { } // ListObjectsPaginator mocks base method. -func (m *Mocks3Lister) ListObjectsPaginator(bucket string) s3Pager { +func (m *Mocks3Lister) ListObjectsPaginator(bucket, prefix string) s3Pager { m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "ListObjectsPaginator", bucket) + ret := m.ctrl.Call(m, "ListObjectsPaginator", bucket, prefix) ret0, _ := ret[0].(s3Pager) return ret0 } // ListObjectsPaginator indicates an expected call of ListObjectsPaginator. -func (mr *Mocks3ListerMockRecorder) ListObjectsPaginator(bucket interface{}) *gomock.Call { +func (mr *Mocks3ListerMockRecorder) ListObjectsPaginator(bucket, prefix interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListObjectsPaginator", reflect.TypeOf((*Mocks3Lister)(nil).ListObjectsPaginator), bucket) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListObjectsPaginator", reflect.TypeOf((*Mocks3Lister)(nil).ListObjectsPaginator), bucket, prefix) } // MockS3Pager is a mock of s3Pager interface. diff --git a/x-pack/filebeat/input/awss3/s3.go b/x-pack/filebeat/input/awss3/s3.go index 313a71211e7..d69c9eccb44 100644 --- a/x-pack/filebeat/input/awss3/s3.go +++ b/x-pack/filebeat/input/awss3/s3.go @@ -41,6 +41,7 @@ type s3ObjectPayload struct { type s3Poller struct { numberOfWorkers int bucket string + listPrefix string region string bucketPollInterval time.Duration workerSem *sem @@ -61,6 +62,7 @@ func newS3Poller(log *logp.Logger, states *states, store *statestore.Store, bucket string, + listPrefix string, awsRegion string, numberOfWorkers int, bucketPollInterval time.Duration) *s3Poller { @@ -70,6 +72,7 @@ func newS3Poller(log *logp.Logger, return &s3Poller{ numberOfWorkers: numberOfWorkers, bucket: bucket, + listPrefix: listPrefix, region: awsRegion, bucketPollInterval: bucketPollInterval, workerSem: newSem(numberOfWorkers), @@ -142,7 +145,7 @@ func (p *s3Poller) GetS3Objects(ctx context.Context, s3ObjectPayloadChan chan<- bucketMetadata := strings.Split(p.bucket, ":") bucketName := bucketMetadata[len(bucketMetadata)-1] - paginator := p.s3.ListObjectsPaginator(bucketName) + paginator := p.s3.ListObjectsPaginator(bucketName, p.listPrefix) for paginator.Next(ctx) { listingID, err := uuid.NewV4() if err != nil { diff --git a/x-pack/filebeat/input/awss3/s3_objects_test.go b/x-pack/filebeat/input/awss3/s3_objects_test.go index 6cf1ea1fa5a..4ff6e4754f0 100644 --- a/x-pack/filebeat/input/awss3/s3_objects_test.go +++ b/x-pack/filebeat/input/awss3/s3_objects_test.go @@ -212,11 +212,11 @@ func TestNewMockS3Pager(t *testing.T) { defer ctrl.Finish() mockS3Pager := newMockS3Pager(ctrl, 1, fakeObjects) mockS3API := NewMockS3API(ctrl) - mockS3API.EXPECT().ListObjectsPaginator(gomock.Any()).Return(mockS3Pager) + mockS3API.EXPECT().ListObjectsPaginator(gomock.Any(), "").Return(mockS3Pager) // Test the mock. var keys []string - pager := mockS3API.ListObjectsPaginator("nombre") + pager := mockS3API.ListObjectsPaginator("nombre", "") for pager.Next(ctx) { for _, s3Obj := range pager.CurrentPage().Contents { keys = append(keys, *s3Obj.Key) diff --git a/x-pack/filebeat/input/awss3/s3_test.go b/x-pack/filebeat/input/awss3/s3_test.go index dc87356ba65..250730ab055 100644 --- a/x-pack/filebeat/input/awss3/s3_test.go +++ b/x-pack/filebeat/input/awss3/s3_test.go @@ -48,9 +48,9 @@ func TestS3Poller(t *testing.T) { gomock.InOrder( mockAPI.EXPECT(). - ListObjectsPaginator(gomock.Eq(bucket)). + ListObjectsPaginator(gomock.Eq(bucket), gomock.Eq("key")). Times(1). - DoAndReturn(func(_ string) s3Pager { + DoAndReturn(func(_, _ string) s3Pager { return mockPager }), ) @@ -133,7 +133,7 @@ func TestS3Poller(t *testing.T) { Return(nil, errFakeConnectivityFailure) s3ObjProc := newS3ObjectProcessorFactory(logp.NewLogger(inputName), nil, mockAPI, mockPublisher, nil) - receiver := newS3Poller(logp.NewLogger(inputName), nil, mockAPI, s3ObjProc, newStates(inputCtx), store, bucket, "region", numberOfWorkers, pollInterval) + receiver := newS3Poller(logp.NewLogger(inputName), nil, mockAPI, s3ObjProc, newStates(inputCtx), store, bucket, "key", "region", numberOfWorkers, pollInterval) require.Error(t, context.DeadlineExceeded, receiver.Poll(ctx)) assert.Equal(t, numberOfWorkers, receiver.workerSem.available) }) @@ -158,16 +158,16 @@ func TestS3Poller(t *testing.T) { gomock.InOrder( // Initial ListObjectPaginator gets an error. mockAPI.EXPECT(). - ListObjectsPaginator(gomock.Eq(bucket)). + ListObjectsPaginator(gomock.Eq(bucket), gomock.Eq("key")). Times(1). - DoAndReturn(func(_ string) s3Pager { + DoAndReturn(func(_, _ string) s3Pager { return mockPagerFirst }), // After waiting for pollInterval, it retries. mockAPI.EXPECT(). - ListObjectsPaginator(gomock.Eq(bucket)). + ListObjectsPaginator(gomock.Eq(bucket), gomock.Eq("key")). Times(1). - DoAndReturn(func(_ string) s3Pager { + DoAndReturn(func(_, _ string) s3Pager { return mockPagerSecond }), ) @@ -263,7 +263,7 @@ func TestS3Poller(t *testing.T) { Return(nil, errFakeConnectivityFailure) s3ObjProc := newS3ObjectProcessorFactory(logp.NewLogger(inputName), nil, mockAPI, mockPublisher, nil) - receiver := newS3Poller(logp.NewLogger(inputName), nil, mockAPI, s3ObjProc, newStates(inputCtx), store, bucket, "region", numberOfWorkers, pollInterval) + receiver := newS3Poller(logp.NewLogger(inputName), nil, mockAPI, s3ObjProc, newStates(inputCtx), store, bucket, "key", "region", numberOfWorkers, pollInterval) require.Error(t, context.DeadlineExceeded, receiver.Poll(ctx)) assert.Equal(t, numberOfWorkers, receiver.workerSem.available) }) diff --git a/x-pack/filebeat/module/aws/_meta/config.yml b/x-pack/filebeat/module/aws/_meta/config.yml index 393a197bc4e..1b139779b84 100644 --- a/x-pack/filebeat/module/aws/_meta/config.yml +++ b/x-pack/filebeat/module/aws/_meta/config.yml @@ -8,6 +8,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -69,6 +72,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -118,6 +124,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -167,6 +176,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -216,6 +228,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -265,6 +280,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s diff --git a/x-pack/filebeat/module/aws/_meta/docs.asciidoc b/x-pack/filebeat/module/aws/_meta/docs.asciidoc index a55dbc4583c..3fee8460161 100644 --- a/x-pack/filebeat/module/aws/_meta/docs.asciidoc +++ b/x-pack/filebeat/module/aws/_meta/docs.asciidoc @@ -45,6 +45,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -62,6 +63,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -79,6 +81,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -96,6 +99,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -113,6 +117,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -130,6 +135,7 @@ Example config: enabled: false #var.queue_url: https://sqs.myregion.amazonaws.com/123456/myqueue #var.bucket_arn: 'arn:aws:s3:::mybucket' + #var.bucket_list_prefix: 'prefix' #var.bucket_list_interval: 300s #var.number_of_workers: 5 #var.shared_credential_file: /etc/filebeat/aws_credentials @@ -173,6 +179,10 @@ Use to vertically scale the input. Wait interval between completion of a list request to the S3 bucket and beginning of the next one. Default to be 120 seconds. +*`var.bucket_list_prefix`*:: + +Prefix to apply for the list request to the S3 bucket. Default empty. + *`var.endpoint`*:: Custom endpoint used to access AWS APIs. diff --git a/x-pack/filebeat/module/aws/cloudtrail/config/aws-s3.yml b/x-pack/filebeat/module/aws/cloudtrail/config/aws-s3.yml index 6134344678e..c95abb1cdc2 100644 --- a/x-pack/filebeat/module/aws/cloudtrail/config/aws-s3.yml +++ b/x-pack/filebeat/module/aws/cloudtrail/config/aws-s3.yml @@ -13,6 +13,11 @@ number_of_workers: {{ .number_of_workers }} {{ if .bucket_list_interval }} bucket_list_interval: {{ .bucket_list_interval }} {{ end }} + +{{ if .bucket_list_prefix }} +bucket_list_prefix: {{ .bucket_list_prefix }} +{{ end }} + file_selectors: {{ if .process_cloudtrail_logs }} - regex: '/CloudTrail/' diff --git a/x-pack/filebeat/module/aws/cloudtrail/manifest.yml b/x-pack/filebeat/module/aws/cloudtrail/manifest.yml index 6d2c9cdebe0..c0715d7647c 100644 --- a/x-pack/filebeat/module/aws/cloudtrail/manifest.yml +++ b/x-pack/filebeat/module/aws/cloudtrail/manifest.yml @@ -7,6 +7,7 @@ var: - name: bucket_arn - name: number_of_workers - name: bucket_list_interval + - name: bucket_list_prefix - name: shared_credential_file - name: credential_profile_name - name: visibility_timeout diff --git a/x-pack/filebeat/module/aws/cloudwatch/config/aws-s3.yml b/x-pack/filebeat/module/aws/cloudwatch/config/aws-s3.yml index c98582c21ea..5b1fb24f561 100644 --- a/x-pack/filebeat/module/aws/cloudwatch/config/aws-s3.yml +++ b/x-pack/filebeat/module/aws/cloudwatch/config/aws-s3.yml @@ -14,6 +14,10 @@ number_of_workers: {{ .number_of_workers }} bucket_list_interval: {{ .bucket_list_interval }} {{ end }} +{{ if .bucket_list_prefix }} +bucket_list_prefix: {{ .bucket_list_prefix }} +{{ end }} + {{ if .credential_profile_name }} credential_profile_name: {{ .credential_profile_name }} {{ end }} diff --git a/x-pack/filebeat/module/aws/cloudwatch/manifest.yml b/x-pack/filebeat/module/aws/cloudwatch/manifest.yml index 7634f73d8d2..0223142a6a9 100644 --- a/x-pack/filebeat/module/aws/cloudwatch/manifest.yml +++ b/x-pack/filebeat/module/aws/cloudwatch/manifest.yml @@ -7,6 +7,7 @@ var: - name: bucket_arn - name: number_of_workers - name: bucket_list_interval + - name: bucket_list_prefix - name: shared_credential_file - name: credential_profile_name - name: visibility_timeout diff --git a/x-pack/filebeat/module/aws/ec2/config/aws-s3.yml b/x-pack/filebeat/module/aws/ec2/config/aws-s3.yml index c98582c21ea..5b1fb24f561 100644 --- a/x-pack/filebeat/module/aws/ec2/config/aws-s3.yml +++ b/x-pack/filebeat/module/aws/ec2/config/aws-s3.yml @@ -14,6 +14,10 @@ number_of_workers: {{ .number_of_workers }} bucket_list_interval: {{ .bucket_list_interval }} {{ end }} +{{ if .bucket_list_prefix }} +bucket_list_prefix: {{ .bucket_list_prefix }} +{{ end }} + {{ if .credential_profile_name }} credential_profile_name: {{ .credential_profile_name }} {{ end }} diff --git a/x-pack/filebeat/module/aws/ec2/manifest.yml b/x-pack/filebeat/module/aws/ec2/manifest.yml index 7634f73d8d2..0223142a6a9 100644 --- a/x-pack/filebeat/module/aws/ec2/manifest.yml +++ b/x-pack/filebeat/module/aws/ec2/manifest.yml @@ -7,6 +7,7 @@ var: - name: bucket_arn - name: number_of_workers - name: bucket_list_interval + - name: bucket_list_prefix - name: shared_credential_file - name: credential_profile_name - name: visibility_timeout diff --git a/x-pack/filebeat/module/aws/elb/config/aws-s3.yml b/x-pack/filebeat/module/aws/elb/config/aws-s3.yml index c98582c21ea..5b1fb24f561 100644 --- a/x-pack/filebeat/module/aws/elb/config/aws-s3.yml +++ b/x-pack/filebeat/module/aws/elb/config/aws-s3.yml @@ -14,6 +14,10 @@ number_of_workers: {{ .number_of_workers }} bucket_list_interval: {{ .bucket_list_interval }} {{ end }} +{{ if .bucket_list_prefix }} +bucket_list_prefix: {{ .bucket_list_prefix }} +{{ end }} + {{ if .credential_profile_name }} credential_profile_name: {{ .credential_profile_name }} {{ end }} diff --git a/x-pack/filebeat/module/aws/elb/manifest.yml b/x-pack/filebeat/module/aws/elb/manifest.yml index 128dc59791e..da22ed1b1cc 100644 --- a/x-pack/filebeat/module/aws/elb/manifest.yml +++ b/x-pack/filebeat/module/aws/elb/manifest.yml @@ -7,6 +7,7 @@ var: - name: bucket_arn - name: number_of_workers - name: bucket_list_interval + - name: bucket_list_prefix - name: shared_credential_file - name: credential_profile_name - name: visibility_timeout diff --git a/x-pack/filebeat/module/aws/s3access/config/aws-s3.yml b/x-pack/filebeat/module/aws/s3access/config/aws-s3.yml index c98582c21ea..5b1fb24f561 100644 --- a/x-pack/filebeat/module/aws/s3access/config/aws-s3.yml +++ b/x-pack/filebeat/module/aws/s3access/config/aws-s3.yml @@ -14,6 +14,10 @@ number_of_workers: {{ .number_of_workers }} bucket_list_interval: {{ .bucket_list_interval }} {{ end }} +{{ if .bucket_list_prefix }} +bucket_list_prefix: {{ .bucket_list_prefix }} +{{ end }} + {{ if .credential_profile_name }} credential_profile_name: {{ .credential_profile_name }} {{ end }} diff --git a/x-pack/filebeat/module/aws/s3access/manifest.yml b/x-pack/filebeat/module/aws/s3access/manifest.yml index 7634f73d8d2..0223142a6a9 100644 --- a/x-pack/filebeat/module/aws/s3access/manifest.yml +++ b/x-pack/filebeat/module/aws/s3access/manifest.yml @@ -7,6 +7,7 @@ var: - name: bucket_arn - name: number_of_workers - name: bucket_list_interval + - name: bucket_list_prefix - name: shared_credential_file - name: credential_profile_name - name: visibility_timeout diff --git a/x-pack/filebeat/module/aws/vpcflow/config/input.yml b/x-pack/filebeat/module/aws/vpcflow/config/input.yml index f5987c033d5..51b649b1e2e 100644 --- a/x-pack/filebeat/module/aws/vpcflow/config/input.yml +++ b/x-pack/filebeat/module/aws/vpcflow/config/input.yml @@ -16,6 +16,10 @@ number_of_workers: {{ .number_of_workers }} bucket_list_interval: {{ .bucket_list_interval }} {{ end }} +{{ if .bucket_list_prefix }} +bucket_list_prefix: {{ .bucket_list_prefix }} +{{ end }} + {{ if .credential_profile_name }} credential_profile_name: {{ .credential_profile_name }} {{ end }} diff --git a/x-pack/filebeat/module/aws/vpcflow/manifest.yml b/x-pack/filebeat/module/aws/vpcflow/manifest.yml index 87850096ed5..8871cf1cffb 100644 --- a/x-pack/filebeat/module/aws/vpcflow/manifest.yml +++ b/x-pack/filebeat/module/aws/vpcflow/manifest.yml @@ -7,6 +7,7 @@ var: - name: bucket_arn - name: number_of_workers - name: bucket_list_interval + - name: bucket_list_prefix - name: shared_credential_file - name: credential_profile_name - name: visibility_timeout diff --git a/x-pack/filebeat/modules.d/aws.yml.disabled b/x-pack/filebeat/modules.d/aws.yml.disabled index 57e370541c8..3d34116d225 100644 --- a/x-pack/filebeat/modules.d/aws.yml.disabled +++ b/x-pack/filebeat/modules.d/aws.yml.disabled @@ -11,6 +11,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -72,6 +75,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -121,6 +127,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -170,6 +179,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -219,6 +231,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s @@ -268,6 +283,9 @@ # AWS S3 bucket arn #var.bucket_arn: 'arn:aws:s3:::mybucket' + # AWS S3 list prefix + #var.bucket_list_prefix: 'prefix' + # Bucket list interval on S3 bucket #var.bucket_list_interval: 300s From 69f27806e5a5983a4544d6c056e68ac4f6d04516 Mon Sep 17 00:00:00 2001 From: Michael Katsoulis Date: Tue, 12 Oct 2021 18:36:17 +0300 Subject: [PATCH 23/25] Breaking change for 8.0, namespace_annotations replaced by namespace.annotations (#28230) * Breaking change for 8.0, namespace_annotations replaced by namespace.annotations * Take care of namespace being nil --- .../composable/providers/kubernetes/pod.go | 22 ++++----- .../providers/kubernetes/pod_test.go | 46 ++++++++++++------- .../providers/kubernetes/service.go | 11 ++--- .../providers/kubernetes/service_test.go | 6 ++- 4 files changed, 49 insertions(+), 36 deletions(-) diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod.go index 80b28fcab47..5a7a8c4a392 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod.go @@ -247,14 +247,13 @@ func generatePodData( return providerData{} } - // k8sMapping includes only the metadata that fall under kubernetes.* - // and these are available as dynamic vars through the provider - k8sMapping := map[string]interface{}(kubemetaMap.(common.MapStr).Clone()) - + ckMeta := kubemetaMap.(common.MapStr).Clone() if len(namespaceAnnotations) != 0 { - // TODO: convert it to namespace.annotations for 8.0 - k8sMapping["namespace_annotations"] = namespaceAnnotations + ckMeta.Put("namespace.annotations", namespaceAnnotations) } + // k8sMapping includes only the metadata that fall under kubernetes.* + // and these are available as dynamic vars through the provider + k8sMapping := map[string]interface{}(ckMeta) // Pass annotations to all events so that it can be used in templating and by annotation builders. annotations := common.MapStr{} @@ -315,14 +314,13 @@ func generateContainerData( continue } - // k8sMapping includes only the metadata that fall under kubernetes.* - // and these are available as dynamic vars through the provider - k8sMapping := map[string]interface{}(kubemetaMap.(common.MapStr).Clone()) - + ckMeta := kubemetaMap.(common.MapStr).Clone() if len(namespaceAnnotations) != 0 { - // TODO: convert it to namespace.annotations for 8.0 - k8sMapping["namespace_annotations"] = namespaceAnnotations + ckMeta.Put("namespace.annotations", namespaceAnnotations) } + // k8sMapping includes only the metadata that fall under kubernetes.* + // and these are available as dynamic vars through the provider + k8sMapping := map[string]interface{}(ckMeta) // add annotations to be discoverable by templates k8sMapping["annotations"] = annotations diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod_test.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod_test.go index 62d4a199892..5c26d50ea8f 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod_test.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/pod_test.go @@ -50,15 +50,17 @@ func TestGeneratePodData(t *testing.T) { data := generatePodData(pod, &Config{}, &podMeta{}, namespaceAnnotations) mapping := map[string]interface{}{ - "namespace": pod.GetNamespace(), + "namespace": common.MapStr{ + "name": pod.GetNamespace(), + "annotations": common.MapStr{ + "nsa": "nsb", + }, + }, "pod": common.MapStr{ "uid": string(pod.GetUID()), "name": pod.GetName(), "ip": pod.Status.PodIP, }, - "namespace_annotations": common.MapStr{ - "nsa": "nsb", - }, "labels": common.MapStr{ "foo": "bar", }, @@ -73,7 +75,9 @@ func TestGeneratePodData(t *testing.T) { "name": "devcluster", "url": "8.8.8.8:9090"}, }, "kubernetes": common.MapStr{ - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "labels": common.MapStr{ "foo": "bar", }, @@ -157,7 +161,12 @@ func TestGenerateContainerPodData(t *testing.T) { }) mapping := map[string]interface{}{ - "namespace": pod.GetNamespace(), + "namespace": common.MapStr{ + "name": pod.GetNamespace(), + "annotations": common.MapStr{ + "nsa": "nsb", + }, + }, "pod": common.MapStr{ "uid": string(pod.GetUID()), "name": pod.GetName(), @@ -171,9 +180,6 @@ func TestGenerateContainerPodData(t *testing.T) { "port": "80", "port_name": "http", }, - "namespace_annotations": common.MapStr{ - "nsa": "nsb", - }, "annotations": common.MapStr{ "app": "production", }, @@ -192,7 +198,9 @@ func TestGenerateContainerPodData(t *testing.T) { "name": "devcluster", "url": "8.8.8.8:9090"}, }, "kubernetes": common.MapStr{ - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "annotations": common.MapStr{"app": "production"}, "labels": common.MapStr{"foo": "bar"}, "pod": common.MapStr{ @@ -272,7 +280,12 @@ func TestEphemeralContainers(t *testing.T) { }) mapping := map[string]interface{}{ - "namespace": pod.GetNamespace(), + "namespace": common.MapStr{ + "name": pod.GetNamespace(), + "annotations": common.MapStr{ + "nsa": "nsb", + }, + }, "pod": common.MapStr{ "uid": string(pod.GetUID()), "name": pod.GetName(), @@ -287,9 +300,6 @@ func TestEphemeralContainers(t *testing.T) { "image": "nginx:1.120", "runtime": "crio", }, - "namespace_annotations": common.MapStr{ - "nsa": "nsb", - }, "annotations": common.MapStr{ "app": "production", }, @@ -305,7 +315,9 @@ func TestEphemeralContainers(t *testing.T) { "name": "devcluster", "url": "8.8.8.8:9090"}, }, "kubernetes": common.MapStr{ - "namespace": "testns", + "namespace": common.MapStr{ + "name": "testns", + }, "labels": common.MapStr{"foo": "bar"}, "annotations": common.MapStr{"app": "production"}, "pod": common.MapStr{ @@ -381,7 +393,9 @@ func (p *podMeta) GenerateECS(obj kubernetes.Resource) common.MapStr { func (p *podMeta) GenerateK8s(obj kubernetes.Resource, opts ...metadata.FieldOptions) common.MapStr { k8sPod := obj.(*kubernetes.Pod) return common.MapStr{ - "namespace": k8sPod.GetNamespace(), + "namespace": common.MapStr{ + "name": k8sPod.GetNamespace(), + }, "pod": common.MapStr{ "uid": string(k8sPod.GetUID()), "name": k8sPod.GetName(), diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service.go index 0e3f0055af1..2bdf73380be 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service.go @@ -186,14 +186,13 @@ func generateServiceData( return &serviceData{} } - // k8sMapping includes only the metadata that fall under kubernetes.* - // and these are available as dynamic vars through the provider - k8sMapping := map[string]interface{}(kubemetaMap.(common.MapStr).Clone()) - + ckMeta := kubemetaMap.(common.MapStr).Clone() if len(namespaceAnnotations) != 0 { - // TODO: convert it to namespace.annotations for 8.0 - k8sMapping["namespace_annotations"] = namespaceAnnotations + ckMeta.Put("namespace.annotations", namespaceAnnotations) } + // k8sMapping includes only the metadata that fall under kubernetes.* + // and these are available as dynamic vars through the provider + k8sMapping := map[string]interface{}(ckMeta) // Pass annotations to all events so that it can be used in templating and by annotation builders. annotations := common.MapStr{} diff --git a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service_test.go b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service_test.go index c183541e6a7..c85abed7f07 100644 --- a/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service_test.go +++ b/x-pack/elastic-agent/pkg/composable/providers/kubernetes/service_test.go @@ -61,8 +61,10 @@ func TestGenerateServiceData(t *testing.T) { "name": service.GetName(), "ip": service.Spec.ClusterIP, }, - "namespace_annotations": common.MapStr{ - "nsa": "nsb", + "namespace": common.MapStr{ + "annotations": common.MapStr{ + "nsa": "nsb", + }, }, "annotations": common.MapStr{ "baz": "ban", From 3fe0fede41a929af307cd995fd09cbee6787863a Mon Sep 17 00:00:00 2001 From: Andrew Cholakian Date: Tue, 12 Oct 2021 19:37:20 -0500 Subject: [PATCH 24/25] [Heartbeat] Setuid to regular user / lower capabilities when possible (#27878) partial fix for #27648 , this PR: Detects if the user is running as root then: Checks to see if an environment variable BEAT_SETUID_AS (set in our Docker.tmpl) is present Attempts to Setuid , Setgid and Setgroups to that user / groups Invokes setcap to drop all privileges except NET_RAW+ep This PR also fixes the broken syscall filtering in heartbeat, some non-syscall strings were breaking that. With the changes here elastic-agent can still run as root, but the subprocesses can lower their privileges ASAP. This should also make it possible for heartbeat to safely run ICMP pings and synthetics. Synthetics must run as non-root, but ICMP requires NET_RAW. This lets us be consistent in our docs with the recommendation that elastic-agent run as root. --- CHANGELOG.next.asciidoc | 1 + NOTICE.txt | 812 ++++++++++++++++++ dev-tools/notice/overrides.json | 2 + dev-tools/packaging/packages.yml | 2 +- .../docker/Dockerfile.elastic-agent.tmpl | 12 +- .../templates/docker/Dockerfile.tmpl | 12 +- go.mod | 2 + go.sum | 4 + heartbeat/beater/heartbeat.go | 4 + heartbeat/scripts/mage/package.go | 2 +- heartbeat/security.go | 237 +++++ packetbeat/scripts/mage/package.go | 2 +- x-pack/heartbeat/monitors/browser/browser.go | 11 +- .../monitors/browser/source/local.go | 3 +- .../monitors/browser/source/zipurl.go | 9 +- x-pack/heartbeat/seccomp_linux.go | 83 -- 16 files changed, 1095 insertions(+), 103 deletions(-) create mode 100644 heartbeat/security.go delete mode 100644 x-pack/heartbeat/seccomp_linux.go diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index e679c752193..63a12f61057 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -326,6 +326,7 @@ for a few releases. Please use other tools provided by Elastic to fetch data fro - Fixed excessive memory usage introduced in 7.5 due to over-allocating memory for HTTP checks. {pull}15639[15639] - Fixed TCP TLS checks to properly validate hostnames, this broke in 7.x and only worked for IP SANs. {pull}17549[17549] +- Fix broken seccomp filtering and improve security via `setcap` and `setuid` when running as root on linux in containers. {pull}27878[27878] *Journalbeat* diff --git a/NOTICE.txt b/NOTICE.txt index 5dfebf5dbec..d7b190ae918 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -19130,6 +19130,412 @@ Contents of probable licence file $GOMODCACHE/k8s.io/client-go@v0.21.1/LICENSE: limitations under the License. +-------------------------------------------------------------------------------- +Dependency : kernel.org/pub/linux/libs/security/libcap/cap +Version: v1.2.57 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/kernel.org/pub/linux/libs/security/libcap/cap@v1.2.57/License: + +Unless otherwise *explicitly* stated, the following text describes the +licensed conditions under which the contents of this libcap/cap release +may be used and distributed. + +The licensed conditions are one or the other of these two Licenses: + + - BSD 3-clause + - GPL v2.0 + +------------------------------------------------------------------------- +BSD 3-clause: +------------- + +Redistribution and use in source and binary forms of libcap/cap, with +or without modification, are permitted provided that the following +conditions are met: + +1. Redistributions of source code must retain any existing copyright + notice, and this entire permission notice in its entirety, + including the disclaimer of warranties. + +2. Redistributions in binary form must reproduce all prior and current + copyright notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + +3. The name of any author may not be used to endorse or promote + products derived from this software without their specific prior + written permission. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +------------------------------------------------------------------------- +GPL v2.0: +--------- + +ALTERNATIVELY, this product may be distributed under the terms of the +GNU General Public License (v2.0 - see below), in which case the +provisions of the GNU GPL are required INSTEAD OF the above +restrictions. (This clause is necessary due to a potential conflict +between the GNU GPL and the restrictions contained in a BSD-style +copyright.) + +------------------------- +Full text of gpl-2.0.txt: +------------------------- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +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. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. + + ================================================================================ @@ -36132,6 +36538,412 @@ Contents of probable licence file $GOMODCACHE/k8s.io/utils@v0.0.0-20201110183641 limitations under the License. +-------------------------------------------------------------------------------- +Dependency : kernel.org/pub/linux/libs/security/libcap/psx +Version: v1.2.57 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/kernel.org/pub/linux/libs/security/libcap/psx@v1.2.57/License: + +Unless otherwise *explicitly* stated, the following text describes the +licensed conditions under which the contents of this libcap/psx release +may be used and distributed. + +The licensed conditions are one or the other of these two Licenses: + + - BSD 3-clause + - GPL v2.0 + +------------------------------------------------------------------------- +BSD 3-clause: +------------- + +Redistribution and use in source and binary forms of libcap/psx, with +or without modification, are permitted provided that the following +conditions are met: + +1. Redistributions of source code must retain any existing copyright + notice, and this entire permission notice in its entirety, + including the disclaimer of warranties. + +2. Redistributions in binary form must reproduce all prior and current + copyright notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + +3. The name of any author may not be used to endorse or promote + products derived from this software without their specific prior + written permission. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +------------------------------------------------------------------------- +GPL v2.0: +--------- + +ALTERNATIVELY, this product may be distributed under the terms of the +GNU General Public License (v2.0 - see below), in which case the +provisions of the GNU GPL are required INSTEAD OF the above +restrictions. (This clause is necessary due to a potential conflict +between the GNU GPL and the restrictions contained in a BSD-style +copyright.) + +------------------------- +Full text of gpl-2.0.txt: +------------------------- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +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. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. + + -------------------------------------------------------------------------------- Dependency : sigs.k8s.io/structured-merge-diff/v4 Version: v4.1.0 diff --git a/dev-tools/notice/overrides.json b/dev-tools/notice/overrides.json index 3d81c36d3f6..6e2e2a2f505 100644 --- a/dev-tools/notice/overrides.json +++ b/dev-tools/notice/overrides.json @@ -11,3 +11,5 @@ {"name": "github.com/munnerz/goautoneg", "licenceType": "BSD-3-Clause"} {"name": "github.com/pelletier/go-buffruneio", "licenceType": "MIT"} {"name": "github.com/urso/magetools", "licenceType": "Apache-2.0"} +{"name": "kernel.org/pub/linux/libs/security/libcap/cap", "licenceType": "BSD-3-Clause", "note": "dual licensed as GPL-v2 and BSD"} +{"name": "kernel.org/pub/linux/libs/security/libcap/psx", "licenceType": "BSD-3-Clause", "note": "dual licensed as GPL-v2 and BSD"} \ No newline at end of file diff --git a/dev-tools/packaging/packages.yml b/dev-tools/packaging/packages.yml index c0dc436f034..a9f5f245eba 100644 --- a/dev-tools/packaging/packages.yml +++ b/dev-tools/packaging/packages.yml @@ -432,7 +432,7 @@ shared: dockerfile: 'Dockerfile.elastic-agent.tmpl' docker_entrypoint: 'docker-entrypoint.elastic-agent.tmpl' user: '{{ .BeatName }}' - linux_capabilities: '' + linux_capabilities: 'cap_net_raw+eip' image_name: '' files: 'elastic-agent.yml': diff --git a/dev-tools/packaging/templates/docker/Dockerfile.elastic-agent.tmpl b/dev-tools/packaging/templates/docker/Dockerfile.elastic-agent.tmpl index bbd31850ccb..0044852b149 100644 --- a/dev-tools/packaging/templates/docker/Dockerfile.elastic-agent.tmpl +++ b/dev-tools/packaging/templates/docker/Dockerfile.elastic-agent.tmpl @@ -17,9 +17,6 @@ RUN mkdir -p {{ $beatHome }}/data {{ $beatHome }}/data/elastic-agent-{{ commit_s rm {{ $beatBinary }} && \ ln -s {{ $beatHome }}/data/elastic-agent-{{ commit_short }}/elastic-agent {{ $beatBinary }} && \ chmod 0755 {{ $beatHome }}/data/elastic-agent-*/elastic-agent && \ -{{- if .linux_capabilities }} - setcap {{ .linux_capabilities }} {{ $beatBinary }} && \ -{{- end }} {{- range $i, $modulesd := .ModulesDirs }} chmod 0775 {{ $beatHome}}/{{ $modulesd }} && \ {{- end }} @@ -30,11 +27,20 @@ RUN mkdir -p {{ $beatHome }}/data {{ $beatHome }}/data/elastic-agent-{{ commit_s {{- end }} true +{{- if .linux_capabilities }} +# Since the beat is stored at the other end of a symlink we must follow the symlink first +# For security reasons setcap does not support symlinks. This is smart in the general case +# but in our specific case since we're building a trusted image from trusted binaries this is +# fine. Thus, we use readlink to follow the link and setcap on the actual binary +RUN readlink -f {{ $beatBinary }} | xargs setcap {{ .linux_capabilities }} +{{- end }} + FROM {{ .from }} # Contains the elastic agent image variant, an empty string for the standard variant # or "complete" for the bigger one. ENV ELASTIC_AGENT_IMAGE_VARIANT={{.Variant}} +ENV BEAT_SETUID_AS={{ .user }} {{- if contains .from "ubi-minimal" }} RUN for iter in {1..10}; do microdnf update -y && microdnf install -y shadow-utils jq && microdnf clean all && exit_code=0 && break || exit_code=$? && echo "microdnf error: retry $iter in 10s" && sleep 10; done; (exit $exit_code) diff --git a/dev-tools/packaging/templates/docker/Dockerfile.tmpl b/dev-tools/packaging/templates/docker/Dockerfile.tmpl index 829d004b9b6..e9060517947 100644 --- a/dev-tools/packaging/templates/docker/Dockerfile.tmpl +++ b/dev-tools/packaging/templates/docker/Dockerfile.tmpl @@ -13,14 +13,19 @@ RUN mkdir -p {{ $beatHome }}/data {{ $beatHome }}/logs && \ find {{ $beatHome }} -type d -exec chmod 0755 {} \; && \ find {{ $beatHome }} -type f -exec chmod 0644 {} \; && \ chmod 0755 {{ $beatBinary }} && \ -{{- if .linux_capabilities }} - setcap {{ .linux_capabilities }} {{ $beatBinary }} && \ -{{- end }} {{- range $i, $modulesd := .ModulesDirs }} chmod 0775 {{ $beatHome}}/{{ $modulesd }} && \ {{- end }} chmod 0775 {{ $beatHome }}/data {{ $beatHome }}/logs +{{- if .linux_capabilities }} +# Since the beat is stored at the other end of a symlink we must follow the symlink first +# For security reasons setcap does not support symlinks. This is smart in the general case +# but in our specific case since we're building a trusted image from trusted binaries this is +# fine. Thus, we use readlink to follow the link and setcap on the actual binary +RUN readlink -f {{ $beatBinary }} | xargs setcap {{ .linux_capabilities }} +{{- end }} + FROM {{ .from }} {{- if contains .from "ubi-minimal" }} @@ -127,6 +132,7 @@ USER {{ .user }} {{- if (and (eq .BeatName "heartbeat") (not (contains .from "ubi-minimal"))) }} # Setup synthetics env vars ENV ELASTIC_SYNTHETICS_CAPABLE=true +ENV BEAT_SETUID_AS={{ .user }} ENV SUITES_DIR={{ $beatHome }}/suites ENV NODE_VERSION=14.17.5 ENV PATH="$NODE_PATH/node/bin:$PATH" diff --git a/go.mod b/go.mod index 439b9d09cf2..edccd059ea0 100644 --- a/go.mod +++ b/go.mod @@ -192,6 +192,7 @@ require ( k8s.io/api v0.21.1 k8s.io/apimachinery v0.21.1 k8s.io/client-go v0.21.1 + kernel.org/pub/linux/libs/security/libcap/cap v1.2.57 ) require ( @@ -283,6 +284,7 @@ require ( k8s.io/klog/v2 v2.8.0 // indirect k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect + kernel.org/pub/linux/libs/security/libcap/psx v1.2.57 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.1.0 // indirect sigs.k8s.io/yaml v1.2.0 // indirect ) diff --git a/go.sum b/go.sum index 25338202f7c..54a3dc72bc1 100644 --- a/go.sum +++ b/go.sum @@ -1344,6 +1344,10 @@ k8s.io/klog/v2 v2.8.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 h1:vEx13qjvaZ4yfObSSXW7BrMc/KQBBT/Jyee8XtLf4x0= k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7/go.mod h1:wXW5VT87nVfh/iLV8FpR2uDvrFyomxbtb1KivDbvPTE= k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= +kernel.org/pub/linux/libs/security/libcap/cap v1.2.57 h1:2nmqI+aw7EQZuelYktkQHBE4jESD2tOR+lOJEnv/Apo= +kernel.org/pub/linux/libs/security/libcap/cap v1.2.57/go.mod h1:uI99C3r4SXvJeuqoEtx/eWt7UbmfqqZ80H8q+9t/A7I= +kernel.org/pub/linux/libs/security/libcap/psx v1.2.57 h1:NOFATXSf5z/cMR3HIwQ3Xrd3nwnWl5xThmNr5U/F0pI= +kernel.org/pub/linux/libs/security/libcap/psx v1.2.57/go.mod h1:+l6Ee2F59XiJ2I6WR5ObpC1utCQJZ/VLsEbQCD8RG24= k8s.io/utils v0.0.0-20201110183641-67b214c5f920 h1:CbnUZsM497iRC5QMVkHwyl8s2tB3g7yaSHkYPkpgelw= k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= diff --git a/heartbeat/beater/heartbeat.go b/heartbeat/beater/heartbeat.go index fe68146c24d..b3baab7363c 100644 --- a/heartbeat/beater/heartbeat.go +++ b/heartbeat/beater/heartbeat.go @@ -20,6 +20,7 @@ package beater import ( "errors" "fmt" + "syscall" "time" "github.com/elastic/beats/v7/heartbeat/config" @@ -81,6 +82,9 @@ func New(b *beat.Beat, rawConfig *common.Config) (beat.Beater, error) { func (bt *Heartbeat) Run(b *beat.Beat) error { logp.Info("heartbeat is running! Hit CTRL-C to stop it.") + groups, _ := syscall.Getgroups() + logp.Info("Effective user/group ids: %d/%d, with groups: %v", syscall.Geteuid(), syscall.Getegid(), groups) + stopStaticMonitors, err := bt.RunStaticMonitors(b) if err != nil { return err diff --git a/heartbeat/scripts/mage/package.go b/heartbeat/scripts/mage/package.go index 0094cff2d2e..0897c897d13 100644 --- a/heartbeat/scripts/mage/package.go +++ b/heartbeat/scripts/mage/package.go @@ -48,7 +48,7 @@ func CustomizePackaging() { pkgType := args.Types[0] switch pkgType { case devtools.Docker: - args.Spec.ExtraVar("linux_capabilities", "cap_net_raw=eip") + args.Spec.ExtraVar("linux_capabilities", "cap_net_raw+eip") args.Spec.Files[monitorsDTarget] = monitorsD case devtools.TarGz, devtools.Zip: args.Spec.Files[monitorsDTarget] = monitorsD diff --git a/heartbeat/security.go b/heartbeat/security.go new file mode 100644 index 00000000000..e8d85e0330f --- /dev/null +++ b/heartbeat/security.go @@ -0,0 +1,237 @@ +// Licensed to Elasticsearch B.V. under one or more contributor +// license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright +// ownership. Elasticsearch B.V. licenses this file to you 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. + +// TODO: Support other architectures (e.g. arm) +//go:build linux +// +build linux + +package main + +import ( + "fmt" + "os" + "os/user" + "runtime" + "strconv" + "syscall" + + "kernel.org/pub/linux/libs/security/libcap/cap" + + "github.com/elastic/beats/v7/libbeat/common/seccomp" +) + +func init() { + // Here we set a bunch of linux specific security stuff. + // In the context of a container, where users frequently run as root, we follow BEAT_SETUID_AS to setuid/gid + // and add capabilities to make this actually run as a regular user. This also helps Node.js in synthetics, which + // does not want to run as root. It's also just generally more secure. + if localUserName := os.Getenv("BEAT_SETUID_AS"); localUserName != "" && syscall.Geteuid() == 0 { + err := changeUser(localUserName) + if err != nil { + panic(err) + } + } + + // Attempt to set capabilities before we setup seccomp rules + // Note that we discard any errors because they are not actionable. + // The beat should use `getcap` at a later point to examine available capabilities + // rather than relying on errors from `setcap` + setCapabilities() + + switch runtime.GOARCH { + case "amd64", "386": + err := setSeccompRules() + if err != nil { + panic(err) + } + } +} + +func changeUser(localUserName string) error { + localUser, err := user.Lookup(localUserName) + if err != nil { + return fmt.Errorf("could not lookup '%s': %w", localUser, err) + } + localUserUid, err := strconv.Atoi(localUser.Uid) + if err != nil { + return fmt.Errorf("could not parse UID '%s' as int: %w", localUser.Uid, err) + } + localUserGid, err := strconv.Atoi(localUser.Gid) + if err != nil { + return fmt.Errorf("could not parse GID '%s' as int: %w", localUser.Uid, err) + } + // We include the root group because the docker image contains many directories (data,logs) + // that are owned by root:root with 0775 perms. The heartbeat user is in both groups + // in the container, but we need to repeat that here. + err = syscall.Setgroups([]int{localUserGid, 0}) + if err != nil { + return fmt.Errorf("could not set groups: %w", err) + } + + // Set the main group as localUserUid so new files created are owned by the user's group + err = syscall.Setgid(localUserGid) + if err != nil { + return fmt.Errorf("could not set gid to %d: %w", localUserGid, err) + } + + // Note this is not the regular SetUID! Look at the 'cap' package docs for it, it preserves + // capabilities post-SetUID, which we use to lock things down immediately + err = cap.SetUID(localUserUid) + if err != nil { + return fmt.Errorf("could not setuid to %d: %w", localUserUid, err) + } + + // This may not be necessary, but is good hygeine, we do some shelling out to node/npm etc. + // and $HOME should reflect the user's preferences + return os.Setenv("HOME", localUser.HomeDir) +} + +func setCapabilities() error { + // Start with an empty capability set + newcaps := cap.NewSet() + // Both permitted and effective are required! Permitted makes the permmission + // possible to get, effective makes it 'active' + err := newcaps.SetFlag(cap.Permitted, true, cap.NET_RAW) + if err != nil { + return fmt.Errorf("error setting permitted setcap: %w", err) + } + err = newcaps.SetFlag(cap.Effective, true, cap.NET_RAW) + if err != nil { + return fmt.Errorf("error setting effective setcap: %w", err) + } + + // We do not want these capabilities to be inherited by subprocesses + err = newcaps.SetFlag(cap.Inheritable, false, cap.NET_RAW) + if err != nil { + return fmt.Errorf("error setting inheritable setcap: %w", err) + } + + // Apply the new capabilities to the current process (incl. all threads) + err = newcaps.SetProc() + if err != nil { + return fmt.Errorf("error setting new process capabilities via setcap: %w", err) + } + + return nil +} + +func setSeccompRules() error { + // We require a number of syscalls to run. This list was generated with + // mage build && env ELASTIC_SYNTHETICS_CAPABLE=true strace -f --output=syscalls ./heartbeat --path.config sample-synthetics-config/ -e + // then grepping for 'EPERM' in the 'syscalls' file. + syscalls := []string{ + "access", + "arch_prctl", + "bind", + "brk", + "capget", + "chdir", + "chmod", + "chown", + "clone", + "close", + "connect", + "creat", + "dup2", + "epoll_ctl", + "epoll_pwait", + "eventfd2", + "execve", + "exit", + "faccessat", + "fadvise64", + "fallocate", + "fcntl", + "flock", + "fstat", + "fsync", + "futex", + "capget", + "getcwd", + "getdents64", + "getegid", + "geteuid", + "getgid", + "getpeername", + "getpgrp", + "getpid", + "getppid", + "getpriority", + "getrandom", + "getresuid", + "getresgid", + "getrusage", + "getsockname", + "gettid", + "getuid", + "ioctl", + "inotify_init", + "lchown", + "link", + "lseek", + "madvise", + "memfd_create", + "mkdir", + "mkdirat", + "mlock", + "mmap", + "mprotect", + "munmap", + "nanosleep", + "name_to_handle_at", + "newfstatat", + "openat", + "pipe", + "pipe2", + "poll", + "prctl", + "pread64", + "prlimit64", + "pwrite64", + "read", + "readlink", + "readlinkat", + "recvfrom", + "rename", + "rmdir", + "rt_sigaction", + "rt_sigprocmask", + "rt_sigreturn", + "sched_getaffinity", + "sched_getparam", + "sched_getscheduler", + "select", + "sendto", + "set_robust_list", + "set_tid_address", + "setpriority", + "setsid", + "sigaltstack", + "socket", + "socketpair", + "stat", + "statx", + "symlink", + "umask", + "uname", + "unlink", + "utimensat", + "write", + } + + return seccomp.ModifyDefaultPolicy(seccomp.AddSyscall, syscalls...) +} diff --git a/packetbeat/scripts/mage/package.go b/packetbeat/scripts/mage/package.go index e81176615ba..fe5e55bb305 100644 --- a/packetbeat/scripts/mage/package.go +++ b/packetbeat/scripts/mage/package.go @@ -60,7 +60,7 @@ func CustomizePackaging() { args.Spec.ReplaceFile("/etc/{{.BeatName}}/{{.BeatName}}.yml", configYml) args.Spec.ReplaceFile("/etc/{{.BeatName}}/{{.BeatName}}.reference.yml", referenceConfigYml) case devtools.Docker: - args.Spec.ExtraVar("linux_capabilities", "cap_net_raw,cap_net_admin=eip") + args.Spec.ExtraVar("linux_capabilities", "cap_net_raw,cap_net_admin+eip") default: panic(errors.Errorf("unhandled package type: %v", pkgType)) } diff --git a/x-pack/heartbeat/monitors/browser/browser.go b/x-pack/heartbeat/monitors/browser/browser.go index 1e37961a4e8..ba2de896d3c 100644 --- a/x-pack/heartbeat/monitors/browser/browser.go +++ b/x-pack/heartbeat/monitors/browser/browser.go @@ -7,8 +7,8 @@ package browser import ( "fmt" "os" - "os/user" "sync" + "syscall" "github.com/elastic/beats/v7/heartbeat/monitors/plugin" "github.com/elastic/beats/v7/libbeat/common" @@ -35,12 +35,9 @@ func create(name string, cfg *common.Config) (p plugin.Plugin, err error) { logp.Info("Synthetic browser monitor detected! Please note synthetic monitors are a beta feature!") }) - curUser, err := user.Current() - if err != nil { - return plugin.Plugin{}, fmt.Errorf("could not determine current user for script monitor %w: ", err) - } - if curUser.Uid == "0" { - return plugin.Plugin{}, fmt.Errorf("script monitors cannot be run as root! Current UID is %s", curUser.Uid) + // We do not use user.Current() which does not reflect setuid changes! + if syscall.Geteuid() == 0 { + return plugin.Plugin{}, fmt.Errorf("script monitors cannot be run as root!") } s, err := NewSuite(cfg) diff --git a/x-pack/heartbeat/monitors/browser/source/local.go b/x-pack/heartbeat/monitors/browser/source/local.go index ea0ce32f1d6..e4a4563dc65 100644 --- a/x-pack/heartbeat/monitors/browser/source/local.go +++ b/x-pack/heartbeat/monitors/browser/source/local.go @@ -11,6 +11,7 @@ import ( "os/exec" "path" "path/filepath" + "syscall" "github.com/elastic/beats/v7/libbeat/logp" @@ -142,6 +143,6 @@ func runSimpleCommand(cmd *exec.Cmd, dir string) error { cmd.Dir = dir logp.Info("Running %s in %s", cmd, dir) output, err := cmd.CombinedOutput() - logp.Info("Ran %s got %s", cmd, string(output)) + logp.Info("Ran %s (%d) got '%s': (%s) as (%d/%d)", cmd, cmd.ProcessState.ExitCode(), string(output), err, syscall.Getuid(), syscall.Geteuid()) return err } diff --git a/x-pack/heartbeat/monitors/browser/source/zipurl.go b/x-pack/heartbeat/monitors/browser/source/zipurl.go index 9dc9c8ab633..9e2129e4ce5 100644 --- a/x-pack/heartbeat/monitors/browser/source/zipurl.go +++ b/x-pack/heartbeat/monitors/browser/source/zipurl.go @@ -16,6 +16,7 @@ import ( "time" "github.com/elastic/beats/v7/libbeat/common/transport/httpcommon" + "github.com/elastic/beats/v7/libbeat/logp" ) type ZipURLSource struct { @@ -112,8 +113,10 @@ func unzip(tf *os.File, targetDir string, folder string) error { for _, f := range rdr.File { err = unzipFile(targetDir, folder, f) if err != nil { - // TODO: err handlers - os.RemoveAll(targetDir) + rmErr := os.RemoveAll(targetDir) + if rmErr != nil { + return fmt.Errorf("could not remove directory after encountering error unzipping file: %w, (original unzip error: %s)", rmErr, err) + } return err } } @@ -186,6 +189,7 @@ func retryingZipRequest(method string, z *ZipURLSource) (resp *http.Response, er if err == nil { resp.Body.Close() } + logp.Info("attempt to download zip at %s failed: %s, will retry in 1s", z.URL, err) time.Sleep(time.Second) } if resp != nil && resp.StatusCode > 300 { @@ -195,7 +199,6 @@ func retryingZipRequest(method string, z *ZipURLSource) (resp *http.Response, er } func zipRequest(method string, z *ZipURLSource) (*http.Response, error) { - req, err := http.NewRequest(method, z.URL, nil) if err != nil { return nil, fmt.Errorf("could not issue request to: %s %w", z.URL, err) diff --git a/x-pack/heartbeat/seccomp_linux.go b/x-pack/heartbeat/seccomp_linux.go deleted file mode 100644 index eee23080c82..00000000000 --- a/x-pack/heartbeat/seccomp_linux.go +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package main - -import ( - "runtime" - - "github.com/elastic/beats/v7/libbeat/common/seccomp" -) - -func init() { - switch runtime.GOARCH { - case "amd64", "386": - // We require a number of syscalls to run. This list was generated with - // mage build && env ELASTIC_SYNTHETICS_CAPABLE=true strace --output=syscalls ./heartbeat --path.config sample-synthetics-config/ -e - // then filtered through: cat syscalls | cut -d '(' -f 1 | egrep '\w+' -o | sort | uniq | xargs -n1 -IFF echo \"FF\" - // We should tighten this up before GA. While it is true that there are probably duplicate - // syscalls here vs. the base, this is probably OK for now. - syscalls := []string{ - "access", - "arch_prctl", - "bind", - "brk", - "clone", - "close", - "epoll_ctl", - "epoll_pwait", - "execve", - "exited", - "fcntl", - "flock", - "fstat", - "futex", - "geteuid", - "getgid", - "getpid", - "getppid", - "getrandom", - "getsockname", - "gettid", - "getuid", - "ioctl", - "mlock", - "mmap", - "mprotect", - "munmap", - "newfstatat", - "openat", - "prctl", - "pread64", - "prlimit64", - "read", - "readlinkat", - "recvfrom", - "rt_sigaction", - "rt_sigprocmask", - "rt_sigreturn", - "sched_getaffinity", - "sendto", - "set_robust_list", - "set_tid_address", - "si_code", - "sigaltstack", - "SIGINT", - "SIGURG", - "SI_KERNEL", - "si_pid", - "si_signo", - "SI_TKILL", - "si_uid", - "socket", - "umask", - "uname", - "with", - "write"} - - if err := seccomp.ModifyDefaultPolicy(seccomp.AddSyscall, syscalls...); err != nil { - panic(err) - } - } -} From a2c536c7e911717c148eb7cb24ffc163264f344a Mon Sep 17 00:00:00 2001 From: Peter Deng Date: Tue, 19 Oct 2021 09:27:46 +0800 Subject: [PATCH 25/25] mage fmt --- libbeat/metric/system/process/process.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libbeat/metric/system/process/process.go b/libbeat/metric/system/process/process.go index 3c001ab9031..65b86f5ab67 100644 --- a/libbeat/metric/system/process/process.go +++ b/libbeat/metric/system/process/process.go @@ -28,9 +28,10 @@ import ( "strings" "time" - "github.com/elastic/go-sysinfo/types" "github.com/pkg/errors" + "github.com/elastic/go-sysinfo/types" + "github.com/elastic/beats/v7/libbeat/common" "github.com/elastic/beats/v7/libbeat/common/match" "github.com/elastic/beats/v7/libbeat/logp"