content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
class Solution:
def largestRectangleArea(self, heights: List[int]) -> int:
stack = []
heights.append(0)
mx = 0
for i, h in enumerate(heights):
while stack and h < heights[stack[-1]]:
height = heights[stack.pop()]
if stack:
left = stack[-1]
else:
left = -1
width = i - left - 1
mx = max(mx, height * width)
stack.append(i)
return mx
| class Solution:
def largest_rectangle_area(self, heights: List[int]) -> int:
stack = []
heights.append(0)
mx = 0
for (i, h) in enumerate(heights):
while stack and h < heights[stack[-1]]:
height = heights[stack.pop()]
if stack:
left = stack[-1]
else:
left = -1
width = i - left - 1
mx = max(mx, height * width)
stack.append(i)
return mx |
def is_prime(x):
if x > 2:
for i in range(2, x):
if x % i == 0:
return False
return True
elif x == 0 or x == 1:
return False
elif x == 2:
return True
print(is_prime(9))
| def is_prime(x):
if x > 2:
for i in range(2, x):
if x % i == 0:
return False
return True
elif x == 0 or x == 1:
return False
elif x == 2:
return True
print(is_prime(9)) |
#047 - Contagem de pares
for n in range(2, 51, 2):
print(n, end=' ')
print('acabou')
| for n in range(2, 51, 2):
print(n, end=' ')
print('acabou') |
class Inventory:
def __init__(self):
self.stuff = []
def add(self, item):
self.stuff.append(item)
def drop(self, item):
self.stuff.remove(item)
return item
def has(self, item):
return item in self.stuff
def all(self):
return self.stuff
| class Inventory:
def __init__(self):
self.stuff = []
def add(self, item):
self.stuff.append(item)
def drop(self, item):
self.stuff.remove(item)
return item
def has(self, item):
return item in self.stuff
def all(self):
return self.stuff |
s=input()
i=0
while i<len(s):
if s[i]=='-' and s[i+1]=='-':
print("2",end="")
i+=2
elif s[i]=='-' and s[i+1]=='.':
print("1",end="")
i+=2
else:
print("0",end="")
i+=1
| s = input()
i = 0
while i < len(s):
if s[i] == '-' and s[i + 1] == '-':
print('2', end='')
i += 2
elif s[i] == '-' and s[i + 1] == '.':
print('1', end='')
i += 2
else:
print('0', end='')
i += 1 |
def inc_hash(the_hash,the_key):
try:
the_hash[the_key]
except:
the_hash[the_key] = 0
pass
finally:
the_hash[the_key] += 1
def inc_double_key_hash(the_hash,the_key1,the_key2):
try:
the_hash[the_key1]
except:
the_hash[the_key1] = {}
pass
try:
the_hash[the_key1][the_key2]
except:
the_hash[the_key1][the_key2] = 0
pass
print(the_hash[the_key1][the_key2])
the_hash[the_key1][the_key2] += 1
def insert_double_key_hash(the_hash,the_key1,the_key2,the_value):
try:
the_hash[the_key1]
except:
the_hash[the_key1] = {}
the_hash[the_key1][the_key2] = the_value
def has_double_key_hash(the_hash,the_key1,the_key2):
return_value = False
try:
the_hash[the_key1][the_key2]
return_value = True
except:
pass
return return_value
| def inc_hash(the_hash, the_key):
try:
the_hash[the_key]
except:
the_hash[the_key] = 0
pass
finally:
the_hash[the_key] += 1
def inc_double_key_hash(the_hash, the_key1, the_key2):
try:
the_hash[the_key1]
except:
the_hash[the_key1] = {}
pass
try:
the_hash[the_key1][the_key2]
except:
the_hash[the_key1][the_key2] = 0
pass
print(the_hash[the_key1][the_key2])
the_hash[the_key1][the_key2] += 1
def insert_double_key_hash(the_hash, the_key1, the_key2, the_value):
try:
the_hash[the_key1]
except:
the_hash[the_key1] = {}
the_hash[the_key1][the_key2] = the_value
def has_double_key_hash(the_hash, the_key1, the_key2):
return_value = False
try:
the_hash[the_key1][the_key2]
return_value = True
except:
pass
return return_value |
# Copyright 2019 The Jetstack cert-manager contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This file is automatically updated by hack/update-deps.sh
load("@bazel_gazelle//:deps.bzl", "go_repository")
# Manually defined repositories are kept separate to keep things easy to
# maintain.
def manual_repositories():
# This is needed to avoid errors when building @io_k8s_code_generator cmd/
# targets that look like:
# ERROR: /private/var/tmp/_bazel_james/7efc976e92b56f94fd5066e3c9f5d356/external/org_golang_x_tools/internal/imports/BUILD.bazel:3:1: no such package '@org_golang_x_mod//semver': The repository '@org_golang_x_mod' could not be resolved and referenced by '@org_golang_x_tools//internal/imports:go_default_library'
go_repository(
name = "org_golang_x_mod",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/mod",
sum = "h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ=",
version = "v0.2.0",
)
def go_repositories():
manual_repositories()
go_repository(
name = "co_honnef_go_tools",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "honnef.co/go/tools",
sum = "h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=",
version = "v0.0.1-2019.2.3",
)
go_repository(
name = "com_github_alecthomas_template",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/alecthomas/template",
sum = "h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=",
version = "v0.0.0-20190718012654-fb15b899a751",
)
go_repository(
name = "com_github_alecthomas_units",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/alecthomas/units",
sum = "h1:Hs82Z41s6SdL1CELW+XaDYmOH4hkBN4/N9og/AsOv7E=",
version = "v0.0.0-20190717042225-c3de453c63f4",
)
go_repository(
name = "com_github_armon_consul_api",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/armon/consul-api",
sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=",
version = "v0.0.0-20180202201655-eb2c6b5be1b6",
)
go_repository(
name = "com_github_armon_go_metrics",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/armon/go-metrics",
sum = "h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=",
version = "v0.0.0-20180917152333-f0300d1749da",
)
go_repository(
name = "com_github_armon_go_radix",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/armon/go-radix",
sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
version = "v0.0.0-20180808171621-7fddfc383310",
)
go_repository(
name = "com_github_asaskevich_govalidator",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/asaskevich/govalidator",
sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
version = "v0.0.0-20190424111038-f61b66f89f4a",
)
go_repository(
name = "com_github_aws_aws_sdk_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/aws/aws-sdk-go",
sum = "h1:izATc/E0+HcT5YHmaQVjn7GHCoqaBxn0PGo6Zq5UNFA=",
version = "v1.34.30",
)
go_repository(
name = "com_github_azure_azure_sdk_for_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/azure-sdk-for-go",
sum = "h1:m4oQOm3HXtQh2Ipata+pLSS1kGUD/7ikkvNq81XM/7s=",
version = "v46.3.0+incompatible",
)
go_repository(
name = "com_github_azure_go_ansiterm",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-ansiterm",
sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
version = "v0.0.0-20170929234023-d6e3b3328b78",
)
go_repository(
name = "com_github_azure_go_autorest_autorest",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/autorest",
sum = "h1:LIzfhNo9I3+il0KO2JY1/lgJmjig7lY0wFulQNZkbtg=",
version = "v0.11.6",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_adal",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/autorest/adal",
sum = "h1:1/DtH4Szusk4psLBrJn/gocMRIf1ji30WAz3GfyULRQ=",
version = "v0.9.4",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_date",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/autorest/date",
sum = "h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw=",
version = "v0.3.0",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_mocks",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/autorest/mocks",
sum = "h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk=",
version = "v0.4.1",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_to",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/autorest/to",
sum = "h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk=",
version = "v0.4.0",
)
go_repository(
name = "com_github_azure_go_autorest_autorest_validation",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/autorest/validation",
sum = "h1:3I9AAI63HfcLtphd9g39ruUwRI+Ca+z/f36KHPFRUss=",
version = "v0.3.0",
)
go_repository(
name = "com_github_azure_go_autorest_logger",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/logger",
sum = "h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE=",
version = "v0.2.0",
)
go_repository(
name = "com_github_azure_go_autorest_tracing",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest/tracing",
sum = "h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo=",
version = "v0.6.0",
)
go_repository(
name = "com_github_beorn7_perks",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/beorn7/perks",
sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
version = "v1.0.1",
)
go_repository(
name = "com_github_bitly_go_hostpool",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/bitly/go-hostpool",
sum = "h1:mXoPYz/Ul5HYEDvkta6I8/rnYM5gSdSV2tJ6XbZuEtY=",
version = "v0.0.0-20171023180738-a3a6125de932",
)
go_repository(
name = "com_github_blang_semver",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/blang/semver",
sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=",
version = "v3.5.0+incompatible",
)
go_repository(
name = "com_github_bmizerany_assert",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/bmizerany/assert",
sum = "h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=",
version = "v0.0.0-20160611221934-b7ed37b82869",
)
go_repository(
name = "com_github_burntsushi_toml",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/BurntSushi/toml",
sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
version = "v0.3.1",
)
go_repository(
name = "com_github_burntsushi_xgb",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/BurntSushi/xgb",
sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=",
version = "v0.0.0-20160522181843-27f122750802",
)
go_repository(
name = "com_github_cenkalti_backoff",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cenkalti/backoff",
sum = "h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=",
version = "v2.2.1+incompatible",
)
go_repository(
name = "com_github_client9_misspell",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/client9/misspell",
sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
version = "v0.3.4",
)
go_repository(
name = "com_github_cloudflare_cloudflare_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cloudflare/cloudflare-go",
sum = "h1:bhMGoNhAg21DuqJjU9jQepRRft6vYfo6pejT3NN4V6A=",
version = "v0.13.2",
)
go_repository(
name = "com_github_containerd_continuity",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/containerd/continuity",
sum = "h1:4BX8f882bXEDKfWIf0wa8HRvpnBoPszJJXL+TVbBw4M=",
version = "v0.0.0-20181203112020-004b46473808",
)
go_repository(
name = "com_github_coreos_bbolt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/bbolt",
sum = "h1:wZwiHHUieZCquLkDL0B8UhzreNWsPHooDAG3q34zk0s=",
version = "v1.3.2",
)
go_repository(
name = "com_github_coreos_etcd",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/etcd",
sum = "h1:8F3hqu9fGYLBifCmRCJsicFqDx/D68Rt3q1JMazcgBQ=",
version = "v3.3.13+incompatible",
)
go_repository(
name = "com_github_coreos_go_etcd",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/go-etcd",
sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=",
version = "v2.0.0+incompatible",
)
go_repository(
name = "com_github_coreos_go_oidc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/go-oidc",
sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
version = "v2.1.0+incompatible",
)
go_repository(
name = "com_github_coreos_go_semver",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/go-semver",
sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
version = "v0.3.0",
)
go_repository(
name = "com_github_coreos_go_systemd",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/go-systemd",
sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
version = "v0.0.0-20190321100706-95778dfbb74e",
)
go_repository(
name = "com_github_coreos_pkg",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/coreos/pkg",
sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
version = "v0.0.0-20180928190104-399ea9e2e55f",
)
go_repository(
name = "com_github_cpu_goacmedns",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cpu/goacmedns",
sum = "h1:QOeMpIEsIdm1LSASSswjaTf8CXmzcrgy5OeCfHjppA4=",
version = "v0.0.3",
)
go_repository(
name = "com_github_cpuguy83_go_md2man",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cpuguy83/go-md2man",
sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
version = "v1.0.10",
)
go_repository(
name = "com_github_davecgh_go_spew",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/davecgh/go-spew",
sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
version = "v1.1.1",
)
go_repository(
name = "com_github_denisenkom_go_mssqldb",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/denisenkom/go-mssqldb",
sum = "h1:yJ2kD1BvM28M4gt31MuDr0ROKsW+v6zBk9G0Bcr8qAY=",
version = "v0.0.0-20190412130859-3b1d194e553a",
)
go_repository(
name = "com_github_dgrijalva_jwt_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/dgrijalva/jwt-go",
sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
version = "v3.2.0+incompatible",
)
go_repository(
name = "com_github_digitalocean_godo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/digitalocean/godo",
sum = "h1:IMElzMUpO1dVR8qjSg53+5vDkOLzMbhJt4yTAq7NGCQ=",
version = "v1.44.0",
)
go_repository(
name = "com_github_docker_docker",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/docker/docker",
sum = "h1:w3NnFcKR5241cfmQU5ZZAsf0xcpId6mWOupTvJlUX2U=",
version = "v0.7.3-0.20190327010347-be7ac8be2ae0",
)
go_repository(
name = "com_github_docker_go_connections",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/docker/go-connections",
sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=",
version = "v0.4.0",
)
go_repository(
name = "com_github_docker_go_units",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/docker/go-units",
sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
version = "v0.4.0",
)
go_repository(
name = "com_github_docker_spdystream",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/docker/spdystream",
sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=",
version = "v0.0.0-20160310174837-449fdfce4d96",
)
go_repository(
name = "com_github_duosecurity_duo_api_golang",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/duosecurity/duo_api_golang",
sum = "h1:2MIhn2R6oXQbgW5yHfS+d6YqyMfXiu2L55rFZC4UD/M=",
version = "v0.0.0-20190308151101-6c680f768e74",
)
go_repository(
name = "com_github_elazarl_goproxy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/elazarl/goproxy",
sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=",
version = "v0.0.0-20180725130230-947c36da3153",
)
go_repository(
name = "com_github_emicklei_go_restful",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/emicklei/go-restful",
sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
version = "v2.9.5+incompatible",
)
go_repository(
name = "com_github_evanphx_json_patch",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/evanphx/json-patch",
sum = "h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=",
version = "v4.9.0+incompatible",
)
go_repository(
name = "com_github_fatih_color",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/fatih/color",
sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
version = "v1.7.0",
)
go_repository(
name = "com_github_fatih_structs",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/fatih/structs",
sum = "h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=",
version = "v1.1.0",
)
go_repository(
name = "com_github_fsnotify_fsnotify",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/fsnotify/fsnotify",
sum = "h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=",
version = "v1.4.9",
)
go_repository(
name = "com_github_ghodss_yaml",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ghodss/yaml",
sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
version = "v1.0.0",
)
go_repository(
name = "com_github_globalsign_mgo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/globalsign/mgo",
sum = "h1:DujepqpGd1hyOd7aW59XpK7Qymp8iy83xq74fLr21is=",
version = "v0.0.0-20181015135952-eeefdecb41b8",
)
go_repository(
name = "com_github_go_ini_ini",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-ini/ini",
sum = "h1:TWr1wGj35+UiWHlBA8er89seFXxzwFn11spilrrj+38=",
version = "v1.42.0",
)
go_repository(
name = "com_github_go_kit_kit",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-kit/kit",
sum = "h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=",
version = "v0.9.0",
)
go_repository(
name = "com_github_go_logfmt_logfmt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-logfmt/logfmt",
sum = "h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=",
version = "v0.4.0",
)
go_repository(
name = "com_github_go_logr_logr",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-logr/logr",
sum = "h1:ZPVluSmhtMIHlqUDMZu70FgMpRzbQfl4h9oKCAXOVDE=",
version = "v0.2.1-0.20200730175230-ee2de8da5be6",
)
go_repository(
name = "com_github_go_logr_zapr",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-logr/zapr",
sum = "h1:qXBXPDdNncunGs7XeEpsJt8wCjYBygluzfdLO0G5baE=",
version = "v0.1.1",
)
go_repository(
name = "com_github_go_openapi_analysis",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/analysis",
sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
version = "v0.19.5",
)
go_repository(
name = "com_github_go_openapi_errors",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/errors",
sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
version = "v0.19.2",
)
go_repository(
name = "com_github_go_openapi_jsonpointer",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/jsonpointer",
sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
version = "v0.19.3",
)
go_repository(
name = "com_github_go_openapi_jsonreference",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/jsonreference",
sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
version = "v0.19.3",
)
go_repository(
name = "com_github_go_openapi_loads",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/loads",
sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
version = "v0.19.4",
)
go_repository(
name = "com_github_go_openapi_runtime",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/runtime",
sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
version = "v0.19.4",
)
go_repository(
name = "com_github_go_openapi_spec",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/spec",
sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
version = "v0.19.3",
)
go_repository(
name = "com_github_go_openapi_strfmt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/strfmt",
sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
version = "v0.19.3",
)
go_repository(
name = "com_github_go_openapi_swag",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/swag",
sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
version = "v0.19.5",
)
go_repository(
name = "com_github_go_openapi_validate",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-openapi/validate",
sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
version = "v0.19.5",
)
go_repository(
name = "com_github_go_sql_driver_mysql",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-sql-driver/mysql",
sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=",
version = "v1.5.0",
)
go_repository(
name = "com_github_go_stack_stack",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-stack/stack",
sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
version = "v1.8.0",
)
go_repository(
name = "com_github_gobuffalo_flect",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gobuffalo/flect",
sum = "h1:EWCvMGGxOjsgwlWaP+f4+Hh6yrrte7JeFL2S6b+0hdM=",
version = "v0.2.0",
)
go_repository(
name = "com_github_gocql_gocql",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gocql/gocql",
sum = "h1:fwXmhM0OqixzJDOGgTSyNH9eEDij9uGTXwsyWXvyR0A=",
version = "v0.0.0-20190402132108-0e1d5de854df",
)
go_repository(
name = "com_github_gogo_protobuf",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gogo/protobuf",
sum = "h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=",
version = "v1.3.1",
)
go_repository(
name = "com_github_golang_glog",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golang/glog",
sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=",
version = "v0.0.0-20160126235308-23def4e6c14b",
)
go_repository(
name = "com_github_golang_groupcache",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golang/groupcache",
sum = "h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=",
version = "v0.0.0-20191227052852-215e87163ea7",
)
go_repository(
name = "com_github_golang_mock",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golang/mock",
sum = "h1:qGJ6qTW+x6xX/my+8YUVl4WNpX9B7+/l2tRsHGZ7f2s=",
version = "v1.3.1",
)
go_repository(
name = "com_github_golang_protobuf",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golang/protobuf",
sum = "h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=",
version = "v1.4.2",
)
go_repository(
name = "com_github_golang_snappy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golang/snappy",
sum = "h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=",
version = "v0.0.1",
)
go_repository(
name = "com_github_google_btree",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/btree",
sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
version = "v1.0.0",
)
go_repository(
name = "com_github_google_go_cmp",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/go-cmp",
sum = "h1:/exdXoGamhu5ONeUJH0deniYLWYvQwW66yvlfiiKTu0=",
version = "v0.4.1",
)
go_repository(
name = "com_github_google_go_github",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/go-github",
sum = "h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY=",
version = "v17.0.0+incompatible",
)
go_repository(
name = "com_github_google_go_querystring",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/go-querystring",
sum = "h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=",
version = "v1.0.0",
)
go_repository(
name = "com_github_google_gofuzz",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/gofuzz",
sum = "h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=",
version = "v1.2.0",
)
go_repository(
name = "com_github_google_martian",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/martian",
sum = "h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=",
version = "v2.1.0+incompatible",
)
go_repository(
name = "com_github_google_pprof",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/pprof",
sum = "h1:DLpL8pWq0v4JYoRpEhDfsJhhJyGKCcQM2WPW2TJs31c=",
version = "v0.0.0-20191218002539-d4f498aebedc",
)
go_repository(
name = "com_github_google_uuid",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/uuid",
sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
version = "v1.1.1",
)
go_repository(
name = "com_github_googleapis_gax_go_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/googleapis/gax-go/v2",
sum = "h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=",
version = "v2.0.5",
)
go_repository(
name = "com_github_googleapis_gnostic",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/googleapis/gnostic",
sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
version = "v0.4.1",
)
go_repository(
name = "com_github_gophercloud_gophercloud",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gophercloud/gophercloud",
sum = "h1:P/nh25+rzXouhytV2pUHBb65fnds26Ghl8/391+sT5o=",
version = "v0.1.0",
)
go_repository(
name = "com_github_gopherjs_gopherjs",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gopherjs/gopherjs",
sum = "h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=",
version = "v0.0.0-20181017120253-0766667cb4d1",
)
go_repository(
name = "com_github_gorilla_context",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gorilla/context",
sum = "h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=",
version = "v1.1.1",
)
go_repository(
name = "com_github_gorilla_mux",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gorilla/mux",
sum = "h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=",
version = "v1.8.0",
)
go_repository(
name = "com_github_gorilla_websocket",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gorilla/websocket",
sum = "h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=",
version = "v1.4.2",
)
go_repository(
name = "com_github_gotestyourself_gotestyourself",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gotestyourself/gotestyourself",
sum = "h1:AQwinXlbQR2HvPjQZOmDhRqsv5mZf+Jb1RnSLxcqZcI=",
version = "v2.2.0+incompatible",
)
go_repository(
name = "com_github_gregjones_httpcache",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gregjones/httpcache",
sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
version = "v0.0.0-20180305231024-9cad4c3443a7",
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_middleware",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
version = "v1.0.1-0.20190118093823-f849b5445de4",
)
go_repository(
name = "com_github_grpc_ecosystem_go_grpc_prometheus",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
version = "v1.2.0",
)
go_repository(
name = "com_github_grpc_ecosystem_grpc_gateway",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/grpc-ecosystem/grpc-gateway",
sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
version = "v1.9.5",
)
go_repository(
name = "com_github_hailocab_go_hostpool",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hailocab/go-hostpool",
sum = "h1:5upAirOpQc1Q53c0bnx2ufif5kANL7bfZWcc6VJWJd8=",
version = "v0.0.0-20160125115350-e80d13ce29ed",
)
go_repository(
name = "com_github_hashicorp_errwrap",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/errwrap",
sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_go_cleanhttp",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-cleanhttp",
sum = "h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=",
version = "v0.5.1",
)
go_repository(
name = "com_github_hashicorp_go_hclog",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-hclog",
sum = "h1:z3ollgGRg8RjfJH6UVBaG54R70GFd++QOkvnJH3VSBY=",
version = "v0.8.0",
)
go_repository(
name = "com_github_hashicorp_go_immutable_radix",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-immutable-radix",
sum = "h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_go_memdb",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-memdb",
sum = "h1:K1O4N2VPndZiTrdH3lmmf5bemr9Xw81KjVwhReIUjTQ=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_go_multierror",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-multierror",
sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_go_plugin",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-plugin",
sum = "h1:4OtAfUGbnKC6yS48p0CtMX2oFYtzFZVv6rok3cRWgnE=",
version = "v1.0.1",
)
go_repository(
name = "com_github_hashicorp_go_rootcerts",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-rootcerts",
sum = "h1:DMo4fmknnz0E0evoNYnV48RjWndOsmd6OW+09R3cEP8=",
version = "v1.0.1",
)
go_repository(
name = "com_github_hashicorp_go_uuid",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-uuid",
sum = "h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE=",
version = "v1.0.1",
)
go_repository(
name = "com_github_hashicorp_go_version",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-version",
sum = "h1:bPIoEKD27tNdebFGGxxYwcL4nepeY4j1QP23PFRGzg0=",
version = "v1.1.0",
)
go_repository(
name = "com_github_hashicorp_golang_lru",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/golang-lru",
sum = "h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=",
version = "v0.5.4",
)
go_repository(
name = "com_github_hashicorp_golang_math_big",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/golang-math-big",
sum = "h1:hGeXuXeccEhqbXZFgPdRq4oaaBE6QPve/X7A1VFiPhA=",
version = "v0.0.0-20180316142257-561262b71329",
)
go_repository(
name = "com_github_hashicorp_hcl",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/hcl",
sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_vault_api",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/vault/api",
sum = "h1:j08Or/wryXT4AcHj1oCbMd7IijXcKzYUGw59LGu9onU=",
version = "v1.0.4",
)
go_repository(
name = "com_github_hashicorp_vault_sdk",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/vault/sdk",
sum = "h1:mOEPeOhT7jl0J4AMl1E705+BcmeRs1VmKNb9F0sMLy8=",
version = "v0.1.13",
)
go_repository(
name = "com_github_hashicorp_go_retryablehttp",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-retryablehttp",
sum = "h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE=",
version = "v0.5.4",
)
go_repository(
name = "com_github_hashicorp_go_sockaddr",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-sockaddr",
sum = "h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc=",
version = "v1.0.2",
)
go_repository(
name = "com_github_hashicorp_yamux",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/yamux",
sum = "h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ=",
version = "v0.0.0-20181012175058-2f1d1f20f75d",
)
go_repository(
name = "com_github_howeyc_gopass",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/howeyc/gopass",
sum = "h1:kQWxfPIHVLbgLzphqk3QUflDy9QdksZR4ygR807bpy0=",
version = "v0.0.0-20170109162249-bf9dde6d0d2c",
)
go_repository(
name = "com_github_hpcloud_tail",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hpcloud/tail",
sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
version = "v1.0.0",
)
go_repository(
name = "com_github_imdario_mergo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/imdario/mergo",
sum = "h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg=",
version = "v0.3.9",
)
go_repository(
name = "com_github_inconshreveable_mousetrap",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/inconshreveable/mousetrap",
sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=",
version = "v1.0.0",
)
go_repository(
name = "com_github_jeffail_gabs",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Jeffail/gabs",
sum = "h1:V0uzR08Hj22EX8+8QMhyI9sX2hwRu+/RJhJUmnwda/E=",
version = "v1.1.1",
)
go_repository(
name = "com_github_jefferai_jsonx",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jefferai/jsonx",
sum = "h1:Xoz0ZbmkpBvED5W9W1B5B/zc3Oiq7oXqiW7iRV3B6EI=",
version = "v1.0.0",
)
go_repository(
name = "com_github_jmespath_go_jmespath",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jmespath/go-jmespath",
sum = "h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=",
version = "v0.4.0",
)
go_repository(
name = "com_github_jonboulle_clockwork",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jonboulle/clockwork",
sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
version = "v0.1.0",
)
go_repository(
name = "com_github_json_iterator_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/json-iterator/go",
sum = "h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=",
version = "v1.1.10",
)
go_repository(
name = "com_github_jstemmer_go_junit_report",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jstemmer/go-junit-report",
sum = "h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=",
version = "v0.9.1",
)
go_repository(
name = "com_github_jtolds_gls",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jtolds/gls",
sum = "h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=",
version = "v4.20.0+incompatible",
)
go_repository(
name = "com_github_julienschmidt_httprouter",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/julienschmidt/httprouter",
sum = "h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=",
version = "v1.2.0",
)
go_repository(
name = "com_github_keybase_go_crypto",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/keybase/go-crypto",
sum = "h1:Gsc9mVHLRqBjMgdQCghN9NObCcRncDqxJvBvEaIIQEo=",
version = "v0.0.0-20190403132359-d65b6b94177f",
)
go_repository(
name = "com_github_kisielk_errcheck",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/kisielk/errcheck",
sum = "h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=",
version = "v1.2.0",
)
go_repository(
name = "com_github_kisielk_gotool",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/kisielk/gotool",
sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=",
version = "v1.0.0",
)
go_repository(
name = "com_github_konsorten_go_windows_terminal_sequences",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/konsorten/go-windows-terminal-sequences",
sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=",
version = "v1.0.3",
)
go_repository(
name = "com_github_kr_logfmt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/kr/logfmt",
sum = "h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=",
version = "v0.0.0-20140226030751-b84e30acd515",
)
go_repository(
name = "com_github_kr_pretty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/kr/pretty",
sum = "h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=",
version = "v0.2.1",
)
go_repository(
name = "com_github_kr_pty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/kr/pty",
sum = "h1:hyz3dwM5QLc1Rfoz4FuWJQG5BN7tc6K1MndAUnGpQr4=",
version = "v1.1.5",
)
go_repository(
name = "com_github_kr_text",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/kr/text",
sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=",
version = "v0.1.0",
)
go_repository(
name = "com_github_lib_pq",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/lib/pq",
sum = "h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A=",
version = "v1.0.0",
)
go_repository(
name = "com_github_magiconair_properties",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/magiconair/properties",
sum = "h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=",
version = "v1.8.1",
)
go_repository(
name = "com_github_mailru_easyjson",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mailru/easyjson",
sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
version = "v0.7.0",
)
go_repository(
name = "com_github_mattbaird_jsonpatch",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mattbaird/jsonpatch",
sum = "h1:+J2gw7Bw77w/fbK7wnNJJDKmw1IbWft2Ul5BzrG1Qm8=",
version = "v0.0.0-20171005235357-81af80346b1a",
)
go_repository(
name = "com_github_mattn_go_colorable",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mattn/go-colorable",
sum = "h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=",
version = "v0.1.2",
)
go_repository(
name = "com_github_mattn_go_isatty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mattn/go-isatty",
sum = "h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=",
version = "v0.0.8",
)
go_repository(
name = "com_github_matttproud_golang_protobuf_extensions",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/matttproud/golang_protobuf_extensions",
sum = "h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=",
version = "v1.0.2-0.20181231171920-c182affec369",
)
go_repository(
name = "com_github_mgutz_ansi",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mgutz/ansi",
sum = "h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4=",
version = "v0.0.0-20170206155736-9520e82c474b",
)
go_repository(
name = "com_github_mgutz_logxi",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mgutz/logxi",
sum = "h1:n8cgpHzJ5+EDyDri2s/GC7a9+qK3/YEGnBsd0uS/8PY=",
version = "v0.0.0-20161027140823-aebf8a7d67ab",
)
go_repository(
name = "com_github_microsoft_go_winio",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Microsoft/go-winio",
sum = "h1:xAfWHN1IrQ0NJ9TBC0KBZoqLjzDTr1ML+4MywiUOryc=",
version = "v0.4.12",
)
go_repository(
name = "com_github_miekg_dns",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/miekg/dns",
sum = "h1:sJFOl9BgwbYAWOGEwr61FU28pqsBNdpRBnhGXtO06Oo=",
version = "v1.1.31",
)
go_repository(
name = "com_github_mitchellh_copystructure",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/copystructure",
sum = "h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=",
version = "v1.0.0",
)
go_repository(
name = "com_github_mitchellh_go_homedir",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/go-homedir",
sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=",
version = "v1.1.0",
)
go_repository(
name = "com_github_mitchellh_go_testing_interface",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/go-testing-interface",
sum = "h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0=",
version = "v1.0.0",
)
go_repository(
name = "com_github_mitchellh_mapstructure",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/mapstructure",
sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
version = "v1.1.2",
)
go_repository(
name = "com_github_mitchellh_reflectwalk",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/reflectwalk",
sum = "h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY=",
version = "v1.0.0",
)
go_repository(
name = "com_github_modern_go_concurrent",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/modern-go/concurrent",
sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
version = "v0.0.0-20180306012644-bacd9c7ef1dd",
)
go_repository(
name = "com_github_modern_go_reflect2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/modern-go/reflect2",
sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
version = "v1.0.1",
)
go_repository(
name = "com_github_munnerz_goautoneg",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/munnerz/goautoneg",
sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
version = "v0.0.0-20191010083416-a7dc8b61c822",
)
go_repository(
name = "com_github_mwitkow_go_conntrack",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mwitkow/go-conntrack",
sum = "h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=",
version = "v0.0.0-20161129095857-cc309e4a2223",
)
go_repository(
name = "com_github_mxk_go_flowrate",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mxk/go-flowrate",
sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
version = "v0.0.0-20140419014527-cca7078d478f",
)
go_repository(
name = "com_github_nvveen_gotty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Nvveen/Gotty",
sum = "h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=",
version = "v0.0.0-20120604004816-cd527374f1e5",
)
go_repository(
name = "com_github_nytimes_gziphandler",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/NYTimes/gziphandler",
sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
version = "v0.0.0-20170623195520-56545f4a5d46",
)
go_repository(
name = "com_github_oklog_run",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/oklog/run",
sum = "h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=",
version = "v1.0.0",
)
go_repository(
name = "com_github_onsi_ginkgo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/onsi/ginkgo",
sum = "h1:mFwc4LvZ0xpSvDZ3E+k8Yte0hLOMxXUlP+yXtJqkYfQ=",
version = "v1.12.1",
)
go_repository(
name = "com_github_onsi_gomega",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/onsi/gomega",
sum = "h1:o0+MgICZLuZ7xjH7Vx6zS/zcu93/BEp1VwkIW1mEXCE=",
version = "v1.10.1",
)
go_repository(
name = "com_github_opencontainers_go_digest",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/opencontainers/go-digest",
sum = "h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=",
version = "v1.0.0-rc1",
)
go_repository(
name = "com_github_opencontainers_image_spec",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/opencontainers/image-spec",
sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
version = "v1.0.1",
)
go_repository(
name = "com_github_opencontainers_runc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/opencontainers/runc",
sum = "h1:GlxAyO6x8rfZYN9Tt0Kti5a/cP41iuiO2yYT0IJGY8Y=",
version = "v0.1.1",
)
go_repository(
name = "com_github_ory_dockertest",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ory/dockertest",
sum = "h1:VrpM6Gqg7CrPm3bL4Wm1skO+zFWLbh7/Xb5kGEbJRh8=",
version = "v3.3.4+incompatible",
)
go_repository(
name = "com_github_pascaldekloe_goe",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pascaldekloe/goe",
sum = "h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY=",
version = "v0.1.0",
)
go_repository(
name = "com_github_patrickmn_go_cache",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/patrickmn/go-cache",
sum = "h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=",
version = "v2.1.0+incompatible",
)
go_repository(
name = "com_github_pborman_uuid",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pborman/uuid",
sum = "h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=",
version = "v1.2.0",
)
go_repository(
name = "com_github_pelletier_go_toml",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pelletier/go-toml",
sum = "h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=",
version = "v1.2.0",
)
go_repository(
name = "com_github_peterbourgon_diskv",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/peterbourgon/diskv",
sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
version = "v2.0.1+incompatible",
)
go_repository(
name = "com_github_pkg_errors",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pkg/errors",
sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
version = "v0.9.1",
)
go_repository(
name = "com_github_pmezard_go_difflib",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pmezard/go-difflib",
sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=",
version = "v1.0.0",
)
go_repository(
name = "com_github_pquerna_cachecontrol",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pquerna/cachecontrol",
sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
version = "v0.0.0-20171018203845-0dec1b30a021",
)
go_repository(
name = "com_github_prometheus_client_golang",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/prometheus/client_golang",
sum = "h1:NTGy1Ja9pByO+xAeH/qiWnLrKtr3hJPNjaVUwnjpdpA=",
version = "v1.7.1",
)
go_repository(
name = "com_github_prometheus_client_model",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/prometheus/client_model",
sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
version = "v0.2.0",
)
go_repository(
name = "com_github_prometheus_common",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/prometheus/common",
sum = "h1:RyRA7RzGXQZiW+tGMr7sxa85G1z0yOpM1qq5c8lNawc=",
version = "v0.10.0",
)
go_repository(
name = "com_github_prometheus_procfs",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/prometheus/procfs",
sum = "h1:F0+tqvhOksq22sc6iCHF5WGlWjdwj92p0udFh1VFBS8=",
version = "v0.1.3",
)
go_repository(
name = "com_github_puerkitobio_purell",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/PuerkitoBio/purell",
sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=",
version = "v1.1.1",
)
go_repository(
name = "com_github_puerkitobio_urlesc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/PuerkitoBio/urlesc",
sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
version = "v0.0.0-20170810143723-de5bf2ad4578",
)
go_repository(
name = "com_github_remyoudompheng_bigfft",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/remyoudompheng/bigfft",
sum = "h1:/NRJ5vAYoqz+7sG51ubIDHXeWO8DlTSrToPu6q11ziA=",
version = "v0.0.0-20170806203942-52369c62f446",
)
go_repository(
name = "com_github_russross_blackfriday",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/russross/blackfriday",
sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
version = "v1.5.2",
)
go_repository(
name = "com_github_ryanuber_go_glob",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ryanuber/go-glob",
sum = "h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk=",
version = "v1.0.0",
)
go_repository(
name = "com_github_sap_go_hdb",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/SAP/go-hdb",
sum = "h1:hkw4ozGZ/i4eak7ZuGkY5e0hxiXFdNUBNhr4AvZVNFE=",
version = "v0.14.1",
)
go_repository(
name = "com_github_sermodigital_jose",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/SermoDigital/jose",
sum = "h1:atYaHPD3lPICcbK1owly3aPm0iaJGSGPi0WD4vLznv8=",
version = "v0.9.1",
)
go_repository(
name = "com_github_sethgrid_pester",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/sethgrid/pester",
sum = "h1:X9XMOYjxEfAYSy3xK1DzO5dMkkWhs9E9UCcS1IERx2k=",
version = "v0.0.0-20190127155807-68a33a018ad0",
)
go_repository(
name = "com_github_sirupsen_logrus",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/sirupsen/logrus",
sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=",
version = "v1.6.0",
)
go_repository(
name = "com_github_smartystreets_assertions",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/smartystreets/assertions",
sum = "h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs=",
version = "v1.2.0",
)
go_repository(
name = "com_github_smartystreets_goconvey",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/smartystreets/goconvey",
sum = "h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=",
version = "v1.6.4",
)
go_repository(
name = "com_github_soheilhy_cmux",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/soheilhy/cmux",
sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
version = "v0.1.4",
)
go_repository(
name = "com_github_spf13_afero",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spf13/afero",
sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
version = "v1.2.2",
)
go_repository(
name = "com_github_spf13_cast",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spf13/cast",
sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
version = "v1.3.0",
)
go_repository(
name = "com_github_spf13_cobra",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spf13/cobra",
sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
version = "v1.0.0",
)
go_repository(
name = "com_github_spf13_jwalterweatherman",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spf13/jwalterweatherman",
sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
version = "v1.0.0",
)
go_repository(
name = "com_github_spf13_pflag",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spf13/pflag",
sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=",
version = "v1.0.5",
)
go_repository(
name = "com_github_spf13_viper",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spf13/viper",
sum = "h1:xVKxvI7ouOI5I+U9s2eeiUfMaWBVoXA3AWskkrqK0VM=",
version = "v1.7.0",
)
go_repository(
name = "com_github_stretchr_objx",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/stretchr/objx",
sum = "h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=",
version = "v0.2.0",
)
go_repository(
name = "com_github_stretchr_testify",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/stretchr/testify",
sum = "h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=",
version = "v1.6.1",
)
go_repository(
name = "com_github_tent_http_link_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/tent/http-link-go",
sum = "h1:/Bsw4C+DEdqPjt8vAqaC9LAqpAQnaCQQqmolqq3S1T4=",
version = "v0.0.0-20130702225549-ac974c61c2f9",
)
go_repository(
name = "com_github_tmc_grpc_websocket_proxy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/tmc/grpc-websocket-proxy",
sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
version = "v0.0.0-20190109142713-0ad062ec5ee5",
)
go_repository(
name = "com_github_ugorji_go_codec",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ugorji/go/codec",
sum = "h1:3SVOIvH7Ae1KRYyQWRjXWJEA9sS/c/pjvH++55Gr648=",
version = "v0.0.0-20181204163529-d75b2dcb6bc8",
)
go_repository(
name = "com_github_venafi_vcert",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Venafi/vcert",
sum = "h1:+J3fdxS1dgOJwGFM9LuQUr8F4YklF8hrq9BrNzLwPFE=",
version = "v0.0.0-20200310111556-eba67a23943f",
)
go_repository(
name = "com_github_xiang90_probing",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/xiang90/probing",
sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
version = "v0.0.0-20190116061207-43a291ad63a2",
)
go_repository(
name = "com_github_xordataexchange_crypt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/xordataexchange/crypt",
sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=",
version = "v0.0.3-0.20170626215501-b2862e3d0a77",
)
go_repository(
name = "com_google_cloud_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "cloud.google.com/go",
sum = "h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=",
version = "v0.51.0",
)
go_repository(
name = "com_sslmate_software_src_go_pkcs12",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "software.sslmate.com/src/go-pkcs12",
sum = "h1:AVd6O+azYjVQYW1l55IqkbL8/JxjrLtO6q4FCmV8N5c=",
version = "v0.0.0-20200830195227-52f69702a001",
)
go_repository(
name = "in_gopkg_alecthomas_kingpin_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/alecthomas/kingpin.v2",
sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=",
version = "v2.2.6",
)
go_repository(
name = "in_gopkg_check_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/check.v1",
sum = "h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=",
version = "v1.0.0-20190902080502-41f04d3bba15",
)
go_repository(
name = "in_gopkg_fsnotify_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/fsnotify.v1",
sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
version = "v1.4.7",
)
go_repository(
name = "in_gopkg_inf_v0",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/inf.v0",
sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
version = "v0.9.1",
)
go_repository(
name = "in_gopkg_ini_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/ini.v1",
sum = "h1:j+Lt/M1oPPejkniCg1TkWE2J3Eh1oZTsHSXzMTzUXn4=",
version = "v1.52.0",
)
go_repository(
name = "in_gopkg_mgo_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/mgo.v2",
sum = "h1:xcEWjVhvbDy+nHP67nPDDpbYrY+ILlfndk4bRioVHaU=",
version = "v2.0.0-20180705113604-9856a29383ce",
)
go_repository(
name = "in_gopkg_natefinch_lumberjack_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/natefinch/lumberjack.v2",
sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=",
version = "v2.0.0",
)
go_repository(
name = "in_gopkg_ory_am_dockertest_v3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/ory-am/dockertest.v3",
sum = "h1:oen8RiwxVNxtQ1pRoV4e4jqh6UjNsOuIZ1NXns6jdcw=",
version = "v3.3.4",
)
go_repository(
name = "in_gopkg_square_go_jose_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/square/go-jose.v2",
sum = "h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4=",
version = "v2.3.1",
)
go_repository(
name = "in_gopkg_tomb_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/tomb.v1",
sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
version = "v1.0.0-20141024135613-dd632973f1e7",
)
go_repository(
name = "in_gopkg_yaml_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/yaml.v2",
sum = "h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=",
version = "v2.3.0",
)
go_repository(
name = "io_k8s_api",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/api",
sum = "h1:XyrFIJqTYZJ2DU7FBE/bSPz7b1HvbVBuBf07oeo6eTc=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_apiextensions_apiserver",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/apiextensions-apiserver",
sum = "h1:jlY13lvZp+0p9fRX2khHFdiT9PYzT7zUrANz6R1NKtY=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_apimachinery",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/apimachinery",
sum = "h1:gjKnAda/HZp5k4xQYjL0K/Yb66IvNqjthCb03QlKpaQ=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_apiserver",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/apiserver",
sum = "h1:jLhrL06wGAADbLUUQm8glSLnAGP6c7y5R3p19grkBoY=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_client_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/client-go",
sum = "h1:1+0E0zfWFIWeyRhQYWzimJOyAk2UT7TiARaLNwJCf7k=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_code_generator",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/code-generator",
sum = "h1:r0BxYnttP/r8uyKd4+Njg0B57kKi8wLvwEzaaVy3iZ8=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_component_base",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/component-base",
sum = "h1:OueXf1q3RW7NlLlUCj2Dimwt7E1ys6ZqRnq53l2YuoE=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_gengo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/gengo",
sum = "h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=",
version = "v0.0.0-20200428234225-8167cfdcfc14",
)
go_repository(
name = "io_k8s_klog",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/klog",
sum = "h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=",
version = "v1.0.0",
)
go_repository(
name = "io_k8s_kube_aggregator",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/kube-aggregator",
sum = "h1:rL4fsftMaqkKjaibArYDaBeqN41CHaJzgRJjUB9IrIg=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_kube_openapi",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/kube-openapi",
sum = "h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=",
version = "v0.0.0-20200805222855-6aeccd4b50c6",
)
go_repository(
name = "io_k8s_sigs_controller_runtime",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/controller-runtime",
sum = "h1:jkAnfdTYBpFwlmBn3pS5HFO06SfxvnTZ1p5PeEF/zAA=",
version = "v0.6.2",
)
go_repository(
name = "io_k8s_sigs_controller_tools",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/controller-tools",
sum = "h1:PXOHvyYAjWfO0UfQvaUo33HpXNCOilV3i/Vjc7iM1/A=",
version = "v0.2.9-0.20200414181213-645d44dca7c0",
)
go_repository(
name = "io_k8s_sigs_structured_merge_diff",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/structured-merge-diff",
sum = "h1:zD2IemQ4LmOcAumeiyDWXKUI2SO0NYDe3H6QGvPOVgU=",
version = "v1.0.1-0.20191108220359-b1b620dd3f06",
)
go_repository(
name = "io_k8s_sigs_testing_frameworks",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/testing_frameworks",
sum = "h1:vK0+tvjF0BZ/RYFeZ1E6BYBwHJJXhjuZ3TdsEKH+UQM=",
version = "v0.1.2",
)
go_repository(
name = "io_k8s_sigs_yaml",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/yaml",
sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=",
version = "v1.2.0",
)
go_repository(
name = "io_k8s_utils",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/utils",
sum = "h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=",
version = "v0.0.0-20200729134348-d5654de09c73",
)
go_repository(
name = "io_opencensus_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.opencensus.io",
sum = "h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs=",
version = "v0.22.2",
)
go_repository(
name = "org_golang_google_api",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/api",
sum = "h1:yzlyyDW/J0w8yNFJIhiAJy4kq74S+1DOLdawELNxFMA=",
version = "v0.15.0",
)
go_repository(
name = "org_golang_google_appengine",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/appengine",
sum = "h1:tycE03LOZYQNhDpS27tcQdAzLCVMaj7QT2SXxebnpCM=",
version = "v1.6.5",
)
go_repository(
name = "org_golang_google_genproto",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/genproto",
sum = "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=",
version = "v0.0.0-20200526211855-cb27e3aa2013",
)
go_repository(
name = "org_golang_google_grpc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/grpc",
sum = "h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=",
version = "v1.27.0",
)
go_repository(
name = "org_golang_x_crypto",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/crypto",
replace = "github.com/meyskens/crypto",
sum = "h1:09XQpCKCNW3zrjz4zvD/cYU3hqUEWW+bZrBwK8NwFW0=",
version = "v0.0.0-20200821143559-6ca9aec645f0",
)
go_repository(
name = "org_golang_x_exp",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/exp",
sum = "h1:zQpM52jfKHG6II1ISZY1ZcpygvuSFZpLwfluuF89XOg=",
version = "v0.0.0-20191227195350-da58074b4299",
)
go_repository(
name = "org_golang_x_image",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/image",
sum = "h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=",
version = "v0.0.0-20190802002840-cff245a6509b",
)
go_repository(
name = "org_golang_x_lint",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/lint",
sum = "h1:J5lckAjkw6qYlOZNj90mLYNTEKDvWeuc1yieZ8qUzUE=",
version = "v0.0.0-20191125180803-fdd1cda4f05f",
)
go_repository(
name = "org_golang_x_mobile",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/mobile",
sum = "h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=",
version = "v0.0.0-20190719004257-d2bd2a29d028",
)
go_repository(
name = "org_golang_x_net",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/net",
sum = "h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA=",
version = "v0.0.0-20200822124328-c89045814202",
)
go_repository(
name = "org_golang_x_oauth2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/oauth2",
sum = "h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw=",
version = "v0.0.0-20200107190931-bf48bf16ab8d",
)
go_repository(
name = "org_golang_x_sync",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/sync",
sum = "h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=",
version = "v0.0.0-20190911185100-cd5d95a43a6e",
)
go_repository(
name = "org_golang_x_sys",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/sys",
sum = "h1:5/PjkGUjvEU5Gl6BxmvKRPpqo2uNMv4rcHBMwzk/st8=",
version = "v0.0.0-20200622214017-ed371f2e16b4",
)
go_repository(
name = "org_golang_x_text",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/text",
sum = "h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=",
version = "v0.3.3",
)
go_repository(
name = "org_golang_x_time",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/time",
sum = "h1:EHBhcS0mlXEAVwNyO2dLfjToGsyY4j24pTs2ScHnX7s=",
version = "v0.0.0-20200630173020-3af7569d3a1e",
)
go_repository(
name = "org_golang_x_tools",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/tools",
sum = "h1:HHeAlu5H9b71C+Fx0K+1dGgVFN1DM1/wz4aoGOA5qS8=",
version = "v0.0.0-20200616133436-c1934b75d054",
)
go_repository(
name = "org_gonum_v1_gonum",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gonum.org/v1/gonum",
sum = "h1:OB/uP/Puiu5vS5QMRPrXCDWUPb+kt8f1KW8oQzFejQw=",
version = "v0.0.0-20190331200053-3d26580ed485",
)
go_repository(
name = "org_gonum_v1_netlib",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gonum.org/v1/netlib",
sum = "h1:jRyg0XfpwWlhEV8mDfdNGBeSJM2fuyh9Yjrnd8kF2Ts=",
version = "v0.0.0-20190331212654-76723241ea4e",
)
go_repository(
name = "org_modernc_cc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "modernc.org/cc",
sum = "h1:nPibNuDEx6tvYrUAtvDTTw98rx5juGsa5zuDnKwEEQQ=",
version = "v1.0.0",
)
go_repository(
name = "org_modernc_golex",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "modernc.org/golex",
sum = "h1:wWpDlbK8ejRfSyi0frMyhilD3JBvtcx2AdGDnU+JtsE=",
version = "v1.0.0",
)
go_repository(
name = "org_modernc_mathutil",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "modernc.org/mathutil",
sum = "h1:93vKjrJopTPrtTNpZ8XIovER7iCIH1QU7wNbOQXC60I=",
version = "v1.0.0",
)
go_repository(
name = "org_modernc_strutil",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "modernc.org/strutil",
sum = "h1:XVFtQwFVwc02Wk+0L/Z/zDDXO81r5Lhe6iMKmGX3KhE=",
version = "v1.0.0",
)
go_repository(
name = "org_modernc_xc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "modernc.org/xc",
sum = "h1:7ccXrupWZIS3twbUGrtKmHS2DXY6xegFua+6O3xgAFU=",
version = "v1.0.0",
)
go_repository(
name = "org_uber_go_atomic",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.uber.org/atomic",
sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
version = "v1.4.0",
)
go_repository(
name = "org_uber_go_multierr",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.uber.org/multierr",
sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
version = "v1.1.0",
)
go_repository(
name = "org_uber_go_zap",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.uber.org/zap",
sum = "h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=",
version = "v1.10.0",
)
go_repository(
name = "tools_gotest",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gotest.tools",
sum = "h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=",
version = "v2.2.0+incompatible",
)
go_repository(
name = "xyz_gomodules_jsonpatch_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gomodules.xyz/jsonpatch/v2",
sum = "h1:xyiBuvkD2g5n7cYzx6u2sxQvsAy4QJsZFCzGVdzOXZ0=",
version = "v2.0.1",
)
go_repository(
name = "net_launchpad_gocheck",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "launchpad.net/gocheck",
sum = "h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54=",
version = "v0.0.0-20140225173054-000000000087",
)
go_repository(
name = "com_github_apache_thrift",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/apache/thrift",
sum = "h1:5hryIiq9gtn+MiLVn0wP37kb/uTeRZgN08WoCsAhIhI=",
version = "v0.13.0",
)
go_repository(
name = "com_github_eapache_go_resiliency",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/eapache/go-resiliency",
sum = "h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU=",
version = "v1.1.0",
)
go_repository(
name = "com_github_eapache_go_xerial_snappy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/eapache/go-xerial-snappy",
sum = "h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw=",
version = "v0.0.0-20180814174437-776d5712da21",
)
go_repository(
name = "com_github_eapache_queue",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/eapache/queue",
sum = "h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc=",
version = "v1.1.0",
)
go_repository(
name = "com_github_openzipkin_zipkin_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/openzipkin/zipkin-go",
sum = "h1:nY8Hti+WKaP0cRsSeQ026wU03QsM762XBeCXBb9NAWI=",
version = "v0.2.2",
)
go_repository(
name = "com_github_pierrec_lz4",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pierrec/lz4",
sum = "h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I=",
version = "v2.0.5+incompatible",
)
go_repository(
name = "com_github_rcrowley_go_metrics",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/rcrowley/go-metrics",
sum = "h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ=",
version = "v0.0.0-20181016184325-3113b8401b8a",
)
go_repository(
name = "com_github_shopify_sarama",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Shopify/sarama",
sum = "h1:9oksLxC6uxVPHPVYUmq6xhr1BOF/hHobWH2UzO67z1s=",
version = "v1.19.0",
)
go_repository(
name = "com_github_shopify_toxiproxy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Shopify/toxiproxy",
sum = "h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc=",
version = "v2.1.4+incompatible",
)
go_repository(
name = "in_gopkg_yaml_v3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/yaml.v3",
sum = "h1:grhR+C34yXImVGp7EzNk+DTIk+323eIUWOmEevy6bDo=",
version = "v3.0.0-20200605160147-a5ece683394c",
)
go_repository(
name = "com_github_docopt_docopt_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/docopt/docopt-go",
sum = "h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=",
version = "v0.0.0-20180111231733-ee0de3bc6815",
)
go_repository(
name = "org_golang_x_xerrors",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/xerrors",
sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
version = "v0.0.0-20191204190536-9bdfabe68543",
)
go_repository(
name = "io_etcd_go_bbolt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.etcd.io/bbolt",
sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=",
version = "v1.3.5",
)
go_repository(
name = "com_github_munnerz_crd_schema_fuzz",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/munnerz/crd-schema-fuzz",
sum = "h1:8erI9yzEnOGw9K5O+a8zZdoo8N/OwrFi7c7SjBtkHAs=",
version = "v1.0.0",
)
go_repository(
name = "com_github_agnivade_levenshtein",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/agnivade/levenshtein",
sum = "h1:3oJU7J3FGFmyhn8KHjmVaZCN5hxTr7GxgRue+sxIXdQ=",
version = "v1.0.1",
)
go_repository(
name = "com_github_andreyvit_diff",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/andreyvit/diff",
sum = "h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ=",
version = "v0.0.0-20170406064948-c7f18ee00883",
)
go_repository(
name = "com_github_bgentry_speakeasy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/bgentry/speakeasy",
sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
version = "v0.1.0",
)
go_repository(
name = "com_github_cockroachdb_datadriven",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cockroachdb/datadriven",
sum = "h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=",
version = "v0.0.0-20190809214429-80d97fb3cbaa",
)
go_repository(
name = "com_github_creack_pty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/creack/pty",
sum = "h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=",
version = "v1.1.7",
)
go_repository(
name = "com_github_dustin_go_humanize",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/dustin/go-humanize",
sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
version = "v1.0.0",
)
go_repository(
name = "com_github_mattn_go_runewidth",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mattn/go-runewidth",
sum = "h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=",
version = "v0.0.7",
)
go_repository(
name = "com_github_olekukonko_tablewriter",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/olekukonko/tablewriter",
sum = "h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8=",
version = "v0.0.4",
)
go_repository(
name = "com_github_rogpeppe_fastuuid",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/rogpeppe/fastuuid",
sum = "h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=",
version = "v0.0.0-20150106093220-6724a57986af",
)
go_repository(
name = "com_github_sergi_go_diff",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/sergi/go-diff",
sum = "h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=",
version = "v1.1.0",
)
go_repository(
name = "com_github_tidwall_pretty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/tidwall/pretty",
sum = "h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=",
version = "v1.0.0",
)
go_repository(
name = "com_github_urfave_cli",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/urfave/cli",
sum = "h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA=",
version = "v1.22.4",
)
go_repository(
name = "com_github_vektah_gqlparser",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/vektah/gqlparser",
sum = "h1:ZsyLGn7/7jDNI+y4SEhI4yAxRChlv15pUHMjijT+e68=",
version = "v1.1.2",
)
go_repository(
name = "in_gopkg_cheggaaa_pb_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/cheggaaa/pb.v1",
sum = "h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=",
version = "v1.0.25",
)
go_repository(
name = "in_gopkg_resty_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/resty.v1",
sum = "h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=",
version = "v1.12.0",
)
go_repository(
name = "io_etcd_go_etcd",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.etcd.io/etcd",
sum = "h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=",
version = "v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5",
)
go_repository(
name = "org_mongodb_go_mongo_driver",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.mongodb.org/mongo-driver",
sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
version = "v1.1.2",
)
go_repository(
name = "com_github_go_ldap_ldap",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-ldap/ldap",
sum = "h1:kD5HQcAzlQ7yrhfn+h+MSABeAy/jAJhvIJ/QDllP44g=",
version = "v3.0.2+incompatible",
)
go_repository(
name = "com_github_go_test_deep",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-test/deep",
sum = "h1:28FVBuwkwowZMjbA7M0wXsI6t3PYulRTMio3SO+eKCM=",
version = "v1.0.2-0.20181118220953-042da051cf31",
)
go_repository(
name = "com_github_mitchellh_cli",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/cli",
sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
version = "v1.0.0",
)
go_repository(
name = "com_github_mitchellh_go_wordwrap",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/go-wordwrap",
sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
version = "v1.0.0",
)
go_repository(
name = "com_github_posener_complete",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/posener/complete",
sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
version = "v1.1.1",
)
go_repository(
name = "com_github_ryanuber_columnize",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ryanuber/columnize",
sum = "h1:j1Wcmh8OrK4Q7GXY+V7SVSY8nUWQxHW5TkBe7YUl+2s=",
version = "v2.1.0+incompatible",
)
go_repository(
name = "in_gopkg_asn1_ber_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/asn1-ber.v1",
sum = "h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=",
version = "v1.0.0-20181015200546-f715ec2f112d",
)
go_repository(
name = "com_github_pavel_v_chernykh_keystore_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pavel-v-chernykh/keystore-go",
sum = "h1:Jd6xfriVlJ6hWPvYOE0Ni0QWcNTLRehfGPFxr3eSL80=",
version = "v2.1.0+incompatible",
)
go_repository(
name = "com_github_cpuguy83_go_md2man_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cpuguy83/go-md2man/v2",
sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=",
version = "v2.0.0",
)
go_repository(
name = "com_github_russross_blackfriday_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/russross/blackfriday/v2",
sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=",
version = "v2.0.1",
)
go_repository(
name = "com_github_shurcool_sanitized_anchor_name",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/shurcooL/sanitized_anchor_name",
sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=",
version = "v1.0.0",
)
go_repository(
name = "com_github_urfave_cli_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/urfave/cli/v2",
sum = "h1:Qt8FeAtxE/vfdrLmR3rxR6JRE0RoVmbXu8+6kZtYU4k=",
version = "v2.1.1",
)
go_repository(
name = "com_github_census_instrumentation_opencensus_proto",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/census-instrumentation/opencensus-proto",
sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
version = "v0.2.1",
)
go_repository(
name = "com_github_envoyproxy_go_control_plane",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/envoyproxy/go-control-plane",
sum = "h1:4cmBvAEBNJaGARUEs3/suWRyfyBfhf7I60WBZq+bv2w=",
version = "v0.9.1-0.20191026205805-5f8ba28d4473",
)
go_repository(
name = "com_github_envoyproxy_protoc_gen_validate",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/envoyproxy/protoc-gen-validate",
sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=",
version = "v0.1.0",
)
go_repository(
name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
sum = "h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=",
version = "v0.0.9",
)
go_repository(
name = "io_k8s_sigs_structured_merge_diff_v3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/structured-merge-diff/v3",
sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=",
version = "v3.0.0",
)
go_repository(
name = "com_github_chai2010_gettext_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/chai2010/gettext-go",
sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=",
version = "v0.0.0-20160711120539-c6fed771bfd5",
)
go_repository(
name = "com_github_daviddengcn_go_colortext",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/daviddengcn/go-colortext",
sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
version = "v0.0.0-20160507010035-511bcaf42ccd",
)
go_repository(
name = "com_github_docker_distribution",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/docker/distribution",
sum = "h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=",
version = "v2.7.1+incompatible",
)
go_repository(
name = "com_github_exponent_io_jsonpath",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/exponent-io/jsonpath",
sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
version = "v0.0.0-20151013193312-d6023ce2651d",
)
go_repository(
name = "com_github_fatih_camelcase",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/fatih/camelcase",
sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
version = "v1.0.0",
)
go_repository(
name = "com_github_golangplus_bytes",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golangplus/bytes",
sum = "h1:7xqw01UYS+KCI25bMrPxwNYkSns2Db1ziQPpVq99FpE=",
version = "v0.0.0-20160111154220-45c989fe5450",
)
go_repository(
name = "com_github_golangplus_fmt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golangplus/fmt",
sum = "h1:f5gsjBiF9tRRVomCvrkGMMWI8W1f2OBFar2c5oakAP0=",
version = "v0.0.0-20150411045040-2a5d6d7d2995",
)
go_repository(
name = "com_github_golangplus_testing",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/golangplus/testing",
sum = "h1:KhcknUwkWHKZPbFy2P7jH5LKJ3La+0ZeknkkmrSgqb0=",
version = "v0.0.0-20180327235837-af21d9c3145e",
)
go_repository(
name = "com_github_liggitt_tabwriter",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/liggitt/tabwriter",
sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
version = "v0.0.0-20181228230101-89fcab3d43de",
)
go_repository(
name = "com_github_lithammer_dedent",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/lithammer/dedent",
sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
version = "v1.1.0",
)
go_repository(
name = "com_github_makenowjust_heredoc",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/MakeNowJust/heredoc",
sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=",
version = "v0.0.0-20170808103936-bb23615498cd",
)
go_repository(
name = "com_github_xlab_handysort",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/xlab/handysort",
sum = "h1:j2hhcujLRHAg872RWAV5yaUrEjHEObwDv3aImCaNLek=",
version = "v0.0.0-20150421192137-fb3537ed64a1",
)
go_repository(
name = "io_k8s_cli_runtime",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/cli-runtime",
sum = "h1:wLe+osHSqcItyS3MYQXVyGFa54fppORVA8Jn7DBGSWw=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_kubectl",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/kubectl",
sum = "h1:t9uxaZzGvqc2jY96mjnPSjFHtaKOxoUegeGZdaGT6aw=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_metrics",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/metrics",
sum = "h1:cKq0+Z7wg5qkK1n8dryNffKfU22DBX83JguGpR+TCk0=",
version = "v0.19.0",
)
go_repository(
name = "io_k8s_sigs_kustomize",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/kustomize",
sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
version = "v2.0.3+incompatible",
)
go_repository(
name = "ml_vbom_util",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "vbom.ml/util",
sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
version = "v0.0.0-20160121211510-db5cfe13f5cc",
)
go_repository(
name = "org_golang_x_mod",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "golang.org/x/mod",
sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=",
version = "v0.3.0",
)
go_repository(
name = "com_github_ugorji_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ugorji/go",
sum = "h1:j4s+tAvLfL3bZyefP2SEWmhBzmuIlH/eqNuPdFPgngw=",
version = "v1.1.4",
)
go_repository(
name = "io_k8s_klog_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "k8s.io/klog/v2",
sum = "h1:WmkrnW7fdrm0/DMClc+HIxtftvxVIPAhlVwMQo5yLco=",
version = "v2.3.0",
)
go_repository(
name = "com_github_nxadm_tail",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/nxadm/tail",
sum = "h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=",
version = "v1.4.4",
)
go_repository(
name = "io_k8s_sigs_structured_merge_diff_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/structured-merge-diff/v2",
sum = "h1:I0h4buiCqDtPztO3NOiyoNMtqSIfld49D4Wj3UBXYZA=",
version = "v2.0.1",
)
go_repository(
name = "org_golang_google_protobuf",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/protobuf",
sum = "h1:UhZDfRO8JRQru4/+LlLE0BRKGF8L+PICnvYZmx/fEGA=",
version = "v1.24.0",
)
go_repository(
name = "com_github_cespare_xxhash",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cespare/xxhash",
sum = "h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=",
version = "v1.1.0",
)
go_repository(
name = "com_github_cespare_xxhash_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cespare/xxhash/v2",
sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
version = "v2.1.1",
)
go_repository(
name = "com_github_chzyer_logex",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/chzyer/logex",
sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=",
version = "v1.1.10",
)
go_repository(
name = "com_github_chzyer_readline",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/chzyer/readline",
sum = "h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=",
version = "v0.0.0-20180603132655-2972be24d48e",
)
go_repository(
name = "com_github_chzyer_test",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/chzyer/test",
sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=",
version = "v0.0.0-20180213035817-a1ea475d72b1",
)
go_repository(
name = "com_github_dgryski_go_sip13",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/dgryski/go-sip13",
sum = "h1:RMLoZVzv4GliuWafOuPuQDKSm1SJph7uCRnnS61JAn4=",
version = "v0.0.0-20181026042036-e10d5fee7954",
)
go_repository(
name = "com_github_go_gl_glfw_v3_3_glfw",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-gl/glfw/v3.3/glfw",
sum = "h1:b+9H1GAsx5RsjvDFLoS5zkNBzIQMuVKUYQDmxU3N5XE=",
version = "v0.0.0-20191125211704-12ad95a8df72",
)
go_repository(
name = "com_github_google_renameio",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/renameio",
sum = "h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=",
version = "v0.1.0",
)
go_repository(
name = "com_github_ianlancetaylor_demangle",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/ianlancetaylor/demangle",
sum = "h1:UDMh68UUwekSh5iP2OMhRRZJiiBccgV7axzUG8vi56c=",
version = "v0.0.0-20181102032728-5e5cf60278f6",
)
go_repository(
name = "com_github_moby_term",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/moby/term",
sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
version = "v0.0.0-20200312100748-672ec06f55cd",
)
go_repository(
name = "com_github_oklog_ulid",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/oklog/ulid",
sum = "h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=",
version = "v1.3.1",
)
go_repository(
name = "com_github_oneofone_xxhash",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/OneOfOne/xxhash",
sum = "h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=",
version = "v1.2.2",
)
go_repository(
name = "com_github_prometheus_tsdb",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/prometheus/tsdb",
sum = "h1:YZcsG11NqnK4czYLrWd9mpEuAJIHVQLwdrleYfszMAA=",
version = "v0.7.1",
)
go_repository(
name = "com_github_rogpeppe_go_internal",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/rogpeppe/go-internal",
sum = "h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=",
version = "v1.3.0",
)
go_repository(
name = "com_github_spaolacci_murmur3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/spaolacci/murmur3",
sum = "h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=",
version = "v0.0.0-20180118202830-f09979ecbc72",
)
go_repository(
name = "com_github_yuin_goldmark",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/yuin/goldmark",
sum = "h1:nqDD4MMMQA0lmWq03Z2/myGPYLQoXtmi0rGVs95ntbo=",
version = "v1.1.27",
)
go_repository(
name = "com_google_cloud_go_bigquery",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "cloud.google.com/go/bigquery",
sum = "h1:hL+ycaJpVE9M7nLoiXb/Pn10ENE2u+oddxbD8uu0ZVU=",
version = "v1.0.1",
)
go_repository(
name = "com_google_cloud_go_datastore",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "cloud.google.com/go/datastore",
sum = "h1:Kt+gOPPp2LEPWp8CSfxhsM8ik9CcyE/gYu+0r+RnZvM=",
version = "v1.0.0",
)
go_repository(
name = "com_google_cloud_go_pubsub",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "cloud.google.com/go/pubsub",
sum = "h1:W9tAK3E57P75u0XLLR82LZyw8VpAnhmyTOxW9qzmyj8=",
version = "v1.0.1",
)
go_repository(
name = "com_google_cloud_go_storage",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "cloud.google.com/go/storage",
sum = "h1:VV2nUM3wwLLGh9lSABFgZMjInyUbJeaRSE64WuAIQ+4=",
version = "v1.0.0",
)
go_repository(
name = "com_shuralyov_dmitri_gpu_mtl",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "dmitri.shuralyov.com/gpu/mtl",
sum = "h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=",
version = "v0.0.0-20190408044501-666a987793e9",
)
go_repository(
name = "in_gopkg_errgo_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/errgo.v2",
sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=",
version = "v2.1.0",
)
go_repository(
name = "io_rsc_binaryregexp",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "rsc.io/binaryregexp",
sum = "h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=",
version = "v0.2.0",
)
go_repository(
name = "tools_gotest_v3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gotest.tools/v3",
sum = "h1:kG1BFyqVHuQoVQiR1bWGnfz/fmHvvuiSPIV7rvl360E=",
version = "v3.0.2",
)
go_repository(
name = "io_k8s_sigs_structured_merge_diff_v4",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sigs.k8s.io/structured-merge-diff/v4",
sum = "h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=",
version = "v4.0.1",
)
go_repository(
name = "com_github_afex_hystrix_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/afex/hystrix-go",
sum = "h1:rFw4nCn9iMW+Vajsk51NtYIcwSTkXr+JGrMd36kTDJw=",
version = "v0.0.0-20180502004556-fa1af6a1f4f5",
)
go_repository(
name = "com_github_armon_circbuf",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/armon/circbuf",
sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=",
version = "v0.0.0-20150827004946-bbbad097214e",
)
go_repository(
name = "com_github_aryann_difflib",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/aryann/difflib",
sum = "h1:pv34s756C4pEXnjgPfGYgdhg/ZdajGhyOvzx8k+23nw=",
version = "v0.0.0-20170710044230-e206f873d14a",
)
go_repository(
name = "com_github_aws_aws_lambda_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/aws/aws-lambda-go",
sum = "h1:SuCy7H3NLyp+1Mrfp+m80jcbi9KYWAs9/BXwppwRDzY=",
version = "v1.13.3",
)
go_repository(
name = "com_github_aws_aws_sdk_go_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/aws/aws-sdk-go-v2",
sum = "h1:qZ+woO4SamnH/eEbjM2IDLhRNwIwND/RQyVlBLp3Jqg=",
version = "v0.18.0",
)
go_repository(
name = "com_github_azure_go_autorest",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Azure/go-autorest",
sum = "h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs=",
version = "v14.2.0+incompatible",
)
go_repository(
name = "com_github_casbin_casbin_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/casbin/casbin/v2",
sum = "h1:bTwon/ECRx9dwBy2ewRVr5OiqjeXSGiTUY74sDPQi/g=",
version = "v2.1.2",
)
go_repository(
name = "com_github_clbanning_x2j",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/clbanning/x2j",
sum = "h1:EdRZT3IeKQmfCSrgo8SZ8V3MEnskuJP0wCYNpe+aiXo=",
version = "v0.0.0-20191024224557-825249438eec",
)
go_repository(
name = "com_github_cncf_udpa_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/cncf/udpa/go",
sum = "h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=",
version = "v0.0.0-20191209042840-269d4d468f6f",
)
go_repository(
name = "com_github_codahale_hdrhistogram",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/codahale/hdrhistogram",
sum = "h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w=",
version = "v0.0.0-20161010025455-3a0bb77429bd",
)
go_repository(
name = "com_github_edsrzf_mmap_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/edsrzf/mmap-go",
sum = "h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw=",
version = "v1.0.0",
)
go_repository(
name = "com_github_franela_goblin",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/franela/goblin",
sum = "h1:gb2Z18BhTPJPpLQWj4T+rfKHYCHxRHCtRxhKKjRidVw=",
version = "v0.0.0-20200105215937-c9ffbefa60db",
)
go_repository(
name = "com_github_franela_goreq",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/franela/goreq",
sum = "h1:a9ENSRDFBUPkJ5lCgVZh26+ZbGyoVJG7yb5SSzF5H54=",
version = "v0.0.0-20171204163338-bcd34c9993f8",
)
go_repository(
name = "com_github_frankban_quicktest",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/frankban/quicktest",
sum = "h1:Yyrghcw93e1jKo4DTZkRFTTFvBsVhzbblBUPNU1vW6Q=",
version = "v1.11.0",
)
go_repository(
name = "com_github_go_gl_glfw",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/go-gl/glfw",
sum = "h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=",
version = "v0.0.0-20190409004039-e6da0acd62b1",
)
go_repository(
name = "com_github_gogo_googleapis",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/gogo/googleapis",
sum = "h1:kFkMAZBNAn4j7K0GiZr8cRYzejq68VbheufiV3YuyFI=",
version = "v1.1.0",
)
go_repository(
name = "com_github_google_martian_v3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/google/martian/v3",
sum = "h1:pMen7vLs8nvgEYhywH3KDWJIJTeEr2ULsVWHWYHQyBs=",
version = "v3.0.0",
)
go_repository(
name = "com_github_hashicorp_consul_api",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/consul/api",
sum = "h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA=",
version = "v1.1.0",
)
go_repository(
name = "com_github_hashicorp_consul_sdk",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/consul/sdk",
sum = "h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY=",
version = "v0.1.1",
)
go_repository(
name = "com_github_hashicorp_go_msgpack",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-msgpack",
sum = "h1:zKjpN5BK/P5lMYrLmBHdBULWbJ0XpYR+7NGzqkZzoD4=",
version = "v0.5.3",
)
go_repository(
name = "com_github_hashicorp_go_net",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go.net",
sum = "h1:sNCoNyDEvN1xa+X0baata4RdcpKwcMS6DH+xwfqPgjw=",
version = "v0.0.1",
)
go_repository(
name = "com_github_hashicorp_go_syslog",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/go-syslog",
sum = "h1:KaodqZuhUoZereWVIYmpUgZysurB1kBLX2j0MwMrUAE=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_logutils",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/logutils",
sum = "h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_mdns",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/mdns",
sum = "h1:WhIgCr5a7AaVH6jPUwjtRuuE7/RDufnUvzIr48smyxs=",
version = "v1.0.0",
)
go_repository(
name = "com_github_hashicorp_memberlist",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/memberlist",
sum = "h1:EmmoJme1matNzb+hMpDuR/0sbJSUisxyqBGG676r31M=",
version = "v0.1.3",
)
go_repository(
name = "com_github_hashicorp_serf",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hashicorp/serf",
sum = "h1:YZ7UKsJv+hKjqGVUUbtE3HNj79Eln2oQ75tniF6iPt0=",
version = "v0.8.2",
)
go_repository(
name = "com_github_hudl_fargo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/hudl/fargo",
sum = "h1:0U6+BtN6LhaYuTnIJq4Wyq5cpn6O2kWrxAtcqBmYY6w=",
version = "v1.3.0",
)
go_repository(
name = "com_github_influxdata_influxdb1_client",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/influxdata/influxdb1-client",
sum = "h1:/WZQPMZNsjZ7IlCpsLGdQBINg5bxKQ1K1sh6awxLtkA=",
version = "v0.0.0-20191209144304-8bf82d3c094d",
)
go_repository(
name = "com_github_jmespath_go_jmespath_internal_testify",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jmespath/go-jmespath/internal/testify",
sum = "h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=",
version = "v1.5.1",
)
go_repository(
name = "com_github_josharian_intern",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/josharian/intern",
sum = "h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=",
version = "v1.0.0",
)
go_repository(
name = "com_github_jpillora_backoff",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/jpillora/backoff",
sum = "h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=",
version = "v1.0.0",
)
go_repository(
name = "com_github_knetic_govaluate",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Knetic/govaluate",
sum = "h1:1G1pk05UrOh0NlF1oeaaix1x8XzrfjIDK47TY0Zehcw=",
version = "v3.0.1-0.20171022003610-9aa49832a739+incompatible",
)
go_repository(
name = "com_github_lightstep_lightstep_tracer_common_golang_gogo",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/lightstep/lightstep-tracer-common/golang/gogo",
sum = "h1:143Bb8f8DuGWck/xpNUOckBVYfFbBTnLevfRZ1aVVqo=",
version = "v0.0.0-20190605223551-bc2310a04743",
)
go_repository(
name = "com_github_lightstep_lightstep_tracer_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/lightstep/lightstep-tracer-go",
sum = "h1:vi1F1IQ8N7hNWytK9DpJsUfQhGuNSc19z330K6vl4zk=",
version = "v0.18.1",
)
go_repository(
name = "com_github_lyft_protoc_gen_validate",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/lyft/protoc-gen-validate",
sum = "h1:KNt/RhmQTOLr7Aj8PsJ7mTronaFyx80mRTT9qF261dA=",
version = "v0.0.13",
)
go_repository(
name = "com_github_mitchellh_gox",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/gox",
sum = "h1:lfGJxY7ToLJQjHHwi0EX6uYBdK78egf954SQl13PQJc=",
version = "v0.4.0",
)
go_repository(
name = "com_github_mitchellh_iochan",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/mitchellh/iochan",
sum = "h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY=",
version = "v1.0.0",
)
go_repository(
name = "com_github_nats_io_jwt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/nats-io/jwt",
sum = "h1:+RB5hMpXUUA2dfxuhBTEkMOrYmM+gKIZYS1KjSostMI=",
version = "v0.3.2",
)
go_repository(
name = "com_github_nats_io_nats_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/nats-io/nats.go",
sum = "h1:ik3HbLhZ0YABLto7iX80pZLPw/6dx3T+++MZJwLnMrQ=",
version = "v1.9.1",
)
go_repository(
name = "com_github_nats_io_nats_server_v2",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/nats-io/nats-server/v2",
sum = "h1:i2Ly0B+1+rzNZHHWtD4ZwKi+OU5l+uQo1iDHZ2PmiIc=",
version = "v2.1.2",
)
go_repository(
name = "com_github_nats_io_nkeys",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/nats-io/nkeys",
sum = "h1:6JrEfig+HzTH85yxzhSVbjHRJv9cn0p6n3IngIcM5/k=",
version = "v0.1.3",
)
go_repository(
name = "com_github_nats_io_nuid",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/nats-io/nuid",
sum = "h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=",
version = "v1.0.1",
)
go_repository(
name = "com_github_niemeyer_pretty",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/niemeyer/pretty",
sum = "h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=",
version = "v0.0.0-20200227124842-a10e7caefd8e",
)
go_repository(
name = "com_github_oklog_oklog",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/oklog/oklog",
sum = "h1:wVfs8F+in6nTBMkA7CbRw+zZMIB7nNM825cM1wuzoTk=",
version = "v0.3.2",
)
go_repository(
name = "com_github_op_go_logging",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/op/go-logging",
sum = "h1:lDH9UUVJtmYCjyT0CI4q8xvlXPxeZ0gYCVvWbmPlp88=",
version = "v0.0.0-20160315200505-970db520ece7",
)
go_repository(
name = "com_github_opentracing_basictracer_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/opentracing/basictracer-go",
sum = "h1:YyUAhaEfjoWXclZVJ9sGoNct7j4TVk7lZWlQw5UXuoo=",
version = "v1.0.0",
)
go_repository(
name = "com_github_opentracing_contrib_go_observer",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/opentracing-contrib/go-observer",
sum = "h1:lM6RxxfUMrYL/f8bWEUqdXrANWtrL7Nndbm9iFN0DlU=",
version = "v0.0.0-20170622124052-a52f23424492",
)
go_repository(
name = "com_github_opentracing_opentracing_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/opentracing/opentracing-go",
sum = "h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=",
version = "v1.1.0",
)
go_repository(
name = "com_github_openzipkin_contrib_zipkin_go_opentracing",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/openzipkin-contrib/zipkin-go-opentracing",
sum = "h1:ZCnq+JUrvXcDVhX/xRolRBZifmabN1HcS1wrPSvxhrU=",
version = "v0.4.5",
)
go_repository(
name = "com_github_pact_foundation_pact_go",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pact-foundation/pact-go",
sum = "h1:OYkFijGHoZAYbOIb1LWXrwKQbMMRUv1oQ89blD2Mh2Q=",
version = "v1.0.4",
)
go_repository(
name = "com_github_performancecopilot_speed",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/performancecopilot/speed",
sum = "h1:2WnRzIquHa5QxaJKShDkLM+sc0JPuwhXzK8OYOyt3Vg=",
version = "v3.0.0+incompatible",
)
go_repository(
name = "com_github_pkg_profile",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/pkg/profile",
sum = "h1:F++O52m40owAmADcojzM+9gyjmMOY/T4oYJkgFDH8RE=",
version = "v1.2.1",
)
go_repository(
name = "com_github_samuel_go_zookeeper",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/samuel/go-zookeeper",
sum = "h1:p3Vo3i64TCLY7gIfzeQaUJ+kppEO5WQG3cL8iE8tGHU=",
version = "v0.0.0-20190923202752-2cc03de413da",
)
go_repository(
name = "com_github_sean__seed",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/sean-/seed",
sum = "h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I=",
version = "v0.0.0-20170313163322-e2103e2c3529",
)
go_repository(
name = "com_github_sony_gobreaker",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/sony/gobreaker",
sum = "h1:oMnRNZXX5j85zso6xCPRNPtmAycat+WcoKbklScLDgQ=",
version = "v0.4.1",
)
go_repository(
name = "com_github_stoewer_go_strcase",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/stoewer/go-strcase",
sum = "h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU=",
version = "v1.2.0",
)
go_repository(
name = "com_github_streadway_amqp",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/streadway/amqp",
sum = "h1:WhxRHzgeVGETMlmVfqhRn8RIeeNoPr2Czh33I4Zdccw=",
version = "v0.0.0-20190827072141-edfb9018d271",
)
go_repository(
name = "com_github_streadway_handy",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/streadway/handy",
sum = "h1:AhmOdSHeswKHBjhsLs/7+1voOxT+LLrSk/Nxvk35fug=",
version = "v0.0.0-20190108123426-d5acb3125c2a",
)
go_repository(
name = "com_github_vividcortex_gohistogram",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/VividCortex/gohistogram",
sum = "h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE=",
version = "v1.0.0",
)
go_repository(
name = "com_sourcegraph_sourcegraph_appdash",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "sourcegraph.com/sourcegraph/appdash",
sum = "h1:ucqkfpjg9WzSUubAO62csmucvxl4/JeW3F4I4909XkM=",
version = "v0.0.0-20190731080439-ebfcffb1b5c0",
)
go_repository(
name = "in_gopkg_gcfg_v1",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/gcfg.v1",
sum = "h1:m8OOJ4ccYHnx2f4gQwpno8nAX5OGOh7RLaaz0pj3Ogs=",
version = "v1.2.3",
)
go_repository(
name = "in_gopkg_warnings_v0",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "gopkg.in/warnings.v0",
sum = "h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=",
version = "v0.1.2",
)
go_repository(
name = "io_rsc_quote_v3",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "rsc.io/quote/v3",
sum = "h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=",
version = "v3.1.0",
)
go_repository(
name = "io_rsc_sampler",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "rsc.io/sampler",
sum = "h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=",
version = "v1.3.0",
)
go_repository(
name = "org_golang_google_grpc_examples",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/grpc/examples",
sum = "h1:unzgkDPNegIn/czOcgxzQaTzEzOiBH1V1j55rsEzVEg=",
version = "v0.0.0-20200922230038-4e932bbcb079",
)
go_repository(
name = "org_golang_google_grpc_naming",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "google.golang.org/grpc/naming",
replace = "github.com/xiegeo/grpc-naming",
sum = "h1:B/eYkKzZDCUWQWl3XDLrSy8JjL332OCkYKZhU9iCyc0=",
version = "v1.29.1-alpha",
)
go_repository(
name = "org_uber_go_tools",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "go.uber.org/tools",
sum = "h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4=",
version = "v0.0.0-20190618225709-2cfd321de3ee",
)
go_repository(
name = "com_github_bketelsen_crypt",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/bketelsen/crypt",
sum = "h1:+0HFd5KSZ/mm3JmhmrDukiId5iR6w4+BdFtfSy4yWIc=",
version = "v0.0.3-0.20200106085610-5cbc8cc4026c",
)
go_repository(
name = "com_github_subosito_gotenv",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/subosito/gotenv",
sum = "h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=",
version = "v1.2.0",
)
go_repository(
name = "com_github_venafi_vcert_v4",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "github.com/Venafi/vcert/v4",
sum = "h1:37gfyjS9v5YvZcIABwNPo1fAC31lIZT7glVK1vfUxk4=",
version = "v4.11.0",
)
go_repository(
name = "com_google_cloud_go_firestore",
build_file_generation = "on",
build_file_proto_mode = "disable",
importpath = "cloud.google.com/go/firestore",
sum = "h1:9x7Bx0A9R5/M9jibeJeZWqjeVEIxYW9fZYqB9a70/bY=",
version = "v1.1.0",
)
| load('@bazel_gazelle//:deps.bzl', 'go_repository')
def manual_repositories():
go_repository(name='org_golang_x_mod', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/mod', sum='h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ=', version='v0.2.0')
def go_repositories():
manual_repositories()
go_repository(name='co_honnef_go_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='honnef.co/go/tools', sum='h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=', version='v0.0.1-2019.2.3')
go_repository(name='com_github_alecthomas_template', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/alecthomas/template', sum='h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=', version='v0.0.0-20190718012654-fb15b899a751')
go_repository(name='com_github_alecthomas_units', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/alecthomas/units', sum='h1:Hs82Z41s6SdL1CELW+XaDYmOH4hkBN4/N9og/AsOv7E=', version='v0.0.0-20190717042225-c3de453c63f4')
go_repository(name='com_github_armon_consul_api', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/consul-api', sum='h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=', version='v0.0.0-20180202201655-eb2c6b5be1b6')
go_repository(name='com_github_armon_go_metrics', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/go-metrics', sum='h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=', version='v0.0.0-20180917152333-f0300d1749da')
go_repository(name='com_github_armon_go_radix', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/go-radix', sum='h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=', version='v0.0.0-20180808171621-7fddfc383310')
go_repository(name='com_github_asaskevich_govalidator', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/asaskevich/govalidator', sum='h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=', version='v0.0.0-20190424111038-f61b66f89f4a')
go_repository(name='com_github_aws_aws_sdk_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aws/aws-sdk-go', sum='h1:izATc/E0+HcT5YHmaQVjn7GHCoqaBxn0PGo6Zq5UNFA=', version='v1.34.30')
go_repository(name='com_github_azure_azure_sdk_for_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/azure-sdk-for-go', sum='h1:m4oQOm3HXtQh2Ipata+pLSS1kGUD/7ikkvNq81XM/7s=', version='v46.3.0+incompatible')
go_repository(name='com_github_azure_go_ansiterm', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-ansiterm', sum='h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=', version='v0.0.0-20170929234023-d6e3b3328b78')
go_repository(name='com_github_azure_go_autorest_autorest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest', sum='h1:LIzfhNo9I3+il0KO2JY1/lgJmjig7lY0wFulQNZkbtg=', version='v0.11.6')
go_repository(name='com_github_azure_go_autorest_autorest_adal', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/adal', sum='h1:1/DtH4Szusk4psLBrJn/gocMRIf1ji30WAz3GfyULRQ=', version='v0.9.4')
go_repository(name='com_github_azure_go_autorest_autorest_date', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/date', sum='h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw=', version='v0.3.0')
go_repository(name='com_github_azure_go_autorest_autorest_mocks', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/mocks', sum='h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk=', version='v0.4.1')
go_repository(name='com_github_azure_go_autorest_autorest_to', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/to', sum='h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk=', version='v0.4.0')
go_repository(name='com_github_azure_go_autorest_autorest_validation', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/autorest/validation', sum='h1:3I9AAI63HfcLtphd9g39ruUwRI+Ca+z/f36KHPFRUss=', version='v0.3.0')
go_repository(name='com_github_azure_go_autorest_logger', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/logger', sum='h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE=', version='v0.2.0')
go_repository(name='com_github_azure_go_autorest_tracing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest/tracing', sum='h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo=', version='v0.6.0')
go_repository(name='com_github_beorn7_perks', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/beorn7/perks', sum='h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=', version='v1.0.1')
go_repository(name='com_github_bitly_go_hostpool', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bitly/go-hostpool', sum='h1:mXoPYz/Ul5HYEDvkta6I8/rnYM5gSdSV2tJ6XbZuEtY=', version='v0.0.0-20171023180738-a3a6125de932')
go_repository(name='com_github_blang_semver', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/blang/semver', sum='h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=', version='v3.5.0+incompatible')
go_repository(name='com_github_bmizerany_assert', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bmizerany/assert', sum='h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=', version='v0.0.0-20160611221934-b7ed37b82869')
go_repository(name='com_github_burntsushi_toml', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/BurntSushi/toml', sum='h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=', version='v0.3.1')
go_repository(name='com_github_burntsushi_xgb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/BurntSushi/xgb', sum='h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=', version='v0.0.0-20160522181843-27f122750802')
go_repository(name='com_github_cenkalti_backoff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cenkalti/backoff', sum='h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=', version='v2.2.1+incompatible')
go_repository(name='com_github_client9_misspell', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/client9/misspell', sum='h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=', version='v0.3.4')
go_repository(name='com_github_cloudflare_cloudflare_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cloudflare/cloudflare-go', sum='h1:bhMGoNhAg21DuqJjU9jQepRRft6vYfo6pejT3NN4V6A=', version='v0.13.2')
go_repository(name='com_github_containerd_continuity', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/containerd/continuity', sum='h1:4BX8f882bXEDKfWIf0wa8HRvpnBoPszJJXL+TVbBw4M=', version='v0.0.0-20181203112020-004b46473808')
go_repository(name='com_github_coreos_bbolt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/bbolt', sum='h1:wZwiHHUieZCquLkDL0B8UhzreNWsPHooDAG3q34zk0s=', version='v1.3.2')
go_repository(name='com_github_coreos_etcd', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/etcd', sum='h1:8F3hqu9fGYLBifCmRCJsicFqDx/D68Rt3q1JMazcgBQ=', version='v3.3.13+incompatible')
go_repository(name='com_github_coreos_go_etcd', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-etcd', sum='h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=', version='v2.0.0+incompatible')
go_repository(name='com_github_coreos_go_oidc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-oidc', sum='h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=', version='v2.1.0+incompatible')
go_repository(name='com_github_coreos_go_semver', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-semver', sum='h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=', version='v0.3.0')
go_repository(name='com_github_coreos_go_systemd', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/go-systemd', sum='h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=', version='v0.0.0-20190321100706-95778dfbb74e')
go_repository(name='com_github_coreos_pkg', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/coreos/pkg', sum='h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=', version='v0.0.0-20180928190104-399ea9e2e55f')
go_repository(name='com_github_cpu_goacmedns', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cpu/goacmedns', sum='h1:QOeMpIEsIdm1LSASSswjaTf8CXmzcrgy5OeCfHjppA4=', version='v0.0.3')
go_repository(name='com_github_cpuguy83_go_md2man', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cpuguy83/go-md2man', sum='h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=', version='v1.0.10')
go_repository(name='com_github_davecgh_go_spew', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/davecgh/go-spew', sum='h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=', version='v1.1.1')
go_repository(name='com_github_denisenkom_go_mssqldb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/denisenkom/go-mssqldb', sum='h1:yJ2kD1BvM28M4gt31MuDr0ROKsW+v6zBk9G0Bcr8qAY=', version='v0.0.0-20190412130859-3b1d194e553a')
go_repository(name='com_github_dgrijalva_jwt_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/dgrijalva/jwt-go', sum='h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=', version='v3.2.0+incompatible')
go_repository(name='com_github_digitalocean_godo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/digitalocean/godo', sum='h1:IMElzMUpO1dVR8qjSg53+5vDkOLzMbhJt4yTAq7NGCQ=', version='v1.44.0')
go_repository(name='com_github_docker_docker', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/docker', sum='h1:w3NnFcKR5241cfmQU5ZZAsf0xcpId6mWOupTvJlUX2U=', version='v0.7.3-0.20190327010347-be7ac8be2ae0')
go_repository(name='com_github_docker_go_connections', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/go-connections', sum='h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=', version='v0.4.0')
go_repository(name='com_github_docker_go_units', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/go-units', sum='h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=', version='v0.4.0')
go_repository(name='com_github_docker_spdystream', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/spdystream', sum='h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=', version='v0.0.0-20160310174837-449fdfce4d96')
go_repository(name='com_github_duosecurity_duo_api_golang', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/duosecurity/duo_api_golang', sum='h1:2MIhn2R6oXQbgW5yHfS+d6YqyMfXiu2L55rFZC4UD/M=', version='v0.0.0-20190308151101-6c680f768e74')
go_repository(name='com_github_elazarl_goproxy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/elazarl/goproxy', sum='h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=', version='v0.0.0-20180725130230-947c36da3153')
go_repository(name='com_github_emicklei_go_restful', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/emicklei/go-restful', sum='h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=', version='v2.9.5+incompatible')
go_repository(name='com_github_evanphx_json_patch', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/evanphx/json-patch', sum='h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=', version='v4.9.0+incompatible')
go_repository(name='com_github_fatih_color', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fatih/color', sum='h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=', version='v1.7.0')
go_repository(name='com_github_fatih_structs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fatih/structs', sum='h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=', version='v1.1.0')
go_repository(name='com_github_fsnotify_fsnotify', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fsnotify/fsnotify', sum='h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=', version='v1.4.9')
go_repository(name='com_github_ghodss_yaml', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ghodss/yaml', sum='h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=', version='v1.0.0')
go_repository(name='com_github_globalsign_mgo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/globalsign/mgo', sum='h1:DujepqpGd1hyOd7aW59XpK7Qymp8iy83xq74fLr21is=', version='v0.0.0-20181015135952-eeefdecb41b8')
go_repository(name='com_github_go_ini_ini', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-ini/ini', sum='h1:TWr1wGj35+UiWHlBA8er89seFXxzwFn11spilrrj+38=', version='v1.42.0')
go_repository(name='com_github_go_kit_kit', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-kit/kit', sum='h1:wDJmvq38kDhkVxi50ni9ykkdUr1PKgqKOoi01fa0Mdk=', version='v0.9.0')
go_repository(name='com_github_go_logfmt_logfmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-logfmt/logfmt', sum='h1:MP4Eh7ZCb31lleYCFuwm0oe4/YGak+5l1vA2NOE80nA=', version='v0.4.0')
go_repository(name='com_github_go_logr_logr', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-logr/logr', sum='h1:ZPVluSmhtMIHlqUDMZu70FgMpRzbQfl4h9oKCAXOVDE=', version='v0.2.1-0.20200730175230-ee2de8da5be6')
go_repository(name='com_github_go_logr_zapr', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-logr/zapr', sum='h1:qXBXPDdNncunGs7XeEpsJt8wCjYBygluzfdLO0G5baE=', version='v0.1.1')
go_repository(name='com_github_go_openapi_analysis', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/analysis', sum='h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=', version='v0.19.5')
go_repository(name='com_github_go_openapi_errors', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/errors', sum='h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=', version='v0.19.2')
go_repository(name='com_github_go_openapi_jsonpointer', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/jsonpointer', sum='h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=', version='v0.19.3')
go_repository(name='com_github_go_openapi_jsonreference', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/jsonreference', sum='h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=', version='v0.19.3')
go_repository(name='com_github_go_openapi_loads', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/loads', sum='h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=', version='v0.19.4')
go_repository(name='com_github_go_openapi_runtime', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/runtime', sum='h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=', version='v0.19.4')
go_repository(name='com_github_go_openapi_spec', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/spec', sum='h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=', version='v0.19.3')
go_repository(name='com_github_go_openapi_strfmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/strfmt', sum='h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=', version='v0.19.3')
go_repository(name='com_github_go_openapi_swag', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/swag', sum='h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=', version='v0.19.5')
go_repository(name='com_github_go_openapi_validate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-openapi/validate', sum='h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=', version='v0.19.5')
go_repository(name='com_github_go_sql_driver_mysql', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-sql-driver/mysql', sum='h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=', version='v1.5.0')
go_repository(name='com_github_go_stack_stack', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-stack/stack', sum='h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=', version='v1.8.0')
go_repository(name='com_github_gobuffalo_flect', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gobuffalo/flect', sum='h1:EWCvMGGxOjsgwlWaP+f4+Hh6yrrte7JeFL2S6b+0hdM=', version='v0.2.0')
go_repository(name='com_github_gocql_gocql', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gocql/gocql', sum='h1:fwXmhM0OqixzJDOGgTSyNH9eEDij9uGTXwsyWXvyR0A=', version='v0.0.0-20190402132108-0e1d5de854df')
go_repository(name='com_github_gogo_protobuf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gogo/protobuf', sum='h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=', version='v1.3.1')
go_repository(name='com_github_golang_glog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/glog', sum='h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=', version='v0.0.0-20160126235308-23def4e6c14b')
go_repository(name='com_github_golang_groupcache', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/groupcache', sum='h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=', version='v0.0.0-20191227052852-215e87163ea7')
go_repository(name='com_github_golang_mock', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/mock', sum='h1:qGJ6qTW+x6xX/my+8YUVl4WNpX9B7+/l2tRsHGZ7f2s=', version='v1.3.1')
go_repository(name='com_github_golang_protobuf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/protobuf', sum='h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=', version='v1.4.2')
go_repository(name='com_github_golang_snappy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golang/snappy', sum='h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=', version='v0.0.1')
go_repository(name='com_github_google_btree', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/btree', sum='h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=', version='v1.0.0')
go_repository(name='com_github_google_go_cmp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/go-cmp', sum='h1:/exdXoGamhu5ONeUJH0deniYLWYvQwW66yvlfiiKTu0=', version='v0.4.1')
go_repository(name='com_github_google_go_github', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/go-github', sum='h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY=', version='v17.0.0+incompatible')
go_repository(name='com_github_google_go_querystring', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/go-querystring', sum='h1:Xkwi/a1rcvNg1PPYe5vI8GbeBY/jrVuDX5ASuANWTrk=', version='v1.0.0')
go_repository(name='com_github_google_gofuzz', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/gofuzz', sum='h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=', version='v1.2.0')
go_repository(name='com_github_google_martian', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/martian', sum='h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=', version='v2.1.0+incompatible')
go_repository(name='com_github_google_pprof', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/pprof', sum='h1:DLpL8pWq0v4JYoRpEhDfsJhhJyGKCcQM2WPW2TJs31c=', version='v0.0.0-20191218002539-d4f498aebedc')
go_repository(name='com_github_google_uuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/uuid', sum='h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=', version='v1.1.1')
go_repository(name='com_github_googleapis_gax_go_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/googleapis/gax-go/v2', sum='h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM=', version='v2.0.5')
go_repository(name='com_github_googleapis_gnostic', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/googleapis/gnostic', sum='h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=', version='v0.4.1')
go_repository(name='com_github_gophercloud_gophercloud', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gophercloud/gophercloud', sum='h1:P/nh25+rzXouhytV2pUHBb65fnds26Ghl8/391+sT5o=', version='v0.1.0')
go_repository(name='com_github_gopherjs_gopherjs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gopherjs/gopherjs', sum='h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=', version='v0.0.0-20181017120253-0766667cb4d1')
go_repository(name='com_github_gorilla_context', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gorilla/context', sum='h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8=', version='v1.1.1')
go_repository(name='com_github_gorilla_mux', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gorilla/mux', sum='h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=', version='v1.8.0')
go_repository(name='com_github_gorilla_websocket', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gorilla/websocket', sum='h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=', version='v1.4.2')
go_repository(name='com_github_gotestyourself_gotestyourself', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gotestyourself/gotestyourself', sum='h1:AQwinXlbQR2HvPjQZOmDhRqsv5mZf+Jb1RnSLxcqZcI=', version='v2.2.0+incompatible')
go_repository(name='com_github_gregjones_httpcache', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gregjones/httpcache', sum='h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=', version='v0.0.0-20180305231024-9cad4c3443a7')
go_repository(name='com_github_grpc_ecosystem_go_grpc_middleware', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/grpc-ecosystem/go-grpc-middleware', sum='h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=', version='v1.0.1-0.20190118093823-f849b5445de4')
go_repository(name='com_github_grpc_ecosystem_go_grpc_prometheus', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/grpc-ecosystem/go-grpc-prometheus', sum='h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=', version='v1.2.0')
go_repository(name='com_github_grpc_ecosystem_grpc_gateway', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/grpc-ecosystem/grpc-gateway', sum='h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=', version='v1.9.5')
go_repository(name='com_github_hailocab_go_hostpool', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hailocab/go-hostpool', sum='h1:5upAirOpQc1Q53c0bnx2ufif5kANL7bfZWcc6VJWJd8=', version='v0.0.0-20160125115350-e80d13ce29ed')
go_repository(name='com_github_hashicorp_errwrap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/errwrap', sum='h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=', version='v1.0.0')
go_repository(name='com_github_hashicorp_go_cleanhttp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-cleanhttp', sum='h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=', version='v0.5.1')
go_repository(name='com_github_hashicorp_go_hclog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-hclog', sum='h1:z3ollgGRg8RjfJH6UVBaG54R70GFd++QOkvnJH3VSBY=', version='v0.8.0')
go_repository(name='com_github_hashicorp_go_immutable_radix', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-immutable-radix', sum='h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0=', version='v1.0.0')
go_repository(name='com_github_hashicorp_go_memdb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-memdb', sum='h1:K1O4N2VPndZiTrdH3lmmf5bemr9Xw81KjVwhReIUjTQ=', version='v1.0.0')
go_repository(name='com_github_hashicorp_go_multierror', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-multierror', sum='h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=', version='v1.0.0')
go_repository(name='com_github_hashicorp_go_plugin', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-plugin', sum='h1:4OtAfUGbnKC6yS48p0CtMX2oFYtzFZVv6rok3cRWgnE=', version='v1.0.1')
go_repository(name='com_github_hashicorp_go_rootcerts', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-rootcerts', sum='h1:DMo4fmknnz0E0evoNYnV48RjWndOsmd6OW+09R3cEP8=', version='v1.0.1')
go_repository(name='com_github_hashicorp_go_uuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-uuid', sum='h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE=', version='v1.0.1')
go_repository(name='com_github_hashicorp_go_version', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-version', sum='h1:bPIoEKD27tNdebFGGxxYwcL4nepeY4j1QP23PFRGzg0=', version='v1.1.0')
go_repository(name='com_github_hashicorp_golang_lru', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/golang-lru', sum='h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=', version='v0.5.4')
go_repository(name='com_github_hashicorp_golang_math_big', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/golang-math-big', sum='h1:hGeXuXeccEhqbXZFgPdRq4oaaBE6QPve/X7A1VFiPhA=', version='v0.0.0-20180316142257-561262b71329')
go_repository(name='com_github_hashicorp_hcl', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/hcl', sum='h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=', version='v1.0.0')
go_repository(name='com_github_hashicorp_vault_api', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/vault/api', sum='h1:j08Or/wryXT4AcHj1oCbMd7IijXcKzYUGw59LGu9onU=', version='v1.0.4')
go_repository(name='com_github_hashicorp_vault_sdk', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/vault/sdk', sum='h1:mOEPeOhT7jl0J4AMl1E705+BcmeRs1VmKNb9F0sMLy8=', version='v0.1.13')
go_repository(name='com_github_hashicorp_go_retryablehttp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-retryablehttp', sum='h1:1BZvpawXoJCWX6pNtow9+rpEj+3itIlutiqnntI6jOE=', version='v0.5.4')
go_repository(name='com_github_hashicorp_go_sockaddr', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-sockaddr', sum='h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc=', version='v1.0.2')
go_repository(name='com_github_hashicorp_yamux', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/yamux', sum='h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ=', version='v0.0.0-20181012175058-2f1d1f20f75d')
go_repository(name='com_github_howeyc_gopass', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/howeyc/gopass', sum='h1:kQWxfPIHVLbgLzphqk3QUflDy9QdksZR4ygR807bpy0=', version='v0.0.0-20170109162249-bf9dde6d0d2c')
go_repository(name='com_github_hpcloud_tail', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hpcloud/tail', sum='h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=', version='v1.0.0')
go_repository(name='com_github_imdario_mergo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/imdario/mergo', sum='h1:UauaLniWCFHWd+Jp9oCEkTBj8VO/9DKg3PV3VCNMDIg=', version='v0.3.9')
go_repository(name='com_github_inconshreveable_mousetrap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/inconshreveable/mousetrap', sum='h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=', version='v1.0.0')
go_repository(name='com_github_jeffail_gabs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Jeffail/gabs', sum='h1:V0uzR08Hj22EX8+8QMhyI9sX2hwRu+/RJhJUmnwda/E=', version='v1.1.1')
go_repository(name='com_github_jefferai_jsonx', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jefferai/jsonx', sum='h1:Xoz0ZbmkpBvED5W9W1B5B/zc3Oiq7oXqiW7iRV3B6EI=', version='v1.0.0')
go_repository(name='com_github_jmespath_go_jmespath', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jmespath/go-jmespath', sum='h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=', version='v0.4.0')
go_repository(name='com_github_jonboulle_clockwork', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jonboulle/clockwork', sum='h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=', version='v0.1.0')
go_repository(name='com_github_json_iterator_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/json-iterator/go', sum='h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=', version='v1.1.10')
go_repository(name='com_github_jstemmer_go_junit_report', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jstemmer/go-junit-report', sum='h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=', version='v0.9.1')
go_repository(name='com_github_jtolds_gls', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jtolds/gls', sum='h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=', version='v4.20.0+incompatible')
go_repository(name='com_github_julienschmidt_httprouter', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/julienschmidt/httprouter', sum='h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=', version='v1.2.0')
go_repository(name='com_github_keybase_go_crypto', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/keybase/go-crypto', sum='h1:Gsc9mVHLRqBjMgdQCghN9NObCcRncDqxJvBvEaIIQEo=', version='v0.0.0-20190403132359-d65b6b94177f')
go_repository(name='com_github_kisielk_errcheck', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kisielk/errcheck', sum='h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=', version='v1.2.0')
go_repository(name='com_github_kisielk_gotool', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kisielk/gotool', sum='h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=', version='v1.0.0')
go_repository(name='com_github_konsorten_go_windows_terminal_sequences', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/konsorten/go-windows-terminal-sequences', sum='h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=', version='v1.0.3')
go_repository(name='com_github_kr_logfmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/logfmt', sum='h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=', version='v0.0.0-20140226030751-b84e30acd515')
go_repository(name='com_github_kr_pretty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/pretty', sum='h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=', version='v0.2.1')
go_repository(name='com_github_kr_pty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/pty', sum='h1:hyz3dwM5QLc1Rfoz4FuWJQG5BN7tc6K1MndAUnGpQr4=', version='v1.1.5')
go_repository(name='com_github_kr_text', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/kr/text', sum='h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=', version='v0.1.0')
go_repository(name='com_github_lib_pq', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lib/pq', sum='h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A=', version='v1.0.0')
go_repository(name='com_github_magiconair_properties', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/magiconair/properties', sum='h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=', version='v1.8.1')
go_repository(name='com_github_mailru_easyjson', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mailru/easyjson', sum='h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=', version='v0.7.0')
go_repository(name='com_github_mattbaird_jsonpatch', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattbaird/jsonpatch', sum='h1:+J2gw7Bw77w/fbK7wnNJJDKmw1IbWft2Ul5BzrG1Qm8=', version='v0.0.0-20171005235357-81af80346b1a')
go_repository(name='com_github_mattn_go_colorable', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattn/go-colorable', sum='h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU=', version='v0.1.2')
go_repository(name='com_github_mattn_go_isatty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattn/go-isatty', sum='h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=', version='v0.0.8')
go_repository(name='com_github_matttproud_golang_protobuf_extensions', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/matttproud/golang_protobuf_extensions', sum='h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=', version='v1.0.2-0.20181231171920-c182affec369')
go_repository(name='com_github_mgutz_ansi', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mgutz/ansi', sum='h1:j7+1HpAFS1zy5+Q4qx1fWh90gTKwiN4QCGoY9TWyyO4=', version='v0.0.0-20170206155736-9520e82c474b')
go_repository(name='com_github_mgutz_logxi', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mgutz/logxi', sum='h1:n8cgpHzJ5+EDyDri2s/GC7a9+qK3/YEGnBsd0uS/8PY=', version='v0.0.0-20161027140823-aebf8a7d67ab')
go_repository(name='com_github_microsoft_go_winio', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Microsoft/go-winio', sum='h1:xAfWHN1IrQ0NJ9TBC0KBZoqLjzDTr1ML+4MywiUOryc=', version='v0.4.12')
go_repository(name='com_github_miekg_dns', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/miekg/dns', sum='h1:sJFOl9BgwbYAWOGEwr61FU28pqsBNdpRBnhGXtO06Oo=', version='v1.1.31')
go_repository(name='com_github_mitchellh_copystructure', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/copystructure', sum='h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=', version='v1.0.0')
go_repository(name='com_github_mitchellh_go_homedir', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/go-homedir', sum='h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=', version='v1.1.0')
go_repository(name='com_github_mitchellh_go_testing_interface', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/go-testing-interface', sum='h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0=', version='v1.0.0')
go_repository(name='com_github_mitchellh_mapstructure', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/mapstructure', sum='h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=', version='v1.1.2')
go_repository(name='com_github_mitchellh_reflectwalk', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/reflectwalk', sum='h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY=', version='v1.0.0')
go_repository(name='com_github_modern_go_concurrent', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/modern-go/concurrent', sum='h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=', version='v0.0.0-20180306012644-bacd9c7ef1dd')
go_repository(name='com_github_modern_go_reflect2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/modern-go/reflect2', sum='h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=', version='v1.0.1')
go_repository(name='com_github_munnerz_goautoneg', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/munnerz/goautoneg', sum='h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=', version='v0.0.0-20191010083416-a7dc8b61c822')
go_repository(name='com_github_mwitkow_go_conntrack', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mwitkow/go-conntrack', sum='h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=', version='v0.0.0-20161129095857-cc309e4a2223')
go_repository(name='com_github_mxk_go_flowrate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mxk/go-flowrate', sum='h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=', version='v0.0.0-20140419014527-cca7078d478f')
go_repository(name='com_github_nvveen_gotty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Nvveen/Gotty', sum='h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=', version='v0.0.0-20120604004816-cd527374f1e5')
go_repository(name='com_github_nytimes_gziphandler', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/NYTimes/gziphandler', sum='h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=', version='v0.0.0-20170623195520-56545f4a5d46')
go_repository(name='com_github_oklog_run', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/oklog/run', sum='h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=', version='v1.0.0')
go_repository(name='com_github_onsi_ginkgo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/onsi/ginkgo', sum='h1:mFwc4LvZ0xpSvDZ3E+k8Yte0hLOMxXUlP+yXtJqkYfQ=', version='v1.12.1')
go_repository(name='com_github_onsi_gomega', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/onsi/gomega', sum='h1:o0+MgICZLuZ7xjH7Vx6zS/zcu93/BEp1VwkIW1mEXCE=', version='v1.10.1')
go_repository(name='com_github_opencontainers_go_digest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opencontainers/go-digest', sum='h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ=', version='v1.0.0-rc1')
go_repository(name='com_github_opencontainers_image_spec', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opencontainers/image-spec', sum='h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=', version='v1.0.1')
go_repository(name='com_github_opencontainers_runc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opencontainers/runc', sum='h1:GlxAyO6x8rfZYN9Tt0Kti5a/cP41iuiO2yYT0IJGY8Y=', version='v0.1.1')
go_repository(name='com_github_ory_dockertest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ory/dockertest', sum='h1:VrpM6Gqg7CrPm3bL4Wm1skO+zFWLbh7/Xb5kGEbJRh8=', version='v3.3.4+incompatible')
go_repository(name='com_github_pascaldekloe_goe', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pascaldekloe/goe', sum='h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY=', version='v0.1.0')
go_repository(name='com_github_patrickmn_go_cache', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/patrickmn/go-cache', sum='h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=', version='v2.1.0+incompatible')
go_repository(name='com_github_pborman_uuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pborman/uuid', sum='h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=', version='v1.2.0')
go_repository(name='com_github_pelletier_go_toml', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pelletier/go-toml', sum='h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=', version='v1.2.0')
go_repository(name='com_github_peterbourgon_diskv', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/peterbourgon/diskv', sum='h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=', version='v2.0.1+incompatible')
go_repository(name='com_github_pkg_errors', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pkg/errors', sum='h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=', version='v0.9.1')
go_repository(name='com_github_pmezard_go_difflib', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pmezard/go-difflib', sum='h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=', version='v1.0.0')
go_repository(name='com_github_pquerna_cachecontrol', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pquerna/cachecontrol', sum='h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=', version='v0.0.0-20171018203845-0dec1b30a021')
go_repository(name='com_github_prometheus_client_golang', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/client_golang', sum='h1:NTGy1Ja9pByO+xAeH/qiWnLrKtr3hJPNjaVUwnjpdpA=', version='v1.7.1')
go_repository(name='com_github_prometheus_client_model', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/client_model', sum='h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=', version='v0.2.0')
go_repository(name='com_github_prometheus_common', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/common', sum='h1:RyRA7RzGXQZiW+tGMr7sxa85G1z0yOpM1qq5c8lNawc=', version='v0.10.0')
go_repository(name='com_github_prometheus_procfs', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/procfs', sum='h1:F0+tqvhOksq22sc6iCHF5WGlWjdwj92p0udFh1VFBS8=', version='v0.1.3')
go_repository(name='com_github_puerkitobio_purell', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/PuerkitoBio/purell', sum='h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=', version='v1.1.1')
go_repository(name='com_github_puerkitobio_urlesc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/PuerkitoBio/urlesc', sum='h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=', version='v0.0.0-20170810143723-de5bf2ad4578')
go_repository(name='com_github_remyoudompheng_bigfft', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/remyoudompheng/bigfft', sum='h1:/NRJ5vAYoqz+7sG51ubIDHXeWO8DlTSrToPu6q11ziA=', version='v0.0.0-20170806203942-52369c62f446')
go_repository(name='com_github_russross_blackfriday', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/russross/blackfriday', sum='h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=', version='v1.5.2')
go_repository(name='com_github_ryanuber_go_glob', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ryanuber/go-glob', sum='h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk=', version='v1.0.0')
go_repository(name='com_github_sap_go_hdb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/SAP/go-hdb', sum='h1:hkw4ozGZ/i4eak7ZuGkY5e0hxiXFdNUBNhr4AvZVNFE=', version='v0.14.1')
go_repository(name='com_github_sermodigital_jose', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/SermoDigital/jose', sum='h1:atYaHPD3lPICcbK1owly3aPm0iaJGSGPi0WD4vLznv8=', version='v0.9.1')
go_repository(name='com_github_sethgrid_pester', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sethgrid/pester', sum='h1:X9XMOYjxEfAYSy3xK1DzO5dMkkWhs9E9UCcS1IERx2k=', version='v0.0.0-20190127155807-68a33a018ad0')
go_repository(name='com_github_sirupsen_logrus', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sirupsen/logrus', sum='h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=', version='v1.6.0')
go_repository(name='com_github_smartystreets_assertions', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/smartystreets/assertions', sum='h1:42S6lae5dvLc7BrLu/0ugRtcFVjoJNMC/N3yZFZkDFs=', version='v1.2.0')
go_repository(name='com_github_smartystreets_goconvey', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/smartystreets/goconvey', sum='h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=', version='v1.6.4')
go_repository(name='com_github_soheilhy_cmux', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/soheilhy/cmux', sum='h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=', version='v0.1.4')
go_repository(name='com_github_spf13_afero', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/afero', sum='h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=', version='v1.2.2')
go_repository(name='com_github_spf13_cast', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/cast', sum='h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=', version='v1.3.0')
go_repository(name='com_github_spf13_cobra', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/cobra', sum='h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=', version='v1.0.0')
go_repository(name='com_github_spf13_jwalterweatherman', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/jwalterweatherman', sum='h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=', version='v1.0.0')
go_repository(name='com_github_spf13_pflag', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/pflag', sum='h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=', version='v1.0.5')
go_repository(name='com_github_spf13_viper', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spf13/viper', sum='h1:xVKxvI7ouOI5I+U9s2eeiUfMaWBVoXA3AWskkrqK0VM=', version='v1.7.0')
go_repository(name='com_github_stretchr_objx', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/stretchr/objx', sum='h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=', version='v0.2.0')
go_repository(name='com_github_stretchr_testify', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/stretchr/testify', sum='h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0=', version='v1.6.1')
go_repository(name='com_github_tent_http_link_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/tent/http-link-go', sum='h1:/Bsw4C+DEdqPjt8vAqaC9LAqpAQnaCQQqmolqq3S1T4=', version='v0.0.0-20130702225549-ac974c61c2f9')
go_repository(name='com_github_tmc_grpc_websocket_proxy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/tmc/grpc-websocket-proxy', sum='h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=', version='v0.0.0-20190109142713-0ad062ec5ee5')
go_repository(name='com_github_ugorji_go_codec', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ugorji/go/codec', sum='h1:3SVOIvH7Ae1KRYyQWRjXWJEA9sS/c/pjvH++55Gr648=', version='v0.0.0-20181204163529-d75b2dcb6bc8')
go_repository(name='com_github_venafi_vcert', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Venafi/vcert', sum='h1:+J3fdxS1dgOJwGFM9LuQUr8F4YklF8hrq9BrNzLwPFE=', version='v0.0.0-20200310111556-eba67a23943f')
go_repository(name='com_github_xiang90_probing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/xiang90/probing', sum='h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=', version='v0.0.0-20190116061207-43a291ad63a2')
go_repository(name='com_github_xordataexchange_crypt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/xordataexchange/crypt', sum='h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=', version='v0.0.3-0.20170626215501-b2862e3d0a77')
go_repository(name='com_google_cloud_go', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go', sum='h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=', version='v0.51.0')
go_repository(name='com_sslmate_software_src_go_pkcs12', build_file_generation='on', build_file_proto_mode='disable', importpath='software.sslmate.com/src/go-pkcs12', sum='h1:AVd6O+azYjVQYW1l55IqkbL8/JxjrLtO6q4FCmV8N5c=', version='v0.0.0-20200830195227-52f69702a001')
go_repository(name='in_gopkg_alecthomas_kingpin_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/alecthomas/kingpin.v2', sum='h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=', version='v2.2.6')
go_repository(name='in_gopkg_check_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/check.v1', sum='h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=', version='v1.0.0-20190902080502-41f04d3bba15')
go_repository(name='in_gopkg_fsnotify_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/fsnotify.v1', sum='h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=', version='v1.4.7')
go_repository(name='in_gopkg_inf_v0', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/inf.v0', sum='h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=', version='v0.9.1')
go_repository(name='in_gopkg_ini_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/ini.v1', sum='h1:j+Lt/M1oPPejkniCg1TkWE2J3Eh1oZTsHSXzMTzUXn4=', version='v1.52.0')
go_repository(name='in_gopkg_mgo_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/mgo.v2', sum='h1:xcEWjVhvbDy+nHP67nPDDpbYrY+ILlfndk4bRioVHaU=', version='v2.0.0-20180705113604-9856a29383ce')
go_repository(name='in_gopkg_natefinch_lumberjack_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/natefinch/lumberjack.v2', sum='h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=', version='v2.0.0')
go_repository(name='in_gopkg_ory_am_dockertest_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/ory-am/dockertest.v3', sum='h1:oen8RiwxVNxtQ1pRoV4e4jqh6UjNsOuIZ1NXns6jdcw=', version='v3.3.4')
go_repository(name='in_gopkg_square_go_jose_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/square/go-jose.v2', sum='h1:SK5KegNXmKmqE342YYN2qPHEnUYeoMiXXl1poUlI+o4=', version='v2.3.1')
go_repository(name='in_gopkg_tomb_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/tomb.v1', sum='h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=', version='v1.0.0-20141024135613-dd632973f1e7')
go_repository(name='in_gopkg_yaml_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/yaml.v2', sum='h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=', version='v2.3.0')
go_repository(name='io_k8s_api', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/api', sum='h1:XyrFIJqTYZJ2DU7FBE/bSPz7b1HvbVBuBf07oeo6eTc=', version='v0.19.0')
go_repository(name='io_k8s_apiextensions_apiserver', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/apiextensions-apiserver', sum='h1:jlY13lvZp+0p9fRX2khHFdiT9PYzT7zUrANz6R1NKtY=', version='v0.19.0')
go_repository(name='io_k8s_apimachinery', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/apimachinery', sum='h1:gjKnAda/HZp5k4xQYjL0K/Yb66IvNqjthCb03QlKpaQ=', version='v0.19.0')
go_repository(name='io_k8s_apiserver', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/apiserver', sum='h1:jLhrL06wGAADbLUUQm8glSLnAGP6c7y5R3p19grkBoY=', version='v0.19.0')
go_repository(name='io_k8s_client_go', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/client-go', sum='h1:1+0E0zfWFIWeyRhQYWzimJOyAk2UT7TiARaLNwJCf7k=', version='v0.19.0')
go_repository(name='io_k8s_code_generator', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/code-generator', sum='h1:r0BxYnttP/r8uyKd4+Njg0B57kKi8wLvwEzaaVy3iZ8=', version='v0.19.0')
go_repository(name='io_k8s_component_base', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/component-base', sum='h1:OueXf1q3RW7NlLlUCj2Dimwt7E1ys6ZqRnq53l2YuoE=', version='v0.19.0')
go_repository(name='io_k8s_gengo', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/gengo', sum='h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=', version='v0.0.0-20200428234225-8167cfdcfc14')
go_repository(name='io_k8s_klog', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/klog', sum='h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8=', version='v1.0.0')
go_repository(name='io_k8s_kube_aggregator', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/kube-aggregator', sum='h1:rL4fsftMaqkKjaibArYDaBeqN41CHaJzgRJjUB9IrIg=', version='v0.19.0')
go_repository(name='io_k8s_kube_openapi', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/kube-openapi', sum='h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=', version='v0.0.0-20200805222855-6aeccd4b50c6')
go_repository(name='io_k8s_sigs_controller_runtime', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/controller-runtime', sum='h1:jkAnfdTYBpFwlmBn3pS5HFO06SfxvnTZ1p5PeEF/zAA=', version='v0.6.2')
go_repository(name='io_k8s_sigs_controller_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/controller-tools', sum='h1:PXOHvyYAjWfO0UfQvaUo33HpXNCOilV3i/Vjc7iM1/A=', version='v0.2.9-0.20200414181213-645d44dca7c0')
go_repository(name='io_k8s_sigs_structured_merge_diff', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff', sum='h1:zD2IemQ4LmOcAumeiyDWXKUI2SO0NYDe3H6QGvPOVgU=', version='v1.0.1-0.20191108220359-b1b620dd3f06')
go_repository(name='io_k8s_sigs_testing_frameworks', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/testing_frameworks', sum='h1:vK0+tvjF0BZ/RYFeZ1E6BYBwHJJXhjuZ3TdsEKH+UQM=', version='v0.1.2')
go_repository(name='io_k8s_sigs_yaml', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/yaml', sum='h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=', version='v1.2.0')
go_repository(name='io_k8s_utils', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/utils', sum='h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=', version='v0.0.0-20200729134348-d5654de09c73')
go_repository(name='io_opencensus_go', build_file_generation='on', build_file_proto_mode='disable', importpath='go.opencensus.io', sum='h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs=', version='v0.22.2')
go_repository(name='org_golang_google_api', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/api', sum='h1:yzlyyDW/J0w8yNFJIhiAJy4kq74S+1DOLdawELNxFMA=', version='v0.15.0')
go_repository(name='org_golang_google_appengine', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/appengine', sum='h1:tycE03LOZYQNhDpS27tcQdAzLCVMaj7QT2SXxebnpCM=', version='v1.6.5')
go_repository(name='org_golang_google_genproto', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/genproto', sum='h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=', version='v0.0.0-20200526211855-cb27e3aa2013')
go_repository(name='org_golang_google_grpc', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/grpc', sum='h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=', version='v1.27.0')
go_repository(name='org_golang_x_crypto', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/crypto', replace='github.com/meyskens/crypto', sum='h1:09XQpCKCNW3zrjz4zvD/cYU3hqUEWW+bZrBwK8NwFW0=', version='v0.0.0-20200821143559-6ca9aec645f0')
go_repository(name='org_golang_x_exp', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/exp', sum='h1:zQpM52jfKHG6II1ISZY1ZcpygvuSFZpLwfluuF89XOg=', version='v0.0.0-20191227195350-da58074b4299')
go_repository(name='org_golang_x_image', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/image', sum='h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=', version='v0.0.0-20190802002840-cff245a6509b')
go_repository(name='org_golang_x_lint', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/lint', sum='h1:J5lckAjkw6qYlOZNj90mLYNTEKDvWeuc1yieZ8qUzUE=', version='v0.0.0-20191125180803-fdd1cda4f05f')
go_repository(name='org_golang_x_mobile', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/mobile', sum='h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=', version='v0.0.0-20190719004257-d2bd2a29d028')
go_repository(name='org_golang_x_net', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/net', sum='h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA=', version='v0.0.0-20200822124328-c89045814202')
go_repository(name='org_golang_x_oauth2', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/oauth2', sum='h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw=', version='v0.0.0-20200107190931-bf48bf16ab8d')
go_repository(name='org_golang_x_sync', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/sync', sum='h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY=', version='v0.0.0-20190911185100-cd5d95a43a6e')
go_repository(name='org_golang_x_sys', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/sys', sum='h1:5/PjkGUjvEU5Gl6BxmvKRPpqo2uNMv4rcHBMwzk/st8=', version='v0.0.0-20200622214017-ed371f2e16b4')
go_repository(name='org_golang_x_text', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/text', sum='h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=', version='v0.3.3')
go_repository(name='org_golang_x_time', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/time', sum='h1:EHBhcS0mlXEAVwNyO2dLfjToGsyY4j24pTs2ScHnX7s=', version='v0.0.0-20200630173020-3af7569d3a1e')
go_repository(name='org_golang_x_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/tools', sum='h1:HHeAlu5H9b71C+Fx0K+1dGgVFN1DM1/wz4aoGOA5qS8=', version='v0.0.0-20200616133436-c1934b75d054')
go_repository(name='org_gonum_v1_gonum', build_file_generation='on', build_file_proto_mode='disable', importpath='gonum.org/v1/gonum', sum='h1:OB/uP/Puiu5vS5QMRPrXCDWUPb+kt8f1KW8oQzFejQw=', version='v0.0.0-20190331200053-3d26580ed485')
go_repository(name='org_gonum_v1_netlib', build_file_generation='on', build_file_proto_mode='disable', importpath='gonum.org/v1/netlib', sum='h1:jRyg0XfpwWlhEV8mDfdNGBeSJM2fuyh9Yjrnd8kF2Ts=', version='v0.0.0-20190331212654-76723241ea4e')
go_repository(name='org_modernc_cc', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/cc', sum='h1:nPibNuDEx6tvYrUAtvDTTw98rx5juGsa5zuDnKwEEQQ=', version='v1.0.0')
go_repository(name='org_modernc_golex', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/golex', sum='h1:wWpDlbK8ejRfSyi0frMyhilD3JBvtcx2AdGDnU+JtsE=', version='v1.0.0')
go_repository(name='org_modernc_mathutil', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/mathutil', sum='h1:93vKjrJopTPrtTNpZ8XIovER7iCIH1QU7wNbOQXC60I=', version='v1.0.0')
go_repository(name='org_modernc_strutil', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/strutil', sum='h1:XVFtQwFVwc02Wk+0L/Z/zDDXO81r5Lhe6iMKmGX3KhE=', version='v1.0.0')
go_repository(name='org_modernc_xc', build_file_generation='on', build_file_proto_mode='disable', importpath='modernc.org/xc', sum='h1:7ccXrupWZIS3twbUGrtKmHS2DXY6xegFua+6O3xgAFU=', version='v1.0.0')
go_repository(name='org_uber_go_atomic', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/atomic', sum='h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=', version='v1.4.0')
go_repository(name='org_uber_go_multierr', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/multierr', sum='h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=', version='v1.1.0')
go_repository(name='org_uber_go_zap', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/zap', sum='h1:ORx85nbTijNz8ljznvCMR1ZBIPKFn3jQrag10X2AsuM=', version='v1.10.0')
go_repository(name='tools_gotest', build_file_generation='on', build_file_proto_mode='disable', importpath='gotest.tools', sum='h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=', version='v2.2.0+incompatible')
go_repository(name='xyz_gomodules_jsonpatch_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gomodules.xyz/jsonpatch/v2', sum='h1:xyiBuvkD2g5n7cYzx6u2sxQvsAy4QJsZFCzGVdzOXZ0=', version='v2.0.1')
go_repository(name='net_launchpad_gocheck', build_file_generation='on', build_file_proto_mode='disable', importpath='launchpad.net/gocheck', sum='h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54=', version='v0.0.0-20140225173054-000000000087')
go_repository(name='com_github_apache_thrift', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/apache/thrift', sum='h1:5hryIiq9gtn+MiLVn0wP37kb/uTeRZgN08WoCsAhIhI=', version='v0.13.0')
go_repository(name='com_github_eapache_go_resiliency', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/eapache/go-resiliency', sum='h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU=', version='v1.1.0')
go_repository(name='com_github_eapache_go_xerial_snappy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/eapache/go-xerial-snappy', sum='h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw=', version='v0.0.0-20180814174437-776d5712da21')
go_repository(name='com_github_eapache_queue', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/eapache/queue', sum='h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc=', version='v1.1.0')
go_repository(name='com_github_openzipkin_zipkin_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/openzipkin/zipkin-go', sum='h1:nY8Hti+WKaP0cRsSeQ026wU03QsM762XBeCXBb9NAWI=', version='v0.2.2')
go_repository(name='com_github_pierrec_lz4', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pierrec/lz4', sum='h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I=', version='v2.0.5+incompatible')
go_repository(name='com_github_rcrowley_go_metrics', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/rcrowley/go-metrics', sum='h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ=', version='v0.0.0-20181016184325-3113b8401b8a')
go_repository(name='com_github_shopify_sarama', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Shopify/sarama', sum='h1:9oksLxC6uxVPHPVYUmq6xhr1BOF/hHobWH2UzO67z1s=', version='v1.19.0')
go_repository(name='com_github_shopify_toxiproxy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Shopify/toxiproxy', sum='h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc=', version='v2.1.4+incompatible')
go_repository(name='in_gopkg_yaml_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/yaml.v3', sum='h1:grhR+C34yXImVGp7EzNk+DTIk+323eIUWOmEevy6bDo=', version='v3.0.0-20200605160147-a5ece683394c')
go_repository(name='com_github_docopt_docopt_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docopt/docopt-go', sum='h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=', version='v0.0.0-20180111231733-ee0de3bc6815')
go_repository(name='org_golang_x_xerrors', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/xerrors', sum='h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=', version='v0.0.0-20191204190536-9bdfabe68543')
go_repository(name='io_etcd_go_bbolt', build_file_generation='on', build_file_proto_mode='disable', importpath='go.etcd.io/bbolt', sum='h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=', version='v1.3.5')
go_repository(name='com_github_munnerz_crd_schema_fuzz', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/munnerz/crd-schema-fuzz', sum='h1:8erI9yzEnOGw9K5O+a8zZdoo8N/OwrFi7c7SjBtkHAs=', version='v1.0.0')
go_repository(name='com_github_agnivade_levenshtein', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/agnivade/levenshtein', sum='h1:3oJU7J3FGFmyhn8KHjmVaZCN5hxTr7GxgRue+sxIXdQ=', version='v1.0.1')
go_repository(name='com_github_andreyvit_diff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/andreyvit/diff', sum='h1:bvNMNQO63//z+xNgfBlViaCIJKLlCJ6/fmUseuG0wVQ=', version='v0.0.0-20170406064948-c7f18ee00883')
go_repository(name='com_github_bgentry_speakeasy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bgentry/speakeasy', sum='h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=', version='v0.1.0')
go_repository(name='com_github_cockroachdb_datadriven', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cockroachdb/datadriven', sum='h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=', version='v0.0.0-20190809214429-80d97fb3cbaa')
go_repository(name='com_github_creack_pty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/creack/pty', sum='h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=', version='v1.1.7')
go_repository(name='com_github_dustin_go_humanize', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/dustin/go-humanize', sum='h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=', version='v1.0.0')
go_repository(name='com_github_mattn_go_runewidth', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mattn/go-runewidth', sum='h1:Ei8KR0497xHyKJPAv59M1dkC+rOZCMBJ+t3fZ+twI54=', version='v0.0.7')
go_repository(name='com_github_olekukonko_tablewriter', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/olekukonko/tablewriter', sum='h1:vHD/YYe1Wolo78koG299f7V/VAS08c6IpCLn+Ejf/w8=', version='v0.0.4')
go_repository(name='com_github_rogpeppe_fastuuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/rogpeppe/fastuuid', sum='h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=', version='v0.0.0-20150106093220-6724a57986af')
go_repository(name='com_github_sergi_go_diff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sergi/go-diff', sum='h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=', version='v1.1.0')
go_repository(name='com_github_tidwall_pretty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/tidwall/pretty', sum='h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=', version='v1.0.0')
go_repository(name='com_github_urfave_cli', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/urfave/cli', sum='h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA=', version='v1.22.4')
go_repository(name='com_github_vektah_gqlparser', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/vektah/gqlparser', sum='h1:ZsyLGn7/7jDNI+y4SEhI4yAxRChlv15pUHMjijT+e68=', version='v1.1.2')
go_repository(name='in_gopkg_cheggaaa_pb_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/cheggaaa/pb.v1', sum='h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=', version='v1.0.25')
go_repository(name='in_gopkg_resty_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/resty.v1', sum='h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=', version='v1.12.0')
go_repository(name='io_etcd_go_etcd', build_file_generation='on', build_file_proto_mode='disable', importpath='go.etcd.io/etcd', sum='h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=', version='v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5')
go_repository(name='org_mongodb_go_mongo_driver', build_file_generation='on', build_file_proto_mode='disable', importpath='go.mongodb.org/mongo-driver', sum='h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=', version='v1.1.2')
go_repository(name='com_github_go_ldap_ldap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-ldap/ldap', sum='h1:kD5HQcAzlQ7yrhfn+h+MSABeAy/jAJhvIJ/QDllP44g=', version='v3.0.2+incompatible')
go_repository(name='com_github_go_test_deep', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-test/deep', sum='h1:28FVBuwkwowZMjbA7M0wXsI6t3PYulRTMio3SO+eKCM=', version='v1.0.2-0.20181118220953-042da051cf31')
go_repository(name='com_github_mitchellh_cli', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/cli', sum='h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=', version='v1.0.0')
go_repository(name='com_github_mitchellh_go_wordwrap', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/go-wordwrap', sum='h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=', version='v1.0.0')
go_repository(name='com_github_posener_complete', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/posener/complete', sum='h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=', version='v1.1.1')
go_repository(name='com_github_ryanuber_columnize', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ryanuber/columnize', sum='h1:j1Wcmh8OrK4Q7GXY+V7SVSY8nUWQxHW5TkBe7YUl+2s=', version='v2.1.0+incompatible')
go_repository(name='in_gopkg_asn1_ber_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/asn1-ber.v1', sum='h1:TxyelI5cVkbREznMhfzycHdkp5cLA7DpE+GKjSslYhM=', version='v1.0.0-20181015200546-f715ec2f112d')
go_repository(name='com_github_pavel_v_chernykh_keystore_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pavel-v-chernykh/keystore-go', sum='h1:Jd6xfriVlJ6hWPvYOE0Ni0QWcNTLRehfGPFxr3eSL80=', version='v2.1.0+incompatible')
go_repository(name='com_github_cpuguy83_go_md2man_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cpuguy83/go-md2man/v2', sum='h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=', version='v2.0.0')
go_repository(name='com_github_russross_blackfriday_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/russross/blackfriday/v2', sum='h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=', version='v2.0.1')
go_repository(name='com_github_shurcool_sanitized_anchor_name', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/shurcooL/sanitized_anchor_name', sum='h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=', version='v1.0.0')
go_repository(name='com_github_urfave_cli_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/urfave/cli/v2', sum='h1:Qt8FeAtxE/vfdrLmR3rxR6JRE0RoVmbXu8+6kZtYU4k=', version='v2.1.1')
go_repository(name='com_github_census_instrumentation_opencensus_proto', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/census-instrumentation/opencensus-proto', sum='h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=', version='v0.2.1')
go_repository(name='com_github_envoyproxy_go_control_plane', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/envoyproxy/go-control-plane', sum='h1:4cmBvAEBNJaGARUEs3/suWRyfyBfhf7I60WBZq+bv2w=', version='v0.9.1-0.20191026205805-5f8ba28d4473')
go_repository(name='com_github_envoyproxy_protoc_gen_validate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/envoyproxy/protoc-gen-validate', sum='h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=', version='v0.1.0')
go_repository(name='io_k8s_sigs_apiserver_network_proxy_konnectivity_client', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/apiserver-network-proxy/konnectivity-client', sum='h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=', version='v0.0.9')
go_repository(name='io_k8s_sigs_structured_merge_diff_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff/v3', sum='h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=', version='v3.0.0')
go_repository(name='com_github_chai2010_gettext_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chai2010/gettext-go', sum='h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=', version='v0.0.0-20160711120539-c6fed771bfd5')
go_repository(name='com_github_daviddengcn_go_colortext', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/daviddengcn/go-colortext', sum='h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=', version='v0.0.0-20160507010035-511bcaf42ccd')
go_repository(name='com_github_docker_distribution', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/docker/distribution', sum='h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=', version='v2.7.1+incompatible')
go_repository(name='com_github_exponent_io_jsonpath', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/exponent-io/jsonpath', sum='h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=', version='v0.0.0-20151013193312-d6023ce2651d')
go_repository(name='com_github_fatih_camelcase', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/fatih/camelcase', sum='h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=', version='v1.0.0')
go_repository(name='com_github_golangplus_bytes', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golangplus/bytes', sum='h1:7xqw01UYS+KCI25bMrPxwNYkSns2Db1ziQPpVq99FpE=', version='v0.0.0-20160111154220-45c989fe5450')
go_repository(name='com_github_golangplus_fmt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golangplus/fmt', sum='h1:f5gsjBiF9tRRVomCvrkGMMWI8W1f2OBFar2c5oakAP0=', version='v0.0.0-20150411045040-2a5d6d7d2995')
go_repository(name='com_github_golangplus_testing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/golangplus/testing', sum='h1:KhcknUwkWHKZPbFy2P7jH5LKJ3La+0ZeknkkmrSgqb0=', version='v0.0.0-20180327235837-af21d9c3145e')
go_repository(name='com_github_liggitt_tabwriter', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/liggitt/tabwriter', sum='h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=', version='v0.0.0-20181228230101-89fcab3d43de')
go_repository(name='com_github_lithammer_dedent', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lithammer/dedent', sum='h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=', version='v1.1.0')
go_repository(name='com_github_makenowjust_heredoc', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/MakeNowJust/heredoc', sum='h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=', version='v0.0.0-20170808103936-bb23615498cd')
go_repository(name='com_github_xlab_handysort', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/xlab/handysort', sum='h1:j2hhcujLRHAg872RWAV5yaUrEjHEObwDv3aImCaNLek=', version='v0.0.0-20150421192137-fb3537ed64a1')
go_repository(name='io_k8s_cli_runtime', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/cli-runtime', sum='h1:wLe+osHSqcItyS3MYQXVyGFa54fppORVA8Jn7DBGSWw=', version='v0.19.0')
go_repository(name='io_k8s_kubectl', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/kubectl', sum='h1:t9uxaZzGvqc2jY96mjnPSjFHtaKOxoUegeGZdaGT6aw=', version='v0.19.0')
go_repository(name='io_k8s_metrics', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/metrics', sum='h1:cKq0+Z7wg5qkK1n8dryNffKfU22DBX83JguGpR+TCk0=', version='v0.19.0')
go_repository(name='io_k8s_sigs_kustomize', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/kustomize', sum='h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=', version='v2.0.3+incompatible')
go_repository(name='ml_vbom_util', build_file_generation='on', build_file_proto_mode='disable', importpath='vbom.ml/util', sum='h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=', version='v0.0.0-20160121211510-db5cfe13f5cc')
go_repository(name='org_golang_x_mod', build_file_generation='on', build_file_proto_mode='disable', importpath='golang.org/x/mod', sum='h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=', version='v0.3.0')
go_repository(name='com_github_ugorji_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ugorji/go', sum='h1:j4s+tAvLfL3bZyefP2SEWmhBzmuIlH/eqNuPdFPgngw=', version='v1.1.4')
go_repository(name='io_k8s_klog_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='k8s.io/klog/v2', sum='h1:WmkrnW7fdrm0/DMClc+HIxtftvxVIPAhlVwMQo5yLco=', version='v2.3.0')
go_repository(name='com_github_nxadm_tail', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nxadm/tail', sum='h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=', version='v1.4.4')
go_repository(name='io_k8s_sigs_structured_merge_diff_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff/v2', sum='h1:I0h4buiCqDtPztO3NOiyoNMtqSIfld49D4Wj3UBXYZA=', version='v2.0.1')
go_repository(name='org_golang_google_protobuf', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/protobuf', sum='h1:UhZDfRO8JRQru4/+LlLE0BRKGF8L+PICnvYZmx/fEGA=', version='v1.24.0')
go_repository(name='com_github_cespare_xxhash', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cespare/xxhash', sum='h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=', version='v1.1.0')
go_repository(name='com_github_cespare_xxhash_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cespare/xxhash/v2', sum='h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=', version='v2.1.1')
go_repository(name='com_github_chzyer_logex', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chzyer/logex', sum='h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=', version='v1.1.10')
go_repository(name='com_github_chzyer_readline', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chzyer/readline', sum='h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=', version='v0.0.0-20180603132655-2972be24d48e')
go_repository(name='com_github_chzyer_test', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/chzyer/test', sum='h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=', version='v0.0.0-20180213035817-a1ea475d72b1')
go_repository(name='com_github_dgryski_go_sip13', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/dgryski/go-sip13', sum='h1:RMLoZVzv4GliuWafOuPuQDKSm1SJph7uCRnnS61JAn4=', version='v0.0.0-20181026042036-e10d5fee7954')
go_repository(name='com_github_go_gl_glfw_v3_3_glfw', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-gl/glfw/v3.3/glfw', sum='h1:b+9H1GAsx5RsjvDFLoS5zkNBzIQMuVKUYQDmxU3N5XE=', version='v0.0.0-20191125211704-12ad95a8df72')
go_repository(name='com_github_google_renameio', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/renameio', sum='h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=', version='v0.1.0')
go_repository(name='com_github_ianlancetaylor_demangle', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/ianlancetaylor/demangle', sum='h1:UDMh68UUwekSh5iP2OMhRRZJiiBccgV7axzUG8vi56c=', version='v0.0.0-20181102032728-5e5cf60278f6')
go_repository(name='com_github_moby_term', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/moby/term', sum='h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=', version='v0.0.0-20200312100748-672ec06f55cd')
go_repository(name='com_github_oklog_ulid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/oklog/ulid', sum='h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4=', version='v1.3.1')
go_repository(name='com_github_oneofone_xxhash', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/OneOfOne/xxhash', sum='h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=', version='v1.2.2')
go_repository(name='com_github_prometheus_tsdb', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/prometheus/tsdb', sum='h1:YZcsG11NqnK4czYLrWd9mpEuAJIHVQLwdrleYfszMAA=', version='v0.7.1')
go_repository(name='com_github_rogpeppe_go_internal', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/rogpeppe/go-internal', sum='h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=', version='v1.3.0')
go_repository(name='com_github_spaolacci_murmur3', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/spaolacci/murmur3', sum='h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=', version='v0.0.0-20180118202830-f09979ecbc72')
go_repository(name='com_github_yuin_goldmark', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/yuin/goldmark', sum='h1:nqDD4MMMQA0lmWq03Z2/myGPYLQoXtmi0rGVs95ntbo=', version='v1.1.27')
go_repository(name='com_google_cloud_go_bigquery', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/bigquery', sum='h1:hL+ycaJpVE9M7nLoiXb/Pn10ENE2u+oddxbD8uu0ZVU=', version='v1.0.1')
go_repository(name='com_google_cloud_go_datastore', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/datastore', sum='h1:Kt+gOPPp2LEPWp8CSfxhsM8ik9CcyE/gYu+0r+RnZvM=', version='v1.0.0')
go_repository(name='com_google_cloud_go_pubsub', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/pubsub', sum='h1:W9tAK3E57P75u0XLLR82LZyw8VpAnhmyTOxW9qzmyj8=', version='v1.0.1')
go_repository(name='com_google_cloud_go_storage', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/storage', sum='h1:VV2nUM3wwLLGh9lSABFgZMjInyUbJeaRSE64WuAIQ+4=', version='v1.0.0')
go_repository(name='com_shuralyov_dmitri_gpu_mtl', build_file_generation='on', build_file_proto_mode='disable', importpath='dmitri.shuralyov.com/gpu/mtl', sum='h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=', version='v0.0.0-20190408044501-666a987793e9')
go_repository(name='in_gopkg_errgo_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/errgo.v2', sum='h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=', version='v2.1.0')
go_repository(name='io_rsc_binaryregexp', build_file_generation='on', build_file_proto_mode='disable', importpath='rsc.io/binaryregexp', sum='h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=', version='v0.2.0')
go_repository(name='tools_gotest_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='gotest.tools/v3', sum='h1:kG1BFyqVHuQoVQiR1bWGnfz/fmHvvuiSPIV7rvl360E=', version='v3.0.2')
go_repository(name='io_k8s_sigs_structured_merge_diff_v4', build_file_generation='on', build_file_proto_mode='disable', importpath='sigs.k8s.io/structured-merge-diff/v4', sum='h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=', version='v4.0.1')
go_repository(name='com_github_afex_hystrix_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/afex/hystrix-go', sum='h1:rFw4nCn9iMW+Vajsk51NtYIcwSTkXr+JGrMd36kTDJw=', version='v0.0.0-20180502004556-fa1af6a1f4f5')
go_repository(name='com_github_armon_circbuf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/armon/circbuf', sum='h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=', version='v0.0.0-20150827004946-bbbad097214e')
go_repository(name='com_github_aryann_difflib', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aryann/difflib', sum='h1:pv34s756C4pEXnjgPfGYgdhg/ZdajGhyOvzx8k+23nw=', version='v0.0.0-20170710044230-e206f873d14a')
go_repository(name='com_github_aws_aws_lambda_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aws/aws-lambda-go', sum='h1:SuCy7H3NLyp+1Mrfp+m80jcbi9KYWAs9/BXwppwRDzY=', version='v1.13.3')
go_repository(name='com_github_aws_aws_sdk_go_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/aws/aws-sdk-go-v2', sum='h1:qZ+woO4SamnH/eEbjM2IDLhRNwIwND/RQyVlBLp3Jqg=', version='v0.18.0')
go_repository(name='com_github_azure_go_autorest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Azure/go-autorest', sum='h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs=', version='v14.2.0+incompatible')
go_repository(name='com_github_casbin_casbin_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/casbin/casbin/v2', sum='h1:bTwon/ECRx9dwBy2ewRVr5OiqjeXSGiTUY74sDPQi/g=', version='v2.1.2')
go_repository(name='com_github_clbanning_x2j', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/clbanning/x2j', sum='h1:EdRZT3IeKQmfCSrgo8SZ8V3MEnskuJP0wCYNpe+aiXo=', version='v0.0.0-20191024224557-825249438eec')
go_repository(name='com_github_cncf_udpa_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/cncf/udpa/go', sum='h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=', version='v0.0.0-20191209042840-269d4d468f6f')
go_repository(name='com_github_codahale_hdrhistogram', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/codahale/hdrhistogram', sum='h1:qMd81Ts1T2OTKmB4acZcyKaMtRnY5Y44NuXGX2GFJ1w=', version='v0.0.0-20161010025455-3a0bb77429bd')
go_repository(name='com_github_edsrzf_mmap_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/edsrzf/mmap-go', sum='h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw=', version='v1.0.0')
go_repository(name='com_github_franela_goblin', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/franela/goblin', sum='h1:gb2Z18BhTPJPpLQWj4T+rfKHYCHxRHCtRxhKKjRidVw=', version='v0.0.0-20200105215937-c9ffbefa60db')
go_repository(name='com_github_franela_goreq', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/franela/goreq', sum='h1:a9ENSRDFBUPkJ5lCgVZh26+ZbGyoVJG7yb5SSzF5H54=', version='v0.0.0-20171204163338-bcd34c9993f8')
go_repository(name='com_github_frankban_quicktest', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/frankban/quicktest', sum='h1:Yyrghcw93e1jKo4DTZkRFTTFvBsVhzbblBUPNU1vW6Q=', version='v1.11.0')
go_repository(name='com_github_go_gl_glfw', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/go-gl/glfw', sum='h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=', version='v0.0.0-20190409004039-e6da0acd62b1')
go_repository(name='com_github_gogo_googleapis', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/gogo/googleapis', sum='h1:kFkMAZBNAn4j7K0GiZr8cRYzejq68VbheufiV3YuyFI=', version='v1.1.0')
go_repository(name='com_github_google_martian_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/google/martian/v3', sum='h1:pMen7vLs8nvgEYhywH3KDWJIJTeEr2ULsVWHWYHQyBs=', version='v3.0.0')
go_repository(name='com_github_hashicorp_consul_api', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/consul/api', sum='h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA=', version='v1.1.0')
go_repository(name='com_github_hashicorp_consul_sdk', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/consul/sdk', sum='h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY=', version='v0.1.1')
go_repository(name='com_github_hashicorp_go_msgpack', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-msgpack', sum='h1:zKjpN5BK/P5lMYrLmBHdBULWbJ0XpYR+7NGzqkZzoD4=', version='v0.5.3')
go_repository(name='com_github_hashicorp_go_net', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go.net', sum='h1:sNCoNyDEvN1xa+X0baata4RdcpKwcMS6DH+xwfqPgjw=', version='v0.0.1')
go_repository(name='com_github_hashicorp_go_syslog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/go-syslog', sum='h1:KaodqZuhUoZereWVIYmpUgZysurB1kBLX2j0MwMrUAE=', version='v1.0.0')
go_repository(name='com_github_hashicorp_logutils', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/logutils', sum='h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y=', version='v1.0.0')
go_repository(name='com_github_hashicorp_mdns', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/mdns', sum='h1:WhIgCr5a7AaVH6jPUwjtRuuE7/RDufnUvzIr48smyxs=', version='v1.0.0')
go_repository(name='com_github_hashicorp_memberlist', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/memberlist', sum='h1:EmmoJme1matNzb+hMpDuR/0sbJSUisxyqBGG676r31M=', version='v0.1.3')
go_repository(name='com_github_hashicorp_serf', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hashicorp/serf', sum='h1:YZ7UKsJv+hKjqGVUUbtE3HNj79Eln2oQ75tniF6iPt0=', version='v0.8.2')
go_repository(name='com_github_hudl_fargo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/hudl/fargo', sum='h1:0U6+BtN6LhaYuTnIJq4Wyq5cpn6O2kWrxAtcqBmYY6w=', version='v1.3.0')
go_repository(name='com_github_influxdata_influxdb1_client', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/influxdata/influxdb1-client', sum='h1:/WZQPMZNsjZ7IlCpsLGdQBINg5bxKQ1K1sh6awxLtkA=', version='v0.0.0-20191209144304-8bf82d3c094d')
go_repository(name='com_github_jmespath_go_jmespath_internal_testify', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jmespath/go-jmespath/internal/testify', sum='h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=', version='v1.5.1')
go_repository(name='com_github_josharian_intern', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/josharian/intern', sum='h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=', version='v1.0.0')
go_repository(name='com_github_jpillora_backoff', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/jpillora/backoff', sum='h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=', version='v1.0.0')
go_repository(name='com_github_knetic_govaluate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Knetic/govaluate', sum='h1:1G1pk05UrOh0NlF1oeaaix1x8XzrfjIDK47TY0Zehcw=', version='v3.0.1-0.20171022003610-9aa49832a739+incompatible')
go_repository(name='com_github_lightstep_lightstep_tracer_common_golang_gogo', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lightstep/lightstep-tracer-common/golang/gogo', sum='h1:143Bb8f8DuGWck/xpNUOckBVYfFbBTnLevfRZ1aVVqo=', version='v0.0.0-20190605223551-bc2310a04743')
go_repository(name='com_github_lightstep_lightstep_tracer_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lightstep/lightstep-tracer-go', sum='h1:vi1F1IQ8N7hNWytK9DpJsUfQhGuNSc19z330K6vl4zk=', version='v0.18.1')
go_repository(name='com_github_lyft_protoc_gen_validate', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/lyft/protoc-gen-validate', sum='h1:KNt/RhmQTOLr7Aj8PsJ7mTronaFyx80mRTT9qF261dA=', version='v0.0.13')
go_repository(name='com_github_mitchellh_gox', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/gox', sum='h1:lfGJxY7ToLJQjHHwi0EX6uYBdK78egf954SQl13PQJc=', version='v0.4.0')
go_repository(name='com_github_mitchellh_iochan', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/mitchellh/iochan', sum='h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY=', version='v1.0.0')
go_repository(name='com_github_nats_io_jwt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/jwt', sum='h1:+RB5hMpXUUA2dfxuhBTEkMOrYmM+gKIZYS1KjSostMI=', version='v0.3.2')
go_repository(name='com_github_nats_io_nats_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nats.go', sum='h1:ik3HbLhZ0YABLto7iX80pZLPw/6dx3T+++MZJwLnMrQ=', version='v1.9.1')
go_repository(name='com_github_nats_io_nats_server_v2', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nats-server/v2', sum='h1:i2Ly0B+1+rzNZHHWtD4ZwKi+OU5l+uQo1iDHZ2PmiIc=', version='v2.1.2')
go_repository(name='com_github_nats_io_nkeys', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nkeys', sum='h1:6JrEfig+HzTH85yxzhSVbjHRJv9cn0p6n3IngIcM5/k=', version='v0.1.3')
go_repository(name='com_github_nats_io_nuid', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/nats-io/nuid', sum='h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=', version='v1.0.1')
go_repository(name='com_github_niemeyer_pretty', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/niemeyer/pretty', sum='h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=', version='v0.0.0-20200227124842-a10e7caefd8e')
go_repository(name='com_github_oklog_oklog', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/oklog/oklog', sum='h1:wVfs8F+in6nTBMkA7CbRw+zZMIB7nNM825cM1wuzoTk=', version='v0.3.2')
go_repository(name='com_github_op_go_logging', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/op/go-logging', sum='h1:lDH9UUVJtmYCjyT0CI4q8xvlXPxeZ0gYCVvWbmPlp88=', version='v0.0.0-20160315200505-970db520ece7')
go_repository(name='com_github_opentracing_basictracer_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opentracing/basictracer-go', sum='h1:YyUAhaEfjoWXclZVJ9sGoNct7j4TVk7lZWlQw5UXuoo=', version='v1.0.0')
go_repository(name='com_github_opentracing_contrib_go_observer', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opentracing-contrib/go-observer', sum='h1:lM6RxxfUMrYL/f8bWEUqdXrANWtrL7Nndbm9iFN0DlU=', version='v0.0.0-20170622124052-a52f23424492')
go_repository(name='com_github_opentracing_opentracing_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/opentracing/opentracing-go', sum='h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=', version='v1.1.0')
go_repository(name='com_github_openzipkin_contrib_zipkin_go_opentracing', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/openzipkin-contrib/zipkin-go-opentracing', sum='h1:ZCnq+JUrvXcDVhX/xRolRBZifmabN1HcS1wrPSvxhrU=', version='v0.4.5')
go_repository(name='com_github_pact_foundation_pact_go', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pact-foundation/pact-go', sum='h1:OYkFijGHoZAYbOIb1LWXrwKQbMMRUv1oQ89blD2Mh2Q=', version='v1.0.4')
go_repository(name='com_github_performancecopilot_speed', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/performancecopilot/speed', sum='h1:2WnRzIquHa5QxaJKShDkLM+sc0JPuwhXzK8OYOyt3Vg=', version='v3.0.0+incompatible')
go_repository(name='com_github_pkg_profile', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/pkg/profile', sum='h1:F++O52m40owAmADcojzM+9gyjmMOY/T4oYJkgFDH8RE=', version='v1.2.1')
go_repository(name='com_github_samuel_go_zookeeper', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/samuel/go-zookeeper', sum='h1:p3Vo3i64TCLY7gIfzeQaUJ+kppEO5WQG3cL8iE8tGHU=', version='v0.0.0-20190923202752-2cc03de413da')
go_repository(name='com_github_sean__seed', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sean-/seed', sum='h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I=', version='v0.0.0-20170313163322-e2103e2c3529')
go_repository(name='com_github_sony_gobreaker', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/sony/gobreaker', sum='h1:oMnRNZXX5j85zso6xCPRNPtmAycat+WcoKbklScLDgQ=', version='v0.4.1')
go_repository(name='com_github_stoewer_go_strcase', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/stoewer/go-strcase', sum='h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU=', version='v1.2.0')
go_repository(name='com_github_streadway_amqp', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/streadway/amqp', sum='h1:WhxRHzgeVGETMlmVfqhRn8RIeeNoPr2Czh33I4Zdccw=', version='v0.0.0-20190827072141-edfb9018d271')
go_repository(name='com_github_streadway_handy', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/streadway/handy', sum='h1:AhmOdSHeswKHBjhsLs/7+1voOxT+LLrSk/Nxvk35fug=', version='v0.0.0-20190108123426-d5acb3125c2a')
go_repository(name='com_github_vividcortex_gohistogram', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/VividCortex/gohistogram', sum='h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE=', version='v1.0.0')
go_repository(name='com_sourcegraph_sourcegraph_appdash', build_file_generation='on', build_file_proto_mode='disable', importpath='sourcegraph.com/sourcegraph/appdash', sum='h1:ucqkfpjg9WzSUubAO62csmucvxl4/JeW3F4I4909XkM=', version='v0.0.0-20190731080439-ebfcffb1b5c0')
go_repository(name='in_gopkg_gcfg_v1', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/gcfg.v1', sum='h1:m8OOJ4ccYHnx2f4gQwpno8nAX5OGOh7RLaaz0pj3Ogs=', version='v1.2.3')
go_repository(name='in_gopkg_warnings_v0', build_file_generation='on', build_file_proto_mode='disable', importpath='gopkg.in/warnings.v0', sum='h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=', version='v0.1.2')
go_repository(name='io_rsc_quote_v3', build_file_generation='on', build_file_proto_mode='disable', importpath='rsc.io/quote/v3', sum='h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=', version='v3.1.0')
go_repository(name='io_rsc_sampler', build_file_generation='on', build_file_proto_mode='disable', importpath='rsc.io/sampler', sum='h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=', version='v1.3.0')
go_repository(name='org_golang_google_grpc_examples', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/grpc/examples', sum='h1:unzgkDPNegIn/czOcgxzQaTzEzOiBH1V1j55rsEzVEg=', version='v0.0.0-20200922230038-4e932bbcb079')
go_repository(name='org_golang_google_grpc_naming', build_file_generation='on', build_file_proto_mode='disable', importpath='google.golang.org/grpc/naming', replace='github.com/xiegeo/grpc-naming', sum='h1:B/eYkKzZDCUWQWl3XDLrSy8JjL332OCkYKZhU9iCyc0=', version='v1.29.1-alpha')
go_repository(name='org_uber_go_tools', build_file_generation='on', build_file_proto_mode='disable', importpath='go.uber.org/tools', sum='h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4=', version='v0.0.0-20190618225709-2cfd321de3ee')
go_repository(name='com_github_bketelsen_crypt', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/bketelsen/crypt', sum='h1:+0HFd5KSZ/mm3JmhmrDukiId5iR6w4+BdFtfSy4yWIc=', version='v0.0.3-0.20200106085610-5cbc8cc4026c')
go_repository(name='com_github_subosito_gotenv', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/subosito/gotenv', sum='h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=', version='v1.2.0')
go_repository(name='com_github_venafi_vcert_v4', build_file_generation='on', build_file_proto_mode='disable', importpath='github.com/Venafi/vcert/v4', sum='h1:37gfyjS9v5YvZcIABwNPo1fAC31lIZT7glVK1vfUxk4=', version='v4.11.0')
go_repository(name='com_google_cloud_go_firestore', build_file_generation='on', build_file_proto_mode='disable', importpath='cloud.google.com/go/firestore', sum='h1:9x7Bx0A9R5/M9jibeJeZWqjeVEIxYW9fZYqB9a70/bY=', version='v1.1.0') |
# two way to copy list
## one way is use constructor
names = ['Anonymous','Tazri','Focasa','Troy','Farha'];
names_two = list(names);
print('names_two : ');
print(names_two);
## use copy methods
names_three = names.copy();
print("names_three : ");
print(names_three); | names = ['Anonymous', 'Tazri', 'Focasa', 'Troy', 'Farha']
names_two = list(names)
print('names_two : ')
print(names_two)
names_three = names.copy()
print('names_three : ')
print(names_three) |
'''
created by cicek on 07.07.2018 21:25
'''
try:
firstNumber = int(input("enter first number: "))
secondNumber = int(input("enter second number: "))
except:
print("\nenter a positive number. Please try again!")
exit(0)
if (firstNumber <= 0) or (secondNumber <= 0) :
print("\nenter a positive value, please!")
exit(0)
leastNumber = 0
# find least number
if (firstNumber < secondNumber):
leastNumber = firstNumber
else:
leastNumber = secondNumber
# find multiply
multiply = firstNumber*secondNumber
# create an array for firstNumber and secondNumber
firstNumberArray = []
secondNumberArray = []
# assign first values of numbers
addFirstNumber = firstNumber
addSecondNumber = secondNumber
# append multiples of firstNumber
while (addFirstNumber <= multiply):
firstNumberArray.append(addFirstNumber)
addFirstNumber += firstNumber
# append multiples of firstNumber
while (addSecondNumber <= multiply):
secondNumberArray.append(addSecondNumber)
addSecondNumber += secondNumber
# find LCM(x,y)
for i in firstNumberArray:
if i in secondNumberArray:
print("\nLCM(" + str(firstNumber) + "," + str(secondNumber) + ") = " + str(i))
exit(1)
| """
created by cicek on 07.07.2018 21:25
"""
try:
first_number = int(input('enter first number: '))
second_number = int(input('enter second number: '))
except:
print('\nenter a positive number. Please try again!')
exit(0)
if firstNumber <= 0 or secondNumber <= 0:
print('\nenter a positive value, please!')
exit(0)
least_number = 0
if firstNumber < secondNumber:
least_number = firstNumber
else:
least_number = secondNumber
multiply = firstNumber * secondNumber
first_number_array = []
second_number_array = []
add_first_number = firstNumber
add_second_number = secondNumber
while addFirstNumber <= multiply:
firstNumberArray.append(addFirstNumber)
add_first_number += firstNumber
while addSecondNumber <= multiply:
secondNumberArray.append(addSecondNumber)
add_second_number += secondNumber
for i in firstNumberArray:
if i in secondNumberArray:
print('\nLCM(' + str(firstNumber) + ',' + str(secondNumber) + ') = ' + str(i))
exit(1) |
def f(getrecursionlimit = getrecursionlimit):
pass
def f(*getrecursionlimit):
pass
def f(**getrecursionlimit):
pass
def f(fob, getrecursionlimit):
pass
def f(x, *getrecursionlimit):
pass
def f(x, **getrecursionlimit):
pass
def f(fob, getrecursionlimit = getrecursionlimit):
pass
def f(fob, oar = [], getrecursionlimit = getrecursionlimit):
pass
def f(fob, oar = 1 + 2, getrecursionlimit = getrecursionlimit):
pass
def f(fob =\
[], getrecursionlimit = getrecursionlimit):
pass
def f(fob\
= [], getrecursionlimit = getrecursionlimit):
pass
def f\
\
\
(\
\
getrecursionlimit):
pass
def \
f\
\
\
(\
\
getrecursionlimit):
pass | def f(getrecursionlimit=getrecursionlimit):
pass
def f(*getrecursionlimit):
pass
def f(**getrecursionlimit):
pass
def f(fob, getrecursionlimit):
pass
def f(x, *getrecursionlimit):
pass
def f(x, **getrecursionlimit):
pass
def f(fob, getrecursionlimit=getrecursionlimit):
pass
def f(fob, oar=[], getrecursionlimit=getrecursionlimit):
pass
def f(fob, oar=1 + 2, getrecursionlimit=getrecursionlimit):
pass
def f(fob=[], getrecursionlimit=getrecursionlimit):
pass
def f(fob=[], getrecursionlimit=getrecursionlimit):
pass
def f(getrecursionlimit):
pass
def f(getrecursionlimit):
pass |
#
# PySNMP MIB module HP-ICF-PIM6 (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HP-ICF-PIM6
# Produced by pysmi-0.3.4 at Mon Apr 29 19:22:27 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint")
hpSwitch, = mibBuilder.importSymbols("HP-ICF-OID", "hpSwitch")
IANAipRouteProtocol, IANAipMRouteProtocol = mibBuilder.importSymbols("IANA-RTPROTO-MIB", "IANAipRouteProtocol", "IANAipMRouteProtocol")
InterfaceIndex, InterfaceIndexOrZero = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex", "InterfaceIndexOrZero")
InetAddressType, InetAddress, InetAddressPrefixLength = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress", "InetAddressPrefixLength")
pimRPSetComponent, = mibBuilder.importSymbols("PIM-MIB", "pimRPSetComponent")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, Unsigned32, Counter32, Counter64, iso, ObjectIdentity, Gauge32, Bits, NotificationType, MibIdentifier, Integer32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "Unsigned32", "Counter32", "Counter64", "iso", "ObjectIdentity", "Gauge32", "Bits", "NotificationType", "MibIdentifier", "Integer32", "ModuleIdentity")
DisplayString, RowStatus, TruthValue, TimeStamp, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "RowStatus", "TruthValue", "TimeStamp", "TextualConvention")
hpicfPim6MIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122))
hpicfPim6MIB.setRevisions(('2017-10-10 00:00', '2017-07-03 00:00', '2012-04-12 00:00',))
if mibBuilder.loadTexts: hpicfPim6MIB.setLastUpdated('201710100000Z')
if mibBuilder.loadTexts: hpicfPim6MIB.setOrganization('HP Networking')
hpicfPim6Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1))
hpicfPim6Traps = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0))
hpicfPim6 = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1))
hpicfPim6Conformance = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2))
hpicfPim6Groups = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1))
hpicfPim6Compliances = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2))
hpicfPim6AdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6AdminStatus.setStatus('current')
hpicfPim6StateRefreshInterval = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 100)).clone(60)).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6StateRefreshInterval.setStatus('current')
hpicfPim6TrapControl = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 3), Bits().clone(namedValues=NamedValues(("neighborLoss", 0), ("hardMrtFull", 1), ("softMrtFull", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6TrapControl.setStatus('current')
hpicfPim6IfTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4), )
if mibBuilder.loadTexts: hpicfPim6IfTable.setStatus('current')
hpicfPim6IfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6IfIndex"))
if mibBuilder.loadTexts: hpicfPim6IfEntry.setStatus('current')
hpicfPim6IfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: hpicfPim6IfIndex.setStatus('current')
hpicfPim6IfAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 2), InetAddressType()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfAddressType.setStatus('current')
hpicfPim6IfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 3), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfAddress.setStatus('current')
hpicfPim6IfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dense", 1), ("sparse", 2))).clone('dense')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfMode.setStatus('current')
hpicfPim6IfTrigHelloInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5)).clone(5)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfTrigHelloInterval.setStatus('current')
hpicfPim6IfHelloHoldtime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(105)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfHelloHoldtime.setStatus('current')
hpicfPim6IfLanPruneDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 7), TruthValue().clone('true')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfLanPruneDelay.setStatus('current')
hpicfPim6IfPropagationDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(250, 2000)).clone(500)).setUnits('milliseconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfPropagationDelay.setStatus('current')
hpicfPim6IfOverrideInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(500, 6000)).clone(2500)).setUnits('milliseconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfOverrideInterval.setStatus('current')
hpicfPim6IfGenerationID = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 10), TruthValue().clone('false')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfGenerationID.setStatus('current')
hpicfPim6IfJoinPruneHoldtime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(210)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfJoinPruneHoldtime.setStatus('current')
hpicfPim6IfGraftRetryInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(3)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfGraftRetryInterval.setStatus('current')
hpicfPim6IfMaxGraftRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(2)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfMaxGraftRetries.setStatus('current')
hpicfPim6IfSRTTLThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 14), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfSRTTLThreshold.setStatus('current')
hpicfPim6IfLanDelayEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 15), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfLanDelayEnabled.setStatus('current')
hpicfPim6IfSRCapable = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 16), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfSRCapable.setStatus('current')
hpicfPim6IfNBRTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 8000)).clone(180)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfNBRTimeout.setStatus('current')
hpicfPim6IfNBRCount = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfNBRCount.setStatus('current')
hpicfPim6IfNegotiatedPropagationDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 19), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfNegotiatedPropagationDelay.setStatus('current')
hpicfPim6IfNegotiatedOverrideInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 20), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfNegotiatedOverrideInterval.setStatus('current')
hpicfPim6IfAssertHoldInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfAssertHoldInterval.setStatus('current')
hpicfPim6IfNumRoutersNotUsingLanDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfNumRoutersNotUsingLanDelay.setStatus('current')
hpicfPim6IfHelloInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 23), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(5, 300)).clone(30)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfHelloInterval.setStatus('current')
hpicfPim6IfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 24), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfStatus.setStatus('current')
hpicfPim6IfDRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 25), Unsigned32().clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfDRPriority.setStatus('current')
hpicfPim6IfDRType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 26), InetAddressType()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6IfDRType.setStatus('current')
hpicfPim6IfDR = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 27), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IfDR.setStatus('current')
hpicfPim6RemoveConfig = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 5), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6RemoveConfig.setStatus('current')
hpicfPim6NumStaticRpfEntries = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NumStaticRpfEntries.setStatus('current')
hpicfPim6Version = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6Version.setStatus('current')
hpicfPim6StarGEntries = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6StarGEntries.setStatus('current')
hpicfPim6SGEntries = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6SGEntries.setStatus('current')
hpicfPim6TotalNeighborCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6TotalNeighborCount.setStatus('current')
hpicfPim6JoinPruneInterval = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6JoinPruneInterval.setStatus('current')
hpicfPim6StaticRPSetTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12), )
if mibBuilder.loadTexts: hpicfPim6StaticRPSetTable.setStatus('current')
hpicfPim6StaticRPSetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1), ).setIndexNames((0, "PIM-MIB", "pimRPSetComponent"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGroupAddress"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGrpMskType"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetGroupMask"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6StaticRPSetAddress"))
if mibBuilder.loadTexts: hpicfPim6StaticRPSetEntry.setStatus('current')
hpicfPim6StaticRPSetGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 1), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6StaticRPSetGrpAddrType.setStatus('current')
hpicfPim6StaticRPSetGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6StaticRPSetGroupAddress.setStatus('current')
hpicfPim6StaticRPSetGrpMskType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 3), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6StaticRPSetGrpMskType.setStatus('current')
hpicfPim6StaticRPSetGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6StaticRPSetGroupMask.setStatus('current')
hpicfPim6StaticRPSetAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 5), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6StaticRPSetAddressType.setStatus('current')
hpicfPim6StaticRPSetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6StaticRPSetAddress.setStatus('current')
hpicfPim6StaticRPSetOverride = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 7), TruthValue().clone('false')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6StaticRPSetOverride.setStatus('current')
hpicfPim6StaticRPSetRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 8), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6StaticRPSetRowStatus.setStatus('current')
hpicfPim6CandidateRPTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13), )
if mibBuilder.loadTexts: hpicfPim6CandidateRPTable.setStatus('current')
hpicfPim6CandidateRPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGroupAddress"), (0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGrpMskType"), (0, "HP-ICF-PIM6", "hpicfPim6CandidateRPGroupMask"))
if mibBuilder.loadTexts: hpicfPim6CandidateRPEntry.setStatus('current')
hpicfPim6CandidateRPGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 1), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6CandidateRPGrpAddrType.setStatus('current')
hpicfPim6CandidateRPGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6CandidateRPGroupAddress.setStatus('current')
hpicfPim6CandidateRPGrpMskType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 3), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6CandidateRPGrpMskType.setStatus('current')
hpicfPim6CandidateRPGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6CandidateRPGroupMask.setStatus('current')
hpicfPim6CandidateRPAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 5), InetAddressType()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6CandidateRPAddressType.setStatus('current')
hpicfPim6CandidateRPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6CandidateRPAddress.setStatus('current')
hpicfPim6CandidateRPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 7), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6CandidateRPRowStatus.setStatus('current')
hpicfPim6ComponentTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14), )
if mibBuilder.loadTexts: hpicfPim6ComponentTable.setStatus('current')
hpicfPim6ComponentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6ComponentIndex"))
if mibBuilder.loadTexts: hpicfPim6ComponentEntry.setStatus('current')
hpicfPim6ComponentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)))
if mibBuilder.loadTexts: hpicfPim6ComponentIndex.setStatus('current')
hpicfPim6ComponentBSRAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 2), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRAddrType.setStatus('current')
hpicfPim6ComponentBSRAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 3), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRAddress.setStatus('current')
hpicfPim6ComponentBSRExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRExpiryTime.setStatus('current')
hpicfPim6ComponentCRPHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCRPHoldTime.setStatus('current')
hpicfPim6ComponentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 6), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentStatus.setStatus('current')
hpicfPim6ComponentCBSRAdmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2))).clone('disable')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAdmStatus.setStatus('current')
hpicfPim6ComponentCBSRAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 8), InetAddressType()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAddrType.setStatus('current')
hpicfPim6ComponentCBSRAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 9), InetAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCBSRAddress.setStatus('current')
hpicfPim6ComponentCBSRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCBSRPriority.setStatus('current')
hpicfPim6ComponentCBSRHashMskLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128)).clone(126)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCBSRHashMskLen.setStatus('current')
hpicfPim6ComponentCBSRMsgInt = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 300)).clone(60)).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCBSRMsgInt.setStatus('current')
hpicfPim6ComponentCRPPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(192)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpicfPim6ComponentCRPPriority.setStatus('current')
hpicfPim6ComponentCRPAdvInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 14), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentCRPAdvInterval.setStatus('current')
hpicfPim6ComponentBSRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRPriority.setStatus('current')
hpicfPim6ComponentBSRHashMskLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 16), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRHashMskLen.setStatus('current')
hpicfPim6ComponentBSRUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 17), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRUpTime.setStatus('current')
hpicfPim6ComponentBSRNextMessage = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 18), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentBSRNextMessage.setStatus('current')
hpicfPim6ComponentCRPAdvTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 19), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6ComponentCRPAdvTimer.setStatus('current')
hpicfPim6SPTThreshold = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 15), Integer32().clone(-1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6SPTThreshold.setStatus('current')
hpicfPim6NeighborTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16), )
if mibBuilder.loadTexts: hpicfPim6NeighborTable.setStatus('current')
hpicfPim6NeighborEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6NeighborIfIndex"), (0, "HP-ICF-PIM6", "hpicfPim6NeighborAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6NeighborAddress"))
if mibBuilder.loadTexts: hpicfPim6NeighborEntry.setStatus('current')
hpicfPim6NeighborIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: hpicfPim6NeighborIfIndex.setStatus('current')
hpicfPim6NeighborAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 2), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6NeighborAddressType.setStatus('current')
hpicfPim6NeighborAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 3), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6NeighborAddress.setStatus('current')
hpicfPim6NeighborGenIDPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborGenIDPresent.setStatus('current')
hpicfPim6NeighborGenIDValue = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborGenIDValue.setStatus('current')
hpicfPim6NeighborUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 6), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborUpTime.setStatus('current')
hpicfPim6NeighborExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 7), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborExpiryTime.setStatus('current')
hpicfPim6NeighborDRPrioPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 8), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborDRPrioPresent.setStatus('current')
hpicfPim6NeighborDRPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborDRPriority.setStatus('current')
hpicfPim6NeighborLanPruneDlyPres = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 10), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6NeighborLanPruneDlyPres.setStatus('current')
hpicfPim6RPSetTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17), )
if mibBuilder.loadTexts: hpicfPim6RPSetTable.setStatus('current')
hpicfPim6RPSetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1), ).setIndexNames((0, "PIM-MIB", "pimRPSetComponent"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupAddress"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupMaskType"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetGroupMask"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetAddressType"), (0, "HP-ICF-PIM6", "hpicfPim6RPSetAddress"))
if mibBuilder.loadTexts: hpicfPim6RPSetEntry.setStatus('current')
hpicfPim6RPSetGroupAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 1), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6RPSetGroupAddressType.setStatus('current')
hpicfPim6RPSetGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6RPSetGroupAddress.setStatus('current')
hpicfPim6RPSetGroupMaskType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 3), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6RPSetGroupMaskType.setStatus('current')
hpicfPim6RPSetGroupMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6RPSetGroupMask.setStatus('current')
hpicfPim6RPSetAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 5), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6RPSetAddressType.setStatus('current')
hpicfPim6RPSetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6RPSetAddress.setStatus('current')
hpicfPim6RPSetHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6RPSetHoldTime.setStatus('current')
hpicfPim6RPSetExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 8), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6RPSetExpiryTime.setStatus('current')
hpicfPim6IpMcastEnabled = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpicfPim6IpMcastEnabled.setStatus('current')
hpicfPim6IpMcastRouteEntryCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMcastRouteEntryCount.setStatus('current')
hpicfPim6IpMRouteTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20), )
if mibBuilder.loadTexts: hpicfPim6IpMRouteTable.setStatus('current')
hpicfPim6IpMRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6IpMRouteGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteGroup"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteGrpPrefixLen"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteSrcAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteSource"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteSrcPrefixLen"))
if mibBuilder.loadTexts: hpicfPim6IpMRouteEntry.setStatus('current')
hpicfPim6IpMRouteGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 1), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6IpMRouteGrpAddrType.setStatus('current')
hpicfPim6IpMRouteGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6IpMRouteGroup.setStatus('current')
hpicfPim6IpMRouteGrpPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 3), InetAddressPrefixLength())
if mibBuilder.loadTexts: hpicfPim6IpMRouteGrpPrefixLen.setStatus('current')
hpicfPim6IpMRouteSrcAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 4), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6IpMRouteSrcAddrType.setStatus('current')
hpicfPim6IpMRouteSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 5), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6IpMRouteSource.setStatus('current')
hpicfPim6IpMRouteSrcPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 6), InetAddressPrefixLength())
if mibBuilder.loadTexts: hpicfPim6IpMRouteSrcPrefixLen.setStatus('current')
hpicfPim6IpMRouteUpstrNbrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 7), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteUpstrNbrType.setStatus('current')
hpicfPim6IpMRouteUpstrNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 8), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteUpstrNbr.setStatus('current')
hpicfPim6IpMRouteInIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 9), InterfaceIndexOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteInIfIndex.setStatus('current')
hpicfPim6IpMRouteTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 10), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteTimeStamp.setStatus('current')
hpicfPim6IpMRouteExpiryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 11), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteExpiryTime.setStatus('current')
hpicfPim6IpMRouteProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 12), IANAipMRouteProtocol()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteProtocol.setStatus('current')
hpicfPim6IpMRouteRtProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 13), IANAipRouteProtocol()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteRtProtocol.setStatus('current')
hpicfPim6IpMRouteRtAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 14), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteRtAddrType.setStatus('current')
hpicfPim6IpMRouteRtAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 15), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteRtAddress.setStatus('current')
hpicfPim6IpMRouteRtPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 16), InetAddressPrefixLength()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteRtPrefixLen.setStatus('current')
hpicfPim6IpMRouteRtType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("unicast", 1), ("multicast", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteRtType.setStatus('current')
hpicfPim6IpMRouteOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteOctets.setStatus('current')
hpicfPim6IpMRoutePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRoutePkts.setStatus('current')
hpicfPim6IpMRouteTtlDropOct = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteTtlDropOct.setStatus('current')
hpicfPim6IpMRouteTtlDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteTtlDropPkts.setStatus('current')
hpicfPim6IpMRouteDiffInIfOct = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteDiffInIfOct.setStatus('current')
hpicfPim6IpMRouteDiffInIfPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteDiffInIfPkts.setStatus('current')
hpicfPim6IpMRouteBps = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 24), Counter64()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteBps.setStatus('current')
hpicfPim6IpMRouteNHopTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21), )
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopTable.setStatus('current')
hpicfPim6IpMRouteNHopEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1), ).setIndexNames((0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopGrpAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopGroup"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopGrpPLen"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopSrcAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopSource"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopSrcPLen"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopIfIndex"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopAddrType"), (0, "HP-ICF-PIM6", "hpicfPim6IpMRouteNHopAddress"))
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopEntry.setStatus('current')
hpicfPim6IpMRouteNHopGrpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 1), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGrpAddrType.setStatus('current')
hpicfPim6IpMRouteNHopGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 2), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGroup.setStatus('current')
hpicfPim6IpMRouteNHopGrpPLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 3), InetAddressPrefixLength())
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopGrpPLen.setStatus('current')
hpicfPim6IpMRouteNHopSrcAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 4), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSrcAddrType.setStatus('current')
hpicfPim6IpMRouteNHopSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 5), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSource.setStatus('current')
hpicfPim6IpMRouteNHopSrcPLen = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 6), InetAddressPrefixLength())
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopSrcPLen.setStatus('current')
hpicfPim6IpMRouteNHopIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 7), InterfaceIndex())
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopIfIndex.setStatus('current')
hpicfPim6IpMRouteNHopAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 8), InetAddressType())
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopAddrType.setStatus('current')
hpicfPim6IpMRouteNHopAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 9), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), ValueSizeConstraint(20, 20), )))
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopAddress.setStatus('current')
hpicfPim6IpMRouteNHopState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("pruned", 1), ("forwarding", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopState.setStatus('current')
hpicfPim6IpMRouteNHopTStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 11), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopTStamp.setStatus('current')
hpicfPim6IpMRouteNHopExpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 12), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopExpTime.setStatus('current')
hpicfPim6IpMRouteNHopClsMHops = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 13), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopClsMHops.setStatus('current')
hpicfPim6IpMRouteNHopProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 14), IANAipMRouteProtocol()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopProtocol.setStatus('current')
hpicfPim6IpMRouteNHopOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopOctets.setStatus('current')
hpicfPim6IpMRouteNHopPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpicfPim6IpMRouteNHopPkts.setStatus('current')
hpicfPim6NeighborLoss = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 1))
if mibBuilder.loadTexts: hpicfPim6NeighborLoss.setStatus('current')
hpicfPim6HardMRTFull = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 2))
if mibBuilder.loadTexts: hpicfPim6HardMRTFull.setStatus('current')
hpicfPim6SoftMRTFull = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 3))
if mibBuilder.loadTexts: hpicfPim6SoftMRTFull.setStatus('current')
hpicfPim6DenseMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 1)).setObjects(("HP-ICF-PIM6", "hpicfPim6BaseGroup"), ("HP-ICF-PIM6", "hpicfPim6DenseIfGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6DenseMIBCompliance = hpicfPim6DenseMIBCompliance.setStatus('deprecated')
hpicfPim6UcastRoutingCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 2)).setObjects(("HP-ICF-PIM6", "hpicfPim6StaticRpfExtensionsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6UcastRoutingCompliance = hpicfPim6UcastRoutingCompliance.setStatus('current')
hpicfPim6GlobalCountersCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 3)).setObjects(("HP-ICF-PIM6", "hpicfPim6GlobalCounterGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6GlobalCountersCompliance = hpicfPim6GlobalCountersCompliance.setStatus('current')
hpicfPim6InterfaceInfoCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 4)).setObjects(("HP-ICF-PIM6", "hpicfPim6InterfaceExtensionsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6InterfaceInfoCompliance = hpicfPim6InterfaceInfoCompliance.setStatus('current')
hpicfPim6NotificationCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 5)).setObjects(("HP-ICF-PIM6", "hpicfPim6NotificationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6NotificationCompliance = hpicfPim6NotificationCompliance.setStatus('current')
hpicfPim6SparseModeMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 6)).setObjects(("HP-ICF-PIM6", "hpicfPim6CommonGroup"), ("HP-ICF-PIM6", "hpicfPim6StaticRPSetGroup"), ("HP-ICF-PIM6", "hpicfPim6SparseIfGroup"), ("HP-ICF-PIM6", "hpicfPim6CandidateRPGroup"), ("HP-ICF-PIM6", "hpicfPim6ComponentGroup"), ("HP-ICF-PIM6", "hpicfPim6NeighborGroup"), ("HP-ICF-PIM6", "hpicfPim6RPSetGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteNHopGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6SparseModeMIBCompliance = hpicfPim6SparseModeMIBCompliance.setStatus('current')
hpicfPim6DenseModeMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 7)).setObjects(("HP-ICF-PIM6", "hpicfPim6CommonGroup"), ("HP-ICF-PIM6", "hpicfPim6DenseIfGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteGroup"), ("HP-ICF-PIM6", "hpicfPim6MRouteNHopGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6DenseModeMIBCompliance = hpicfPim6DenseModeMIBCompliance.setStatus('current')
hpicfPim6BaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 1)).setObjects(("HP-ICF-PIM6", "hpicfPim6AdminStatus"), ("HP-ICF-PIM6", "hpicfPim6StateRefreshInterval"), ("HP-ICF-PIM6", "hpicfPim6TrapControl"), ("HP-ICF-PIM6", "hpicfPim6JoinPruneInterval"), ("HP-ICF-PIM6", "hpicfPim6RemoveConfig"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6BaseGroup = hpicfPim6BaseGroup.setStatus('deprecated')
hpicfPim6DenseIfGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 2)).setObjects(("HP-ICF-PIM6", "hpicfPim6IfAddressType"), ("HP-ICF-PIM6", "hpicfPim6IfAddress"), ("HP-ICF-PIM6", "hpicfPim6IfMode"), ("HP-ICF-PIM6", "hpicfPim6IfStatus"), ("HP-ICF-PIM6", "hpicfPim6IfTrigHelloInterval"), ("HP-ICF-PIM6", "hpicfPim6IfHelloInterval"), ("HP-ICF-PIM6", "hpicfPim6IfHelloHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfLanPruneDelay"), ("HP-ICF-PIM6", "hpicfPim6IfPropagationDelay"), ("HP-ICF-PIM6", "hpicfPim6IfOverrideInterval"), ("HP-ICF-PIM6", "hpicfPim6IfGenerationID"), ("HP-ICF-PIM6", "hpicfPim6IfJoinPruneHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfGraftRetryInterval"), ("HP-ICF-PIM6", "hpicfPim6IfMaxGraftRetries"), ("HP-ICF-PIM6", "hpicfPim6IfSRTTLThreshold"), ("HP-ICF-PIM6", "hpicfPim6IfLanDelayEnabled"), ("HP-ICF-PIM6", "hpicfPim6IfSRCapable"), ("HP-ICF-PIM6", "hpicfPim6IfNBRTimeout"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6DenseIfGroup = hpicfPim6DenseIfGroup.setStatus('current')
hpicfPim6InterfaceExtensionsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 3)).setObjects(("HP-ICF-PIM6", "hpicfPim6Version"), ("HP-ICF-PIM6", "hpicfPim6IfNBRCount"), ("HP-ICF-PIM6", "hpicfPim6IfNegotiatedPropagationDelay"), ("HP-ICF-PIM6", "hpicfPim6IfNegotiatedOverrideInterval"), ("HP-ICF-PIM6", "hpicfPim6IfAssertHoldInterval"), ("HP-ICF-PIM6", "hpicfPim6IfNumRoutersNotUsingLanDelay"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6InterfaceExtensionsGroup = hpicfPim6InterfaceExtensionsGroup.setStatus('current')
hpicfPim6StaticRpfExtensionsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 4)).setObjects(("HP-ICF-PIM6", "hpicfPim6NumStaticRpfEntries"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6StaticRpfExtensionsGroup = hpicfPim6StaticRpfExtensionsGroup.setStatus('current')
hpicfPim6GlobalCounterGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 5)).setObjects(("HP-ICF-PIM6", "hpicfPim6StarGEntries"), ("HP-ICF-PIM6", "hpicfPim6SGEntries"), ("HP-ICF-PIM6", "hpicfPim6TotalNeighborCount"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6GlobalCounterGroup = hpicfPim6GlobalCounterGroup.setStatus('current')
hpicfPim6NotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 6)).setObjects(("HP-ICF-PIM6", "hpicfPim6NeighborLoss"), ("HP-ICF-PIM6", "hpicfPim6HardMRTFull"), ("HP-ICF-PIM6", "hpicfPim6SoftMRTFull"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6NotificationGroup = hpicfPim6NotificationGroup.setStatus('current')
hpicfPim6StaticRPSetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 7)).setObjects(("HP-ICF-PIM6", "hpicfPim6StaticRPSetOverride"), ("HP-ICF-PIM6", "hpicfPim6StaticRPSetRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6StaticRPSetGroup = hpicfPim6StaticRPSetGroup.setStatus('current')
hpicfPim6CandidateRPGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 8)).setObjects(("HP-ICF-PIM6", "hpicfPim6CandidateRPAddressType"), ("HP-ICF-PIM6", "hpicfPim6CandidateRPAddress"), ("HP-ICF-PIM6", "hpicfPim6CandidateRPRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6CandidateRPGroup = hpicfPim6CandidateRPGroup.setStatus('current')
hpicfPim6ComponentGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 9)).setObjects(("HP-ICF-PIM6", "hpicfPim6ComponentBSRAddrType"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRAddress"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRExpiryTime"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPHoldTime"), ("HP-ICF-PIM6", "hpicfPim6ComponentStatus"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRAdmStatus"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRAddrType"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRAddress"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRPriority"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRHashMskLen"), ("HP-ICF-PIM6", "hpicfPim6ComponentCBSRMsgInt"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPPriority"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPAdvInterval"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRPriority"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRHashMskLen"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRUpTime"), ("HP-ICF-PIM6", "hpicfPim6ComponentBSRNextMessage"), ("HP-ICF-PIM6", "hpicfPim6ComponentCRPAdvTimer"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6ComponentGroup = hpicfPim6ComponentGroup.setStatus('current')
hpicfPim6CommonGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 10)).setObjects(("HP-ICF-PIM6", "hpicfPim6AdminStatus"), ("HP-ICF-PIM6", "hpicfPim6StateRefreshInterval"), ("HP-ICF-PIM6", "hpicfPim6TrapControl"), ("HP-ICF-PIM6", "hpicfPim6JoinPruneInterval"), ("HP-ICF-PIM6", "hpicfPim6RemoveConfig"), ("HP-ICF-PIM6", "hpicfPim6SPTThreshold"), ("HP-ICF-PIM6", "hpicfPim6IpMcastEnabled"), ("HP-ICF-PIM6", "hpicfPim6IpMcastRouteEntryCount"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6CommonGroup = hpicfPim6CommonGroup.setStatus('current')
hpicfPim6SparseIfGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 11)).setObjects(("HP-ICF-PIM6", "hpicfPim6IfAddressType"), ("HP-ICF-PIM6", "hpicfPim6IfAddress"), ("HP-ICF-PIM6", "hpicfPim6IfTrigHelloInterval"), ("HP-ICF-PIM6", "hpicfPim6IfHelloHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfLanPruneDelay"), ("HP-ICF-PIM6", "hpicfPim6IfPropagationDelay"), ("HP-ICF-PIM6", "hpicfPim6IfOverrideInterval"), ("HP-ICF-PIM6", "hpicfPim6IfGenerationID"), ("HP-ICF-PIM6", "hpicfPim6IfJoinPruneHoldtime"), ("HP-ICF-PIM6", "hpicfPim6IfLanDelayEnabled"), ("HP-ICF-PIM6", "hpicfPim6IfDRPriority"), ("HP-ICF-PIM6", "hpicfPim6IfNBRTimeout"), ("HP-ICF-PIM6", "hpicfPim6IfDRType"), ("HP-ICF-PIM6", "hpicfPim6IfDR"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6SparseIfGroup = hpicfPim6SparseIfGroup.setStatus('current')
hpicfPim6NeighborGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 12)).setObjects(("HP-ICF-PIM6", "hpicfPim6NeighborGenIDPresent"), ("HP-ICF-PIM6", "hpicfPim6NeighborGenIDValue"), ("HP-ICF-PIM6", "hpicfPim6NeighborUpTime"), ("HP-ICF-PIM6", "hpicfPim6NeighborExpiryTime"), ("HP-ICF-PIM6", "hpicfPim6NeighborDRPrioPresent"), ("HP-ICF-PIM6", "hpicfPim6NeighborDRPriority"), ("HP-ICF-PIM6", "hpicfPim6NeighborLanPruneDlyPres"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6NeighborGroup = hpicfPim6NeighborGroup.setStatus('current')
hpicfPim6RPSetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 13)).setObjects(("HP-ICF-PIM6", "hpicfPim6RPSetHoldTime"), ("HP-ICF-PIM6", "hpicfPim6RPSetExpiryTime"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6RPSetGroup = hpicfPim6RPSetGroup.setStatus('current')
hpicfPim6MRouteGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 14)).setObjects(("HP-ICF-PIM6", "hpicfPim6IpMRouteUpstrNbrType"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteUpstrNbr"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteInIfIndex"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteTimeStamp"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteExpiryTime"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteProtocol"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtProtocol"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtAddrType"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtAddress"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtPrefixLen"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteRtType"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteOctets"), ("HP-ICF-PIM6", "hpicfPim6IpMRoutePkts"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteTtlDropOct"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteTtlDropPkts"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteDiffInIfOct"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteDiffInIfPkts"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteBps"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6MRouteGroup = hpicfPim6MRouteGroup.setStatus('current')
hpicfPim6MRouteNHopGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 15)).setObjects(("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopState"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopTStamp"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopExpTime"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopClsMHops"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopProtocol"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopOctets"), ("HP-ICF-PIM6", "hpicfPim6IpMRouteNHopPkts"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicfPim6MRouteNHopGroup = hpicfPim6MRouteNHopGroup.setStatus('current')
mibBuilder.exportSymbols("HP-ICF-PIM6", hpicfPim6BaseGroup=hpicfPim6BaseGroup, hpicfPim6ComponentIndex=hpicfPim6ComponentIndex, hpicfPim6IpMRouteNHopEntry=hpicfPim6IpMRouteNHopEntry, hpicfPim6Conformance=hpicfPim6Conformance, hpicfPim6ComponentBSRUpTime=hpicfPim6ComponentBSRUpTime, hpicfPim6CandidateRPGrpAddrType=hpicfPim6CandidateRPGrpAddrType, hpicfPim6NeighborAddressType=hpicfPim6NeighborAddressType, hpicfPim6TotalNeighborCount=hpicfPim6TotalNeighborCount, hpicfPim6IfNegotiatedPropagationDelay=hpicfPim6IfNegotiatedPropagationDelay, hpicfPim6NeighborEntry=hpicfPim6NeighborEntry, hpicfPim6IfLanDelayEnabled=hpicfPim6IfLanDelayEnabled, hpicfPim6ComponentStatus=hpicfPim6ComponentStatus, hpicfPim6ComponentBSRAddrType=hpicfPim6ComponentBSRAddrType, hpicfPim6NeighborUpTime=hpicfPim6NeighborUpTime, hpicfPim6MRouteNHopGroup=hpicfPim6MRouteNHopGroup, hpicfPim6IfDR=hpicfPim6IfDR, hpicfPim6NeighborLoss=hpicfPim6NeighborLoss, hpicfPim6RPSetGroupAddress=hpicfPim6RPSetGroupAddress, hpicfPim6RPSetAddressType=hpicfPim6RPSetAddressType, hpicfPim6SPTThreshold=hpicfPim6SPTThreshold, hpicfPim6CandidateRPGroup=hpicfPim6CandidateRPGroup, hpicfPim6InterfaceInfoCompliance=hpicfPim6InterfaceInfoCompliance, hpicfPim6StateRefreshInterval=hpicfPim6StateRefreshInterval, hpicfPim6SparseIfGroup=hpicfPim6SparseIfGroup, hpicfPim6IpMRouteBps=hpicfPim6IpMRouteBps, hpicfPim6AdminStatus=hpicfPim6AdminStatus, hpicfPim6ComponentCBSRPriority=hpicfPim6ComponentCBSRPriority, hpicfPim6IpMRouteExpiryTime=hpicfPim6IpMRouteExpiryTime, hpicfPim6Traps=hpicfPim6Traps, hpicfPim6DenseModeMIBCompliance=hpicfPim6DenseModeMIBCompliance, hpicfPim6CandidateRPTable=hpicfPim6CandidateRPTable, hpicfPim6IpMRouteTtlDropOct=hpicfPim6IpMRouteTtlDropOct, hpicfPim6ComponentBSRExpiryTime=hpicfPim6ComponentBSRExpiryTime, hpicfPim6IpMRouteNHopGrpPLen=hpicfPim6IpMRouteNHopGrpPLen, hpicfPim6RPSetGroupMaskType=hpicfPim6RPSetGroupMaskType, hpicfPim6ComponentCRPAdvInterval=hpicfPim6ComponentCRPAdvInterval, hpicfPim6NeighborIfIndex=hpicfPim6NeighborIfIndex, hpicfPim6ComponentTable=hpicfPim6ComponentTable, hpicfPim6CandidateRPGroupMask=hpicfPim6CandidateRPGroupMask, hpicfPim6IpMRouteNHopOctets=hpicfPim6IpMRouteNHopOctets, hpicfPim6IpMRouteUpstrNbrType=hpicfPim6IpMRouteUpstrNbrType, hpicfPim6IpMRouteDiffInIfPkts=hpicfPim6IpMRouteDiffInIfPkts, hpicfPim6ComponentBSRNextMessage=hpicfPim6ComponentBSRNextMessage, hpicfPim6IfGraftRetryInterval=hpicfPim6IfGraftRetryInterval, hpicfPim6CandidateRPEntry=hpicfPim6CandidateRPEntry, hpicfPim6IpMRouteNHopGroup=hpicfPim6IpMRouteNHopGroup, hpicfPim6SparseModeMIBCompliance=hpicfPim6SparseModeMIBCompliance, hpicfPim6IfLanPruneDelay=hpicfPim6IfLanPruneDelay, hpicfPim6StarGEntries=hpicfPim6StarGEntries, hpicfPim6StaticRPSetAddress=hpicfPim6StaticRPSetAddress, hpicfPim6IfHelloHoldtime=hpicfPim6IfHelloHoldtime, hpicfPim6IpMRouteProtocol=hpicfPim6IpMRouteProtocol, hpicfPim6IfDRType=hpicfPim6IfDRType, hpicfPim6IpMRouteInIfIndex=hpicfPim6IpMRouteInIfIndex, hpicfPim6CandidateRPGroupAddress=hpicfPim6CandidateRPGroupAddress, hpicfPim6IfEntry=hpicfPim6IfEntry, hpicfPim6RPSetHoldTime=hpicfPim6RPSetHoldTime, hpicfPim6IfTrigHelloInterval=hpicfPim6IfTrigHelloInterval, hpicfPim6Groups=hpicfPim6Groups, hpicfPim6IpMRouteGrpAddrType=hpicfPim6IpMRouteGrpAddrType, hpicfPim6CandidateRPGrpMskType=hpicfPim6CandidateRPGrpMskType, hpicfPim6IpMRouteDiffInIfOct=hpicfPim6IpMRouteDiffInIfOct, hpicfPim6IpMRouteSrcAddrType=hpicfPim6IpMRouteSrcAddrType, hpicfPim6IpMRouteNHopClsMHops=hpicfPim6IpMRouteNHopClsMHops, hpicfPim6IfNumRoutersNotUsingLanDelay=hpicfPim6IfNumRoutersNotUsingLanDelay, hpicfPim6IpMRouteNHopState=hpicfPim6IpMRouteNHopState, hpicfPim6IfTable=hpicfPim6IfTable, hpicfPim6StaticRPSetAddressType=hpicfPim6StaticRPSetAddressType, hpicfPim6IpMRouteRtPrefixLen=hpicfPim6IpMRouteRtPrefixLen, hpicfPim6HardMRTFull=hpicfPim6HardMRTFull, hpicfPim6IpMRouteRtAddress=hpicfPim6IpMRouteRtAddress, hpicfPim6ComponentGroup=hpicfPim6ComponentGroup, hpicfPim6StaticRPSetGroupAddress=hpicfPim6StaticRPSetGroupAddress, hpicfPim6RPSetTable=hpicfPim6RPSetTable, hpicfPim6IfAddressType=hpicfPim6IfAddressType, hpicfPim6StaticRPSetRowStatus=hpicfPim6StaticRPSetRowStatus, hpicfPim6IpMRouteNHopAddress=hpicfPim6IpMRouteNHopAddress, hpicfPim6NotificationGroup=hpicfPim6NotificationGroup, hpicfPim6MRouteGroup=hpicfPim6MRouteGroup, hpicfPim6=hpicfPim6, hpicfPim6StaticRPSetEntry=hpicfPim6StaticRPSetEntry, hpicfPim6IpMcastEnabled=hpicfPim6IpMcastEnabled, hpicfPim6NotificationCompliance=hpicfPim6NotificationCompliance, hpicfPim6CandidateRPAddress=hpicfPim6CandidateRPAddress, hpicfPim6IfAssertHoldInterval=hpicfPim6IfAssertHoldInterval, hpicfPim6InterfaceExtensionsGroup=hpicfPim6InterfaceExtensionsGroup, hpicfPim6RemoveConfig=hpicfPim6RemoveConfig, hpicfPim6JoinPruneInterval=hpicfPim6JoinPruneInterval, hpicfPim6NeighborDRPrioPresent=hpicfPim6NeighborDRPrioPresent, hpicfPim6StaticRPSetGrpAddrType=hpicfPim6StaticRPSetGrpAddrType, hpicfPim6IfStatus=hpicfPim6IfStatus, hpicfPim6IfNBRCount=hpicfPim6IfNBRCount, hpicfPim6ComponentCBSRHashMskLen=hpicfPim6ComponentCBSRHashMskLen, hpicfPim6IpMRouteTimeStamp=hpicfPim6IpMRouteTimeStamp, hpicfPim6RPSetGroupAddressType=hpicfPim6RPSetGroupAddressType, hpicfPim6ComponentEntry=hpicfPim6ComponentEntry, hpicfPim6RPSetExpiryTime=hpicfPim6RPSetExpiryTime, hpicfPim6IpMRouteTtlDropPkts=hpicfPim6IpMRouteTtlDropPkts, hpicfPim6SGEntries=hpicfPim6SGEntries, hpicfPim6IpMRouteNHopSource=hpicfPim6IpMRouteNHopSource, hpicfPim6NeighborAddress=hpicfPim6NeighborAddress, hpicfPim6IpMRouteNHopAddrType=hpicfPim6IpMRouteNHopAddrType, hpicfPim6IfSRTTLThreshold=hpicfPim6IfSRTTLThreshold, hpicfPim6StaticRPSetOverride=hpicfPim6StaticRPSetOverride, hpicfPim6IfSRCapable=hpicfPim6IfSRCapable, hpicfPim6ComponentBSRHashMskLen=hpicfPim6ComponentBSRHashMskLen, hpicfPim6IfPropagationDelay=hpicfPim6IfPropagationDelay, hpicfPim6IpMRouteTable=hpicfPim6IpMRouteTable, hpicfPim6IfDRPriority=hpicfPim6IfDRPriority, hpicfPim6IfOverrideInterval=hpicfPim6IfOverrideInterval, hpicfPim6MIB=hpicfPim6MIB, hpicfPim6IpMRouteNHopTStamp=hpicfPim6IpMRouteNHopTStamp, PYSNMP_MODULE_ID=hpicfPim6MIB, hpicfPim6IpMRouteRtProtocol=hpicfPim6IpMRouteRtProtocol, hpicfPim6StaticRPSetGrpMskType=hpicfPim6StaticRPSetGrpMskType, hpicfPim6ComponentBSRAddress=hpicfPim6ComponentBSRAddress, hpicfPim6IfIndex=hpicfPim6IfIndex, hpicfPim6IpMRouteNHopExpTime=hpicfPim6IpMRouteNHopExpTime, hpicfPim6DenseIfGroup=hpicfPim6DenseIfGroup, hpicfPim6StaticRpfExtensionsGroup=hpicfPim6StaticRpfExtensionsGroup, hpicfPim6IpMRouteNHopSrcAddrType=hpicfPim6IpMRouteNHopSrcAddrType, hpicfPim6IpMRouteSrcPrefixLen=hpicfPim6IpMRouteSrcPrefixLen, hpicfPim6IfGenerationID=hpicfPim6IfGenerationID, hpicfPim6Compliances=hpicfPim6Compliances, hpicfPim6IfHelloInterval=hpicfPim6IfHelloInterval, hpicfPim6IpMcastRouteEntryCount=hpicfPim6IpMcastRouteEntryCount, hpicfPim6StaticRPSetGroupMask=hpicfPim6StaticRPSetGroupMask, hpicfPim6IfJoinPruneHoldtime=hpicfPim6IfJoinPruneHoldtime, hpicfPim6ComponentCBSRMsgInt=hpicfPim6ComponentCBSRMsgInt, hpicfPim6RPSetGroup=hpicfPim6RPSetGroup, hpicfPim6IpMRouteNHopPkts=hpicfPim6IpMRouteNHopPkts, hpicfPim6IfNegotiatedOverrideInterval=hpicfPim6IfNegotiatedOverrideInterval, hpicfPim6GlobalCounterGroup=hpicfPim6GlobalCounterGroup, hpicfPim6NeighborDRPriority=hpicfPim6NeighborDRPriority, hpicfPim6TrapControl=hpicfPim6TrapControl, hpicfPim6RPSetGroupMask=hpicfPim6RPSetGroupMask, hpicfPim6IpMRouteRtAddrType=hpicfPim6IpMRouteRtAddrType, hpicfPim6IpMRouteOctets=hpicfPim6IpMRouteOctets, hpicfPim6CandidateRPAddressType=hpicfPim6CandidateRPAddressType, hpicfPim6NeighborExpiryTime=hpicfPim6NeighborExpiryTime, hpicfPim6NeighborGroup=hpicfPim6NeighborGroup, hpicfPim6ComponentCBSRAdmStatus=hpicfPim6ComponentCBSRAdmStatus, hpicfPim6ComponentCBSRAddrType=hpicfPim6ComponentCBSRAddrType, hpicfPim6DenseMIBCompliance=hpicfPim6DenseMIBCompliance, hpicfPim6StaticRPSetTable=hpicfPim6StaticRPSetTable, hpicfPim6NeighborGenIDPresent=hpicfPim6NeighborGenIDPresent, hpicfPim6IfNBRTimeout=hpicfPim6IfNBRTimeout, hpicfPim6SoftMRTFull=hpicfPim6SoftMRTFull, hpicfPim6CommonGroup=hpicfPim6CommonGroup, hpicfPim6IpMRoutePkts=hpicfPim6IpMRoutePkts, hpicfPim6IpMRouteNHopTable=hpicfPim6IpMRouteNHopTable, hpicfPim6NeighborTable=hpicfPim6NeighborTable, hpicfPim6RPSetAddress=hpicfPim6RPSetAddress, hpicfPim6IpMRouteGrpPrefixLen=hpicfPim6IpMRouteGrpPrefixLen, hpicfPim6ComponentCRPAdvTimer=hpicfPim6ComponentCRPAdvTimer, hpicfPim6NumStaticRpfEntries=hpicfPim6NumStaticRpfEntries, hpicfPim6IpMRouteSource=hpicfPim6IpMRouteSource, hpicfPim6IfMaxGraftRetries=hpicfPim6IfMaxGraftRetries, hpicfPim6IpMRouteNHopIfIndex=hpicfPim6IpMRouteNHopIfIndex, hpicfPim6IpMRouteUpstrNbr=hpicfPim6IpMRouteUpstrNbr, hpicfPim6UcastRoutingCompliance=hpicfPim6UcastRoutingCompliance, hpicfPim6IfMode=hpicfPim6IfMode, hpicfPim6ComponentCRPPriority=hpicfPim6ComponentCRPPriority, hpicfPim6IfAddress=hpicfPim6IfAddress, hpicfPim6IpMRouteNHopSrcPLen=hpicfPim6IpMRouteNHopSrcPLen, hpicfPim6IpMRouteEntry=hpicfPim6IpMRouteEntry, hpicfPim6IpMRouteNHopProtocol=hpicfPim6IpMRouteNHopProtocol, hpicfPim6Objects=hpicfPim6Objects, hpicfPim6Version=hpicfPim6Version, hpicfPim6IpMRouteRtType=hpicfPim6IpMRouteRtType, hpicfPim6IpMRouteGroup=hpicfPim6IpMRouteGroup, hpicfPim6StaticRPSetGroup=hpicfPim6StaticRPSetGroup, hpicfPim6NeighborGenIDValue=hpicfPim6NeighborGenIDValue, hpicfPim6GlobalCountersCompliance=hpicfPim6GlobalCountersCompliance, hpicfPim6ComponentCBSRAddress=hpicfPim6ComponentCBSRAddress, hpicfPim6ComponentBSRPriority=hpicfPim6ComponentBSRPriority, hpicfPim6NeighborLanPruneDlyPres=hpicfPim6NeighborLanPruneDlyPres, hpicfPim6ComponentCRPHoldTime=hpicfPim6ComponentCRPHoldTime, hpicfPim6IpMRouteNHopGrpAddrType=hpicfPim6IpMRouteNHopGrpAddrType, hpicfPim6CandidateRPRowStatus=hpicfPim6CandidateRPRowStatus, hpicfPim6RPSetEntry=hpicfPim6RPSetEntry)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_size_constraint, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint')
(hp_switch,) = mibBuilder.importSymbols('HP-ICF-OID', 'hpSwitch')
(ian_aip_route_protocol, ian_aip_m_route_protocol) = mibBuilder.importSymbols('IANA-RTPROTO-MIB', 'IANAipRouteProtocol', 'IANAipMRouteProtocol')
(interface_index, interface_index_or_zero) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex', 'InterfaceIndexOrZero')
(inet_address_type, inet_address, inet_address_prefix_length) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetAddress', 'InetAddressPrefixLength')
(pim_rp_set_component,) = mibBuilder.importSymbols('PIM-MIB', 'pimRPSetComponent')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, unsigned32, counter32, counter64, iso, object_identity, gauge32, bits, notification_type, mib_identifier, integer32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'Unsigned32', 'Counter32', 'Counter64', 'iso', 'ObjectIdentity', 'Gauge32', 'Bits', 'NotificationType', 'MibIdentifier', 'Integer32', 'ModuleIdentity')
(display_string, row_status, truth_value, time_stamp, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'RowStatus', 'TruthValue', 'TimeStamp', 'TextualConvention')
hpicf_pim6_mib = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122))
hpicfPim6MIB.setRevisions(('2017-10-10 00:00', '2017-07-03 00:00', '2012-04-12 00:00'))
if mibBuilder.loadTexts:
hpicfPim6MIB.setLastUpdated('201710100000Z')
if mibBuilder.loadTexts:
hpicfPim6MIB.setOrganization('HP Networking')
hpicf_pim6_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1))
hpicf_pim6_traps = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0))
hpicf_pim6 = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1))
hpicf_pim6_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2))
hpicf_pim6_groups = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1))
hpicf_pim6_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2))
hpicf_pim6_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2))).clone('disable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6AdminStatus.setStatus('current')
hpicf_pim6_state_refresh_interval = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(10, 100)).clone(60)).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6StateRefreshInterval.setStatus('current')
hpicf_pim6_trap_control = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 3), bits().clone(namedValues=named_values(('neighborLoss', 0), ('hardMrtFull', 1), ('softMrtFull', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6TrapControl.setStatus('current')
hpicf_pim6_if_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4))
if mibBuilder.loadTexts:
hpicfPim6IfTable.setStatus('current')
hpicf_pim6_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6IfIndex'))
if mibBuilder.loadTexts:
hpicfPim6IfEntry.setStatus('current')
hpicf_pim6_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 1), interface_index())
if mibBuilder.loadTexts:
hpicfPim6IfIndex.setStatus('current')
hpicf_pim6_if_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 2), inet_address_type()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfAddressType.setStatus('current')
hpicf_pim6_if_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 3), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfAddress.setStatus('current')
hpicf_pim6_if_mode = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dense', 1), ('sparse', 2))).clone('dense')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfMode.setStatus('current')
hpicf_pim6_if_trig_hello_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5)).clone(5)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfTrigHelloInterval.setStatus('current')
hpicf_pim6_if_hello_holdtime = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(105)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfHelloHoldtime.setStatus('current')
hpicf_pim6_if_lan_prune_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 7), truth_value().clone('true')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfLanPruneDelay.setStatus('current')
hpicf_pim6_if_propagation_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(250, 2000)).clone(500)).setUnits('milliseconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfPropagationDelay.setStatus('current')
hpicf_pim6_if_override_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(500, 6000)).clone(2500)).setUnits('milliseconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfOverrideInterval.setStatus('current')
hpicf_pim6_if_generation_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 10), truth_value().clone('false')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfGenerationID.setStatus('current')
hpicf_pim6_if_join_prune_holdtime = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(210)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfJoinPruneHoldtime.setStatus('current')
hpicf_pim6_if_graft_retry_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(3)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfGraftRetryInterval.setStatus('current')
hpicf_pim6_if_max_graft_retries = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(2)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfMaxGraftRetries.setStatus('current')
hpicf_pim6_if_srttl_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 14), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfSRTTLThreshold.setStatus('current')
hpicf_pim6_if_lan_delay_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 15), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfLanDelayEnabled.setStatus('current')
hpicf_pim6_if_sr_capable = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 16), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfSRCapable.setStatus('current')
hpicf_pim6_if_nbr_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(60, 8000)).clone(180)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfNBRTimeout.setStatus('current')
hpicf_pim6_if_nbr_count = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfNBRCount.setStatus('current')
hpicf_pim6_if_negotiated_propagation_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 19), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfNegotiatedPropagationDelay.setStatus('current')
hpicf_pim6_if_negotiated_override_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 20), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfNegotiatedOverrideInterval.setStatus('current')
hpicf_pim6_if_assert_hold_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfAssertHoldInterval.setStatus('current')
hpicf_pim6_if_num_routers_not_using_lan_delay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfNumRoutersNotUsingLanDelay.setStatus('current')
hpicf_pim6_if_hello_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(5, 300)).clone(30)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfHelloInterval.setStatus('current')
hpicf_pim6_if_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 24), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfStatus.setStatus('current')
hpicf_pim6_if_dr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 25), unsigned32().clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfDRPriority.setStatus('current')
hpicf_pim6_if_dr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 26), inet_address_type()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6IfDRType.setStatus('current')
hpicf_pim6_if_dr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 4, 1, 27), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IfDR.setStatus('current')
hpicf_pim6_remove_config = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 5), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6RemoveConfig.setStatus('current')
hpicf_pim6_num_static_rpf_entries = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NumStaticRpfEntries.setStatus('current')
hpicf_pim6_version = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6Version.setStatus('current')
hpicf_pim6_star_g_entries = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6StarGEntries.setStatus('current')
hpicf_pim6_sg_entries = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6SGEntries.setStatus('current')
hpicf_pim6_total_neighbor_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6TotalNeighborCount.setStatus('current')
hpicf_pim6_join_prune_interval = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6JoinPruneInterval.setStatus('current')
hpicf_pim6_static_rp_set_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12))
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetTable.setStatus('current')
hpicf_pim6_static_rp_set_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1)).setIndexNames((0, 'PIM-MIB', 'pimRPSetComponent'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGroupAddress'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGrpMskType'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetGroupMask'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6StaticRPSetAddress'))
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetEntry.setStatus('current')
hpicf_pim6_static_rp_set_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetGrpAddrType.setStatus('current')
hpicf_pim6_static_rp_set_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetGroupAddress.setStatus('current')
hpicf_pim6_static_rp_set_grp_msk_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 3), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetGrpMskType.setStatus('current')
hpicf_pim6_static_rp_set_group_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetGroupMask.setStatus('current')
hpicf_pim6_static_rp_set_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 5), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetAddressType.setStatus('current')
hpicf_pim6_static_rp_set_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetAddress.setStatus('current')
hpicf_pim6_static_rp_set_override = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 7), truth_value().clone('false')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetOverride.setStatus('current')
hpicf_pim6_static_rp_set_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 12, 1, 8), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6StaticRPSetRowStatus.setStatus('current')
hpicf_pim6_candidate_rp_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13))
if mibBuilder.loadTexts:
hpicfPim6CandidateRPTable.setStatus('current')
hpicf_pim6_candidate_rp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGroupAddress'), (0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGrpMskType'), (0, 'HP-ICF-PIM6', 'hpicfPim6CandidateRPGroupMask'))
if mibBuilder.loadTexts:
hpicfPim6CandidateRPEntry.setStatus('current')
hpicf_pim6_candidate_rp_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6CandidateRPGrpAddrType.setStatus('current')
hpicf_pim6_candidate_rp_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6CandidateRPGroupAddress.setStatus('current')
hpicf_pim6_candidate_rp_grp_msk_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 3), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6CandidateRPGrpMskType.setStatus('current')
hpicf_pim6_candidate_rp_group_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6CandidateRPGroupMask.setStatus('current')
hpicf_pim6_candidate_rp_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 5), inet_address_type()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6CandidateRPAddressType.setStatus('current')
hpicf_pim6_candidate_rp_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6CandidateRPAddress.setStatus('current')
hpicf_pim6_candidate_rp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 13, 1, 7), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6CandidateRPRowStatus.setStatus('current')
hpicf_pim6_component_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14))
if mibBuilder.loadTexts:
hpicfPim6ComponentTable.setStatus('current')
hpicf_pim6_component_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6ComponentIndex'))
if mibBuilder.loadTexts:
hpicfPim6ComponentEntry.setStatus('current')
hpicf_pim6_component_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255)))
if mibBuilder.loadTexts:
hpicfPim6ComponentIndex.setStatus('current')
hpicf_pim6_component_bsr_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 2), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRAddrType.setStatus('current')
hpicf_pim6_component_bsr_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 3), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRAddress.setStatus('current')
hpicf_pim6_component_bsr_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRExpiryTime.setStatus('current')
hpicf_pim6_component_crp_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCRPHoldTime.setStatus('current')
hpicf_pim6_component_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 6), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentStatus.setStatus('current')
hpicf_pim6_component_cbsr_adm_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2))).clone('disable')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCBSRAdmStatus.setStatus('current')
hpicf_pim6_component_cbsr_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 8), inet_address_type()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCBSRAddrType.setStatus('current')
hpicf_pim6_component_cbsr_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 9), inet_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCBSRAddress.setStatus('current')
hpicf_pim6_component_cbsr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCBSRPriority.setStatus('current')
hpicf_pim6_component_cbsr_hash_msk_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 128)).clone(126)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCBSRHashMskLen.setStatus('current')
hpicf_pim6_component_cbsr_msg_int = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(5, 300)).clone(60)).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCBSRMsgInt.setStatus('current')
hpicf_pim6_component_crp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(192)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpicfPim6ComponentCRPPriority.setStatus('current')
hpicf_pim6_component_crp_adv_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 14), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentCRPAdvInterval.setStatus('current')
hpicf_pim6_component_bsr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRPriority.setStatus('current')
hpicf_pim6_component_bsr_hash_msk_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 16), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRHashMskLen.setStatus('current')
hpicf_pim6_component_bsr_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 17), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRUpTime.setStatus('current')
hpicf_pim6_component_bsr_next_message = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 18), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentBSRNextMessage.setStatus('current')
hpicf_pim6_component_crp_adv_timer = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 14, 1, 19), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6ComponentCRPAdvTimer.setStatus('current')
hpicf_pim6_spt_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 15), integer32().clone(-1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6SPTThreshold.setStatus('current')
hpicf_pim6_neighbor_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16))
if mibBuilder.loadTexts:
hpicfPim6NeighborTable.setStatus('current')
hpicf_pim6_neighbor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6NeighborIfIndex'), (0, 'HP-ICF-PIM6', 'hpicfPim6NeighborAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6NeighborAddress'))
if mibBuilder.loadTexts:
hpicfPim6NeighborEntry.setStatus('current')
hpicf_pim6_neighbor_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 1), interface_index())
if mibBuilder.loadTexts:
hpicfPim6NeighborIfIndex.setStatus('current')
hpicf_pim6_neighbor_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 2), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6NeighborAddressType.setStatus('current')
hpicf_pim6_neighbor_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 3), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6NeighborAddress.setStatus('current')
hpicf_pim6_neighbor_gen_id_present = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 4), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborGenIDPresent.setStatus('current')
hpicf_pim6_neighbor_gen_id_value = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborGenIDValue.setStatus('current')
hpicf_pim6_neighbor_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 6), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborUpTime.setStatus('current')
hpicf_pim6_neighbor_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 7), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborExpiryTime.setStatus('current')
hpicf_pim6_neighbor_dr_prio_present = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 8), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborDRPrioPresent.setStatus('current')
hpicf_pim6_neighbor_dr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborDRPriority.setStatus('current')
hpicf_pim6_neighbor_lan_prune_dly_pres = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 16, 1, 10), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6NeighborLanPruneDlyPres.setStatus('current')
hpicf_pim6_rp_set_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17))
if mibBuilder.loadTexts:
hpicfPim6RPSetTable.setStatus('current')
hpicf_pim6_rp_set_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1)).setIndexNames((0, 'PIM-MIB', 'pimRPSetComponent'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupAddress'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupMaskType'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetGroupMask'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetAddressType'), (0, 'HP-ICF-PIM6', 'hpicfPim6RPSetAddress'))
if mibBuilder.loadTexts:
hpicfPim6RPSetEntry.setStatus('current')
hpicf_pim6_rp_set_group_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6RPSetGroupAddressType.setStatus('current')
hpicf_pim6_rp_set_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6RPSetGroupAddress.setStatus('current')
hpicf_pim6_rp_set_group_mask_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 3), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6RPSetGroupMaskType.setStatus('current')
hpicf_pim6_rp_set_group_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6RPSetGroupMask.setStatus('current')
hpicf_pim6_rp_set_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 5), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6RPSetAddressType.setStatus('current')
hpicf_pim6_rp_set_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6RPSetAddress.setStatus('current')
hpicf_pim6_rp_set_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6RPSetHoldTime.setStatus('current')
hpicf_pim6_rp_set_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 17, 1, 8), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6RPSetExpiryTime.setStatus('current')
hpicf_pim6_ip_mcast_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpicfPim6IpMcastEnabled.setStatus('current')
hpicf_pim6_ip_mcast_route_entry_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMcastRouteEntryCount.setStatus('current')
hpicf_pim6_ip_m_route_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteTable.setStatus('current')
hpicf_pim6_ip_m_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteGroup'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteGrpPrefixLen'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteSrcAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteSource'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteSrcPrefixLen'))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteEntry.setStatus('current')
hpicf_pim6_ip_m_route_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteGrpAddrType.setStatus('current')
hpicf_pim6_ip_m_route_group = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteGroup.setStatus('current')
hpicf_pim6_ip_m_route_grp_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 3), inet_address_prefix_length())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteGrpPrefixLen.setStatus('current')
hpicf_pim6_ip_m_route_src_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 4), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteSrcAddrType.setStatus('current')
hpicf_pim6_ip_m_route_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 5), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteSource.setStatus('current')
hpicf_pim6_ip_m_route_src_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 6), inet_address_prefix_length())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteSrcPrefixLen.setStatus('current')
hpicf_pim6_ip_m_route_upstr_nbr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 7), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteUpstrNbrType.setStatus('current')
hpicf_pim6_ip_m_route_upstr_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 8), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteUpstrNbr.setStatus('current')
hpicf_pim6_ip_m_route_in_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 9), interface_index_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteInIfIndex.setStatus('current')
hpicf_pim6_ip_m_route_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 10), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteTimeStamp.setStatus('current')
hpicf_pim6_ip_m_route_expiry_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 11), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteExpiryTime.setStatus('current')
hpicf_pim6_ip_m_route_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 12), ian_aip_m_route_protocol()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteProtocol.setStatus('current')
hpicf_pim6_ip_m_route_rt_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 13), ian_aip_route_protocol()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteRtProtocol.setStatus('current')
hpicf_pim6_ip_m_route_rt_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 14), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteRtAddrType.setStatus('current')
hpicf_pim6_ip_m_route_rt_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 15), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteRtAddress.setStatus('current')
hpicf_pim6_ip_m_route_rt_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 16), inet_address_prefix_length()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteRtPrefixLen.setStatus('current')
hpicf_pim6_ip_m_route_rt_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('unicast', 1), ('multicast', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteRtType.setStatus('current')
hpicf_pim6_ip_m_route_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteOctets.setStatus('current')
hpicf_pim6_ip_m_route_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRoutePkts.setStatus('current')
hpicf_pim6_ip_m_route_ttl_drop_oct = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteTtlDropOct.setStatus('current')
hpicf_pim6_ip_m_route_ttl_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteTtlDropPkts.setStatus('current')
hpicf_pim6_ip_m_route_diff_in_if_oct = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteDiffInIfOct.setStatus('current')
hpicf_pim6_ip_m_route_diff_in_if_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteDiffInIfPkts.setStatus('current')
hpicf_pim6_ip_m_route_bps = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 20, 1, 24), counter64()).setUnits('bits per second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteBps.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopTable.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1)).setIndexNames((0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopGrpAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopGroup'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopGrpPLen'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopSrcAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopSource'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopSrcPLen'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopIfIndex'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopAddrType'), (0, 'HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopAddress'))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopEntry.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_grp_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopGrpAddrType.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_group = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 2), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopGroup.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_grp_p_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 3), inet_address_prefix_length())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopGrpPLen.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_src_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 4), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopSrcAddrType.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 5), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopSource.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_src_p_len = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 6), inet_address_prefix_length())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopSrcPLen.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 7), interface_index())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopIfIndex.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 8), inet_address_type())
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopAddrType.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_address = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 9), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(8, 8), value_size_constraint(16, 16), value_size_constraint(20, 20))))
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopAddress.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('pruned', 1), ('forwarding', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopState.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_t_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 11), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopTStamp.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_exp_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 12), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopExpTime.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_cls_m_hops = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 13), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopClsMHops.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 14), ian_aip_m_route_protocol()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopProtocol.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopOctets.setStatus('current')
hpicf_pim6_ip_m_route_n_hop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 1, 21, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpicfPim6IpMRouteNHopPkts.setStatus('current')
hpicf_pim6_neighbor_loss = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 1))
if mibBuilder.loadTexts:
hpicfPim6NeighborLoss.setStatus('current')
hpicf_pim6_hard_mrt_full = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 2))
if mibBuilder.loadTexts:
hpicfPim6HardMRTFull.setStatus('current')
hpicf_pim6_soft_mrt_full = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 1, 0, 3))
if mibBuilder.loadTexts:
hpicfPim6SoftMRTFull.setStatus('current')
hpicf_pim6_dense_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 1)).setObjects(('HP-ICF-PIM6', 'hpicfPim6BaseGroup'), ('HP-ICF-PIM6', 'hpicfPim6DenseIfGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_dense_mib_compliance = hpicfPim6DenseMIBCompliance.setStatus('deprecated')
hpicf_pim6_ucast_routing_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 2)).setObjects(('HP-ICF-PIM6', 'hpicfPim6StaticRpfExtensionsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_ucast_routing_compliance = hpicfPim6UcastRoutingCompliance.setStatus('current')
hpicf_pim6_global_counters_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 3)).setObjects(('HP-ICF-PIM6', 'hpicfPim6GlobalCounterGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_global_counters_compliance = hpicfPim6GlobalCountersCompliance.setStatus('current')
hpicf_pim6_interface_info_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 4)).setObjects(('HP-ICF-PIM6', 'hpicfPim6InterfaceExtensionsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_interface_info_compliance = hpicfPim6InterfaceInfoCompliance.setStatus('current')
hpicf_pim6_notification_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 5)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NotificationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_notification_compliance = hpicfPim6NotificationCompliance.setStatus('current')
hpicf_pim6_sparse_mode_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 6)).setObjects(('HP-ICF-PIM6', 'hpicfPim6CommonGroup'), ('HP-ICF-PIM6', 'hpicfPim6StaticRPSetGroup'), ('HP-ICF-PIM6', 'hpicfPim6SparseIfGroup'), ('HP-ICF-PIM6', 'hpicfPim6CandidateRPGroup'), ('HP-ICF-PIM6', 'hpicfPim6ComponentGroup'), ('HP-ICF-PIM6', 'hpicfPim6NeighborGroup'), ('HP-ICF-PIM6', 'hpicfPim6RPSetGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteNHopGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_sparse_mode_mib_compliance = hpicfPim6SparseModeMIBCompliance.setStatus('current')
hpicf_pim6_dense_mode_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 2, 7)).setObjects(('HP-ICF-PIM6', 'hpicfPim6CommonGroup'), ('HP-ICF-PIM6', 'hpicfPim6DenseIfGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteGroup'), ('HP-ICF-PIM6', 'hpicfPim6MRouteNHopGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_dense_mode_mib_compliance = hpicfPim6DenseModeMIBCompliance.setStatus('current')
hpicf_pim6_base_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 1)).setObjects(('HP-ICF-PIM6', 'hpicfPim6AdminStatus'), ('HP-ICF-PIM6', 'hpicfPim6StateRefreshInterval'), ('HP-ICF-PIM6', 'hpicfPim6TrapControl'), ('HP-ICF-PIM6', 'hpicfPim6JoinPruneInterval'), ('HP-ICF-PIM6', 'hpicfPim6RemoveConfig'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_base_group = hpicfPim6BaseGroup.setStatus('deprecated')
hpicf_pim6_dense_if_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 2)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IfAddressType'), ('HP-ICF-PIM6', 'hpicfPim6IfAddress'), ('HP-ICF-PIM6', 'hpicfPim6IfMode'), ('HP-ICF-PIM6', 'hpicfPim6IfStatus'), ('HP-ICF-PIM6', 'hpicfPim6IfTrigHelloInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfHelloInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfHelloHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfLanPruneDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfPropagationDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfOverrideInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfGenerationID'), ('HP-ICF-PIM6', 'hpicfPim6IfJoinPruneHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfGraftRetryInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfMaxGraftRetries'), ('HP-ICF-PIM6', 'hpicfPim6IfSRTTLThreshold'), ('HP-ICF-PIM6', 'hpicfPim6IfLanDelayEnabled'), ('HP-ICF-PIM6', 'hpicfPim6IfSRCapable'), ('HP-ICF-PIM6', 'hpicfPim6IfNBRTimeout'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_dense_if_group = hpicfPim6DenseIfGroup.setStatus('current')
hpicf_pim6_interface_extensions_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 3)).setObjects(('HP-ICF-PIM6', 'hpicfPim6Version'), ('HP-ICF-PIM6', 'hpicfPim6IfNBRCount'), ('HP-ICF-PIM6', 'hpicfPim6IfNegotiatedPropagationDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfNegotiatedOverrideInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfAssertHoldInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfNumRoutersNotUsingLanDelay'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_interface_extensions_group = hpicfPim6InterfaceExtensionsGroup.setStatus('current')
hpicf_pim6_static_rpf_extensions_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 4)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NumStaticRpfEntries'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_static_rpf_extensions_group = hpicfPim6StaticRpfExtensionsGroup.setStatus('current')
hpicf_pim6_global_counter_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 5)).setObjects(('HP-ICF-PIM6', 'hpicfPim6StarGEntries'), ('HP-ICF-PIM6', 'hpicfPim6SGEntries'), ('HP-ICF-PIM6', 'hpicfPim6TotalNeighborCount'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_global_counter_group = hpicfPim6GlobalCounterGroup.setStatus('current')
hpicf_pim6_notification_group = notification_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 6)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NeighborLoss'), ('HP-ICF-PIM6', 'hpicfPim6HardMRTFull'), ('HP-ICF-PIM6', 'hpicfPim6SoftMRTFull'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_notification_group = hpicfPim6NotificationGroup.setStatus('current')
hpicf_pim6_static_rp_set_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 7)).setObjects(('HP-ICF-PIM6', 'hpicfPim6StaticRPSetOverride'), ('HP-ICF-PIM6', 'hpicfPim6StaticRPSetRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_static_rp_set_group = hpicfPim6StaticRPSetGroup.setStatus('current')
hpicf_pim6_candidate_rp_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 8)).setObjects(('HP-ICF-PIM6', 'hpicfPim6CandidateRPAddressType'), ('HP-ICF-PIM6', 'hpicfPim6CandidateRPAddress'), ('HP-ICF-PIM6', 'hpicfPim6CandidateRPRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_candidate_rp_group = hpicfPim6CandidateRPGroup.setStatus('current')
hpicf_pim6_component_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 9)).setObjects(('HP-ICF-PIM6', 'hpicfPim6ComponentBSRAddrType'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRAddress'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRExpiryTime'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPHoldTime'), ('HP-ICF-PIM6', 'hpicfPim6ComponentStatus'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRAdmStatus'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRAddrType'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRAddress'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRPriority'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRHashMskLen'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCBSRMsgInt'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPPriority'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPAdvInterval'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRPriority'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRHashMskLen'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRUpTime'), ('HP-ICF-PIM6', 'hpicfPim6ComponentBSRNextMessage'), ('HP-ICF-PIM6', 'hpicfPim6ComponentCRPAdvTimer'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_component_group = hpicfPim6ComponentGroup.setStatus('current')
hpicf_pim6_common_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 10)).setObjects(('HP-ICF-PIM6', 'hpicfPim6AdminStatus'), ('HP-ICF-PIM6', 'hpicfPim6StateRefreshInterval'), ('HP-ICF-PIM6', 'hpicfPim6TrapControl'), ('HP-ICF-PIM6', 'hpicfPim6JoinPruneInterval'), ('HP-ICF-PIM6', 'hpicfPim6RemoveConfig'), ('HP-ICF-PIM6', 'hpicfPim6SPTThreshold'), ('HP-ICF-PIM6', 'hpicfPim6IpMcastEnabled'), ('HP-ICF-PIM6', 'hpicfPim6IpMcastRouteEntryCount'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_common_group = hpicfPim6CommonGroup.setStatus('current')
hpicf_pim6_sparse_if_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 11)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IfAddressType'), ('HP-ICF-PIM6', 'hpicfPim6IfAddress'), ('HP-ICF-PIM6', 'hpicfPim6IfTrigHelloInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfHelloHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfLanPruneDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfPropagationDelay'), ('HP-ICF-PIM6', 'hpicfPim6IfOverrideInterval'), ('HP-ICF-PIM6', 'hpicfPim6IfGenerationID'), ('HP-ICF-PIM6', 'hpicfPim6IfJoinPruneHoldtime'), ('HP-ICF-PIM6', 'hpicfPim6IfLanDelayEnabled'), ('HP-ICF-PIM6', 'hpicfPim6IfDRPriority'), ('HP-ICF-PIM6', 'hpicfPim6IfNBRTimeout'), ('HP-ICF-PIM6', 'hpicfPim6IfDRType'), ('HP-ICF-PIM6', 'hpicfPim6IfDR'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_sparse_if_group = hpicfPim6SparseIfGroup.setStatus('current')
hpicf_pim6_neighbor_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 12)).setObjects(('HP-ICF-PIM6', 'hpicfPim6NeighborGenIDPresent'), ('HP-ICF-PIM6', 'hpicfPim6NeighborGenIDValue'), ('HP-ICF-PIM6', 'hpicfPim6NeighborUpTime'), ('HP-ICF-PIM6', 'hpicfPim6NeighborExpiryTime'), ('HP-ICF-PIM6', 'hpicfPim6NeighborDRPrioPresent'), ('HP-ICF-PIM6', 'hpicfPim6NeighborDRPriority'), ('HP-ICF-PIM6', 'hpicfPim6NeighborLanPruneDlyPres'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_neighbor_group = hpicfPim6NeighborGroup.setStatus('current')
hpicf_pim6_rp_set_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 13)).setObjects(('HP-ICF-PIM6', 'hpicfPim6RPSetHoldTime'), ('HP-ICF-PIM6', 'hpicfPim6RPSetExpiryTime'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_rp_set_group = hpicfPim6RPSetGroup.setStatus('current')
hpicf_pim6_m_route_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 14)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IpMRouteUpstrNbrType'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteUpstrNbr'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteInIfIndex'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteTimeStamp'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteExpiryTime'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteProtocol'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtProtocol'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtAddrType'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtAddress'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtPrefixLen'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteRtType'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteOctets'), ('HP-ICF-PIM6', 'hpicfPim6IpMRoutePkts'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteTtlDropOct'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteTtlDropPkts'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteDiffInIfOct'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteDiffInIfPkts'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteBps'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_m_route_group = hpicfPim6MRouteGroup.setStatus('current')
hpicf_pim6_m_route_n_hop_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 5, 1, 122, 2, 1, 15)).setObjects(('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopState'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopTStamp'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopExpTime'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopClsMHops'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopProtocol'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopOctets'), ('HP-ICF-PIM6', 'hpicfPim6IpMRouteNHopPkts'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpicf_pim6_m_route_n_hop_group = hpicfPim6MRouteNHopGroup.setStatus('current')
mibBuilder.exportSymbols('HP-ICF-PIM6', hpicfPim6BaseGroup=hpicfPim6BaseGroup, hpicfPim6ComponentIndex=hpicfPim6ComponentIndex, hpicfPim6IpMRouteNHopEntry=hpicfPim6IpMRouteNHopEntry, hpicfPim6Conformance=hpicfPim6Conformance, hpicfPim6ComponentBSRUpTime=hpicfPim6ComponentBSRUpTime, hpicfPim6CandidateRPGrpAddrType=hpicfPim6CandidateRPGrpAddrType, hpicfPim6NeighborAddressType=hpicfPim6NeighborAddressType, hpicfPim6TotalNeighborCount=hpicfPim6TotalNeighborCount, hpicfPim6IfNegotiatedPropagationDelay=hpicfPim6IfNegotiatedPropagationDelay, hpicfPim6NeighborEntry=hpicfPim6NeighborEntry, hpicfPim6IfLanDelayEnabled=hpicfPim6IfLanDelayEnabled, hpicfPim6ComponentStatus=hpicfPim6ComponentStatus, hpicfPim6ComponentBSRAddrType=hpicfPim6ComponentBSRAddrType, hpicfPim6NeighborUpTime=hpicfPim6NeighborUpTime, hpicfPim6MRouteNHopGroup=hpicfPim6MRouteNHopGroup, hpicfPim6IfDR=hpicfPim6IfDR, hpicfPim6NeighborLoss=hpicfPim6NeighborLoss, hpicfPim6RPSetGroupAddress=hpicfPim6RPSetGroupAddress, hpicfPim6RPSetAddressType=hpicfPim6RPSetAddressType, hpicfPim6SPTThreshold=hpicfPim6SPTThreshold, hpicfPim6CandidateRPGroup=hpicfPim6CandidateRPGroup, hpicfPim6InterfaceInfoCompliance=hpicfPim6InterfaceInfoCompliance, hpicfPim6StateRefreshInterval=hpicfPim6StateRefreshInterval, hpicfPim6SparseIfGroup=hpicfPim6SparseIfGroup, hpicfPim6IpMRouteBps=hpicfPim6IpMRouteBps, hpicfPim6AdminStatus=hpicfPim6AdminStatus, hpicfPim6ComponentCBSRPriority=hpicfPim6ComponentCBSRPriority, hpicfPim6IpMRouteExpiryTime=hpicfPim6IpMRouteExpiryTime, hpicfPim6Traps=hpicfPim6Traps, hpicfPim6DenseModeMIBCompliance=hpicfPim6DenseModeMIBCompliance, hpicfPim6CandidateRPTable=hpicfPim6CandidateRPTable, hpicfPim6IpMRouteTtlDropOct=hpicfPim6IpMRouteTtlDropOct, hpicfPim6ComponentBSRExpiryTime=hpicfPim6ComponentBSRExpiryTime, hpicfPim6IpMRouteNHopGrpPLen=hpicfPim6IpMRouteNHopGrpPLen, hpicfPim6RPSetGroupMaskType=hpicfPim6RPSetGroupMaskType, hpicfPim6ComponentCRPAdvInterval=hpicfPim6ComponentCRPAdvInterval, hpicfPim6NeighborIfIndex=hpicfPim6NeighborIfIndex, hpicfPim6ComponentTable=hpicfPim6ComponentTable, hpicfPim6CandidateRPGroupMask=hpicfPim6CandidateRPGroupMask, hpicfPim6IpMRouteNHopOctets=hpicfPim6IpMRouteNHopOctets, hpicfPim6IpMRouteUpstrNbrType=hpicfPim6IpMRouteUpstrNbrType, hpicfPim6IpMRouteDiffInIfPkts=hpicfPim6IpMRouteDiffInIfPkts, hpicfPim6ComponentBSRNextMessage=hpicfPim6ComponentBSRNextMessage, hpicfPim6IfGraftRetryInterval=hpicfPim6IfGraftRetryInterval, hpicfPim6CandidateRPEntry=hpicfPim6CandidateRPEntry, hpicfPim6IpMRouteNHopGroup=hpicfPim6IpMRouteNHopGroup, hpicfPim6SparseModeMIBCompliance=hpicfPim6SparseModeMIBCompliance, hpicfPim6IfLanPruneDelay=hpicfPim6IfLanPruneDelay, hpicfPim6StarGEntries=hpicfPim6StarGEntries, hpicfPim6StaticRPSetAddress=hpicfPim6StaticRPSetAddress, hpicfPim6IfHelloHoldtime=hpicfPim6IfHelloHoldtime, hpicfPim6IpMRouteProtocol=hpicfPim6IpMRouteProtocol, hpicfPim6IfDRType=hpicfPim6IfDRType, hpicfPim6IpMRouteInIfIndex=hpicfPim6IpMRouteInIfIndex, hpicfPim6CandidateRPGroupAddress=hpicfPim6CandidateRPGroupAddress, hpicfPim6IfEntry=hpicfPim6IfEntry, hpicfPim6RPSetHoldTime=hpicfPim6RPSetHoldTime, hpicfPim6IfTrigHelloInterval=hpicfPim6IfTrigHelloInterval, hpicfPim6Groups=hpicfPim6Groups, hpicfPim6IpMRouteGrpAddrType=hpicfPim6IpMRouteGrpAddrType, hpicfPim6CandidateRPGrpMskType=hpicfPim6CandidateRPGrpMskType, hpicfPim6IpMRouteDiffInIfOct=hpicfPim6IpMRouteDiffInIfOct, hpicfPim6IpMRouteSrcAddrType=hpicfPim6IpMRouteSrcAddrType, hpicfPim6IpMRouteNHopClsMHops=hpicfPim6IpMRouteNHopClsMHops, hpicfPim6IfNumRoutersNotUsingLanDelay=hpicfPim6IfNumRoutersNotUsingLanDelay, hpicfPim6IpMRouteNHopState=hpicfPim6IpMRouteNHopState, hpicfPim6IfTable=hpicfPim6IfTable, hpicfPim6StaticRPSetAddressType=hpicfPim6StaticRPSetAddressType, hpicfPim6IpMRouteRtPrefixLen=hpicfPim6IpMRouteRtPrefixLen, hpicfPim6HardMRTFull=hpicfPim6HardMRTFull, hpicfPim6IpMRouteRtAddress=hpicfPim6IpMRouteRtAddress, hpicfPim6ComponentGroup=hpicfPim6ComponentGroup, hpicfPim6StaticRPSetGroupAddress=hpicfPim6StaticRPSetGroupAddress, hpicfPim6RPSetTable=hpicfPim6RPSetTable, hpicfPim6IfAddressType=hpicfPim6IfAddressType, hpicfPim6StaticRPSetRowStatus=hpicfPim6StaticRPSetRowStatus, hpicfPim6IpMRouteNHopAddress=hpicfPim6IpMRouteNHopAddress, hpicfPim6NotificationGroup=hpicfPim6NotificationGroup, hpicfPim6MRouteGroup=hpicfPim6MRouteGroup, hpicfPim6=hpicfPim6, hpicfPim6StaticRPSetEntry=hpicfPim6StaticRPSetEntry, hpicfPim6IpMcastEnabled=hpicfPim6IpMcastEnabled, hpicfPim6NotificationCompliance=hpicfPim6NotificationCompliance, hpicfPim6CandidateRPAddress=hpicfPim6CandidateRPAddress, hpicfPim6IfAssertHoldInterval=hpicfPim6IfAssertHoldInterval, hpicfPim6InterfaceExtensionsGroup=hpicfPim6InterfaceExtensionsGroup, hpicfPim6RemoveConfig=hpicfPim6RemoveConfig, hpicfPim6JoinPruneInterval=hpicfPim6JoinPruneInterval, hpicfPim6NeighborDRPrioPresent=hpicfPim6NeighborDRPrioPresent, hpicfPim6StaticRPSetGrpAddrType=hpicfPim6StaticRPSetGrpAddrType, hpicfPim6IfStatus=hpicfPim6IfStatus, hpicfPim6IfNBRCount=hpicfPim6IfNBRCount, hpicfPim6ComponentCBSRHashMskLen=hpicfPim6ComponentCBSRHashMskLen, hpicfPim6IpMRouteTimeStamp=hpicfPim6IpMRouteTimeStamp, hpicfPim6RPSetGroupAddressType=hpicfPim6RPSetGroupAddressType, hpicfPim6ComponentEntry=hpicfPim6ComponentEntry, hpicfPim6RPSetExpiryTime=hpicfPim6RPSetExpiryTime, hpicfPim6IpMRouteTtlDropPkts=hpicfPim6IpMRouteTtlDropPkts, hpicfPim6SGEntries=hpicfPim6SGEntries, hpicfPim6IpMRouteNHopSource=hpicfPim6IpMRouteNHopSource, hpicfPim6NeighborAddress=hpicfPim6NeighborAddress, hpicfPim6IpMRouteNHopAddrType=hpicfPim6IpMRouteNHopAddrType, hpicfPim6IfSRTTLThreshold=hpicfPim6IfSRTTLThreshold, hpicfPim6StaticRPSetOverride=hpicfPim6StaticRPSetOverride, hpicfPim6IfSRCapable=hpicfPim6IfSRCapable, hpicfPim6ComponentBSRHashMskLen=hpicfPim6ComponentBSRHashMskLen, hpicfPim6IfPropagationDelay=hpicfPim6IfPropagationDelay, hpicfPim6IpMRouteTable=hpicfPim6IpMRouteTable, hpicfPim6IfDRPriority=hpicfPim6IfDRPriority, hpicfPim6IfOverrideInterval=hpicfPim6IfOverrideInterval, hpicfPim6MIB=hpicfPim6MIB, hpicfPim6IpMRouteNHopTStamp=hpicfPim6IpMRouteNHopTStamp, PYSNMP_MODULE_ID=hpicfPim6MIB, hpicfPim6IpMRouteRtProtocol=hpicfPim6IpMRouteRtProtocol, hpicfPim6StaticRPSetGrpMskType=hpicfPim6StaticRPSetGrpMskType, hpicfPim6ComponentBSRAddress=hpicfPim6ComponentBSRAddress, hpicfPim6IfIndex=hpicfPim6IfIndex, hpicfPim6IpMRouteNHopExpTime=hpicfPim6IpMRouteNHopExpTime, hpicfPim6DenseIfGroup=hpicfPim6DenseIfGroup, hpicfPim6StaticRpfExtensionsGroup=hpicfPim6StaticRpfExtensionsGroup, hpicfPim6IpMRouteNHopSrcAddrType=hpicfPim6IpMRouteNHopSrcAddrType, hpicfPim6IpMRouteSrcPrefixLen=hpicfPim6IpMRouteSrcPrefixLen, hpicfPim6IfGenerationID=hpicfPim6IfGenerationID, hpicfPim6Compliances=hpicfPim6Compliances, hpicfPim6IfHelloInterval=hpicfPim6IfHelloInterval, hpicfPim6IpMcastRouteEntryCount=hpicfPim6IpMcastRouteEntryCount, hpicfPim6StaticRPSetGroupMask=hpicfPim6StaticRPSetGroupMask, hpicfPim6IfJoinPruneHoldtime=hpicfPim6IfJoinPruneHoldtime, hpicfPim6ComponentCBSRMsgInt=hpicfPim6ComponentCBSRMsgInt, hpicfPim6RPSetGroup=hpicfPim6RPSetGroup, hpicfPim6IpMRouteNHopPkts=hpicfPim6IpMRouteNHopPkts, hpicfPim6IfNegotiatedOverrideInterval=hpicfPim6IfNegotiatedOverrideInterval, hpicfPim6GlobalCounterGroup=hpicfPim6GlobalCounterGroup, hpicfPim6NeighborDRPriority=hpicfPim6NeighborDRPriority, hpicfPim6TrapControl=hpicfPim6TrapControl, hpicfPim6RPSetGroupMask=hpicfPim6RPSetGroupMask, hpicfPim6IpMRouteRtAddrType=hpicfPim6IpMRouteRtAddrType, hpicfPim6IpMRouteOctets=hpicfPim6IpMRouteOctets, hpicfPim6CandidateRPAddressType=hpicfPim6CandidateRPAddressType, hpicfPim6NeighborExpiryTime=hpicfPim6NeighborExpiryTime, hpicfPim6NeighborGroup=hpicfPim6NeighborGroup, hpicfPim6ComponentCBSRAdmStatus=hpicfPim6ComponentCBSRAdmStatus, hpicfPim6ComponentCBSRAddrType=hpicfPim6ComponentCBSRAddrType, hpicfPim6DenseMIBCompliance=hpicfPim6DenseMIBCompliance, hpicfPim6StaticRPSetTable=hpicfPim6StaticRPSetTable, hpicfPim6NeighborGenIDPresent=hpicfPim6NeighborGenIDPresent, hpicfPim6IfNBRTimeout=hpicfPim6IfNBRTimeout, hpicfPim6SoftMRTFull=hpicfPim6SoftMRTFull, hpicfPim6CommonGroup=hpicfPim6CommonGroup, hpicfPim6IpMRoutePkts=hpicfPim6IpMRoutePkts, hpicfPim6IpMRouteNHopTable=hpicfPim6IpMRouteNHopTable, hpicfPim6NeighborTable=hpicfPim6NeighborTable, hpicfPim6RPSetAddress=hpicfPim6RPSetAddress, hpicfPim6IpMRouteGrpPrefixLen=hpicfPim6IpMRouteGrpPrefixLen, hpicfPim6ComponentCRPAdvTimer=hpicfPim6ComponentCRPAdvTimer, hpicfPim6NumStaticRpfEntries=hpicfPim6NumStaticRpfEntries, hpicfPim6IpMRouteSource=hpicfPim6IpMRouteSource, hpicfPim6IfMaxGraftRetries=hpicfPim6IfMaxGraftRetries, hpicfPim6IpMRouteNHopIfIndex=hpicfPim6IpMRouteNHopIfIndex, hpicfPim6IpMRouteUpstrNbr=hpicfPim6IpMRouteUpstrNbr, hpicfPim6UcastRoutingCompliance=hpicfPim6UcastRoutingCompliance, hpicfPim6IfMode=hpicfPim6IfMode, hpicfPim6ComponentCRPPriority=hpicfPim6ComponentCRPPriority, hpicfPim6IfAddress=hpicfPim6IfAddress, hpicfPim6IpMRouteNHopSrcPLen=hpicfPim6IpMRouteNHopSrcPLen, hpicfPim6IpMRouteEntry=hpicfPim6IpMRouteEntry, hpicfPim6IpMRouteNHopProtocol=hpicfPim6IpMRouteNHopProtocol, hpicfPim6Objects=hpicfPim6Objects, hpicfPim6Version=hpicfPim6Version, hpicfPim6IpMRouteRtType=hpicfPim6IpMRouteRtType, hpicfPim6IpMRouteGroup=hpicfPim6IpMRouteGroup, hpicfPim6StaticRPSetGroup=hpicfPim6StaticRPSetGroup, hpicfPim6NeighborGenIDValue=hpicfPim6NeighborGenIDValue, hpicfPim6GlobalCountersCompliance=hpicfPim6GlobalCountersCompliance, hpicfPim6ComponentCBSRAddress=hpicfPim6ComponentCBSRAddress, hpicfPim6ComponentBSRPriority=hpicfPim6ComponentBSRPriority, hpicfPim6NeighborLanPruneDlyPres=hpicfPim6NeighborLanPruneDlyPres, hpicfPim6ComponentCRPHoldTime=hpicfPim6ComponentCRPHoldTime, hpicfPim6IpMRouteNHopGrpAddrType=hpicfPim6IpMRouteNHopGrpAddrType, hpicfPim6CandidateRPRowStatus=hpicfPim6CandidateRPRowStatus, hpicfPim6RPSetEntry=hpicfPim6RPSetEntry) |
with open('input', 'r') as fd:
groups = fd.read().strip().split('\n\n')
def count_shared_chars(raw_grp: str) -> int:
grp = raw_grp.split('\n')
return sum(1 if all(c in answer for answer in grp) else 0 for c in grp[0])
print(sum(count_shared_chars(group) for group in groups))
| with open('input', 'r') as fd:
groups = fd.read().strip().split('\n\n')
def count_shared_chars(raw_grp: str) -> int:
grp = raw_grp.split('\n')
return sum((1 if all((c in answer for answer in grp)) else 0 for c in grp[0]))
print(sum((count_shared_chars(group) for group in groups))) |
# https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/
class Solution:
def maxProfit(self, prices: list[int]) -> int:
max_profit = 0
last_no_stock = 0
last_have_stock = -prices[0]
last_sold_stock = -1
for price in prices[1:]:
curr_no_stock = max(last_no_stock, last_sold_stock)
curr_have_stock = max(last_have_stock, last_no_stock - price)
curr_sold_stock = last_have_stock + price
max_profit = max(
max_profit, curr_no_stock, curr_have_stock, curr_sold_stock)
last_no_stock = curr_no_stock
last_have_stock = curr_have_stock
last_sold_stock = curr_sold_stock
return max_profit
| class Solution:
def max_profit(self, prices: list[int]) -> int:
max_profit = 0
last_no_stock = 0
last_have_stock = -prices[0]
last_sold_stock = -1
for price in prices[1:]:
curr_no_stock = max(last_no_stock, last_sold_stock)
curr_have_stock = max(last_have_stock, last_no_stock - price)
curr_sold_stock = last_have_stock + price
max_profit = max(max_profit, curr_no_stock, curr_have_stock, curr_sold_stock)
last_no_stock = curr_no_stock
last_have_stock = curr_have_stock
last_sold_stock = curr_sold_stock
return max_profit |
class LibrusLoginError(Exception):
pass
class LibrusNotHandlerableError(Exception):
pass
class SynergiaNotFound(Exception):
pass
class LibrusInvalidPasswordError(Exception):
pass
class SynergiaAccessDenied(Exception):
pass
class WrongHTTPMethod(Exception):
pass
class SynergiaInvalidRequest(Exception):
pass
class TokenExpired(Exception):
pass
class SynergiaForbidden(Exception):
pass
class InvalidCacheManager(Exception):
pass
| class Librusloginerror(Exception):
pass
class Librusnothandlerableerror(Exception):
pass
class Synergianotfound(Exception):
pass
class Librusinvalidpassworderror(Exception):
pass
class Synergiaaccessdenied(Exception):
pass
class Wronghttpmethod(Exception):
pass
class Synergiainvalidrequest(Exception):
pass
class Tokenexpired(Exception):
pass
class Synergiaforbidden(Exception):
pass
class Invalidcachemanager(Exception):
pass |
#deleteListElements.py
colors = ["red", "blue", "orange", "black", "white", "golden"]
list2 = ["nose", "ice", "fire", "cat", "mouse", "dog"]
len_colors = len(colors)
len_list2 = len(list2)
if len_colors == len_list2:
for i in range(len_colors):
print(colors[i], "\t", list2[i])
#print("\n")
print()
del colors[0]
del list2[5]
len_colors = len(colors)
len_list2 = len(list2)
print("lists after deletion: ")
if len_colors == len_list2:
for i in range(len_colors):
print(colors[i],"\t", list2[i])
| colors = ['red', 'blue', 'orange', 'black', 'white', 'golden']
list2 = ['nose', 'ice', 'fire', 'cat', 'mouse', 'dog']
len_colors = len(colors)
len_list2 = len(list2)
if len_colors == len_list2:
for i in range(len_colors):
print(colors[i], '\t', list2[i])
print()
del colors[0]
del list2[5]
len_colors = len(colors)
len_list2 = len(list2)
print('lists after deletion: ')
if len_colors == len_list2:
for i in range(len_colors):
print(colors[i], '\t', list2[i]) |
# 1182. Shortest Distance to Target Color
# Runtime: 3768 ms, faster than 6.63% of Python3 online submissions for Shortest Distance to Target Color.
# Memory Usage: 38.2 MB, less than 24.70% of Python3 online submissions for Shortest Distance to Target Color.
class Solution:
# Dynamic Programming
def shortestDistanceColor(self, colors: list[int], queries: list[list[int]]) -> list[int]:
dist = [[-1] * len(colors) for _ in range(3)]
right_most = [0, 0, 0]
left_most = [len(colors) - 1, len(colors) - 1, len(colors) - 1]
# Iterating from left to right,
# and looking forwards to find the nearest target color on the left.
for i in range(len(colors)):
color = colors[i] - 1
for j in range(right_most[color], i + 1):
dist[color][j] = i - j
right_most[color] = i + 1
# Iterating from right to left,
# and looking backwards to find the nearest target color on the right.
for i in range(len(colors) - 1, -1, -1):
color = colors[i] - 1
for j in range(left_most[color], i - 1, -1):
if dist[color][j] == -1 or dist[color][j] > j - i:
dist[color][j] = j - i
left_most[color] = i - 1
return [dist[color - 1][index] for index, color in queries] | class Solution:
def shortest_distance_color(self, colors: list[int], queries: list[list[int]]) -> list[int]:
dist = [[-1] * len(colors) for _ in range(3)]
right_most = [0, 0, 0]
left_most = [len(colors) - 1, len(colors) - 1, len(colors) - 1]
for i in range(len(colors)):
color = colors[i] - 1
for j in range(right_most[color], i + 1):
dist[color][j] = i - j
right_most[color] = i + 1
for i in range(len(colors) - 1, -1, -1):
color = colors[i] - 1
for j in range(left_most[color], i - 1, -1):
if dist[color][j] == -1 or dist[color][j] > j - i:
dist[color][j] = j - i
left_most[color] = i - 1
return [dist[color - 1][index] for (index, color) in queries] |
# You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take turns to flip two consecutive "++" into "--". The game ends when a person can no longer make a move and therefore the other person will be the winner.
#
# Write a function to compute all possible states of the string after one valid move.
#
# Example
# Given s = "++++", after one move, it may become one of the following states:
#
# [
# "--++",
# "+--+",
# "++--"
# ]
# If there is no valid move, return an empty list [].
class Solution:
def generatePossibleNextMoves(self, s):
# write your code here
if len(s) <= 1: return []
res = []
for i in range(len(s)-1):
if s[i] == s[i+1] and s[i] == '+':
res.append(s[:i] + '--' + s[i+2:])
return res
| class Solution:
def generate_possible_next_moves(self, s):
if len(s) <= 1:
return []
res = []
for i in range(len(s) - 1):
if s[i] == s[i + 1] and s[i] == '+':
res.append(s[:i] + '--' + s[i + 2:])
return res |
def binit_r(x):
leng = 13
if (x<0):
y = x + 8
else:
y = x
str = bin(y)[2:]
while len(str) < 3:
str = '0' + str
while len(str) < leng:
if x<0:
str = '1' + str
else:
str = '0' + str
while len(str) > leng:
str = str[1:]
return str
list = [ [0,0], [0,1], [1,1] ]
temp = []
for i in range(701):
temp += list[i%3]
for i in range(1402):
print(temp[i],end="")
print("\n")
| def binit_r(x):
leng = 13
if x < 0:
y = x + 8
else:
y = x
str = bin(y)[2:]
while len(str) < 3:
str = '0' + str
while len(str) < leng:
if x < 0:
str = '1' + str
else:
str = '0' + str
while len(str) > leng:
str = str[1:]
return str
list = [[0, 0], [0, 1], [1, 1]]
temp = []
for i in range(701):
temp += list[i % 3]
for i in range(1402):
print(temp[i], end='')
print('\n') |
def minRewards(scores):
rewards = [1] * len(scores)
#start from index 1, move left to right
for i in range(1, len(scores)):
#if number greater then prev num, reward = reward of prev num +1
if scores[i] > scores[i-1]:
rewards[i] = rewards[i-1] + 1
print(rewards)
#start at one before last, move right to left(reversed)
for i in range(len(scores)-2, -1, -1):
#if number greater then next num, reward = MAX OF reward of next num +1 OR current reward
# max for accomodating edge case where current reward is higher because of left to right iteration
if scores[i] > scores[i+1]:
rewards[i] = max(rewards[i+1]+1, rewards[i])
print(rewards)
return sum(rewards)
| def min_rewards(scores):
rewards = [1] * len(scores)
for i in range(1, len(scores)):
if scores[i] > scores[i - 1]:
rewards[i] = rewards[i - 1] + 1
print(rewards)
for i in range(len(scores) - 2, -1, -1):
if scores[i] > scores[i + 1]:
rewards[i] = max(rewards[i + 1] + 1, rewards[i])
print(rewards)
return sum(rewards) |
class MonsterList:
monsters = [
{
"id": 1,
"name": "Goblin",
"level": 1,
"hd": 4,
"atk": 2,
"ac": 2,
"total": 8,
"type": "humanoid",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "",
"": 26
},
{
"id": 2,
"name": "Kobold",
"level": 1,
"hd": 3,
"atk": 3,
"ac": 1,
"total": 7,
"type": "humanoid",
"subtype": "",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 3,
"name": "Dog",
"level": 1,
"hd": 2,
"atk": 4,
"ac": 2,
"total": 8,
"type": "animal",
"subtype": "mammal",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 4,
"name": "Jelly",
"level": 1,
"hd": 5,
"atk": 1,
"ac": 4,
"total": 10,
"type": "aberration",
"subtype": "",
"atk_type": "acid",
"resist": "acid",
"vulnerability": "electric",
"special": "melt",
"": ""
},
{
"id": 5,
"name": "Skeleton",
"level": 2,
"hd": 3,
"atk": 4,
"ac": 3,
"total": 10,
"type": "humanoid",
"subtype": "undead",
"atk_type": "slash",
"resist": "slash",
"vulnerability": "blunt",
"special": "",
"": ""
},
{
"id": 6,
"name": "Orc",
"level": 2,
"hd": 4,
"atk": 3,
"ac": 3,
"total": 10,
"type": "humanoid",
"subtype": "",
"atk_type": "blunt",
"resist": "",
"vulnerability": "",
"special": "sunder",
"": ""
},
{
"id": 7,
"name": "Slime",
"level": 2,
"hd": 7,
"atk": 3,
"ac": 5,
"total": 15,
"type": "aberration",
"subtype": "",
"atk_type": "acid",
"resist": "acid",
"vulnerability": "electric",
"special": "melt",
"": ""
},
{
"id": 8,
"name": "Wolf",
"level": 2,
"hd": 3,
"atk": 4,
"ac": 3,
"total": 10,
"type": "animal",
"subtype": "mammal",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 9,
"name": "Imp",
"level": 2,
"hd": 3,
"atk": 5,
"ac": 3,
"total": 11,
"type": "demon",
"subtype": "",
"atk_type": "fire",
"resist": "fire",
"vulnerability": "cold",
"special": "burn",
"": ""
},
{
"id": 10,
"name": "Gnoll",
"level": 3,
"hd": 4,
"atk": 4,
"ac": 3,
"total": 11,
"type": "humanoid",
"subtype": "",
"atk_type": "blunt",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 11,
"name": "Zombie",
"level": 3,
"hd": 7,
"atk": 3,
"ac": 5,
"total": 15,
"type": "humanoid",
"subtype": "undead",
"atk_type": "blunt",
"resist": "cold",
"vulnerability": "fire",
"special": "",
"": ""
},
{
"id": 12,
"name": "Python",
"level": 3,
"hd": 5,
"atk": 5,
"ac": 5,
"total": 15,
"type": "animal",
"subtype": "reptile",
"atk_type": "grab",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 13,
"name": "Spectre",
"level": 4,
"hd": 6,
"atk": 6,
"ac": 4,
"total": 16,
"type": "humanoid",
"subtype": "undead",
"atk_type": "touch",
"resist": "",
"vulnerability": "",
"special": "drain",
"": ""
},
{
"id": 14,
"name": "Griffon",
"level": 4,
"hd": 5,
"atk": 7,
"ac": 4,
"total": 16,
"type": "animal",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 15,
"name": "Ogre",
"level": 4,
"hd": 7,
"atk": 7,
"ac": 5,
"total": 19,
"type": "humanoid",
"subtype": "",
"atk_type": "blunt",
"resist": "",
"vulnerability": "",
"special": "sunder",
"": ""
},
{
"id": 16,
"name": "Quasit",
"level": 4,
"hd": 4,
"atk": 5,
"ac": 7,
"total": 16,
"type": "demon",
"subtype": "",
"atk_type": "cold",
"resist": "pierce",
"vulnerability": "slash",
"special": "freeze",
"": ""
},
{
"id": 17,
"name": "Ooze",
"level": 4,
"hd": 8,
"atk": 3,
"ac": 5,
"total": 16,
"type": "aberration",
"subtype": "",
"atk_type": "acid",
"resist": "electric",
"vulnerability": "fire",
"special": "melt",
"": ""
},
{
"id": 18,
"name": "Spider",
"level": 5,
"hd": 6,
"atk": 8,
"ac": 7,
"total": 21,
"type": "animal",
"subtype": "insect",
"atk_type": "pierce",
"resist": "pierce",
"vulnerability": "fire",
"special": "drain",
"": ""
},
{
"id": 19,
"name": "Shambler",
"level": 5,
"hd": 7,
"atk": 8,
"ac": 5,
"total": 20,
"type": "aberration",
"subtype": "",
"atk_type": "blunt",
"resist": "fire",
"vulnerability": "slash",
"special": "",
"": ""
},
{
"id": 20,
"name": "Wraith",
"level": 5,
"hd": 5,
"atk": 8,
"ac": 11,
"total": 24,
"type": "humanoid",
"subtype": "undead",
"atk_type": "cold",
"resist": "cold",
"vulnerability": "electric",
"special": "drain",
"": ""
},
{
"id": 21,
"name": "Werewolf",
"level": 5,
"hd": 6,
"atk": 8,
"ac": 7,
"total": 21,
"type": "animal",
"subtype": "mammal",
"atk_type": "slash",
"resist": "blunt",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 22,
"name": "Drake",
"level": 5,
"hd": 9,
"atk": 8,
"ac": 9,
"total": 26,
"type": "dragon",
"subtype": "",
"atk_type": "slash",
"resist": "fire",
"vulnerability": "cold",
"special": "burn",
"": ""
},
{
"id": 23,
"name": "Gremlin",
"level": 6,
"hd": 7,
"atk": 9,
"ac": 8,
"total": 24,
"type": "demon",
"subtype": "",
"atk_type": "acid",
"resist": "fire",
"vulnerability": "blunt",
"special": "melt",
"": ""
},
{
"id": 24,
"name": "Panther",
"level": 6,
"hd": 6,
"atk": 11,
"ac": 9,
"total": 26,
"type": "animal",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 25,
"name": "Automaton",
"level": 6,
"hd": 10,
"atk": 8,
"ac": 8,
"total": 26,
"type": "humanoid",
"subtype": "construct",
"atk_type": "electric",
"resist": "blunt",
"vulnerability": "pierce",
"special": "shock",
"": ""
},
{
"id": 26,
"name": "Bugbear",
"level": 6,
"hd": 8,
"atk": 10,
"ac": 9,
"total": 27,
"type": "humanoid",
"subtype": "",
"atk_type": "blunt",
"resist": "",
"vulnerability": "",
"special": "sunder",
"": ""
},
{
"id": 27,
"name": "Crab",
"level": 7,
"hd": 8,
"atk": 10,
"ac": 12,
"total": 30,
"type": "animal",
"subtype": "insect",
"atk_type": "slash",
"resist": "slash",
"vulnerability": "cold",
"special": "",
"": ""
},
{
"id": 28,
"name": "Lizardman",
"level": 7,
"hd": 10,
"atk": 10,
"ac": 10,
"total": 30,
"type": "humanoid",
"subtype": "",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 29,
"name": "Ghoul",
"level": 7,
"hd": 9,
"atk": 11,
"ac": 11,
"total": 31,
"type": "humanoid",
"subtype": "undead",
"atk_type": "slash",
"resist": "cold",
"vulnerability": "fire",
"special": "drain",
"": ""
},
{
"id": 30,
"name": "Gargoyle",
"level": 7,
"hd": 12,
"atk": 8,
"ac": 10,
"total": 30,
"type": "humanoid",
"subtype": "construct",
"atk_type": "slash",
"resist": "blunt",
"vulnerability": "cold",
"special": "",
"": ""
},
{
"id": 31,
"name": "Minotaur",
"level": 8,
"hd": 8,
"atk": 11,
"ac": 9,
"total": 34,
"type": "humanoid",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "sunder",
"": ""
},
{
"id": 32,
"name": "Bear",
"level": 8,
"hd": 9,
"atk": 11,
"ac": 5,
"total": 31,
"type": "animal",
"subtype": "",
"atk_type": "grab",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 33,
"name": "Golem",
"level": 8,
"hd": 10,
"atk": 10,
"ac": 10,
"total": 36,
"type": "humanoid",
"subtype": "construct",
"atk_type": "blunt",
"resist": "slash",
"vulnerability": "electric",
"special": "",
"": ""
},
{
"id": 34,
"name": "Shadow",
"level": 8,
"hd": 7,
"atk": 13,
"ac": 7,
"total": 33,
"type": "humanoid",
"subtype": "undead",
"atk_type": "touch",
"resist": "electric",
"vulnerability": "fire",
"special": "drain",
"": ""
},
{
"id": 35,
"name": "Centaur",
"level": 9,
"hd": 11,
"atk": 13,
"ac": 12,
"total": 39,
"type": "humanoid",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 36,
"name": "Eagle",
"level": 9,
"hd": 10,
"atk": 15,
"ac": 13,
"total": 41,
"type": "animal",
"subtype": "bird",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 37,
"name": "Yeti",
"level": 9,
"hd": 14,
"atk": 12,
"ac": 12,
"total": 41,
"type": "humanoid",
"subtype": "",
"atk_type": "blunt",
"resist": "cold",
"vulnerability": "fire",
"special": "freeze",
"": ""
},
{
"id": 38,
"name": "Wyvern",
"level": 9,
"hd": 12,
"atk": 14,
"ac": 13,
"total": 42,
"type": "dragon",
"subtype": "",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "drain",
"": ""
},
{
"id": 27,
"name": "Tiger",
"level": 10,
"hd": 11,
"atk": 13,
"ac": 15,
"total": 30,
"type": "animal",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 28,
"name": "Hag",
"level": 10,
"hd": 13,
"atk": 13,
"ac": 13,
"total": 30,
"type": "humanoid",
"subtype": "",
"atk_type": "fire",
"resist": "fire",
"vulnerability": "pierce",
"special": "burn",
"": ""
},
{
"id": 29,
"name": "Will-o-wisp",
"level": 10,
"hd": 12,
"atk": 14,
"ac": 14,
"total": 31,
"type": "humanoid",
"subtype": "fae",
"atk_type": "electric",
"resist": "electric",
"vulnerability": "blunt",
"special": "shock",
"": ""
},
{
"id": 30,
"name": "Hell Hound",
"level": 10,
"hd": 15,
"atk": 11,
"ac": 13,
"total": 30,
"type": "demon",
"subtype": "",
"atk_type": "fire",
"resist": "fire",
"vulnerability": "cold",
"special": "burn",
"": ""
},
{
"id": 31,
"name": "Scorpion",
"level": 11,
"hd": 12,
"atk": 15,
"ac": 13,
"total": 34,
"type": "animal",
"subtype": "insect",
"atk_type": "pierce",
"resist": "slash",
"vulnerability": "blunt",
"special": "drain",
"": ""
},
{
"id": 32,
"name": "Mummy",
"level": 11,
"hd": 13,
"atk": 15,
"ac": 9,
"total": 31,
"type": "humanoid",
"subtype": "undead",
"atk_type": "blunt",
"resist": "cold",
"vulnerability": "fire",
"special": "drain",
"": ""
},
{
"id": 33,
"name": "Tentaculus",
"level": 11,
"hd": 14,
"atk": 14,
"ac": 14,
"total": 36,
"type": "aberration",
"subtype": "",
"atk_type": "grab",
"resist": "blunt",
"vulnerability": "slash",
"special": "melt",
"": ""
},
{
"id": 34,
"name": "Troll",
"level": 11,
"hd": 11,
"atk": 17,
"ac": 11,
"total": 33,
"type": "humanoid",
"subtype": "",
"atk_type": "slash",
"resist": "pierce",
"vulnerability": "fire",
"special": "",
"": ""
},
{
"id": 35,
"name": "Naga",
"level": 12,
"hd": 12,
"atk": 14,
"ac": 13,
"total": 39,
"type": "demon",
"subtype": "",
"atk_type": "grab",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 36,
"name": "Chimera",
"level": 12,
"hd": 11,
"atk": 16,
"ac": 14,
"total": 41,
"type": "animal",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 37,
"name": "Vampire",
"level": 12,
"hd": 15,
"atk": 13,
"ac": 13,
"total": 41,
"type": "humanoid",
"subtype": "undead",
"atk_type": "pierce",
"resist": "electric",
"vulnerability": "fire",
"special": "drain",
"": ""
},
{
"id": 38,
"name": "Manticore",
"level": 12,
"hd": 13,
"atk": 15,
"ac": 14,
"total": 42,
"type": "animal",
"subtype": "",
"atk_type": "pierce",
"resist": "",
"vulnerability": "",
"special": "",
"": ""
},
{
"id": 39,
"name": "Ghost",
"level": 13,
"hd": 13,
"atk": 15,
"ac": 17,
"total": 45,
"type": "humanoid",
"subtype": "undead",
"atk_type": "touch",
"resist": "slash",
"vulnerability": "",
"special": "drain",
"": ""
},
{
"id": 40,
"name": "Giant",
"level": 13,
"hd": 15,
"atk": 15,
"ac": 15,
"total": 45,
"type": "humanoid",
"subtype": "",
"atk_type": "blunt",
"resist": "",
"vulnerability": "",
"special": "sunder",
"": ""
},
{
"id": 41,
"name": "Wyrm",
"level": 13,
"hd": 14,
"atk": 16,
"ac": 16,
"total": 46,
"type": "dragon",
"subtype": "",
"atk_type": "fire",
"resist": "pierce",
"vulnerability": "cold",
"special": "burn",
"": ""
},
{
"id": 42,
"name": "Horror",
"level": 13,
"hd": 17,
"atk": 13,
"ac": 15,
"total": 45,
"type": "aberration",
"subtype": "",
"atk_type": "grab",
"resist": "fire",
"vulnerability": "electric",
"special": "drain",
"": ""
},
{
"id": 43,
"name": "Death Knight",
"level": 14,
"hd": 15,
"atk": 18,
"ac": 16,
"total": 49,
"type": "humanoid",
"subtype": "undead",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "freeze",
"": ""
},
{
"id": 44,
"name": "Hydra",
"level": 14,
"hd": 16,
"atk": 18,
"ac": 12,
"total": 46,
"type": "animal",
"subtype": "reptile",
"atk_type": "pierce",
"resist": "slash",
"vulnerability": "fire",
"special": "",
"": ""
},
{
"id": 45,
"name": "Titan",
"level": 14,
"hd": 17,
"atk": 17,
"ac": 17,
"total": 51,
"type": "humanoid",
"subtype": "",
"atk_type": "slash",
"resist": "",
"vulnerability": "",
"special": "sunder",
"": ""
},
{
"id": 46,
"name": "Demon",
"level": 14,
"hd": 14,
"atk": 20,
"ac": 14,
"total": 48,
"type": "demon",
"subtype": "",
"atk_type": "pierce",
"resist": "fire",
"vulnerability": "acid",
"special": "burn",
"": ""
}
]
descriptors = {
"humanoid" : [
"Big",
"Burly",
"Massive",
"Hulking",
"Monstrous"
],
"animal" : [
"Wild",
"Snarling",
"Vicious",
"Rabid",
"Dire"
],
"reptile" : [
"Hissing",
"Lurking",
"Vicious",
"Striking",
"Dire"
],
"insect" : [
"Shiny",
"Chittering",
"Gangly",
"Chitinous",
"Looming"
],
"undead" : [
"Spooky",
"Moaning",
"Rotting",
"Wailing",
"Eternal"
],
"fae" : [
"Glittering",
"Glamoured",
"Forest",
"Ancient",
"First"
],
"construct" : [
"Wooden",
"Clay",
"Stone",
"Iron",
"Crystal"
],
"aberration" : [
"Weird",
"Strange",
"Confusing",
"Horrifying",
"Insane"
],
"demon" : [
"Smoking",
"Glowing",
"Flaming",
"Inferno",
"Holocaust"
],
"dragon" : [
"Young",
"Mature",
"Gleaming",
"Ancent",
"Elder"
]
}
bossDescriptors = {
"humanoid" : [
("", "King"),
("Mighty", "Warrior"),
("Ultimate", "")
],
"animal" : [
("Prehistoric", ""),
("Legendary", ""),
("", "of the Wildlands")
],
"reptile" : [
("Enormous", ""),
("Cthonic", ""),
("Fanged", "")
],
"insect" : [
("", "Queen"),
("Emerald", ""),
("Winged", "")
],
"undead" : [
("", "Lord"),
("Unholy", ""),
("", "of Nightmares")
],
"fae" : [
("", "Noble"),
("Unseelie", ""),
("", "of the Deep Green")
],
"aberration" : [
("Royal", ""),
("Great Old", ""),
("", "That Never Sleeps")
],
"demon" : [
("Noble", "of Dis"),
("Damned", ""),
("", "Torturer")
],
"dragon" : [
("Mother", ""),
("Golden-Winged", ""),
("Black", "of the Pit")
]
}
bossQuotes = {
"humanoid" : [
'"You\'ll never survive me!"',
'"I\'m your worst nightmare!"',
'"Come a little closer..."'
],
"animal" : [
"It roars a challenge!",
"The ground shakes as it stomps toward you!",
"You feel its eyes on you..."
],
"insect" : [
"Venom drips from its fangs!",
"It chitters menacingly...",
"It gathers itself to strike..."
],
"undead" : [
'"Join me in the world beyond life!"',
"Its eyes glow with a cold light...",
'"Life is wasted on the living!"'
],
"fae" : [
'It whispers eldritch words you half understand...',
"You feel drawn toward another realm...",
'It suddenly appears right next to you!'
],
"construct" : [
'Gears grind within its body...',
"Lifeless eyes track your movement...",
'It relentlessly pursues you!'
],
"aberration" : [
"It contorts weirdly...",
"You see unnatural shapes in its surface...",
"It surges toward you!"
],
"demon" : [
'"The underworld awaits!"',
'"Time to pay for your sins!"',
'"Feel the flames of the Abyss!"'
],
"dragon" : [
'"You look tasty..."',
"It coils itself, ready to attack!",
'"My treasures are mine alone!"'
]
}
atkVerbs = {
"slash": [
"slashes",
"cuts",
"hacks"
],
"pierce": [
"stabs",
"pokes",
"impales"
],
"blunt": [
"bashes",
"smashes",
"crushes"
],
"touch": [
"touches",
"grips",
"gropes"
],
"grab": [
"grabs",
"squeezes",
"crushes"
],
"fire": [
"scorches",
"burns",
"chars"
],
"cold": [
"freezes",
"chills",
"frosts"
],
"electric": [
"zaps",
"shocks",
"jolts"
],
"acid": [
"dissolves",
"burns",
"melts"
],
"animal": {
"slash": [
"claws",
"rakes",
"slashes"
],
"pierce": [
"bites",
"gnaws",
"chews"
]
},
"aberration": {
"grab": [
"engulfs",
"smothers",
"grapples"
],
"blunt": [
"slams",
"slaps",
"mangles"
]
},
"demon": {},
"dragon": {
"slash": [
"claws",
"rakes",
"slashes"
],
"pierce": [
"impales",
"stings",
"bites"
]
},
"insect": {
"pierce": [
"impales",
"stings",
"bites"
]
}
} | class Monsterlist:
monsters = [{'id': 1, 'name': 'Goblin', 'level': 1, 'hd': 4, 'atk': 2, 'ac': 2, 'total': 8, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': 26}, {'id': 2, 'name': 'Kobold', 'level': 1, 'hd': 3, 'atk': 3, 'ac': 1, 'total': 7, 'type': 'humanoid', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 3, 'name': 'Dog', 'level': 1, 'hd': 2, 'atk': 4, 'ac': 2, 'total': 8, 'type': 'animal', 'subtype': 'mammal', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 4, 'name': 'Jelly', 'level': 1, 'hd': 5, 'atk': 1, 'ac': 4, 'total': 10, 'type': 'aberration', 'subtype': '', 'atk_type': 'acid', 'resist': 'acid', 'vulnerability': 'electric', 'special': 'melt', '': ''}, {'id': 5, 'name': 'Skeleton', 'level': 2, 'hd': 3, 'atk': 4, 'ac': 3, 'total': 10, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'slash', 'resist': 'slash', 'vulnerability': 'blunt', 'special': '', '': ''}, {'id': 6, 'name': 'Orc', 'level': 2, 'hd': 4, 'atk': 3, 'ac': 3, 'total': 10, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 7, 'name': 'Slime', 'level': 2, 'hd': 7, 'atk': 3, 'ac': 5, 'total': 15, 'type': 'aberration', 'subtype': '', 'atk_type': 'acid', 'resist': 'acid', 'vulnerability': 'electric', 'special': 'melt', '': ''}, {'id': 8, 'name': 'Wolf', 'level': 2, 'hd': 3, 'atk': 4, 'ac': 3, 'total': 10, 'type': 'animal', 'subtype': 'mammal', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 9, 'name': 'Imp', 'level': 2, 'hd': 3, 'atk': 5, 'ac': 3, 'total': 11, 'type': 'demon', 'subtype': '', 'atk_type': 'fire', 'resist': 'fire', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 10, 'name': 'Gnoll', 'level': 3, 'hd': 4, 'atk': 4, 'ac': 3, 'total': 11, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 11, 'name': 'Zombie', 'level': 3, 'hd': 7, 'atk': 3, 'ac': 5, 'total': 15, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'blunt', 'resist': 'cold', 'vulnerability': 'fire', 'special': '', '': ''}, {'id': 12, 'name': 'Python', 'level': 3, 'hd': 5, 'atk': 5, 'ac': 5, 'total': 15, 'type': 'animal', 'subtype': 'reptile', 'atk_type': 'grab', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 13, 'name': 'Spectre', 'level': 4, 'hd': 6, 'atk': 6, 'ac': 4, 'total': 16, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'touch', 'resist': '', 'vulnerability': '', 'special': 'drain', '': ''}, {'id': 14, 'name': 'Griffon', 'level': 4, 'hd': 5, 'atk': 7, 'ac': 4, 'total': 16, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 15, 'name': 'Ogre', 'level': 4, 'hd': 7, 'atk': 7, 'ac': 5, 'total': 19, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 16, 'name': 'Quasit', 'level': 4, 'hd': 4, 'atk': 5, 'ac': 7, 'total': 16, 'type': 'demon', 'subtype': '', 'atk_type': 'cold', 'resist': 'pierce', 'vulnerability': 'slash', 'special': 'freeze', '': ''}, {'id': 17, 'name': 'Ooze', 'level': 4, 'hd': 8, 'atk': 3, 'ac': 5, 'total': 16, 'type': 'aberration', 'subtype': '', 'atk_type': 'acid', 'resist': 'electric', 'vulnerability': 'fire', 'special': 'melt', '': ''}, {'id': 18, 'name': 'Spider', 'level': 5, 'hd': 6, 'atk': 8, 'ac': 7, 'total': 21, 'type': 'animal', 'subtype': 'insect', 'atk_type': 'pierce', 'resist': 'pierce', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 19, 'name': 'Shambler', 'level': 5, 'hd': 7, 'atk': 8, 'ac': 5, 'total': 20, 'type': 'aberration', 'subtype': '', 'atk_type': 'blunt', 'resist': 'fire', 'vulnerability': 'slash', 'special': '', '': ''}, {'id': 20, 'name': 'Wraith', 'level': 5, 'hd': 5, 'atk': 8, 'ac': 11, 'total': 24, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'cold', 'resist': 'cold', 'vulnerability': 'electric', 'special': 'drain', '': ''}, {'id': 21, 'name': 'Werewolf', 'level': 5, 'hd': 6, 'atk': 8, 'ac': 7, 'total': 21, 'type': 'animal', 'subtype': 'mammal', 'atk_type': 'slash', 'resist': 'blunt', 'vulnerability': '', 'special': '', '': ''}, {'id': 22, 'name': 'Drake', 'level': 5, 'hd': 9, 'atk': 8, 'ac': 9, 'total': 26, 'type': 'dragon', 'subtype': '', 'atk_type': 'slash', 'resist': 'fire', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 23, 'name': 'Gremlin', 'level': 6, 'hd': 7, 'atk': 9, 'ac': 8, 'total': 24, 'type': 'demon', 'subtype': '', 'atk_type': 'acid', 'resist': 'fire', 'vulnerability': 'blunt', 'special': 'melt', '': ''}, {'id': 24, 'name': 'Panther', 'level': 6, 'hd': 6, 'atk': 11, 'ac': 9, 'total': 26, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 25, 'name': 'Automaton', 'level': 6, 'hd': 10, 'atk': 8, 'ac': 8, 'total': 26, 'type': 'humanoid', 'subtype': 'construct', 'atk_type': 'electric', 'resist': 'blunt', 'vulnerability': 'pierce', 'special': 'shock', '': ''}, {'id': 26, 'name': 'Bugbear', 'level': 6, 'hd': 8, 'atk': 10, 'ac': 9, 'total': 27, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 27, 'name': 'Crab', 'level': 7, 'hd': 8, 'atk': 10, 'ac': 12, 'total': 30, 'type': 'animal', 'subtype': 'insect', 'atk_type': 'slash', 'resist': 'slash', 'vulnerability': 'cold', 'special': '', '': ''}, {'id': 28, 'name': 'Lizardman', 'level': 7, 'hd': 10, 'atk': 10, 'ac': 10, 'total': 30, 'type': 'humanoid', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 29, 'name': 'Ghoul', 'level': 7, 'hd': 9, 'atk': 11, 'ac': 11, 'total': 31, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'slash', 'resist': 'cold', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 30, 'name': 'Gargoyle', 'level': 7, 'hd': 12, 'atk': 8, 'ac': 10, 'total': 30, 'type': 'humanoid', 'subtype': 'construct', 'atk_type': 'slash', 'resist': 'blunt', 'vulnerability': 'cold', 'special': '', '': ''}, {'id': 31, 'name': 'Minotaur', 'level': 8, 'hd': 8, 'atk': 11, 'ac': 9, 'total': 34, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 32, 'name': 'Bear', 'level': 8, 'hd': 9, 'atk': 11, 'ac': 5, 'total': 31, 'type': 'animal', 'subtype': '', 'atk_type': 'grab', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 33, 'name': 'Golem', 'level': 8, 'hd': 10, 'atk': 10, 'ac': 10, 'total': 36, 'type': 'humanoid', 'subtype': 'construct', 'atk_type': 'blunt', 'resist': 'slash', 'vulnerability': 'electric', 'special': '', '': ''}, {'id': 34, 'name': 'Shadow', 'level': 8, 'hd': 7, 'atk': 13, 'ac': 7, 'total': 33, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'touch', 'resist': 'electric', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 35, 'name': 'Centaur', 'level': 9, 'hd': 11, 'atk': 13, 'ac': 12, 'total': 39, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 36, 'name': 'Eagle', 'level': 9, 'hd': 10, 'atk': 15, 'ac': 13, 'total': 41, 'type': 'animal', 'subtype': 'bird', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 37, 'name': 'Yeti', 'level': 9, 'hd': 14, 'atk': 12, 'ac': 12, 'total': 41, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': 'cold', 'vulnerability': 'fire', 'special': 'freeze', '': ''}, {'id': 38, 'name': 'Wyvern', 'level': 9, 'hd': 12, 'atk': 14, 'ac': 13, 'total': 42, 'type': 'dragon', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': 'drain', '': ''}, {'id': 27, 'name': 'Tiger', 'level': 10, 'hd': 11, 'atk': 13, 'ac': 15, 'total': 30, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 28, 'name': 'Hag', 'level': 10, 'hd': 13, 'atk': 13, 'ac': 13, 'total': 30, 'type': 'humanoid', 'subtype': '', 'atk_type': 'fire', 'resist': 'fire', 'vulnerability': 'pierce', 'special': 'burn', '': ''}, {'id': 29, 'name': 'Will-o-wisp', 'level': 10, 'hd': 12, 'atk': 14, 'ac': 14, 'total': 31, 'type': 'humanoid', 'subtype': 'fae', 'atk_type': 'electric', 'resist': 'electric', 'vulnerability': 'blunt', 'special': 'shock', '': ''}, {'id': 30, 'name': 'Hell Hound', 'level': 10, 'hd': 15, 'atk': 11, 'ac': 13, 'total': 30, 'type': 'demon', 'subtype': '', 'atk_type': 'fire', 'resist': 'fire', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 31, 'name': 'Scorpion', 'level': 11, 'hd': 12, 'atk': 15, 'ac': 13, 'total': 34, 'type': 'animal', 'subtype': 'insect', 'atk_type': 'pierce', 'resist': 'slash', 'vulnerability': 'blunt', 'special': 'drain', '': ''}, {'id': 32, 'name': 'Mummy', 'level': 11, 'hd': 13, 'atk': 15, 'ac': 9, 'total': 31, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'blunt', 'resist': 'cold', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 33, 'name': 'Tentaculus', 'level': 11, 'hd': 14, 'atk': 14, 'ac': 14, 'total': 36, 'type': 'aberration', 'subtype': '', 'atk_type': 'grab', 'resist': 'blunt', 'vulnerability': 'slash', 'special': 'melt', '': ''}, {'id': 34, 'name': 'Troll', 'level': 11, 'hd': 11, 'atk': 17, 'ac': 11, 'total': 33, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': 'pierce', 'vulnerability': 'fire', 'special': '', '': ''}, {'id': 35, 'name': 'Naga', 'level': 12, 'hd': 12, 'atk': 14, 'ac': 13, 'total': 39, 'type': 'demon', 'subtype': '', 'atk_type': 'grab', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 36, 'name': 'Chimera', 'level': 12, 'hd': 11, 'atk': 16, 'ac': 14, 'total': 41, 'type': 'animal', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 37, 'name': 'Vampire', 'level': 12, 'hd': 15, 'atk': 13, 'ac': 13, 'total': 41, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'pierce', 'resist': 'electric', 'vulnerability': 'fire', 'special': 'drain', '': ''}, {'id': 38, 'name': 'Manticore', 'level': 12, 'hd': 13, 'atk': 15, 'ac': 14, 'total': 42, 'type': 'animal', 'subtype': '', 'atk_type': 'pierce', 'resist': '', 'vulnerability': '', 'special': '', '': ''}, {'id': 39, 'name': 'Ghost', 'level': 13, 'hd': 13, 'atk': 15, 'ac': 17, 'total': 45, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'touch', 'resist': 'slash', 'vulnerability': '', 'special': 'drain', '': ''}, {'id': 40, 'name': 'Giant', 'level': 13, 'hd': 15, 'atk': 15, 'ac': 15, 'total': 45, 'type': 'humanoid', 'subtype': '', 'atk_type': 'blunt', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 41, 'name': 'Wyrm', 'level': 13, 'hd': 14, 'atk': 16, 'ac': 16, 'total': 46, 'type': 'dragon', 'subtype': '', 'atk_type': 'fire', 'resist': 'pierce', 'vulnerability': 'cold', 'special': 'burn', '': ''}, {'id': 42, 'name': 'Horror', 'level': 13, 'hd': 17, 'atk': 13, 'ac': 15, 'total': 45, 'type': 'aberration', 'subtype': '', 'atk_type': 'grab', 'resist': 'fire', 'vulnerability': 'electric', 'special': 'drain', '': ''}, {'id': 43, 'name': 'Death Knight', 'level': 14, 'hd': 15, 'atk': 18, 'ac': 16, 'total': 49, 'type': 'humanoid', 'subtype': 'undead', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': 'freeze', '': ''}, {'id': 44, 'name': 'Hydra', 'level': 14, 'hd': 16, 'atk': 18, 'ac': 12, 'total': 46, 'type': 'animal', 'subtype': 'reptile', 'atk_type': 'pierce', 'resist': 'slash', 'vulnerability': 'fire', 'special': '', '': ''}, {'id': 45, 'name': 'Titan', 'level': 14, 'hd': 17, 'atk': 17, 'ac': 17, 'total': 51, 'type': 'humanoid', 'subtype': '', 'atk_type': 'slash', 'resist': '', 'vulnerability': '', 'special': 'sunder', '': ''}, {'id': 46, 'name': 'Demon', 'level': 14, 'hd': 14, 'atk': 20, 'ac': 14, 'total': 48, 'type': 'demon', 'subtype': '', 'atk_type': 'pierce', 'resist': 'fire', 'vulnerability': 'acid', 'special': 'burn', '': ''}]
descriptors = {'humanoid': ['Big', 'Burly', 'Massive', 'Hulking', 'Monstrous'], 'animal': ['Wild', 'Snarling', 'Vicious', 'Rabid', 'Dire'], 'reptile': ['Hissing', 'Lurking', 'Vicious', 'Striking', 'Dire'], 'insect': ['Shiny', 'Chittering', 'Gangly', 'Chitinous', 'Looming'], 'undead': ['Spooky', 'Moaning', 'Rotting', 'Wailing', 'Eternal'], 'fae': ['Glittering', 'Glamoured', 'Forest', 'Ancient', 'First'], 'construct': ['Wooden', 'Clay', 'Stone', 'Iron', 'Crystal'], 'aberration': ['Weird', 'Strange', 'Confusing', 'Horrifying', 'Insane'], 'demon': ['Smoking', 'Glowing', 'Flaming', 'Inferno', 'Holocaust'], 'dragon': ['Young', 'Mature', 'Gleaming', 'Ancent', 'Elder']}
boss_descriptors = {'humanoid': [('', 'King'), ('Mighty', 'Warrior'), ('Ultimate', '')], 'animal': [('Prehistoric', ''), ('Legendary', ''), ('', 'of the Wildlands')], 'reptile': [('Enormous', ''), ('Cthonic', ''), ('Fanged', '')], 'insect': [('', 'Queen'), ('Emerald', ''), ('Winged', '')], 'undead': [('', 'Lord'), ('Unholy', ''), ('', 'of Nightmares')], 'fae': [('', 'Noble'), ('Unseelie', ''), ('', 'of the Deep Green')], 'aberration': [('Royal', ''), ('Great Old', ''), ('', 'That Never Sleeps')], 'demon': [('Noble', 'of Dis'), ('Damned', ''), ('', 'Torturer')], 'dragon': [('Mother', ''), ('Golden-Winged', ''), ('Black', 'of the Pit')]}
boss_quotes = {'humanoid': ['"You\'ll never survive me!"', '"I\'m your worst nightmare!"', '"Come a little closer..."'], 'animal': ['It roars a challenge!', 'The ground shakes as it stomps toward you!', 'You feel its eyes on you...'], 'insect': ['Venom drips from its fangs!', 'It chitters menacingly...', 'It gathers itself to strike...'], 'undead': ['"Join me in the world beyond life!"', 'Its eyes glow with a cold light...', '"Life is wasted on the living!"'], 'fae': ['It whispers eldritch words you half understand...', 'You feel drawn toward another realm...', 'It suddenly appears right next to you!'], 'construct': ['Gears grind within its body...', 'Lifeless eyes track your movement...', 'It relentlessly pursues you!'], 'aberration': ['It contorts weirdly...', 'You see unnatural shapes in its surface...', 'It surges toward you!'], 'demon': ['"The underworld awaits!"', '"Time to pay for your sins!"', '"Feel the flames of the Abyss!"'], 'dragon': ['"You look tasty..."', 'It coils itself, ready to attack!', '"My treasures are mine alone!"']}
atk_verbs = {'slash': ['slashes', 'cuts', 'hacks'], 'pierce': ['stabs', 'pokes', 'impales'], 'blunt': ['bashes', 'smashes', 'crushes'], 'touch': ['touches', 'grips', 'gropes'], 'grab': ['grabs', 'squeezes', 'crushes'], 'fire': ['scorches', 'burns', 'chars'], 'cold': ['freezes', 'chills', 'frosts'], 'electric': ['zaps', 'shocks', 'jolts'], 'acid': ['dissolves', 'burns', 'melts'], 'animal': {'slash': ['claws', 'rakes', 'slashes'], 'pierce': ['bites', 'gnaws', 'chews']}, 'aberration': {'grab': ['engulfs', 'smothers', 'grapples'], 'blunt': ['slams', 'slaps', 'mangles']}, 'demon': {}, 'dragon': {'slash': ['claws', 'rakes', 'slashes'], 'pierce': ['impales', 'stings', 'bites']}, 'insect': {'pierce': ['impales', 'stings', 'bites']}} |
class Solution:
def isValid(self, s: str) -> bool:
stack = []
for c in s:
if c in ")}]":
if len(stack)==0: return False
popped = stack.pop()
if popped=="(" and c==")":
continue
if popped=="[" and c=="]":
continue
if popped=="{" and c=="}":
continue
else:
return False
else:
stack.append(c)
if len(stack)!=0:
return False
return True | class Solution:
def is_valid(self, s: str) -> bool:
stack = []
for c in s:
if c in ')}]':
if len(stack) == 0:
return False
popped = stack.pop()
if popped == '(' and c == ')':
continue
if popped == '[' and c == ']':
continue
if popped == '{' and c == '}':
continue
else:
return False
else:
stack.append(c)
if len(stack) != 0:
return False
return True |
'''
given two strings make them anagrams by performing deletions on both, return number of deletions
'''
def makeAnagram(s1, s2):
hM = dict()
deletes = 0
for char in s1:
if char in hM:
hM[char] += 1
else:
hM[char] = 1
for char in s2:
if char in hM:
hM[char] -= 1
else:
hM[char] = -1
for k,v in hM.items():
deletes += abs(v)
return deletes
s1 = 'abccd'
s2 = 'cde'
print(makeAnagram(s1, s2)) | """
given two strings make them anagrams by performing deletions on both, return number of deletions
"""
def make_anagram(s1, s2):
h_m = dict()
deletes = 0
for char in s1:
if char in hM:
hM[char] += 1
else:
hM[char] = 1
for char in s2:
if char in hM:
hM[char] -= 1
else:
hM[char] = -1
for (k, v) in hM.items():
deletes += abs(v)
return deletes
s1 = 'abccd'
s2 = 'cde'
print(make_anagram(s1, s2)) |
class Coerce(object):
@staticmethod
def bool(space, w_obj):
return space.is_true(w_obj)
@staticmethod
def symbol(space, w_obj):
if space.is_kind_of(w_obj, space.w_symbol):
return space.symbol_w(w_obj)
else:
w_str = space.convert_type(w_obj, space.w_string, "to_str",
raise_error=False)
if w_str is space.w_nil:
w_inspect_str = space.send(w_obj, "inspect")
if not space.is_kind_of(w_inspect_str, space.w_string):
inspect_str = space.any_to_s(w_obj)
else:
inspect_str = space.str_w(w_inspect_str)
raise space.error(space.w_TypeError,
"%s is not a symbol" % inspect_str)
else:
return space.str_w(w_str)
@staticmethod
def int(space, w_obj):
if space.is_kind_of(w_obj, space.w_fixnum):
return space.int_w(w_obj)
else:
return space.int_w(
space.convert_type(w_obj, space.w_integer, "to_int"))
@staticmethod
def bigint(space, w_obj):
return space.bigint_w(
space.convert_type(w_obj, space.w_integer, "to_int"))
@staticmethod
def float(space, w_obj):
if space.is_kind_of(w_obj, space.w_float):
return space.float_w(w_obj)
else:
return space.float_w(space.send(w_obj, "Float", [w_obj]))
@staticmethod
def strictfloat(space, w_obj):
if not space.is_kind_of(w_obj, space.w_numeric):
clsname = w_obj.getclass(space).name
raise space.error(space.w_TypeError,
"can't convert %s into Float" % clsname)
return Coerce.float(space, w_obj)
@staticmethod
def str(space, w_obj):
if (space.is_kind_of(w_obj, space.w_string) or
space.is_kind_of(w_obj, space.w_symbol)):
return space.str_w(w_obj)
else:
return space.str_w(
space.convert_type(w_obj, space.w_string, "to_str"))
@staticmethod
def path(space, w_obj):
w_string = space.convert_type(w_obj, space.w_string, "to_path",
raise_error=False)
if w_string is space.w_nil:
w_string = space.convert_type(w_obj, space.w_string, "to_str")
return space.str0_w(w_string)
@staticmethod
def array(space, w_obj):
if not space.is_kind_of(w_obj, space.w_array):
w_obj = space.convert_type(w_obj, space.w_array, "to_ary")
return space.listview(w_obj)
@staticmethod
def hash(space, w_obj):
if not space.is_kind_of(w_obj, space.w_hash):
return space.convert_type(w_obj, space.w_hash, "to_hash")
return w_obj
| class Coerce(object):
@staticmethod
def bool(space, w_obj):
return space.is_true(w_obj)
@staticmethod
def symbol(space, w_obj):
if space.is_kind_of(w_obj, space.w_symbol):
return space.symbol_w(w_obj)
else:
w_str = space.convert_type(w_obj, space.w_string, 'to_str', raise_error=False)
if w_str is space.w_nil:
w_inspect_str = space.send(w_obj, 'inspect')
if not space.is_kind_of(w_inspect_str, space.w_string):
inspect_str = space.any_to_s(w_obj)
else:
inspect_str = space.str_w(w_inspect_str)
raise space.error(space.w_TypeError, '%s is not a symbol' % inspect_str)
else:
return space.str_w(w_str)
@staticmethod
def int(space, w_obj):
if space.is_kind_of(w_obj, space.w_fixnum):
return space.int_w(w_obj)
else:
return space.int_w(space.convert_type(w_obj, space.w_integer, 'to_int'))
@staticmethod
def bigint(space, w_obj):
return space.bigint_w(space.convert_type(w_obj, space.w_integer, 'to_int'))
@staticmethod
def float(space, w_obj):
if space.is_kind_of(w_obj, space.w_float):
return space.float_w(w_obj)
else:
return space.float_w(space.send(w_obj, 'Float', [w_obj]))
@staticmethod
def strictfloat(space, w_obj):
if not space.is_kind_of(w_obj, space.w_numeric):
clsname = w_obj.getclass(space).name
raise space.error(space.w_TypeError, "can't convert %s into Float" % clsname)
return Coerce.float(space, w_obj)
@staticmethod
def str(space, w_obj):
if space.is_kind_of(w_obj, space.w_string) or space.is_kind_of(w_obj, space.w_symbol):
return space.str_w(w_obj)
else:
return space.str_w(space.convert_type(w_obj, space.w_string, 'to_str'))
@staticmethod
def path(space, w_obj):
w_string = space.convert_type(w_obj, space.w_string, 'to_path', raise_error=False)
if w_string is space.w_nil:
w_string = space.convert_type(w_obj, space.w_string, 'to_str')
return space.str0_w(w_string)
@staticmethod
def array(space, w_obj):
if not space.is_kind_of(w_obj, space.w_array):
w_obj = space.convert_type(w_obj, space.w_array, 'to_ary')
return space.listview(w_obj)
@staticmethod
def hash(space, w_obj):
if not space.is_kind_of(w_obj, space.w_hash):
return space.convert_type(w_obj, space.w_hash, 'to_hash')
return w_obj |
def main():
testCase = int(input())
def isprime(n):
if n<=1:
return False
for i in range(2,n):
if n%i ==0:
return False
return True
while testCase >0:
LR = list(map(int,input().strip().split()))
first = LR[0]
last = LR[1]
f = 0
l = 0
for i in range(first,last+1):
if f ==0:
if isprime(i):
f=i
else:
i = i+1
if l==0:
if isprime(last):
l=last
else:
last -=1
if f!=0 and l!=0:
break
if f!=0 and l!=0:
print(l-f)
else:
print(-1)
testCase -=1
main() | def main():
test_case = int(input())
def isprime(n):
if n <= 1:
return False
for i in range(2, n):
if n % i == 0:
return False
return True
while testCase > 0:
lr = list(map(int, input().strip().split()))
first = LR[0]
last = LR[1]
f = 0
l = 0
for i in range(first, last + 1):
if f == 0:
if isprime(i):
f = i
else:
i = i + 1
if l == 0:
if isprime(last):
l = last
else:
last -= 1
if f != 0 and l != 0:
break
if f != 0 and l != 0:
print(l - f)
else:
print(-1)
test_case -= 1
main() |
''' Pycache directory(.pyc)
Pycache is basically a folder that contains Python3 byte code, which has already been complied and is ready to be executed.
They make my program start faster.
They are automatically created after a module has been imported and used.
'''
| """ Pycache directory(.pyc)
Pycache is basically a folder that contains Python3 byte code, which has already been complied and is ready to be executed.
They make my program start faster.
They are automatically created after a module has been imported and used.
""" |
# Brak : Is what we write to exit the loop whenever we want.
# 1. Example using while loop
'''
while True:
command = input("Type 'exit' to exit : ")
if (command == 'exit'):
break # Halt the execution of the loop.
'''
# 2. Example using for loop
'''
for x in range(1,101):
print(x)
if x == 19 :
break
'''
# 3. Repetitive Room Problem
times = int(input("How many times do I have to tell you ? "))
for time in range(times):
print("Clean up your ROOM!")
if time >= 3 :
print("Do you even listen anymore ?")
break | """
while True:
command = input("Type 'exit' to exit : ")
if (command == 'exit'):
break # Halt the execution of the loop.
"""
'\nfor x in range(1,101):\n print(x)\n if x == 19 :\n break\n'
times = int(input('How many times do I have to tell you ? '))
for time in range(times):
print('Clean up your ROOM!')
if time >= 3:
print('Do you even listen anymore ?')
break |
#!/usr/bin/env python3.4
# -*- coding: utf-8 -*-
__author__ = 'Moskvitin Maxim'
class DatabaseException(Exception):
pass | __author__ = 'Moskvitin Maxim'
class Databaseexception(Exception):
pass |
class Floor:
def __init__(self, floorNum):
self.floorNum = floorNum
self.waitingPersons = []
def addWaitingPerson(self, person):
self.waitingPersons.append(person)
def removeWaitingPerson(self, person):
self.waitingPersons.remove(person)
def getWaitingPersons(self):
return self.waitingPersons
def getNextWaitingPerson(self):
if len(self.waitingPersons) > 0:
person = self.waitingPersons.pop(0)
return person
return None
def getWaitingPosition(self, person):
return self.waitingPersons.index(person)
| class Floor:
def __init__(self, floorNum):
self.floorNum = floorNum
self.waitingPersons = []
def add_waiting_person(self, person):
self.waitingPersons.append(person)
def remove_waiting_person(self, person):
self.waitingPersons.remove(person)
def get_waiting_persons(self):
return self.waitingPersons
def get_next_waiting_person(self):
if len(self.waitingPersons) > 0:
person = self.waitingPersons.pop(0)
return person
return None
def get_waiting_position(self, person):
return self.waitingPersons.index(person) |
class Row:
def __getitem__(self, item):
if isinstance(item, int):
return list(self.__dict__.values())[item]
return self.__dict__[item]
| class Row:
def __getitem__(self, item):
if isinstance(item, int):
return list(self.__dict__.values())[item]
return self.__dict__[item] |
def set_tile_id(matrix):
tileDict = {}
for y in range(len(matrix)):
for x in matrix[y]:
tileDict[x[0]] = x[1]
return tileDict
| def set_tile_id(matrix):
tile_dict = {}
for y in range(len(matrix)):
for x in matrix[y]:
tileDict[x[0]] = x[1]
return tileDict |
# exc. 4.3.1 (Rolling Mission)
guess_letter = input("Enter your guess here: ")
if (len(guess_letter) > 1) and (guess_letter.isalpha()):
print('E1')
elif (guess_letter.isalpha() == False) and (len(guess_letter) > 1) :
print('E3')
elif guess_letter.isalpha() == False:
print('E2')
else:
guess_letter = guess_letter.lower()
print(guess_letter)
| guess_letter = input('Enter your guess here: ')
if len(guess_letter) > 1 and guess_letter.isalpha():
print('E1')
elif guess_letter.isalpha() == False and len(guess_letter) > 1:
print('E3')
elif guess_letter.isalpha() == False:
print('E2')
else:
guess_letter = guess_letter.lower()
print(guess_letter) |
class Pi:
'''
Gives digits of pi for use when
Highlighting the leds
@see https://www.w3resource.com/projects/python/python-projects-1.php
@see https://stackoverflow.com/questions/9004789/1000-digits-of-pi-in-python
'''
def generator(self):
q, r, t, k, m, x = 1, 0, 1, 1, 3, 3
j = -1
while True:
j += 1
if 4 * q + r - t < m * t:
yield m
q, r, t, k, m, x = 10 * q, 10 * (r - m * t), t, k, (10 * (3 * q + r)) // t - 10 * m, x
else:
q, r, t, k, m, x = q * k, (2 * q + r) * x, t * x, k + 1, (q * (7 * k + 2) + r * x) // (t * x), x + 2
if __name__ == '__main__':
'''
Just a little test
'''
pi = Pi()
for c in pi.generator():
print(str(c))
| class Pi:
"""
Gives digits of pi for use when
Highlighting the leds
@see https://www.w3resource.com/projects/python/python-projects-1.php
@see https://stackoverflow.com/questions/9004789/1000-digits-of-pi-in-python
"""
def generator(self):
(q, r, t, k, m, x) = (1, 0, 1, 1, 3, 3)
j = -1
while True:
j += 1
if 4 * q + r - t < m * t:
yield m
(q, r, t, k, m, x) = (10 * q, 10 * (r - m * t), t, k, 10 * (3 * q + r) // t - 10 * m, x)
else:
(q, r, t, k, m, x) = (q * k, (2 * q + r) * x, t * x, k + 1, (q * (7 * k + 2) + r * x) // (t * x), x + 2)
if __name__ == '__main__':
'\n Just a little test\n '
pi = pi()
for c in pi.generator():
print(str(c)) |
# Name : Shubham Sapkal Roll No. : 2012118
# Q11. Write a Python script to add a key to a dictionary.
# Sample Dictionary : {0: 10, 1: 20}
# Expected Result : {0: 10, 1: 20, 2: 30}
Dictionary = {0:10, 1:20}
print(Dictionary)
Dictionary.update({2:30})
print(Dictionary) | dictionary = {0: 10, 1: 20}
print(Dictionary)
Dictionary.update({2: 30})
print(Dictionary) |
def generate_permutation(string, start, end, results):
# safe case
if len(string) == 0:
return
if start == end - 1:
if string not in results:
results.append("".join(string))
else:
for current in range(start, end):
string[start], string[current] = string[current], string[start]
if "".join(string) not in results:
generate_permutation(string, start + 1, end, results)
string[start], string[current] = string[current], string[start]
t = int(input())
for i in range(t):
st = str(input())
end = len(st)
results = list()
result = generate_permutation(list(st), 0, end, results)
results.sort()
print(" ".join(results))
| def generate_permutation(string, start, end, results):
if len(string) == 0:
return
if start == end - 1:
if string not in results:
results.append(''.join(string))
else:
for current in range(start, end):
(string[start], string[current]) = (string[current], string[start])
if ''.join(string) not in results:
generate_permutation(string, start + 1, end, results)
(string[start], string[current]) = (string[current], string[start])
t = int(input())
for i in range(t):
st = str(input())
end = len(st)
results = list()
result = generate_permutation(list(st), 0, end, results)
results.sort()
print(' '.join(results)) |
movies = list()
def menu():
user_input = input("Please enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower()
while user_input != "q":
if user_input in ['a', 'add']:
add_movie()
elif user_input in ['l', 'list']:
show_movies(movies)
elif user_input in ['f', 'find']:
find_movie()
else:
print("Command was not found. Use one of the following commands: 'a', 'l', 'f', 'q'")
user_input = input("\nPlease enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower()
user_input = user_input.lower()
if user_input == "q":
print("Thank you for using app. Quiting program...")
def add_movie():
title = input("Please give us title of the movie: ")
director = input("Please give us who was the director of the movie: ")
genre = input("Please give us genre of the movie: ").lower()
year= int(input("Please give us the year in which movie was produced (only numbers are accepted): "))
movie = {
'title': title,
'director': director,
'genre': genre,
'year': year
}
movies.append(movie)
print(f"The following movie '{movie['title']}' was added to your movies list.")
def show_movies(movies_list):
if not movies_list:
print('There are no movies in the list :(')
else:
for i, movie in enumerate(movies_list):
print(f"\n{i+1} - title: {movie['title']}, director: {movie['director']}, year: {movie['year']};")
def find_movie():
find_by = input("What property of the movie are you looking for (title, director, year, genre)? ").lower()
looking_for = input("What are you searching for? ")
if find_by == 'year' and looking_for.isdigit():
looking_for = int(looking_for)
found_movies = find_by_attribute(movies, looking_for, lambda x: x[find_by])
if not found_movies:
print('There are no movies in the list :(')
else:
show_movies(found_movies)
def find_by_attribute(items, expected, finder):
found = list()
for i in items:
if finder(i) == expected:
found.append(i)
return found
if __name__ == '__main__':
menu()
| movies = list()
def menu():
user_input = input("Please enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower()
while user_input != 'q':
if user_input in ['a', 'add']:
add_movie()
elif user_input in ['l', 'list']:
show_movies(movies)
elif user_input in ['f', 'find']:
find_movie()
else:
print("Command was not found. Use one of the following commands: 'a', 'l', 'f', 'q'")
user_input = input("\nPlease enter 'a' to add a movie, enter 'l' to see the list of available movies, enter 'f' to find a movie from the list, enter 'q' to quit application: ").lower()
user_input = user_input.lower()
if user_input == 'q':
print('Thank you for using app. Quiting program...')
def add_movie():
title = input('Please give us title of the movie: ')
director = input('Please give us who was the director of the movie: ')
genre = input('Please give us genre of the movie: ').lower()
year = int(input('Please give us the year in which movie was produced (only numbers are accepted): '))
movie = {'title': title, 'director': director, 'genre': genre, 'year': year}
movies.append(movie)
print(f"The following movie '{movie['title']}' was added to your movies list.")
def show_movies(movies_list):
if not movies_list:
print('There are no movies in the list :(')
else:
for (i, movie) in enumerate(movies_list):
print(f"\n{i + 1} - title: {movie['title']}, director: {movie['director']}, year: {movie['year']};")
def find_movie():
find_by = input('What property of the movie are you looking for (title, director, year, genre)? ').lower()
looking_for = input('What are you searching for? ')
if find_by == 'year' and looking_for.isdigit():
looking_for = int(looking_for)
found_movies = find_by_attribute(movies, looking_for, lambda x: x[find_by])
if not found_movies:
print('There are no movies in the list :(')
else:
show_movies(found_movies)
def find_by_attribute(items, expected, finder):
found = list()
for i in items:
if finder(i) == expected:
found.append(i)
return found
if __name__ == '__main__':
menu() |
print('Lab Exercise 05')
# LAB EXERCISE 05
# The following 4 problems will introduce you to working with dictionaries.
# If a problem
# includes a setup section: Do not modify, delete or otherwise ignore the setup
# code.
# You will save lists and dictionaries to required variables. These variables will be graded by autograder after your submission.
# Print statements have been provided for you to debug the code. You can uncomment them to see the results
# PROBLEM 1 (5 Points)
# In this problem you will demonstrate your understanding to
# 1) Work with dictionaries
# 2) Work with lists
# 3) Manipulating data using dictionaries
# 4) Converting the values of dictionaries to lists
# Problem 01 SETUP - We provide you with a dictionary to start the lab problems
fruits = {'apple': 10, 'banana': 20, 'strawberry': 6, 'orange' : 9}
# Problem 01 END SETUP
# BEGIN PROBLEM 1 SOLUTION
# Save the values of the dictionary fruits into a list 'num_fruits'
# The desired answer is [10, 20, 6, 9]
# Hint: You can do this by calling the values of the dictionary
num_fruits = []
# END PROBLEM 1 SOLUTION
print(f"\nProblem 1: num_fruits = {num_fruits}")
# PROBLEM 2 (5 Points)
# In this problem, you will demonstrate your undestanding in
# 1) Iterating through the dictionary
# 2) Adding the values of each pair
# 3) Saving tha value to a variable
# Problem 02 SETUP - We provide you with a variable to start the problem
sum_fruits = 0
# Problem 02 END SETUP
# BEGIN PROBLEM 2 SOLUTION
# Find the sum of the values of the fruits dictionary. Do not use the list num_fruits. Save to the variable sum_fruits
# Iterate through each key-value pair in the dictionary and add the numbers
# Save the sum of the numbers to the variable sum_fruits
# END PROBLEM 2 SOLUTION
print(f"\nProblem 2: sum_fruits = {sum_fruits}")
# PROBLEM 3 (5 Points)
# In this problem you will demonstrate your understanding of
# 1) Working with dictionary
# 2) Working with the values
# 3) Finding the largest value
# Problem 03 SETUP - We provide you with a variable to start the problem
max_fruits = 0
# Problem 03 END SETUP
# BEGIN PROBLEM 3 SOLUTION
# Find the largest value in the fruits dictionary. Do not use the list num_fruits and then save to the variable max_fruits
# Hint : You can use some parts of problem 2
# Iterate through each key-value pair in the dictionary named fruits
# Work with values
# Save to a variable
# END PROBLEM 3 SOLUTION
print(f"\nProblem 3: max_fruits = {max_fruits}")
# PROBLEM 4 (5 Points)
# In this problem you will demonstrate your understanding of
# 1) Creating a new dictionary using an existing one
# 2) Iterating through a dictionary
# 3) Working with values
# 4) Connecting the keys based on value
# Problem 04 SETUP - We provide you with a variable to start the problem
new_dict = {}
# Problem 04 END SETUP
# BEGIN PROBLEM 4 SOLUTION
# Create a new dictionary using the fruits dictionary. Save the key value pairs which has a value of more than 6 to the new dictionary named 'new_dict'
# Iterate through the dictionary fruits
# Use if statement to check if the value is greater than 6
# Add the pair to the new dictionary
# END PROBLEM 4 SOLUTION
print(f"\nProblem 4: new_dict = {new_dict}\n")
# END LAB EXERCISE
| print('Lab Exercise 05')
fruits = {'apple': 10, 'banana': 20, 'strawberry': 6, 'orange': 9}
num_fruits = []
print(f'\nProblem 1: num_fruits = {num_fruits}')
sum_fruits = 0
print(f'\nProblem 2: sum_fruits = {sum_fruits}')
max_fruits = 0
print(f'\nProblem 3: max_fruits = {max_fruits}')
new_dict = {}
print(f'\nProblem 4: new_dict = {new_dict}\n') |
def print_info():
print('Second module')
print(f'From second_modules: {sum([1, 2, 3])}')
| def print_info():
print('Second module')
print(f'From second_modules: {sum([1, 2, 3])}') |
n, x = map(int, input().split())
scores = list()
for _ in range(x):
score = map(float, input().split())
scores.append(score)
for i in zip(*scores):
print(sum(i)/x)
| (n, x) = map(int, input().split())
scores = list()
for _ in range(x):
score = map(float, input().split())
scores.append(score)
for i in zip(*scores):
print(sum(i) / x) |
pkgname = "bsddiff"
pkgver = "0.99.0"
pkgrel = 0
build_style = "meson"
hostmakedepends = ["meson"]
pkgdesc = "Alternative to GNU diffutils from FreeBSD"
maintainer = "q66 <q66@chimera-linux.org>"
license = "BSD-2-Clause"
url = "https://github.com/chimera-linux/bsdutils"
source = f"https://github.com/chimera-linux/{pkgname}/archive/refs/tags/v{pkgver}.tar.gz"
sha256 = "9505436bc26b7a9ba7efed7e67194f1fc21ff3b3b4c968277c96d3da25676ca1"
# no test suite
options = ["bootstrap", "!check"]
| pkgname = 'bsddiff'
pkgver = '0.99.0'
pkgrel = 0
build_style = 'meson'
hostmakedepends = ['meson']
pkgdesc = 'Alternative to GNU diffutils from FreeBSD'
maintainer = 'q66 <q66@chimera-linux.org>'
license = 'BSD-2-Clause'
url = 'https://github.com/chimera-linux/bsdutils'
source = f'https://github.com/chimera-linux/{pkgname}/archive/refs/tags/v{pkgver}.tar.gz'
sha256 = '9505436bc26b7a9ba7efed7e67194f1fc21ff3b3b4c968277c96d3da25676ca1'
options = ['bootstrap', '!check'] |
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
#------------------------------------------------------------
#------------------------For Loops---------------------------
#------------------------------------------------------------
# In[ ]:
#looping through a list
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
#looping through a string
for x in "banana":
print(x)
# In[4]:
#Working with dictionaries (this is the typical format for working with JSON)
cars = {
"colour":
[
"blue",
"yellow",
"orange"
],
"size":
[
"sedan",
"suv",
"van"
]
}
#looking through keys:
for x in cars["size"][0]:
for i in x:
print(i)
# In[25]:
#looping through values
for x in cars["colour"]:
print(x)
# In[5]:
#looping through characters within values
for value in cars["size"][1][0]:
for letter in value:
print(letter)
# In[ ]:
#Else with For loops
# In[9]:
for x in range(6):
print(x)
else:
print("Finally finished!")
# In[ ]:
#Nested For loops
# In[8]:
colours = ["red", "yellow", "green"]
fruits = ["apple", "banana", "guava"]
for x in colours:
for y in fruits:
print (x,y)
# In[ ]:
#------------------------------------------------------------
#------------------------While Loops-------------------------
#------------------------------------------------------------
# In[9]:
i = 1
while i < 6:
print(i)
i += 1
# In[14]:
i = 1
while i < 6:
print(i)
i += 1
else:
print("i is no longer less than 6")
# In[ ]:
#------------------------------------------------------------
#------------------------Break-------------------------------
#------------------------------------------------------------
# In[10]:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
if x == "as":
break
# In[ ]:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
break
print(x)
# In[12]:
i = 0
while i < 6:
i += 1
if i == 3:
break
print(i)
# In[13]:
cars2 = {
"colour":
[
"blue",
"yellow",
"orange"
],
"size":
[
"sedan",
"suv",
"van"
]
}
len(cars)
for x in cars2:
for j in x:
if j == "s":
break
print(j)
# In[ ]:
| fruits = ['apple', 'banana', 'cherry']
for x in fruits:
print(x)
for x in 'banana':
print(x)
cars = {'colour': ['blue', 'yellow', 'orange'], 'size': ['sedan', 'suv', 'van']}
for x in cars['size'][0]:
for i in x:
print(i)
for x in cars['colour']:
print(x)
for value in cars['size'][1][0]:
for letter in value:
print(letter)
for x in range(6):
print(x)
else:
print('Finally finished!')
colours = ['red', 'yellow', 'green']
fruits = ['apple', 'banana', 'guava']
for x in colours:
for y in fruits:
print(x, y)
i = 1
while i < 6:
print(i)
i += 1
i = 1
while i < 6:
print(i)
i += 1
else:
print('i is no longer less than 6')
fruits = ['apple', 'banana', 'cherry']
for x in fruits:
print(x)
if x == 'as':
break
fruits = ['apple', 'banana', 'cherry']
for x in fruits:
if x == 'banana':
break
print(x)
i = 0
while i < 6:
i += 1
if i == 3:
break
print(i)
cars2 = {'colour': ['blue', 'yellow', 'orange'], 'size': ['sedan', 'suv', 'van']}
len(cars)
for x in cars2:
for j in x:
if j == 's':
break
print(j) |
def missing_element(arr, sub):
for i in arr:
if i not in sub:
return i
def missing_element_II(arr, sub):
return sum(arr)-sum(sub)
def missing_element_III(arr, sub):
arr.sort()
sub.sort()
for i in range(len(arr)):
if arr[i] != sub[i]:
return arr[i]
print(missing_element([11, 44, 55, 90, 1, 90], [44, 1, 90, 11]))
print(missing_element_II([11, 44, 55, 90, 1], [44, 1, 90, 11]))
print(missing_element_III([11, 44, 55, 90, 1], [44, 1, 90, 11])) | def missing_element(arr, sub):
for i in arr:
if i not in sub:
return i
def missing_element_ii(arr, sub):
return sum(arr) - sum(sub)
def missing_element_iii(arr, sub):
arr.sort()
sub.sort()
for i in range(len(arr)):
if arr[i] != sub[i]:
return arr[i]
print(missing_element([11, 44, 55, 90, 1, 90], [44, 1, 90, 11]))
print(missing_element_ii([11, 44, 55, 90, 1], [44, 1, 90, 11]))
print(missing_element_iii([11, 44, 55, 90, 1], [44, 1, 90, 11])) |
global output
class Logger:
@staticmethod
def set_logger(cheat_output):
global output
output = cheat_output
@staticmethod
def log(s):
output(s)
@staticmethod
def print_str(s):
n = 500 # chunk length
chunks = [s[i:i+n] for i in range(0, len(s), n)]
for c in chunks:
Logger.log(c)
| global output
class Logger:
@staticmethod
def set_logger(cheat_output):
global output
output = cheat_output
@staticmethod
def log(s):
output(s)
@staticmethod
def print_str(s):
n = 500
chunks = [s[i:i + n] for i in range(0, len(s), n)]
for c in chunks:
Logger.log(c) |
# WHILE LOOP
#
# In this problem, write a function named "my_while_loop" that accepts an
# iterable of strings as a parameter and returns a new list with strings from
# the original list that are longer than five characters.
#
# The function must use a while loop in its implementation.
# TEST DATA
# test = ["nope", "yes this one", "not", "uhuh", "here's one", "narp"]
# print(my_while_loop(test)) # > ["yes this one", "here's one"]
#
# test = ["plop", "", "drop", "zop", "stop"]
# print(my_while_loop(test)) # > []
#
# test = []
# print(my_while_loop(test)) # > []
#NOTES:
# (method) append: (__object: Any) -> None :Append object to the end of the list.
# len: [ function ] Return the number of items in a container.
# (function) len: (__obj: Sized) -> int
# the list, which can be written as a list of comma-separated values (items) between square brackets.
# Lists might contain items of different types,
# but usually the items all have the same type.
squares = [1, 4, 9, 16, 25]
#Like strings (and all other built-in sequence types),
# lists can be indexed and sliced:
print(squares[0]) # indexing returns the item
print(squares[-1])
# [Running] python -u "c:\Users\15512\Google Drive\a-A-September\misc\Non-App-Academy-Exploration\python\my-intro-BG\0Intro2Python-all.py"
# 1
# 25
#**********************************************************************
# def my_while_loop(lst):# (function) my_while_loop: (lst) -> List
# new_lst = [] # (variable) new_lst: List
# i = 0
# while i < len(lst):
# if len(lst[i]) > 5:
# new_lst.append(lst[i])
#
# i += 1
# print("i",i)
# return new_lst
#
#
# test = ["nope", "yes this one", "not", "uhuh", "here's one", "narp"]
# print(my_while_loop(test))
#
# test = ["plop", "", "drop", "zop", "stop"]
# print(my_while_loop(test))
#
# test = []
# print(my_while_loop(test))
# [Running] python -u "c:\Users\15512\Google Drive\a-A-September\misc\Non-App-Academy-Exploration\python\my-intro-BG\0Intro2Python-all.py"
# 1
# 25
# i 1
# i 2
# i 3
# i 4
# i 5
# i 6
# ['yes this one', "here's one"]
# i 1
# i 2
# i 3
# i 4
# i 5
# []
# []
#*****************************************************************************
# FOR LOOP
#
# In this problem, write a function named "my_for_loop" that accepts an
# iterable of strings as a parameter and returns a new list with strings from
# the original list that are longer than five characters. The function must use
# a for loop in its implementation.
#
print("---------------------------------------------------------------")
# WRITE YOUR FUNCTION HERE
def my_for_loop(lst):
new_lst = []
for item in lst:
if len(item) > 5:
new_lst.append(item)
return new_lst
# TEST DATA
test = ["nope", "yes this one", "not", "uhuh", "here's one", "narp"]
print(my_for_loop(test)) # > ["yes this one", "here's one"]
test = ["plop", "", "drop", "zop", "stop"]
print(my_for_loop(test)) # > []
test = []
print(my_for_loop(test)) # > []
| squares = [1, 4, 9, 16, 25]
print(squares[0])
print(squares[-1])
print('---------------------------------------------------------------')
def my_for_loop(lst):
new_lst = []
for item in lst:
if len(item) > 5:
new_lst.append(item)
return new_lst
test = ['nope', 'yes this one', 'not', 'uhuh', "here's one", 'narp']
print(my_for_loop(test))
test = ['plop', '', 'drop', 'zop', 'stop']
print(my_for_loop(test))
test = []
print(my_for_loop(test)) |
# -*- coding: utf-8 -*-
# Encrypt key
modulus = '00e0b509f6259df8642dbc35662901477df22677ec152b5ff68ace615bb7b725152b3ab17a876aea8a5aa76d2e417629ec4ee341f56135fccf695280104e0312ecbda92557c93870114af6c9d05c4f7f0c3685b7a46bee255932575cce10b424d813cfe4875d3e82047b97ddef52741d546b8e289dc6935b3ece0462db0a22b8e7'
nonce = '0CoJUm6Qyw8W8jud'
pub_key = '010001'
headers = {
'Accept': '*/*',
'Host': 'music.163.com',
'User-Agent': 'curl/7.51.0',
'Referer': 'http://music.163.com',
'Cookie': 'appver=2.0.2'
}
song_download_url = 'http://music.163.com/weapi/song/enhance/player/url?csrf_token='
def get_song_url(song_id):
return 'http://music.163.com/api/song/detail/?ids=[{}]'.format(song_id)
def get_album_url(album_id):
return 'http://music.163.com/api/album/{}/'.format(album_id)
def get_artist_url(artist_id):
return 'http://music.163.com/api/artist/{}'.format(artist_id)
def get_playlist_url(playlist_id):
return 'http://music.163.com/api/playlist/detail?id={}'.format(playlist_id)
| modulus = '00e0b509f6259df8642dbc35662901477df22677ec152b5ff68ace615bb7b725152b3ab17a876aea8a5aa76d2e417629ec4ee341f56135fccf695280104e0312ecbda92557c93870114af6c9d05c4f7f0c3685b7a46bee255932575cce10b424d813cfe4875d3e82047b97ddef52741d546b8e289dc6935b3ece0462db0a22b8e7'
nonce = '0CoJUm6Qyw8W8jud'
pub_key = '010001'
headers = {'Accept': '*/*', 'Host': 'music.163.com', 'User-Agent': 'curl/7.51.0', 'Referer': 'http://music.163.com', 'Cookie': 'appver=2.0.2'}
song_download_url = 'http://music.163.com/weapi/song/enhance/player/url?csrf_token='
def get_song_url(song_id):
return 'http://music.163.com/api/song/detail/?ids=[{}]'.format(song_id)
def get_album_url(album_id):
return 'http://music.163.com/api/album/{}/'.format(album_id)
def get_artist_url(artist_id):
return 'http://music.163.com/api/artist/{}'.format(artist_id)
def get_playlist_url(playlist_id):
return 'http://music.163.com/api/playlist/detail?id={}'.format(playlist_id) |
# https://leetcode.com/problems/single-number/
# Given a non-empty array of integers nums, every element appears twice except for
# one. Find that single one.
# You must implement a solution with a linear runtime complexity and use only
# constant extra space.
################################################################################
# use XOR: a^a = 0
class Solution:
def singleNumber(self, nums: List[int]) -> int:
if not nums or len(nums) == 0: return 0
ans = nums[0]
for i in range(1, len(nums)):
ans ^= nums[i]
return ans
| class Solution:
def single_number(self, nums: List[int]) -> int:
if not nums or len(nums) == 0:
return 0
ans = nums[0]
for i in range(1, len(nums)):
ans ^= nums[i]
return ans |
# Copyright 2019 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can
# be found in the LICENSE file.
# This file is automatically generated by mkgrokdump and should not
# be modified manually.
# List of known V8 instance types.
INSTANCE_TYPES = {
0: "INTERNALIZED_STRING_TYPE",
2: "EXTERNAL_INTERNALIZED_STRING_TYPE",
8: "ONE_BYTE_INTERNALIZED_STRING_TYPE",
10: "EXTERNAL_ONE_BYTE_INTERNALIZED_STRING_TYPE",
18: "UNCACHED_EXTERNAL_INTERNALIZED_STRING_TYPE",
26: "UNCACHED_EXTERNAL_ONE_BYTE_INTERNALIZED_STRING_TYPE",
32: "STRING_TYPE",
33: "CONS_STRING_TYPE",
34: "EXTERNAL_STRING_TYPE",
35: "SLICED_STRING_TYPE",
37: "THIN_STRING_TYPE",
40: "ONE_BYTE_STRING_TYPE",
41: "CONS_ONE_BYTE_STRING_TYPE",
42: "EXTERNAL_ONE_BYTE_STRING_TYPE",
43: "SLICED_ONE_BYTE_STRING_TYPE",
45: "THIN_ONE_BYTE_STRING_TYPE",
50: "UNCACHED_EXTERNAL_STRING_TYPE",
58: "UNCACHED_EXTERNAL_ONE_BYTE_STRING_TYPE",
64: "SYMBOL_TYPE",
65: "BIG_INT_BASE_TYPE",
66: "HEAP_NUMBER_TYPE",
67: "ODDBALL_TYPE",
68: "EXPORTED_SUB_CLASS_BASE_TYPE",
69: "EXPORTED_SUB_CLASS_TYPE",
70: "FOREIGN_TYPE",
71: "PROMISE_FULFILL_REACTION_JOB_TASK_TYPE",
72: "PROMISE_REJECT_REACTION_JOB_TASK_TYPE",
73: "CALLABLE_TASK_TYPE",
74: "CALLBACK_TASK_TYPE",
75: "PROMISE_RESOLVE_THENABLE_JOB_TASK_TYPE",
76: "LOAD_HANDLER_TYPE",
77: "STORE_HANDLER_TYPE",
78: "FUNCTION_TEMPLATE_INFO_TYPE",
79: "OBJECT_TEMPLATE_INFO_TYPE",
80: "ACCESS_CHECK_INFO_TYPE",
81: "ACCESSOR_INFO_TYPE",
82: "ACCESSOR_PAIR_TYPE",
83: "ALIASED_ARGUMENTS_ENTRY_TYPE",
84: "ALLOCATION_MEMENTO_TYPE",
85: "ALLOCATION_SITE_TYPE",
86: "ARRAY_BOILERPLATE_DESCRIPTION_TYPE",
87: "ASM_WASM_DATA_TYPE",
88: "ASYNC_GENERATOR_REQUEST_TYPE",
89: "BREAK_POINT_TYPE",
90: "BREAK_POINT_INFO_TYPE",
91: "CACHED_TEMPLATE_OBJECT_TYPE",
92: "CALL_HANDLER_INFO_TYPE",
93: "CLASS_POSITIONS_TYPE",
94: "DEBUG_INFO_TYPE",
95: "ENUM_CACHE_TYPE",
96: "FEEDBACK_CELL_TYPE",
97: "FUNCTION_TEMPLATE_RARE_DATA_TYPE",
98: "INTERCEPTOR_INFO_TYPE",
99: "INTERPRETER_DATA_TYPE",
100: "PROMISE_CAPABILITY_TYPE",
101: "PROMISE_REACTION_TYPE",
102: "PROPERTY_DESCRIPTOR_OBJECT_TYPE",
103: "PROTOTYPE_INFO_TYPE",
104: "SCRIPT_TYPE",
105: "SOURCE_TEXT_MODULE_INFO_ENTRY_TYPE",
106: "STACK_FRAME_INFO_TYPE",
107: "STACK_TRACE_FRAME_TYPE",
108: "TEMPLATE_OBJECT_DESCRIPTION_TYPE",
109: "TUPLE2_TYPE",
110: "WASM_CAPI_FUNCTION_DATA_TYPE",
111: "WASM_DEBUG_INFO_TYPE",
112: "WASM_EXCEPTION_TAG_TYPE",
113: "WASM_EXPORTED_FUNCTION_DATA_TYPE",
114: "WASM_INDIRECT_FUNCTION_TABLE_TYPE",
115: "WASM_JS_FUNCTION_DATA_TYPE",
116: "FIXED_ARRAY_TYPE",
117: "HASH_TABLE_TYPE",
118: "EPHEMERON_HASH_TABLE_TYPE",
119: "GLOBAL_DICTIONARY_TYPE",
120: "NAME_DICTIONARY_TYPE",
121: "NUMBER_DICTIONARY_TYPE",
122: "ORDERED_HASH_MAP_TYPE",
123: "ORDERED_HASH_SET_TYPE",
124: "ORDERED_NAME_DICTIONARY_TYPE",
125: "SIMPLE_NUMBER_DICTIONARY_TYPE",
126: "STRING_TABLE_TYPE",
127: "CLOSURE_FEEDBACK_CELL_ARRAY_TYPE",
128: "OBJECT_BOILERPLATE_DESCRIPTION_TYPE",
129: "SCOPE_INFO_TYPE",
130: "SCRIPT_CONTEXT_TABLE_TYPE",
131: "BYTE_ARRAY_TYPE",
132: "BYTECODE_ARRAY_TYPE",
133: "FIXED_DOUBLE_ARRAY_TYPE",
134: "INTERNAL_CLASS_WITH_SMI_ELEMENTS_TYPE",
135: "AWAIT_CONTEXT_TYPE",
136: "BLOCK_CONTEXT_TYPE",
137: "CATCH_CONTEXT_TYPE",
138: "DEBUG_EVALUATE_CONTEXT_TYPE",
139: "EVAL_CONTEXT_TYPE",
140: "FUNCTION_CONTEXT_TYPE",
141: "MODULE_CONTEXT_TYPE",
142: "NATIVE_CONTEXT_TYPE",
143: "SCRIPT_CONTEXT_TYPE",
144: "WITH_CONTEXT_TYPE",
145: "SMALL_ORDERED_HASH_MAP_TYPE",
146: "SMALL_ORDERED_HASH_SET_TYPE",
147: "SMALL_ORDERED_NAME_DICTIONARY_TYPE",
148: "SOURCE_TEXT_MODULE_TYPE",
149: "SYNTHETIC_MODULE_TYPE",
150: "UNCOMPILED_DATA_WITH_PREPARSE_DATA_TYPE",
151: "UNCOMPILED_DATA_WITHOUT_PREPARSE_DATA_TYPE",
152: "WEAK_FIXED_ARRAY_TYPE",
153: "TRANSITION_ARRAY_TYPE",
154: "CELL_TYPE",
155: "CODE_TYPE",
156: "CODE_DATA_CONTAINER_TYPE",
157: "COVERAGE_INFO_TYPE",
158: "DESCRIPTOR_ARRAY_TYPE",
159: "EMBEDDER_DATA_ARRAY_TYPE",
160: "FEEDBACK_METADATA_TYPE",
161: "FEEDBACK_VECTOR_TYPE",
162: "FILLER_TYPE",
163: "FREE_SPACE_TYPE",
164: "INTERNAL_CLASS_TYPE",
165: "INTERNAL_CLASS_WITH_STRUCT_ELEMENTS_TYPE",
166: "MAP_TYPE",
167: "PREPARSE_DATA_TYPE",
168: "PROPERTY_ARRAY_TYPE",
169: "PROPERTY_CELL_TYPE",
170: "SHARED_FUNCTION_INFO_TYPE",
171: "SMI_BOX_TYPE",
172: "SMI_PAIR_TYPE",
173: "SORT_STATE_TYPE",
174: "WEAK_ARRAY_LIST_TYPE",
175: "WEAK_CELL_TYPE",
176: "JS_PROXY_TYPE",
1057: "JS_OBJECT_TYPE",
177: "JS_GLOBAL_OBJECT_TYPE",
178: "JS_GLOBAL_PROXY_TYPE",
179: "JS_MODULE_NAMESPACE_TYPE",
1040: "JS_SPECIAL_API_OBJECT_TYPE",
1041: "JS_PRIMITIVE_WRAPPER_TYPE",
1042: "JS_MAP_KEY_ITERATOR_TYPE",
1043: "JS_MAP_KEY_VALUE_ITERATOR_TYPE",
1044: "JS_MAP_VALUE_ITERATOR_TYPE",
1045: "JS_SET_KEY_VALUE_ITERATOR_TYPE",
1046: "JS_SET_VALUE_ITERATOR_TYPE",
1047: "JS_GENERATOR_OBJECT_TYPE",
1048: "JS_ASYNC_FUNCTION_OBJECT_TYPE",
1049: "JS_ASYNC_GENERATOR_OBJECT_TYPE",
1050: "JS_DATA_VIEW_TYPE",
1051: "JS_TYPED_ARRAY_TYPE",
1052: "JS_MAP_TYPE",
1053: "JS_SET_TYPE",
1054: "JS_WEAK_MAP_TYPE",
1055: "JS_WEAK_SET_TYPE",
1056: "JS_API_OBJECT_TYPE",
1058: "JS_ARGUMENTS_OBJECT_TYPE",
1059: "JS_ARRAY_TYPE",
1060: "JS_ARRAY_BUFFER_TYPE",
1061: "JS_ARRAY_ITERATOR_TYPE",
1062: "JS_ASYNC_FROM_SYNC_ITERATOR_TYPE",
1063: "JS_COLLATOR_TYPE",
1064: "JS_CONTEXT_EXTENSION_OBJECT_TYPE",
1065: "JS_DATE_TYPE",
1066: "JS_DATE_TIME_FORMAT_TYPE",
1067: "JS_DISPLAY_NAMES_TYPE",
1068: "JS_ERROR_TYPE",
1069: "JS_FINALIZATION_REGISTRY_TYPE",
1070: "JS_FINALIZATION_REGISTRY_CLEANUP_ITERATOR_TYPE",
1071: "JS_LIST_FORMAT_TYPE",
1072: "JS_LOCALE_TYPE",
1073: "JS_MESSAGE_OBJECT_TYPE",
1074: "JS_NUMBER_FORMAT_TYPE",
1075: "JS_PLURAL_RULES_TYPE",
1076: "JS_PROMISE_TYPE",
1077: "JS_REG_EXP_TYPE",
1078: "JS_REG_EXP_STRING_ITERATOR_TYPE",
1079: "JS_RELATIVE_TIME_FORMAT_TYPE",
1080: "JS_SEGMENT_ITERATOR_TYPE",
1081: "JS_SEGMENTER_TYPE",
1082: "JS_STRING_ITERATOR_TYPE",
1083: "JS_V8_BREAK_ITERATOR_TYPE",
1084: "JS_WEAK_REF_TYPE",
1085: "WASM_EXCEPTION_OBJECT_TYPE",
1086: "WASM_GLOBAL_OBJECT_TYPE",
1087: "WASM_INSTANCE_OBJECT_TYPE",
1088: "WASM_MEMORY_OBJECT_TYPE",
1089: "WASM_MODULE_OBJECT_TYPE",
1090: "WASM_TABLE_OBJECT_TYPE",
1091: "JS_BOUND_FUNCTION_TYPE",
1092: "JS_FUNCTION_TYPE",
}
# List of known V8 maps.
KNOWN_MAPS = {
("read_only_space", 0x00121): (163, "FreeSpaceMap"),
("read_only_space", 0x00149): (166, "MetaMap"),
("read_only_space", 0x0018d): (67, "NullMap"),
("read_only_space", 0x001c5): (158, "DescriptorArrayMap"),
("read_only_space", 0x001f5): (152, "WeakFixedArrayMap"),
("read_only_space", 0x0021d): (162, "OnePointerFillerMap"),
("read_only_space", 0x00245): (162, "TwoPointerFillerMap"),
("read_only_space", 0x00289): (67, "UninitializedMap"),
("read_only_space", 0x002cd): (8, "OneByteInternalizedStringMap"),
("read_only_space", 0x00329): (67, "UndefinedMap"),
("read_only_space", 0x0035d): (66, "HeapNumberMap"),
("read_only_space", 0x003a1): (67, "TheHoleMap"),
("read_only_space", 0x00401): (67, "BooleanMap"),
("read_only_space", 0x00489): (131, "ByteArrayMap"),
("read_only_space", 0x004b1): (116, "FixedArrayMap"),
("read_only_space", 0x004d9): (116, "FixedCOWArrayMap"),
("read_only_space", 0x00501): (117, "HashTableMap"),
("read_only_space", 0x00529): (64, "SymbolMap"),
("read_only_space", 0x00551): (40, "OneByteStringMap"),
("read_only_space", 0x00579): (129, "ScopeInfoMap"),
("read_only_space", 0x005a1): (170, "SharedFunctionInfoMap"),
("read_only_space", 0x005c9): (155, "CodeMap"),
("read_only_space", 0x005f1): (154, "CellMap"),
("read_only_space", 0x00619): (169, "GlobalPropertyCellMap"),
("read_only_space", 0x00641): (70, "ForeignMap"),
("read_only_space", 0x00669): (153, "TransitionArrayMap"),
("read_only_space", 0x00691): (45, "ThinOneByteStringMap"),
("read_only_space", 0x006b9): (161, "FeedbackVectorMap"),
("read_only_space", 0x0070d): (67, "ArgumentsMarkerMap"),
("read_only_space", 0x0076d): (67, "ExceptionMap"),
("read_only_space", 0x007c9): (67, "TerminationExceptionMap"),
("read_only_space", 0x00831): (67, "OptimizedOutMap"),
("read_only_space", 0x00891): (67, "StaleRegisterMap"),
("read_only_space", 0x008d5): (130, "ScriptContextTableMap"),
("read_only_space", 0x008fd): (127, "ClosureFeedbackCellArrayMap"),
("read_only_space", 0x00925): (160, "FeedbackMetadataArrayMap"),
("read_only_space", 0x0094d): (116, "ArrayListMap"),
("read_only_space", 0x00975): (65, "BigIntMap"),
("read_only_space", 0x0099d): (128, "ObjectBoilerplateDescriptionMap"),
("read_only_space", 0x009c5): (132, "BytecodeArrayMap"),
("read_only_space", 0x009ed): (156, "CodeDataContainerMap"),
("read_only_space", 0x00a15): (157, "CoverageInfoMap"),
("read_only_space", 0x00a3d): (133, "FixedDoubleArrayMap"),
("read_only_space", 0x00a65): (119, "GlobalDictionaryMap"),
("read_only_space", 0x00a8d): (96, "ManyClosuresCellMap"),
("read_only_space", 0x00ab5): (116, "ModuleInfoMap"),
("read_only_space", 0x00add): (120, "NameDictionaryMap"),
("read_only_space", 0x00b05): (96, "NoClosuresCellMap"),
("read_only_space", 0x00b2d): (121, "NumberDictionaryMap"),
("read_only_space", 0x00b55): (96, "OneClosureCellMap"),
("read_only_space", 0x00b7d): (122, "OrderedHashMapMap"),
("read_only_space", 0x00ba5): (123, "OrderedHashSetMap"),
("read_only_space", 0x00bcd): (124, "OrderedNameDictionaryMap"),
("read_only_space", 0x00bf5): (167, "PreparseDataMap"),
("read_only_space", 0x00c1d): (168, "PropertyArrayMap"),
("read_only_space", 0x00c45): (92, "SideEffectCallHandlerInfoMap"),
("read_only_space", 0x00c6d): (92, "SideEffectFreeCallHandlerInfoMap"),
("read_only_space", 0x00c95): (92, "NextCallSideEffectFreeCallHandlerInfoMap"),
("read_only_space", 0x00cbd): (125, "SimpleNumberDictionaryMap"),
("read_only_space", 0x00ce5): (116, "SloppyArgumentsElementsMap"),
("read_only_space", 0x00d0d): (145, "SmallOrderedHashMapMap"),
("read_only_space", 0x00d35): (146, "SmallOrderedHashSetMap"),
("read_only_space", 0x00d5d): (147, "SmallOrderedNameDictionaryMap"),
("read_only_space", 0x00d85): (148, "SourceTextModuleMap"),
("read_only_space", 0x00dad): (126, "StringTableMap"),
("read_only_space", 0x00dd5): (149, "SyntheticModuleMap"),
("read_only_space", 0x00dfd): (151, "UncompiledDataWithoutPreparseDataMap"),
("read_only_space", 0x00e25): (150, "UncompiledDataWithPreparseDataMap"),
("read_only_space", 0x00e4d): (174, "WeakArrayListMap"),
("read_only_space", 0x00e75): (118, "EphemeronHashTableMap"),
("read_only_space", 0x00e9d): (159, "EmbedderDataArrayMap"),
("read_only_space", 0x00ec5): (175, "WeakCellMap"),
("read_only_space", 0x00eed): (32, "StringMap"),
("read_only_space", 0x00f15): (41, "ConsOneByteStringMap"),
("read_only_space", 0x00f3d): (33, "ConsStringMap"),
("read_only_space", 0x00f65): (37, "ThinStringMap"),
("read_only_space", 0x00f8d): (35, "SlicedStringMap"),
("read_only_space", 0x00fb5): (43, "SlicedOneByteStringMap"),
("read_only_space", 0x00fdd): (34, "ExternalStringMap"),
("read_only_space", 0x01005): (42, "ExternalOneByteStringMap"),
("read_only_space", 0x0102d): (50, "UncachedExternalStringMap"),
("read_only_space", 0x01055): (0, "InternalizedStringMap"),
("read_only_space", 0x0107d): (2, "ExternalInternalizedStringMap"),
("read_only_space", 0x010a5): (10, "ExternalOneByteInternalizedStringMap"),
("read_only_space", 0x010cd): (18, "UncachedExternalInternalizedStringMap"),
("read_only_space", 0x010f5): (26, "UncachedExternalOneByteInternalizedStringMap"),
("read_only_space", 0x0111d): (58, "UncachedExternalOneByteStringMap"),
("read_only_space", 0x01145): (67, "SelfReferenceMarkerMap"),
("read_only_space", 0x01179): (95, "EnumCacheMap"),
("read_only_space", 0x011c9): (86, "ArrayBoilerplateDescriptionMap"),
("read_only_space", 0x012c5): (98, "InterceptorInfoMap"),
("read_only_space", 0x032e5): (71, "PromiseFulfillReactionJobTaskMap"),
("read_only_space", 0x0330d): (72, "PromiseRejectReactionJobTaskMap"),
("read_only_space", 0x03335): (73, "CallableTaskMap"),
("read_only_space", 0x0335d): (74, "CallbackTaskMap"),
("read_only_space", 0x03385): (75, "PromiseResolveThenableJobTaskMap"),
("read_only_space", 0x033ad): (78, "FunctionTemplateInfoMap"),
("read_only_space", 0x033d5): (79, "ObjectTemplateInfoMap"),
("read_only_space", 0x033fd): (80, "AccessCheckInfoMap"),
("read_only_space", 0x03425): (81, "AccessorInfoMap"),
("read_only_space", 0x0344d): (82, "AccessorPairMap"),
("read_only_space", 0x03475): (83, "AliasedArgumentsEntryMap"),
("read_only_space", 0x0349d): (84, "AllocationMementoMap"),
("read_only_space", 0x034c5): (87, "AsmWasmDataMap"),
("read_only_space", 0x034ed): (88, "AsyncGeneratorRequestMap"),
("read_only_space", 0x03515): (89, "BreakPointMap"),
("read_only_space", 0x0353d): (90, "BreakPointInfoMap"),
("read_only_space", 0x03565): (91, "CachedTemplateObjectMap"),
("read_only_space", 0x0358d): (93, "ClassPositionsMap"),
("read_only_space", 0x035b5): (94, "DebugInfoMap"),
("read_only_space", 0x035dd): (97, "FunctionTemplateRareDataMap"),
("read_only_space", 0x03605): (99, "InterpreterDataMap"),
("read_only_space", 0x0362d): (100, "PromiseCapabilityMap"),
("read_only_space", 0x03655): (101, "PromiseReactionMap"),
("read_only_space", 0x0367d): (102, "PropertyDescriptorObjectMap"),
("read_only_space", 0x036a5): (103, "PrototypeInfoMap"),
("read_only_space", 0x036cd): (104, "ScriptMap"),
("read_only_space", 0x036f5): (105, "SourceTextModuleInfoEntryMap"),
("read_only_space", 0x0371d): (106, "StackFrameInfoMap"),
("read_only_space", 0x03745): (107, "StackTraceFrameMap"),
("read_only_space", 0x0376d): (108, "TemplateObjectDescriptionMap"),
("read_only_space", 0x03795): (109, "Tuple2Map"),
("read_only_space", 0x037bd): (110, "WasmCapiFunctionDataMap"),
("read_only_space", 0x037e5): (111, "WasmDebugInfoMap"),
("read_only_space", 0x0380d): (112, "WasmExceptionTagMap"),
("read_only_space", 0x03835): (113, "WasmExportedFunctionDataMap"),
("read_only_space", 0x0385d): (114, "WasmIndirectFunctionTableMap"),
("read_only_space", 0x03885): (115, "WasmJSFunctionDataMap"),
("read_only_space", 0x038ad): (134, "InternalClassWithSmiElementsMap"),
("read_only_space", 0x038d5): (165, "InternalClassWithStructElementsMap"),
("read_only_space", 0x038fd): (164, "InternalClassMap"),
("read_only_space", 0x03925): (172, "SmiPairMap"),
("read_only_space", 0x0394d): (171, "SmiBoxMap"),
("read_only_space", 0x03975): (68, "ExportedSubClassBaseMap"),
("read_only_space", 0x0399d): (69, "ExportedSubClassMap"),
("read_only_space", 0x039c5): (173, "SortStateMap"),
("read_only_space", 0x039ed): (85, "AllocationSiteWithWeakNextMap"),
("read_only_space", 0x03a15): (85, "AllocationSiteWithoutWeakNextMap"),
("read_only_space", 0x03a3d): (76, "LoadHandler1Map"),
("read_only_space", 0x03a65): (76, "LoadHandler2Map"),
("read_only_space", 0x03a8d): (76, "LoadHandler3Map"),
("read_only_space", 0x03ab5): (77, "StoreHandler0Map"),
("read_only_space", 0x03add): (77, "StoreHandler1Map"),
("read_only_space", 0x03b05): (77, "StoreHandler2Map"),
("read_only_space", 0x03b2d): (77, "StoreHandler3Map"),
("map_space", 0x00121): (1057, "ExternalMap"),
("map_space", 0x00149): (1073, "JSMessageObjectMap"),
}
# List of known V8 objects.
KNOWN_OBJECTS = {
("read_only_space", 0x00171): "NullValue",
("read_only_space", 0x001b5): "EmptyDescriptorArray",
("read_only_space", 0x001ed): "EmptyWeakFixedArray",
("read_only_space", 0x0026d): "UninitializedValue",
("read_only_space", 0x0030d): "UndefinedValue",
("read_only_space", 0x00351): "NanValue",
("read_only_space", 0x00385): "TheHoleValue",
("read_only_space", 0x003d9): "HoleNanValue",
("read_only_space", 0x003e5): "TrueValue",
("read_only_space", 0x0044d): "FalseValue",
("read_only_space", 0x0047d): "empty_string",
("read_only_space", 0x006e1): "EmptyScopeInfo",
("read_only_space", 0x006e9): "EmptyFixedArray",
("read_only_space", 0x006f1): "ArgumentsMarker",
("read_only_space", 0x00751): "Exception",
("read_only_space", 0x007ad): "TerminationException",
("read_only_space", 0x00815): "OptimizedOut",
("read_only_space", 0x00875): "StaleRegister",
("read_only_space", 0x0116d): "EmptyEnumCache",
("read_only_space", 0x011a1): "EmptyPropertyArray",
("read_only_space", 0x011a9): "EmptyByteArray",
("read_only_space", 0x011b1): "EmptyObjectBoilerplateDescription",
("read_only_space", 0x011bd): "EmptyArrayBoilerplateDescription",
("read_only_space", 0x011f1): "EmptyClosureFeedbackCellArray",
("read_only_space", 0x011f9): "EmptySloppyArgumentsElements",
("read_only_space", 0x01209): "EmptySlowElementDictionary",
("read_only_space", 0x0122d): "EmptyOrderedHashMap",
("read_only_space", 0x01241): "EmptyOrderedHashSet",
("read_only_space", 0x01255): "EmptyFeedbackMetadata",
("read_only_space", 0x01261): "EmptyPropertyCell",
("read_only_space", 0x01275): "EmptyPropertyDictionary",
("read_only_space", 0x0129d): "NoOpInterceptorInfo",
("read_only_space", 0x012ed): "EmptyWeakArrayList",
("read_only_space", 0x012f9): "InfinityValue",
("read_only_space", 0x01305): "MinusZeroValue",
("read_only_space", 0x01311): "MinusInfinityValue",
("read_only_space", 0x0131d): "SelfReferenceMarker",
("read_only_space", 0x0135d): "OffHeapTrampolineRelocationInfo",
("read_only_space", 0x01369): "TrampolineTrivialCodeDataContainer",
("read_only_space", 0x01375): "TrampolinePromiseRejectionCodeDataContainer",
("read_only_space", 0x01381): "GlobalThisBindingScopeInfo",
("read_only_space", 0x013b9): "EmptyFunctionScopeInfo",
("read_only_space", 0x013e1): "NativeScopeInfo",
("read_only_space", 0x013fd): "HashSeed",
("old_space", 0x00121): "ArgumentsIteratorAccessor",
("old_space", 0x00165): "ArrayLengthAccessor",
("old_space", 0x001a9): "BoundFunctionLengthAccessor",
("old_space", 0x001ed): "BoundFunctionNameAccessor",
("old_space", 0x00231): "ErrorStackAccessor",
("old_space", 0x00275): "FunctionArgumentsAccessor",
("old_space", 0x002b9): "FunctionCallerAccessor",
("old_space", 0x002fd): "FunctionNameAccessor",
("old_space", 0x00341): "FunctionLengthAccessor",
("old_space", 0x00385): "FunctionPrototypeAccessor",
("old_space", 0x003c9): "RegExpResultIndicesAccessor",
("old_space", 0x0040d): "StringLengthAccessor",
("old_space", 0x00451): "InvalidPrototypeValidityCell",
("old_space", 0x00459): "EmptyScript",
("old_space", 0x00499): "ManyClosuresCell",
("old_space", 0x004a5): "ArrayConstructorProtector",
("old_space", 0x004b9): "NoElementsProtector",
("old_space", 0x004cd): "IsConcatSpreadableProtector",
("old_space", 0x004e1): "ArraySpeciesProtector",
("old_space", 0x004f5): "TypedArraySpeciesProtector",
("old_space", 0x00509): "PromiseSpeciesProtector",
("old_space", 0x0051d): "StringLengthProtector",
("old_space", 0x00531): "ArrayIteratorProtector",
("old_space", 0x00545): "ArrayBufferDetachingProtector",
("old_space", 0x00559): "PromiseHookProtector",
("old_space", 0x0056d): "PromiseResolveProtector",
("old_space", 0x00581): "MapIteratorProtector",
("old_space", 0x00595): "PromiseThenProtector",
("old_space", 0x005a9): "SetIteratorProtector",
("old_space", 0x005bd): "StringIteratorProtector",
("old_space", 0x005d1): "SingleCharacterStringCache",
("old_space", 0x009d9): "StringSplitCache",
("old_space", 0x00de1): "RegExpMultipleCache",
("old_space", 0x011e9): "BuiltinsConstantsTable",
}
# Lower 32 bits of first page addresses for various heap spaces.
HEAP_FIRST_PAGES = {
0x08100000: "old_space",
0x08140000: "map_space",
0x08040000: "read_only_space",
}
# List of known V8 Frame Markers.
FRAME_MARKERS = (
"ENTRY",
"CONSTRUCT_ENTRY",
"EXIT",
"OPTIMIZED",
"WASM_COMPILED",
"WASM_TO_JS",
"JS_TO_WASM",
"WASM_INTERPRETER_ENTRY",
"WASM_DEBUG_BREAK",
"C_WASM_ENTRY",
"WASM_EXIT",
"WASM_COMPILE_LAZY",
"INTERPRETED",
"STUB",
"BUILTIN_CONTINUATION",
"JAVA_SCRIPT_BUILTIN_CONTINUATION",
"JAVA_SCRIPT_BUILTIN_CONTINUATION_WITH_CATCH",
"INTERNAL",
"CONSTRUCT",
"ARGUMENTS_ADAPTOR",
"BUILTIN",
"BUILTIN_EXIT",
"NATIVE",
)
# This set of constants is generated from a shipping build.
| instance_types = {0: 'INTERNALIZED_STRING_TYPE', 2: 'EXTERNAL_INTERNALIZED_STRING_TYPE', 8: 'ONE_BYTE_INTERNALIZED_STRING_TYPE', 10: 'EXTERNAL_ONE_BYTE_INTERNALIZED_STRING_TYPE', 18: 'UNCACHED_EXTERNAL_INTERNALIZED_STRING_TYPE', 26: 'UNCACHED_EXTERNAL_ONE_BYTE_INTERNALIZED_STRING_TYPE', 32: 'STRING_TYPE', 33: 'CONS_STRING_TYPE', 34: 'EXTERNAL_STRING_TYPE', 35: 'SLICED_STRING_TYPE', 37: 'THIN_STRING_TYPE', 40: 'ONE_BYTE_STRING_TYPE', 41: 'CONS_ONE_BYTE_STRING_TYPE', 42: 'EXTERNAL_ONE_BYTE_STRING_TYPE', 43: 'SLICED_ONE_BYTE_STRING_TYPE', 45: 'THIN_ONE_BYTE_STRING_TYPE', 50: 'UNCACHED_EXTERNAL_STRING_TYPE', 58: 'UNCACHED_EXTERNAL_ONE_BYTE_STRING_TYPE', 64: 'SYMBOL_TYPE', 65: 'BIG_INT_BASE_TYPE', 66: 'HEAP_NUMBER_TYPE', 67: 'ODDBALL_TYPE', 68: 'EXPORTED_SUB_CLASS_BASE_TYPE', 69: 'EXPORTED_SUB_CLASS_TYPE', 70: 'FOREIGN_TYPE', 71: 'PROMISE_FULFILL_REACTION_JOB_TASK_TYPE', 72: 'PROMISE_REJECT_REACTION_JOB_TASK_TYPE', 73: 'CALLABLE_TASK_TYPE', 74: 'CALLBACK_TASK_TYPE', 75: 'PROMISE_RESOLVE_THENABLE_JOB_TASK_TYPE', 76: 'LOAD_HANDLER_TYPE', 77: 'STORE_HANDLER_TYPE', 78: 'FUNCTION_TEMPLATE_INFO_TYPE', 79: 'OBJECT_TEMPLATE_INFO_TYPE', 80: 'ACCESS_CHECK_INFO_TYPE', 81: 'ACCESSOR_INFO_TYPE', 82: 'ACCESSOR_PAIR_TYPE', 83: 'ALIASED_ARGUMENTS_ENTRY_TYPE', 84: 'ALLOCATION_MEMENTO_TYPE', 85: 'ALLOCATION_SITE_TYPE', 86: 'ARRAY_BOILERPLATE_DESCRIPTION_TYPE', 87: 'ASM_WASM_DATA_TYPE', 88: 'ASYNC_GENERATOR_REQUEST_TYPE', 89: 'BREAK_POINT_TYPE', 90: 'BREAK_POINT_INFO_TYPE', 91: 'CACHED_TEMPLATE_OBJECT_TYPE', 92: 'CALL_HANDLER_INFO_TYPE', 93: 'CLASS_POSITIONS_TYPE', 94: 'DEBUG_INFO_TYPE', 95: 'ENUM_CACHE_TYPE', 96: 'FEEDBACK_CELL_TYPE', 97: 'FUNCTION_TEMPLATE_RARE_DATA_TYPE', 98: 'INTERCEPTOR_INFO_TYPE', 99: 'INTERPRETER_DATA_TYPE', 100: 'PROMISE_CAPABILITY_TYPE', 101: 'PROMISE_REACTION_TYPE', 102: 'PROPERTY_DESCRIPTOR_OBJECT_TYPE', 103: 'PROTOTYPE_INFO_TYPE', 104: 'SCRIPT_TYPE', 105: 'SOURCE_TEXT_MODULE_INFO_ENTRY_TYPE', 106: 'STACK_FRAME_INFO_TYPE', 107: 'STACK_TRACE_FRAME_TYPE', 108: 'TEMPLATE_OBJECT_DESCRIPTION_TYPE', 109: 'TUPLE2_TYPE', 110: 'WASM_CAPI_FUNCTION_DATA_TYPE', 111: 'WASM_DEBUG_INFO_TYPE', 112: 'WASM_EXCEPTION_TAG_TYPE', 113: 'WASM_EXPORTED_FUNCTION_DATA_TYPE', 114: 'WASM_INDIRECT_FUNCTION_TABLE_TYPE', 115: 'WASM_JS_FUNCTION_DATA_TYPE', 116: 'FIXED_ARRAY_TYPE', 117: 'HASH_TABLE_TYPE', 118: 'EPHEMERON_HASH_TABLE_TYPE', 119: 'GLOBAL_DICTIONARY_TYPE', 120: 'NAME_DICTIONARY_TYPE', 121: 'NUMBER_DICTIONARY_TYPE', 122: 'ORDERED_HASH_MAP_TYPE', 123: 'ORDERED_HASH_SET_TYPE', 124: 'ORDERED_NAME_DICTIONARY_TYPE', 125: 'SIMPLE_NUMBER_DICTIONARY_TYPE', 126: 'STRING_TABLE_TYPE', 127: 'CLOSURE_FEEDBACK_CELL_ARRAY_TYPE', 128: 'OBJECT_BOILERPLATE_DESCRIPTION_TYPE', 129: 'SCOPE_INFO_TYPE', 130: 'SCRIPT_CONTEXT_TABLE_TYPE', 131: 'BYTE_ARRAY_TYPE', 132: 'BYTECODE_ARRAY_TYPE', 133: 'FIXED_DOUBLE_ARRAY_TYPE', 134: 'INTERNAL_CLASS_WITH_SMI_ELEMENTS_TYPE', 135: 'AWAIT_CONTEXT_TYPE', 136: 'BLOCK_CONTEXT_TYPE', 137: 'CATCH_CONTEXT_TYPE', 138: 'DEBUG_EVALUATE_CONTEXT_TYPE', 139: 'EVAL_CONTEXT_TYPE', 140: 'FUNCTION_CONTEXT_TYPE', 141: 'MODULE_CONTEXT_TYPE', 142: 'NATIVE_CONTEXT_TYPE', 143: 'SCRIPT_CONTEXT_TYPE', 144: 'WITH_CONTEXT_TYPE', 145: 'SMALL_ORDERED_HASH_MAP_TYPE', 146: 'SMALL_ORDERED_HASH_SET_TYPE', 147: 'SMALL_ORDERED_NAME_DICTIONARY_TYPE', 148: 'SOURCE_TEXT_MODULE_TYPE', 149: 'SYNTHETIC_MODULE_TYPE', 150: 'UNCOMPILED_DATA_WITH_PREPARSE_DATA_TYPE', 151: 'UNCOMPILED_DATA_WITHOUT_PREPARSE_DATA_TYPE', 152: 'WEAK_FIXED_ARRAY_TYPE', 153: 'TRANSITION_ARRAY_TYPE', 154: 'CELL_TYPE', 155: 'CODE_TYPE', 156: 'CODE_DATA_CONTAINER_TYPE', 157: 'COVERAGE_INFO_TYPE', 158: 'DESCRIPTOR_ARRAY_TYPE', 159: 'EMBEDDER_DATA_ARRAY_TYPE', 160: 'FEEDBACK_METADATA_TYPE', 161: 'FEEDBACK_VECTOR_TYPE', 162: 'FILLER_TYPE', 163: 'FREE_SPACE_TYPE', 164: 'INTERNAL_CLASS_TYPE', 165: 'INTERNAL_CLASS_WITH_STRUCT_ELEMENTS_TYPE', 166: 'MAP_TYPE', 167: 'PREPARSE_DATA_TYPE', 168: 'PROPERTY_ARRAY_TYPE', 169: 'PROPERTY_CELL_TYPE', 170: 'SHARED_FUNCTION_INFO_TYPE', 171: 'SMI_BOX_TYPE', 172: 'SMI_PAIR_TYPE', 173: 'SORT_STATE_TYPE', 174: 'WEAK_ARRAY_LIST_TYPE', 175: 'WEAK_CELL_TYPE', 176: 'JS_PROXY_TYPE', 1057: 'JS_OBJECT_TYPE', 177: 'JS_GLOBAL_OBJECT_TYPE', 178: 'JS_GLOBAL_PROXY_TYPE', 179: 'JS_MODULE_NAMESPACE_TYPE', 1040: 'JS_SPECIAL_API_OBJECT_TYPE', 1041: 'JS_PRIMITIVE_WRAPPER_TYPE', 1042: 'JS_MAP_KEY_ITERATOR_TYPE', 1043: 'JS_MAP_KEY_VALUE_ITERATOR_TYPE', 1044: 'JS_MAP_VALUE_ITERATOR_TYPE', 1045: 'JS_SET_KEY_VALUE_ITERATOR_TYPE', 1046: 'JS_SET_VALUE_ITERATOR_TYPE', 1047: 'JS_GENERATOR_OBJECT_TYPE', 1048: 'JS_ASYNC_FUNCTION_OBJECT_TYPE', 1049: 'JS_ASYNC_GENERATOR_OBJECT_TYPE', 1050: 'JS_DATA_VIEW_TYPE', 1051: 'JS_TYPED_ARRAY_TYPE', 1052: 'JS_MAP_TYPE', 1053: 'JS_SET_TYPE', 1054: 'JS_WEAK_MAP_TYPE', 1055: 'JS_WEAK_SET_TYPE', 1056: 'JS_API_OBJECT_TYPE', 1058: 'JS_ARGUMENTS_OBJECT_TYPE', 1059: 'JS_ARRAY_TYPE', 1060: 'JS_ARRAY_BUFFER_TYPE', 1061: 'JS_ARRAY_ITERATOR_TYPE', 1062: 'JS_ASYNC_FROM_SYNC_ITERATOR_TYPE', 1063: 'JS_COLLATOR_TYPE', 1064: 'JS_CONTEXT_EXTENSION_OBJECT_TYPE', 1065: 'JS_DATE_TYPE', 1066: 'JS_DATE_TIME_FORMAT_TYPE', 1067: 'JS_DISPLAY_NAMES_TYPE', 1068: 'JS_ERROR_TYPE', 1069: 'JS_FINALIZATION_REGISTRY_TYPE', 1070: 'JS_FINALIZATION_REGISTRY_CLEANUP_ITERATOR_TYPE', 1071: 'JS_LIST_FORMAT_TYPE', 1072: 'JS_LOCALE_TYPE', 1073: 'JS_MESSAGE_OBJECT_TYPE', 1074: 'JS_NUMBER_FORMAT_TYPE', 1075: 'JS_PLURAL_RULES_TYPE', 1076: 'JS_PROMISE_TYPE', 1077: 'JS_REG_EXP_TYPE', 1078: 'JS_REG_EXP_STRING_ITERATOR_TYPE', 1079: 'JS_RELATIVE_TIME_FORMAT_TYPE', 1080: 'JS_SEGMENT_ITERATOR_TYPE', 1081: 'JS_SEGMENTER_TYPE', 1082: 'JS_STRING_ITERATOR_TYPE', 1083: 'JS_V8_BREAK_ITERATOR_TYPE', 1084: 'JS_WEAK_REF_TYPE', 1085: 'WASM_EXCEPTION_OBJECT_TYPE', 1086: 'WASM_GLOBAL_OBJECT_TYPE', 1087: 'WASM_INSTANCE_OBJECT_TYPE', 1088: 'WASM_MEMORY_OBJECT_TYPE', 1089: 'WASM_MODULE_OBJECT_TYPE', 1090: 'WASM_TABLE_OBJECT_TYPE', 1091: 'JS_BOUND_FUNCTION_TYPE', 1092: 'JS_FUNCTION_TYPE'}
known_maps = {('read_only_space', 289): (163, 'FreeSpaceMap'), ('read_only_space', 329): (166, 'MetaMap'), ('read_only_space', 397): (67, 'NullMap'), ('read_only_space', 453): (158, 'DescriptorArrayMap'), ('read_only_space', 501): (152, 'WeakFixedArrayMap'), ('read_only_space', 541): (162, 'OnePointerFillerMap'), ('read_only_space', 581): (162, 'TwoPointerFillerMap'), ('read_only_space', 649): (67, 'UninitializedMap'), ('read_only_space', 717): (8, 'OneByteInternalizedStringMap'), ('read_only_space', 809): (67, 'UndefinedMap'), ('read_only_space', 861): (66, 'HeapNumberMap'), ('read_only_space', 929): (67, 'TheHoleMap'), ('read_only_space', 1025): (67, 'BooleanMap'), ('read_only_space', 1161): (131, 'ByteArrayMap'), ('read_only_space', 1201): (116, 'FixedArrayMap'), ('read_only_space', 1241): (116, 'FixedCOWArrayMap'), ('read_only_space', 1281): (117, 'HashTableMap'), ('read_only_space', 1321): (64, 'SymbolMap'), ('read_only_space', 1361): (40, 'OneByteStringMap'), ('read_only_space', 1401): (129, 'ScopeInfoMap'), ('read_only_space', 1441): (170, 'SharedFunctionInfoMap'), ('read_only_space', 1481): (155, 'CodeMap'), ('read_only_space', 1521): (154, 'CellMap'), ('read_only_space', 1561): (169, 'GlobalPropertyCellMap'), ('read_only_space', 1601): (70, 'ForeignMap'), ('read_only_space', 1641): (153, 'TransitionArrayMap'), ('read_only_space', 1681): (45, 'ThinOneByteStringMap'), ('read_only_space', 1721): (161, 'FeedbackVectorMap'), ('read_only_space', 1805): (67, 'ArgumentsMarkerMap'), ('read_only_space', 1901): (67, 'ExceptionMap'), ('read_only_space', 1993): (67, 'TerminationExceptionMap'), ('read_only_space', 2097): (67, 'OptimizedOutMap'), ('read_only_space', 2193): (67, 'StaleRegisterMap'), ('read_only_space', 2261): (130, 'ScriptContextTableMap'), ('read_only_space', 2301): (127, 'ClosureFeedbackCellArrayMap'), ('read_only_space', 2341): (160, 'FeedbackMetadataArrayMap'), ('read_only_space', 2381): (116, 'ArrayListMap'), ('read_only_space', 2421): (65, 'BigIntMap'), ('read_only_space', 2461): (128, 'ObjectBoilerplateDescriptionMap'), ('read_only_space', 2501): (132, 'BytecodeArrayMap'), ('read_only_space', 2541): (156, 'CodeDataContainerMap'), ('read_only_space', 2581): (157, 'CoverageInfoMap'), ('read_only_space', 2621): (133, 'FixedDoubleArrayMap'), ('read_only_space', 2661): (119, 'GlobalDictionaryMap'), ('read_only_space', 2701): (96, 'ManyClosuresCellMap'), ('read_only_space', 2741): (116, 'ModuleInfoMap'), ('read_only_space', 2781): (120, 'NameDictionaryMap'), ('read_only_space', 2821): (96, 'NoClosuresCellMap'), ('read_only_space', 2861): (121, 'NumberDictionaryMap'), ('read_only_space', 2901): (96, 'OneClosureCellMap'), ('read_only_space', 2941): (122, 'OrderedHashMapMap'), ('read_only_space', 2981): (123, 'OrderedHashSetMap'), ('read_only_space', 3021): (124, 'OrderedNameDictionaryMap'), ('read_only_space', 3061): (167, 'PreparseDataMap'), ('read_only_space', 3101): (168, 'PropertyArrayMap'), ('read_only_space', 3141): (92, 'SideEffectCallHandlerInfoMap'), ('read_only_space', 3181): (92, 'SideEffectFreeCallHandlerInfoMap'), ('read_only_space', 3221): (92, 'NextCallSideEffectFreeCallHandlerInfoMap'), ('read_only_space', 3261): (125, 'SimpleNumberDictionaryMap'), ('read_only_space', 3301): (116, 'SloppyArgumentsElementsMap'), ('read_only_space', 3341): (145, 'SmallOrderedHashMapMap'), ('read_only_space', 3381): (146, 'SmallOrderedHashSetMap'), ('read_only_space', 3421): (147, 'SmallOrderedNameDictionaryMap'), ('read_only_space', 3461): (148, 'SourceTextModuleMap'), ('read_only_space', 3501): (126, 'StringTableMap'), ('read_only_space', 3541): (149, 'SyntheticModuleMap'), ('read_only_space', 3581): (151, 'UncompiledDataWithoutPreparseDataMap'), ('read_only_space', 3621): (150, 'UncompiledDataWithPreparseDataMap'), ('read_only_space', 3661): (174, 'WeakArrayListMap'), ('read_only_space', 3701): (118, 'EphemeronHashTableMap'), ('read_only_space', 3741): (159, 'EmbedderDataArrayMap'), ('read_only_space', 3781): (175, 'WeakCellMap'), ('read_only_space', 3821): (32, 'StringMap'), ('read_only_space', 3861): (41, 'ConsOneByteStringMap'), ('read_only_space', 3901): (33, 'ConsStringMap'), ('read_only_space', 3941): (37, 'ThinStringMap'), ('read_only_space', 3981): (35, 'SlicedStringMap'), ('read_only_space', 4021): (43, 'SlicedOneByteStringMap'), ('read_only_space', 4061): (34, 'ExternalStringMap'), ('read_only_space', 4101): (42, 'ExternalOneByteStringMap'), ('read_only_space', 4141): (50, 'UncachedExternalStringMap'), ('read_only_space', 4181): (0, 'InternalizedStringMap'), ('read_only_space', 4221): (2, 'ExternalInternalizedStringMap'), ('read_only_space', 4261): (10, 'ExternalOneByteInternalizedStringMap'), ('read_only_space', 4301): (18, 'UncachedExternalInternalizedStringMap'), ('read_only_space', 4341): (26, 'UncachedExternalOneByteInternalizedStringMap'), ('read_only_space', 4381): (58, 'UncachedExternalOneByteStringMap'), ('read_only_space', 4421): (67, 'SelfReferenceMarkerMap'), ('read_only_space', 4473): (95, 'EnumCacheMap'), ('read_only_space', 4553): (86, 'ArrayBoilerplateDescriptionMap'), ('read_only_space', 4805): (98, 'InterceptorInfoMap'), ('read_only_space', 13029): (71, 'PromiseFulfillReactionJobTaskMap'), ('read_only_space', 13069): (72, 'PromiseRejectReactionJobTaskMap'), ('read_only_space', 13109): (73, 'CallableTaskMap'), ('read_only_space', 13149): (74, 'CallbackTaskMap'), ('read_only_space', 13189): (75, 'PromiseResolveThenableJobTaskMap'), ('read_only_space', 13229): (78, 'FunctionTemplateInfoMap'), ('read_only_space', 13269): (79, 'ObjectTemplateInfoMap'), ('read_only_space', 13309): (80, 'AccessCheckInfoMap'), ('read_only_space', 13349): (81, 'AccessorInfoMap'), ('read_only_space', 13389): (82, 'AccessorPairMap'), ('read_only_space', 13429): (83, 'AliasedArgumentsEntryMap'), ('read_only_space', 13469): (84, 'AllocationMementoMap'), ('read_only_space', 13509): (87, 'AsmWasmDataMap'), ('read_only_space', 13549): (88, 'AsyncGeneratorRequestMap'), ('read_only_space', 13589): (89, 'BreakPointMap'), ('read_only_space', 13629): (90, 'BreakPointInfoMap'), ('read_only_space', 13669): (91, 'CachedTemplateObjectMap'), ('read_only_space', 13709): (93, 'ClassPositionsMap'), ('read_only_space', 13749): (94, 'DebugInfoMap'), ('read_only_space', 13789): (97, 'FunctionTemplateRareDataMap'), ('read_only_space', 13829): (99, 'InterpreterDataMap'), ('read_only_space', 13869): (100, 'PromiseCapabilityMap'), ('read_only_space', 13909): (101, 'PromiseReactionMap'), ('read_only_space', 13949): (102, 'PropertyDescriptorObjectMap'), ('read_only_space', 13989): (103, 'PrototypeInfoMap'), ('read_only_space', 14029): (104, 'ScriptMap'), ('read_only_space', 14069): (105, 'SourceTextModuleInfoEntryMap'), ('read_only_space', 14109): (106, 'StackFrameInfoMap'), ('read_only_space', 14149): (107, 'StackTraceFrameMap'), ('read_only_space', 14189): (108, 'TemplateObjectDescriptionMap'), ('read_only_space', 14229): (109, 'Tuple2Map'), ('read_only_space', 14269): (110, 'WasmCapiFunctionDataMap'), ('read_only_space', 14309): (111, 'WasmDebugInfoMap'), ('read_only_space', 14349): (112, 'WasmExceptionTagMap'), ('read_only_space', 14389): (113, 'WasmExportedFunctionDataMap'), ('read_only_space', 14429): (114, 'WasmIndirectFunctionTableMap'), ('read_only_space', 14469): (115, 'WasmJSFunctionDataMap'), ('read_only_space', 14509): (134, 'InternalClassWithSmiElementsMap'), ('read_only_space', 14549): (165, 'InternalClassWithStructElementsMap'), ('read_only_space', 14589): (164, 'InternalClassMap'), ('read_only_space', 14629): (172, 'SmiPairMap'), ('read_only_space', 14669): (171, 'SmiBoxMap'), ('read_only_space', 14709): (68, 'ExportedSubClassBaseMap'), ('read_only_space', 14749): (69, 'ExportedSubClassMap'), ('read_only_space', 14789): (173, 'SortStateMap'), ('read_only_space', 14829): (85, 'AllocationSiteWithWeakNextMap'), ('read_only_space', 14869): (85, 'AllocationSiteWithoutWeakNextMap'), ('read_only_space', 14909): (76, 'LoadHandler1Map'), ('read_only_space', 14949): (76, 'LoadHandler2Map'), ('read_only_space', 14989): (76, 'LoadHandler3Map'), ('read_only_space', 15029): (77, 'StoreHandler0Map'), ('read_only_space', 15069): (77, 'StoreHandler1Map'), ('read_only_space', 15109): (77, 'StoreHandler2Map'), ('read_only_space', 15149): (77, 'StoreHandler3Map'), ('map_space', 289): (1057, 'ExternalMap'), ('map_space', 329): (1073, 'JSMessageObjectMap')}
known_objects = {('read_only_space', 369): 'NullValue', ('read_only_space', 437): 'EmptyDescriptorArray', ('read_only_space', 493): 'EmptyWeakFixedArray', ('read_only_space', 621): 'UninitializedValue', ('read_only_space', 781): 'UndefinedValue', ('read_only_space', 849): 'NanValue', ('read_only_space', 901): 'TheHoleValue', ('read_only_space', 985): 'HoleNanValue', ('read_only_space', 997): 'TrueValue', ('read_only_space', 1101): 'FalseValue', ('read_only_space', 1149): 'empty_string', ('read_only_space', 1761): 'EmptyScopeInfo', ('read_only_space', 1769): 'EmptyFixedArray', ('read_only_space', 1777): 'ArgumentsMarker', ('read_only_space', 1873): 'Exception', ('read_only_space', 1965): 'TerminationException', ('read_only_space', 2069): 'OptimizedOut', ('read_only_space', 2165): 'StaleRegister', ('read_only_space', 4461): 'EmptyEnumCache', ('read_only_space', 4513): 'EmptyPropertyArray', ('read_only_space', 4521): 'EmptyByteArray', ('read_only_space', 4529): 'EmptyObjectBoilerplateDescription', ('read_only_space', 4541): 'EmptyArrayBoilerplateDescription', ('read_only_space', 4593): 'EmptyClosureFeedbackCellArray', ('read_only_space', 4601): 'EmptySloppyArgumentsElements', ('read_only_space', 4617): 'EmptySlowElementDictionary', ('read_only_space', 4653): 'EmptyOrderedHashMap', ('read_only_space', 4673): 'EmptyOrderedHashSet', ('read_only_space', 4693): 'EmptyFeedbackMetadata', ('read_only_space', 4705): 'EmptyPropertyCell', ('read_only_space', 4725): 'EmptyPropertyDictionary', ('read_only_space', 4765): 'NoOpInterceptorInfo', ('read_only_space', 4845): 'EmptyWeakArrayList', ('read_only_space', 4857): 'InfinityValue', ('read_only_space', 4869): 'MinusZeroValue', ('read_only_space', 4881): 'MinusInfinityValue', ('read_only_space', 4893): 'SelfReferenceMarker', ('read_only_space', 4957): 'OffHeapTrampolineRelocationInfo', ('read_only_space', 4969): 'TrampolineTrivialCodeDataContainer', ('read_only_space', 4981): 'TrampolinePromiseRejectionCodeDataContainer', ('read_only_space', 4993): 'GlobalThisBindingScopeInfo', ('read_only_space', 5049): 'EmptyFunctionScopeInfo', ('read_only_space', 5089): 'NativeScopeInfo', ('read_only_space', 5117): 'HashSeed', ('old_space', 289): 'ArgumentsIteratorAccessor', ('old_space', 357): 'ArrayLengthAccessor', ('old_space', 425): 'BoundFunctionLengthAccessor', ('old_space', 493): 'BoundFunctionNameAccessor', ('old_space', 561): 'ErrorStackAccessor', ('old_space', 629): 'FunctionArgumentsAccessor', ('old_space', 697): 'FunctionCallerAccessor', ('old_space', 765): 'FunctionNameAccessor', ('old_space', 833): 'FunctionLengthAccessor', ('old_space', 901): 'FunctionPrototypeAccessor', ('old_space', 969): 'RegExpResultIndicesAccessor', ('old_space', 1037): 'StringLengthAccessor', ('old_space', 1105): 'InvalidPrototypeValidityCell', ('old_space', 1113): 'EmptyScript', ('old_space', 1177): 'ManyClosuresCell', ('old_space', 1189): 'ArrayConstructorProtector', ('old_space', 1209): 'NoElementsProtector', ('old_space', 1229): 'IsConcatSpreadableProtector', ('old_space', 1249): 'ArraySpeciesProtector', ('old_space', 1269): 'TypedArraySpeciesProtector', ('old_space', 1289): 'PromiseSpeciesProtector', ('old_space', 1309): 'StringLengthProtector', ('old_space', 1329): 'ArrayIteratorProtector', ('old_space', 1349): 'ArrayBufferDetachingProtector', ('old_space', 1369): 'PromiseHookProtector', ('old_space', 1389): 'PromiseResolveProtector', ('old_space', 1409): 'MapIteratorProtector', ('old_space', 1429): 'PromiseThenProtector', ('old_space', 1449): 'SetIteratorProtector', ('old_space', 1469): 'StringIteratorProtector', ('old_space', 1489): 'SingleCharacterStringCache', ('old_space', 2521): 'StringSplitCache', ('old_space', 3553): 'RegExpMultipleCache', ('old_space', 4585): 'BuiltinsConstantsTable'}
heap_first_pages = {135266304: 'old_space', 135528448: 'map_space', 134479872: 'read_only_space'}
frame_markers = ('ENTRY', 'CONSTRUCT_ENTRY', 'EXIT', 'OPTIMIZED', 'WASM_COMPILED', 'WASM_TO_JS', 'JS_TO_WASM', 'WASM_INTERPRETER_ENTRY', 'WASM_DEBUG_BREAK', 'C_WASM_ENTRY', 'WASM_EXIT', 'WASM_COMPILE_LAZY', 'INTERPRETED', 'STUB', 'BUILTIN_CONTINUATION', 'JAVA_SCRIPT_BUILTIN_CONTINUATION', 'JAVA_SCRIPT_BUILTIN_CONTINUATION_WITH_CATCH', 'INTERNAL', 'CONSTRUCT', 'ARGUMENTS_ADAPTOR', 'BUILTIN', 'BUILTIN_EXIT', 'NATIVE') |
#
# PySNMP MIB module HPN-ICF-FDMI-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPN-ICF-FDMI-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:26:45 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint")
fcmInstanceIndex, FcNameIdOrZero = mibBuilder.importSymbols("FC-MGMT-MIB", "fcmInstanceIndex", "FcNameIdOrZero")
hpnicfSan, = mibBuilder.importSymbols("HPN-ICF-VSAN-MIB", "hpnicfSan")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
IpAddress, Counter32, Bits, TimeTicks, iso, ObjectIdentity, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Gauge32, ModuleIdentity, Counter64, NotificationType, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Counter32", "Bits", "TimeTicks", "iso", "ObjectIdentity", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Gauge32", "ModuleIdentity", "Counter64", "NotificationType", "MibIdentifier")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
T11FabricIndex, = mibBuilder.importSymbols("T11-TC-MIB", "T11FabricIndex")
hpnicfFdmi = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7))
hpnicfFdmi.setRevisions(('2012-06-18 00:00',))
if mibBuilder.loadTexts: hpnicfFdmi.setLastUpdated('201206180000Z')
if mibBuilder.loadTexts: hpnicfFdmi.setOrganization('')
hpnicfFdmiObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1))
hpnicfFdmiInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1))
hpnicfFdmiHbaInfoTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1), )
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoTable.setStatus('current')
hpnicfFdmiHbaInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1), ).setIndexNames((0, "FC-MGMT-MIB", "fcmInstanceIndex"), (0, "HPN-ICF-FDMI-MIB", "hpnicfFdmiHbaInfoFabricIndex"), (0, "HPN-ICF-FDMI-MIB", "hpnicfFdmiHbaInfoId"))
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoEntry.setStatus('current')
hpnicfFdmiHbaInfoFabricIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 1), T11FabricIndex())
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoFabricIndex.setStatus('current')
hpnicfFdmiHbaInfoId = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 2), FcNameIdOrZero())
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoId.setStatus('current')
hpnicfFdmiHbaInfoNodeName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 3), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoNodeName.setStatus('current')
hpnicfFdmiHbaInfoMfg = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoMfg.setStatus('current')
hpnicfFdmiHbaInfoSn = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoSn.setStatus('current')
hpnicfFdmiHbaInfoModel = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoModel.setStatus('current')
hpnicfFdmiHbaInfoModelDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 7), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoModelDescr.setStatus('current')
hpnicfFdmiHbaInfoHwVer = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 8), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoHwVer.setStatus('current')
hpnicfFdmiHbaInfoDriverVer = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 9), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoDriverVer.setStatus('current')
hpnicfFdmiHbaInfoOptROMVer = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 10), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoOptROMVer.setStatus('current')
hpnicfFdmiHbaInfoFwVer = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 11), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoFwVer.setStatus('current')
hpnicfFdmiHbaInfoOSInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 12), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoOSInfo.setStatus('current')
hpnicfFdmiHbaInfoMaxCTPayload = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaInfoMaxCTPayload.setStatus('current')
hpnicfFdmiHbaPortTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2), )
if mibBuilder.loadTexts: hpnicfFdmiHbaPortTable.setStatus('current')
hpnicfFdmiHbaPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1), ).setIndexNames((0, "FC-MGMT-MIB", "fcmInstanceIndex"), (0, "HPN-ICF-FDMI-MIB", "hpnicfFdmiHbaInfoFabricIndex"), (0, "HPN-ICF-FDMI-MIB", "hpnicfFdmiHbaInfoId"), (0, "HPN-ICF-FDMI-MIB", "hpnicfFdmiHbaPortId"))
if mibBuilder.loadTexts: hpnicfFdmiHbaPortEntry.setStatus('current')
hpnicfFdmiHbaPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 1), FcNameIdOrZero())
if mibBuilder.loadTexts: hpnicfFdmiHbaPortId.setStatus('current')
hpnicfFdmiHbaPortSupportedFC4Type = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 2), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(32, 32), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaPortSupportedFC4Type.setStatus('current')
hpnicfFdmiHbaPortSupportedSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaPortSupportedSpeed.setStatus('current')
hpnicfFdmiHbaPortCurrentSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaPortCurrentSpeed.setStatus('current')
hpnicfFdmiHbaPortMaxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaPortMaxFrameSize.setStatus('current')
hpnicfFdmiHbaPortOsDevName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaPortOsDevName.setStatus('current')
hpnicfFdmiHbaPortHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 7), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfFdmiHbaPortHostName.setStatus('current')
mibBuilder.exportSymbols("HPN-ICF-FDMI-MIB", hpnicfFdmiHbaPortTable=hpnicfFdmiHbaPortTable, hpnicfFdmiHbaInfoOSInfo=hpnicfFdmiHbaInfoOSInfo, hpnicfFdmiHbaPortCurrentSpeed=hpnicfFdmiHbaPortCurrentSpeed, hpnicfFdmiInfo=hpnicfFdmiInfo, hpnicfFdmiHbaInfoModel=hpnicfFdmiHbaInfoModel, hpnicfFdmiHbaInfoDriverVer=hpnicfFdmiHbaInfoDriverVer, hpnicfFdmiObjects=hpnicfFdmiObjects, hpnicfFdmiHbaPortSupportedSpeed=hpnicfFdmiHbaPortSupportedSpeed, hpnicfFdmiHbaPortSupportedFC4Type=hpnicfFdmiHbaPortSupportedFC4Type, hpnicfFdmiHbaInfoEntry=hpnicfFdmiHbaInfoEntry, hpnicfFdmiHbaInfoOptROMVer=hpnicfFdmiHbaInfoOptROMVer, hpnicfFdmiHbaPortOsDevName=hpnicfFdmiHbaPortOsDevName, hpnicfFdmiHbaInfoTable=hpnicfFdmiHbaInfoTable, hpnicfFdmiHbaPortMaxFrameSize=hpnicfFdmiHbaPortMaxFrameSize, PYSNMP_MODULE_ID=hpnicfFdmi, hpnicfFdmiHbaInfoFwVer=hpnicfFdmiHbaInfoFwVer, hpnicfFdmiHbaPortEntry=hpnicfFdmiHbaPortEntry, hpnicfFdmiHbaInfoNodeName=hpnicfFdmiHbaInfoNodeName, hpnicfFdmiHbaPortId=hpnicfFdmiHbaPortId, hpnicfFdmiHbaInfoMfg=hpnicfFdmiHbaInfoMfg, hpnicfFdmi=hpnicfFdmi, hpnicfFdmiHbaInfoSn=hpnicfFdmiHbaInfoSn, hpnicfFdmiHbaInfoHwVer=hpnicfFdmiHbaInfoHwVer, hpnicfFdmiHbaInfoFabricIndex=hpnicfFdmiHbaInfoFabricIndex, hpnicfFdmiHbaInfoId=hpnicfFdmiHbaInfoId, hpnicfFdmiHbaPortHostName=hpnicfFdmiHbaPortHostName, hpnicfFdmiHbaInfoMaxCTPayload=hpnicfFdmiHbaInfoMaxCTPayload, hpnicfFdmiHbaInfoModelDescr=hpnicfFdmiHbaInfoModelDescr)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_range_constraint, constraints_union, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint')
(fcm_instance_index, fc_name_id_or_zero) = mibBuilder.importSymbols('FC-MGMT-MIB', 'fcmInstanceIndex', 'FcNameIdOrZero')
(hpnicf_san,) = mibBuilder.importSymbols('HPN-ICF-VSAN-MIB', 'hpnicfSan')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(ip_address, counter32, bits, time_ticks, iso, object_identity, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, gauge32, module_identity, counter64, notification_type, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Counter32', 'Bits', 'TimeTicks', 'iso', 'ObjectIdentity', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Gauge32', 'ModuleIdentity', 'Counter64', 'NotificationType', 'MibIdentifier')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
(t11_fabric_index,) = mibBuilder.importSymbols('T11-TC-MIB', 'T11FabricIndex')
hpnicf_fdmi = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7))
hpnicfFdmi.setRevisions(('2012-06-18 00:00',))
if mibBuilder.loadTexts:
hpnicfFdmi.setLastUpdated('201206180000Z')
if mibBuilder.loadTexts:
hpnicfFdmi.setOrganization('')
hpnicf_fdmi_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1))
hpnicf_fdmi_info = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1))
hpnicf_fdmi_hba_info_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1))
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoTable.setStatus('current')
hpnicf_fdmi_hba_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1)).setIndexNames((0, 'FC-MGMT-MIB', 'fcmInstanceIndex'), (0, 'HPN-ICF-FDMI-MIB', 'hpnicfFdmiHbaInfoFabricIndex'), (0, 'HPN-ICF-FDMI-MIB', 'hpnicfFdmiHbaInfoId'))
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoEntry.setStatus('current')
hpnicf_fdmi_hba_info_fabric_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 1), t11_fabric_index())
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoFabricIndex.setStatus('current')
hpnicf_fdmi_hba_info_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 2), fc_name_id_or_zero())
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoId.setStatus('current')
hpnicf_fdmi_hba_info_node_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 3), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoNodeName.setStatus('current')
hpnicf_fdmi_hba_info_mfg = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 4), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoMfg.setStatus('current')
hpnicf_fdmi_hba_info_sn = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoSn.setStatus('current')
hpnicf_fdmi_hba_info_model = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoModel.setStatus('current')
hpnicf_fdmi_hba_info_model_descr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 7), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoModelDescr.setStatus('current')
hpnicf_fdmi_hba_info_hw_ver = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 8), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoHwVer.setStatus('current')
hpnicf_fdmi_hba_info_driver_ver = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 9), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoDriverVer.setStatus('current')
hpnicf_fdmi_hba_info_opt_rom_ver = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 10), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoOptROMVer.setStatus('current')
hpnicf_fdmi_hba_info_fw_ver = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 11), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoFwVer.setStatus('current')
hpnicf_fdmi_hba_info_os_info = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 12), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoOSInfo.setStatus('current')
hpnicf_fdmi_hba_info_max_ct_payload = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 1, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaInfoMaxCTPayload.setStatus('current')
hpnicf_fdmi_hba_port_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2))
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortTable.setStatus('current')
hpnicf_fdmi_hba_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1)).setIndexNames((0, 'FC-MGMT-MIB', 'fcmInstanceIndex'), (0, 'HPN-ICF-FDMI-MIB', 'hpnicfFdmiHbaInfoFabricIndex'), (0, 'HPN-ICF-FDMI-MIB', 'hpnicfFdmiHbaInfoId'), (0, 'HPN-ICF-FDMI-MIB', 'hpnicfFdmiHbaPortId'))
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortEntry.setStatus('current')
hpnicf_fdmi_hba_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 1), fc_name_id_or_zero())
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortId.setStatus('current')
hpnicf_fdmi_hba_port_supported_fc4_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 2), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(32, 32)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortSupportedFC4Type.setStatus('current')
hpnicf_fdmi_hba_port_supported_speed = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortSupportedSpeed.setStatus('current')
hpnicf_fdmi_hba_port_current_speed = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortCurrentSpeed.setStatus('current')
hpnicf_fdmi_hba_port_max_frame_size = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortMaxFrameSize.setStatus('current')
hpnicf_fdmi_hba_port_os_dev_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortOsDevName.setStatus('current')
hpnicf_fdmi_hba_port_host_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 2, 127, 7, 1, 1, 2, 1, 7), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfFdmiHbaPortHostName.setStatus('current')
mibBuilder.exportSymbols('HPN-ICF-FDMI-MIB', hpnicfFdmiHbaPortTable=hpnicfFdmiHbaPortTable, hpnicfFdmiHbaInfoOSInfo=hpnicfFdmiHbaInfoOSInfo, hpnicfFdmiHbaPortCurrentSpeed=hpnicfFdmiHbaPortCurrentSpeed, hpnicfFdmiInfo=hpnicfFdmiInfo, hpnicfFdmiHbaInfoModel=hpnicfFdmiHbaInfoModel, hpnicfFdmiHbaInfoDriverVer=hpnicfFdmiHbaInfoDriverVer, hpnicfFdmiObjects=hpnicfFdmiObjects, hpnicfFdmiHbaPortSupportedSpeed=hpnicfFdmiHbaPortSupportedSpeed, hpnicfFdmiHbaPortSupportedFC4Type=hpnicfFdmiHbaPortSupportedFC4Type, hpnicfFdmiHbaInfoEntry=hpnicfFdmiHbaInfoEntry, hpnicfFdmiHbaInfoOptROMVer=hpnicfFdmiHbaInfoOptROMVer, hpnicfFdmiHbaPortOsDevName=hpnicfFdmiHbaPortOsDevName, hpnicfFdmiHbaInfoTable=hpnicfFdmiHbaInfoTable, hpnicfFdmiHbaPortMaxFrameSize=hpnicfFdmiHbaPortMaxFrameSize, PYSNMP_MODULE_ID=hpnicfFdmi, hpnicfFdmiHbaInfoFwVer=hpnicfFdmiHbaInfoFwVer, hpnicfFdmiHbaPortEntry=hpnicfFdmiHbaPortEntry, hpnicfFdmiHbaInfoNodeName=hpnicfFdmiHbaInfoNodeName, hpnicfFdmiHbaPortId=hpnicfFdmiHbaPortId, hpnicfFdmiHbaInfoMfg=hpnicfFdmiHbaInfoMfg, hpnicfFdmi=hpnicfFdmi, hpnicfFdmiHbaInfoSn=hpnicfFdmiHbaInfoSn, hpnicfFdmiHbaInfoHwVer=hpnicfFdmiHbaInfoHwVer, hpnicfFdmiHbaInfoFabricIndex=hpnicfFdmiHbaInfoFabricIndex, hpnicfFdmiHbaInfoId=hpnicfFdmiHbaInfoId, hpnicfFdmiHbaPortHostName=hpnicfFdmiHbaPortHostName, hpnicfFdmiHbaInfoMaxCTPayload=hpnicfFdmiHbaInfoMaxCTPayload, hpnicfFdmiHbaInfoModelDescr=hpnicfFdmiHbaInfoModelDescr) |
class Config:
env: str = None
episodes: int = None
max_steps: int = None
max_buff: int = None
batch_size: int = None
state_dim: int = None
state_high = None
state_low = None
seed = None
output = 'out'
action_dim: int = None
action_high = None
action_low = None
action_lim = None
learning_rate: float = None
learning_rate_actor: float = None
gamma: float = None
tau: float = None
epsilon: float = None
eps_decay = None
epsilon_min: float = None
use_cuda: bool = True
checkpoint: bool = False
checkpoint_interval: int = None
use_matplotlib: bool = False
record: bool = False
record_ep_interval: int = None
| class Config:
env: str = None
episodes: int = None
max_steps: int = None
max_buff: int = None
batch_size: int = None
state_dim: int = None
state_high = None
state_low = None
seed = None
output = 'out'
action_dim: int = None
action_high = None
action_low = None
action_lim = None
learning_rate: float = None
learning_rate_actor: float = None
gamma: float = None
tau: float = None
epsilon: float = None
eps_decay = None
epsilon_min: float = None
use_cuda: bool = True
checkpoint: bool = False
checkpoint_interval: int = None
use_matplotlib: bool = False
record: bool = False
record_ep_interval: int = None |
def greeter(name, message='Live Long and Prosper'):
print('Welcome', name, '-', message)
greeter('Eloise')
greeter('Eloise', 'Hope you like Rugby')
def greeter(name, title='Dr', prompt='Welcome', message='Live Long and Prosper'):
print(prompt, title, name, '-', message)
greeter(message='We like Python', name='Lloyd')
greeter('Lloyd', message='We like Python')
| def greeter(name, message='Live Long and Prosper'):
print('Welcome', name, '-', message)
greeter('Eloise')
greeter('Eloise', 'Hope you like Rugby')
def greeter(name, title='Dr', prompt='Welcome', message='Live Long and Prosper'):
print(prompt, title, name, '-', message)
greeter(message='We like Python', name='Lloyd')
greeter('Lloyd', message='We like Python') |
print('+' * 30)
print(' ' * 6, 'CAIXA ELETRONICO')
print('+' * 30)
sacar = int(input('Quanto Deseja Sacar: R$'))
print('+' * 30)
nota50 = sacar // 50
resto = sacar % 50
nota20 = resto // 20
resto = resto % 20
nota10 = resto // 10
resto = resto % 10
nota1 = resto // 1
if nota50 > 0:
print(f'{nota50} Notas de R$50')
if nota20 > 0:
print(f'{nota20} Notas de R$20')
if nota10 > 0:
print(f'{nota10} Notas de R$10')
if nota1 > 0:
print(f'{nota1} Notas de R$1')
print('+' * 30)
| print('+' * 30)
print(' ' * 6, 'CAIXA ELETRONICO')
print('+' * 30)
sacar = int(input('Quanto Deseja Sacar: R$'))
print('+' * 30)
nota50 = sacar // 50
resto = sacar % 50
nota20 = resto // 20
resto = resto % 20
nota10 = resto // 10
resto = resto % 10
nota1 = resto // 1
if nota50 > 0:
print(f'{nota50} Notas de R$50')
if nota20 > 0:
print(f'{nota20} Notas de R$20')
if nota10 > 0:
print(f'{nota10} Notas de R$10')
if nota1 > 0:
print(f'{nota1} Notas de R$1')
print('+' * 30) |
dnas = [
['Tv0(Zs', 90, 11, 3.31, 100, 1, 0.36, {'ott_len': 28, 'ott_percent': 791, 'stop_loss': 85, 'risk_reward': 10, 'chop_rsi_len': 32, 'chop_bandwidth': 285}],
['wLXY\\1', 36, 71, 20.85, 14, 7, -4.76, {'ott_len': 50, 'ott_percent': 419, 'stop_loss': 263, 'risk_reward': 53, 'chop_rsi_len': 34, 'chop_bandwidth': 43}],
['m@7bp/', 42, 113, 20.42, 25, 16, -3.41, {'ott_len': 44, 'ott_percent': 313, 'stop_loss': 116, 'risk_reward': 61, 'chop_rsi_len': 46, 'chop_bandwidth': 36}],
['oA0qI^', 45, 77, 36.93, 35, 14, -0.85, {'ott_len': 45, 'ott_percent': 322, 'stop_loss': 85, 'risk_reward': 75, 'chop_rsi_len': 22, 'chop_bandwidth': 208}],
['oMHHI_', 44, 56, 30.42, 28, 7, 0.35, {'ott_len': 45, 'ott_percent': 428, 'stop_loss': 192, 'risk_reward': 38, 'chop_rsi_len': 22, 'chop_bandwidth': 212}],
['JX,t2j', 44, 97, 30.14, 46, 13, 4.76, {'ott_len': 22, 'ott_percent': 525, 'stop_loss': 68, 'risk_reward': 77, 'chop_rsi_len': 8, 'chop_bandwidth': 252}],
['e<I(af', 80, 20, 6.6, 66, 6, 1.2, {'ott_len': 39, 'ott_percent': 277, 'stop_loss': 196, 'risk_reward': 10, 'chop_rsi_len': 37, 'chop_bandwidth': 238}],
['[,Y.*j', 49, 121, 41.38, 22, 18, -2.42, {'ott_len': 33, 'ott_percent': 135, 'stop_loss': 267, 'risk_reward': 15, 'chop_rsi_len': 3, 'chop_bandwidth': 252}],
['mO4dGF', 38, 97, 21.19, 30, 13, -1.66, {'ott_len': 44, 'ott_percent': 446, 'stop_loss': 103, 'risk_reward': 63, 'chop_rsi_len': 21, 'chop_bandwidth': 120}],
['CRg4wH', 40, 85, 22.04, 44, 9, 0.95, {'ott_len': 18, 'ott_percent': 472, 'stop_loss': 329, 'risk_reward': 21, 'chop_rsi_len': 50, 'chop_bandwidth': 127}],
['wK@GeQ', 42, 68, 22.15, 30, 10, -2.21, {'ott_len': 50, 'ott_percent': 410, 'stop_loss': 156, 'risk_reward': 37, 'chop_rsi_len': 39, 'chop_bandwidth': 161}],
['oMWHF_', 41, 55, 27.45, 28, 7, -3.61, {'ott_len': 45, 'ott_percent': 428, 'stop_loss': 258, 'risk_reward': 38, 'chop_rsi_len': 20, 'chop_bandwidth': 212}],
['YO><L_', 53, 69, 20.56, 50, 10, 5.23, {'ott_len': 31, 'ott_percent': 446, 'stop_loss': 147, 'risk_reward': 28, 'chop_rsi_len': 24, 'chop_bandwidth': 212}],
[',P`(eV', 50, 60, 20.73, 58, 12, 8.04, {'ott_len': 3, 'ott_percent': 454, 'stop_loss': 298, 'risk_reward': 10, 'chop_rsi_len': 39, 'chop_bandwidth': 179}],
['9.9F`9', 35, 275, 28.03, 17, 46, -8.04, {'ott_len': 12, 'ott_percent': 153, 'stop_loss': 125, 'risk_reward': 37, 'chop_rsi_len': 36, 'chop_bandwidth': 72}],
[':JFX)1', 34, 143, 42.36, 30, 13, -1.86, {'ott_len': 12, 'ott_percent': 401, 'stop_loss': 183, 'risk_reward': 53, 'chop_rsi_len': 3, 'chop_bandwidth': 43}],
['9YC;(q', 40, 109, 18.57, 33, 9, -2.36, {'ott_len': 12, 'ott_percent': 534, 'stop_loss': 170, 'risk_reward': 27, 'chop_rsi_len': 2, 'chop_bandwidth': 278}],
['a5v:,r', 44, 69, 36.07, 37, 8, -3.12, {'ott_len': 36, 'ott_percent': 215, 'stop_loss': 396, 'risk_reward': 26, 'chop_rsi_len': 4, 'chop_bandwidth': 282}],
['2D4j*:', 32, 228, 36.17, 37, 24, 1.91, {'ott_len': 7, 'ott_percent': 348, 'stop_loss': 103, 'risk_reward': 68, 'chop_rsi_len': 3, 'chop_bandwidth': 76}],
['H<XF,l', 40, 98, 31.16, 16, 12, -5.22, {'ott_len': 21, 'ott_percent': 277, 'stop_loss': 263, 'risk_reward': 37, 'chop_rsi_len': 4, 'chop_bandwidth': 260}],
['qAAIr^', 47, 21, 9.29, 20, 5, -2.35, {'ott_len': 46, 'ott_percent': 322, 'stop_loss': 161, 'risk_reward': 39, 'chop_rsi_len': 47, 'chop_bandwidth': 208}],
['LH0k\\o', 50, 12, 7.97, 20, 5, -1.93, {'ott_len': 23, 'ott_percent': 384, 'stop_loss': 85, 'risk_reward': 69, 'chop_rsi_len': 34, 'chop_bandwidth': 271}],
['3S.hwT', 50, 54, 37.5, 33, 12, 2.86, {'ott_len': 8, 'ott_percent': 481, 'stop_loss': 77, 'risk_reward': 67, 'chop_rsi_len': 50, 'chop_bandwidth': 172}],
['5S=Q?i', 37, 82, 21.83, 27, 11, -0.59, {'ott_len': 9, 'ott_percent': 481, 'stop_loss': 143, 'risk_reward': 46, 'chop_rsi_len': 16, 'chop_bandwidth': 249}],
['AQr2pa', 47, 19, 10.64, 50, 6, -0.87, {'ott_len': 17, 'ott_percent': 463, 'stop_loss': 378, 'risk_reward': 19, 'chop_rsi_len': 46, 'chop_bandwidth': 219}],
['^D+leP', 46, 106, 32.53, 41, 17, 1.46, {'ott_len': 34, 'ott_percent': 348, 'stop_loss': 63, 'risk_reward': 70, 'chop_rsi_len': 39, 'chop_bandwidth': 157}],
['\\ERgMp', 53, 28, 16.3, 33, 6, -2.59, {'ott_len': 33, 'ott_percent': 357, 'stop_loss': 236, 'risk_reward': 66, 'chop_rsi_len': 24, 'chop_bandwidth': 274}],
['OXf+R_', 60, 58, 30.93, 50, 8, 4.23, {'ott_len': 25, 'ott_percent': 525, 'stop_loss': 325, 'risk_reward': 13, 'chop_rsi_len': 28, 'chop_bandwidth': 212}],
['jVXfX<', 37, 64, 24.67, 14, 7, -4.53, {'ott_len': 42, 'ott_percent': 508, 'stop_loss': 263, 'risk_reward': 65, 'chop_rsi_len': 31, 'chop_bandwidth': 83}],
['vBJh]Z', 43, 53, 39.69, 37, 8, -3.11, {'ott_len': 49, 'ott_percent': 330, 'stop_loss': 201, 'risk_reward': 67, 'chop_rsi_len': 34, 'chop_bandwidth': 194}],
['tutp,b', 50, 40, 52.45, 0, 5, -5.75, {'ott_len': 48, 'ott_percent': 782, 'stop_loss': 387, 'risk_reward': 74, 'chop_rsi_len': 4, 'chop_bandwidth': 223}],
[',W+d^Z', 39, 53, 19.61, 28, 14, 0.82, {'ott_len': 3, 'ott_percent': 516, 'stop_loss': 63, 'risk_reward': 63, 'chop_rsi_len': 35, 'chop_bandwidth': 194}],
['*W44N`', 50, 68, 12.29, 46, 13, 2.81, {'ott_len': 2, 'ott_percent': 516, 'stop_loss': 103, 'risk_reward': 21, 'chop_rsi_len': 25, 'chop_bandwidth': 216}],
[',W+d+F', 31, 284, 37.8, 25, 27, 2.45, {'ott_len': 3, 'ott_percent': 516, 'stop_loss': 63, 'risk_reward': 63, 'chop_rsi_len': 4, 'chop_bandwidth': 120}],
['F/0eI[', 40, 154, 33.68, 42, 21, 2.91, {'ott_len': 20, 'ott_percent': 162, 'stop_loss': 85, 'risk_reward': 64, 'chop_rsi_len': 22, 'chop_bandwidth': 197}],
['9XS,_)', 46, 130, 14.09, 42, 14, 2.82, {'ott_len': 12, 'ott_percent': 525, 'stop_loss': 241, 'risk_reward': 14, 'chop_rsi_len': 35, 'chop_bandwidth': 14}],
['\\BAZGb', 40, 71, 22.33, 36, 11, -3.44, {'ott_len': 33, 'ott_percent': 330, 'stop_loss': 161, 'risk_reward': 54, 'chop_rsi_len': 21, 'chop_bandwidth': 223}],
['iY2;Lq', 76, 21, 8.08, 71, 7, 3.53, {'ott_len': 41, 'ott_percent': 534, 'stop_loss': 94, 'risk_reward': 27, 'chop_rsi_len': 24, 'chop_bandwidth': 278}],
['+D`0XI', 29, 257, 28.25, 22, 31, 3.4, {'ott_len': 3, 'ott_percent': 348, 'stop_loss': 298, 'risk_reward': 17, 'chop_rsi_len': 31, 'chop_bandwidth': 131}],
['OEJO,F', 41, 105, 33.62, 20, 10, -4.61, {'ott_len': 25, 'ott_percent': 357, 'stop_loss': 201, 'risk_reward': 45, 'chop_rsi_len': 4, 'chop_bandwidth': 120}],
[';(o/-K', 33, 278, 16.2, 28, 38, -1.48, {'ott_len': 13, 'ott_percent': 100, 'stop_loss': 365, 'risk_reward': 16, 'chop_rsi_len': 5, 'chop_bandwidth': 138}],
['7R5S-h', 35, 152, 29.19, 35, 14, 2.41, {'ott_len': 10, 'ott_percent': 472, 'stop_loss': 108, 'risk_reward': 48, 'chop_rsi_len': 5, 'chop_bandwidth': 245}],
['tGVME/', 35, 74, 20.06, 20, 10, -4.75, {'ott_len': 48, 'ott_percent': 375, 'stop_loss': 254, 'risk_reward': 43, 'chop_rsi_len': 20, 'chop_bandwidth': 36}],
['oC5drF', 45, 110, 47.73, 35, 14, -1.8, {'ott_len': 45, 'ott_percent': 339, 'stop_loss': 108, 'risk_reward': 63, 'chop_rsi_len': 47, 'chop_bandwidth': 120}],
['.QVrq_', 72, 11, 13.84, 20, 5, -0.62, {'ott_len': 5, 'ott_percent': 463, 'stop_loss': 254, 'risk_reward': 76, 'chop_rsi_len': 46, 'chop_bandwidth': 212}],
['5TKdDm', 37, 51, 17.75, 22, 9, -3.44, {'ott_len': 9, 'ott_percent': 490, 'stop_loss': 205, 'risk_reward': 63, 'chop_rsi_len': 19, 'chop_bandwidth': 263}],
['[B/d7D', 46, 134, 49.17, 35, 17, -2.48, {'ott_len': 33, 'ott_percent': 330, 'stop_loss': 81, 'risk_reward': 63, 'chop_rsi_len': 11, 'chop_bandwidth': 113}],
[')TQ<w\\', 36, 11, 6.5, 28, 7, -1.36, {'ott_len': 2, 'ott_percent': 490, 'stop_loss': 232, 'risk_reward': 28, 'chop_rsi_len': 50, 'chop_bandwidth': 201}],
['gKT*`t', 83, 6, 6.18, 0, 1, -1.31, {'ott_len': 40, 'ott_percent': 410, 'stop_loss': 245, 'risk_reward': 12, 'chop_rsi_len': 36, 'chop_bandwidth': 289}],
['@Om:db', 44, 25, 10.94, 20, 5, -2.7, {'ott_len': 16, 'ott_percent': 446, 'stop_loss': 356, 'risk_reward': 26, 'chop_rsi_len': 38, 'chop_bandwidth': 223}],
['Q[FofV', 41, 55, 23.07, 28, 7, -2.57, {'ott_len': 26, 'ott_percent': 552, 'stop_loss': 183, 'risk_reward': 73, 'chop_rsi_len': 40, 'chop_bandwidth': 179}],
['\\BHH@l', 45, 61, 42.54, 33, 9, -1.02, {'ott_len': 33, 'ott_percent': 330, 'stop_loss': 192, 'risk_reward': 38, 'chop_rsi_len': 17, 'chop_bandwidth': 260}],
['75\\adC', 37, 200, 68.9, 21, 32, -4.78, {'ott_len': 10, 'ott_percent': 215, 'stop_loss': 280, 'risk_reward': 61, 'chop_rsi_len': 38, 'chop_bandwidth': 109}],
['oMvHF`', 42, 45, 22.17, 28, 7, -3.61, {'ott_len': 45, 'ott_percent': 428, 'stop_loss': 396, 'risk_reward': 38, 'chop_rsi_len': 20, 'chop_bandwidth': 216}],
['t;FMPb', 47, 53, 22.55, 33, 6, 1.33, {'ott_len': 48, 'ott_percent': 268, 'stop_loss': 183, 'risk_reward': 43, 'chop_rsi_len': 26, 'chop_bandwidth': 223}],
['_7@QqN', 44, 87, 28.24, 46, 15, 3.21, {'ott_len': 35, 'ott_percent': 233, 'stop_loss': 156, 'risk_reward': 46, 'chop_rsi_len': 46, 'chop_bandwidth': 149}],
['5OCd3F', 33, 150, 49.76, 33, 12, -1.0, {'ott_len': 9, 'ott_percent': 446, 'stop_loss': 170, 'risk_reward': 63, 'chop_rsi_len': 9, 'chop_bandwidth': 120}],
['.PFCsR', 47, 57, 45.36, 36, 11, 1.71, {'ott_len': 5, 'ott_percent': 454, 'stop_loss': 183, 'risk_reward': 34, 'chop_rsi_len': 48, 'chop_bandwidth': 164}],
[',H+c7e', 30, 240, 13.89, 33, 27, 6.32, {'ott_len': 3, 'ott_percent': 384, 'stop_loss': 63, 'risk_reward': 62, 'chop_rsi_len': 11, 'chop_bandwidth': 234}],
['ZB-d3D', 45, 132, 36.83, 33, 18, -0.14, {'ott_len': 32, 'ott_percent': 330, 'stop_loss': 72, 'risk_reward': 63, 'chop_rsi_len': 9, 'chop_bandwidth': 113}],
['D9YmB.', 35, 139, 12.09, 42, 14, -1.17, {'ott_len': 18, 'ott_percent': 251, 'stop_loss': 267, 'risk_reward': 71, 'chop_rsi_len': 18, 'chop_bandwidth': 32}],
['<S*w?2', 34, 188, 21.9, 41, 17, 4.17, {'ott_len': 13, 'ott_percent': 481, 'stop_loss': 59, 'risk_reward': 80, 'chop_rsi_len': 16, 'chop_bandwidth': 47}],
['4juD3[', 36, 95, 32.91, 14, 7, -3.13, {'ott_len': 8, 'ott_percent': 685, 'stop_loss': 391, 'risk_reward': 35, 'chop_rsi_len': 9, 'chop_bandwidth': 197}],
['+BFG)D', 26, 324, 32.58, 22, 31, -0.86, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 183, 'risk_reward': 37, 'chop_rsi_len': 3, 'chop_bandwidth': 113}],
['@]*Bg5', 62, 140, 27.38, 57, 14, 1.83, {'ott_len': 16, 'ott_percent': 570, 'stop_loss': 59, 'risk_reward': 33, 'chop_rsi_len': 40, 'chop_bandwidth': 58}],
['1Pj:,K', 28, 143, 14.43, 35, 14, -1.15, {'ott_len': 7, 'ott_percent': 454, 'stop_loss': 342, 'risk_reward': 26, 'chop_rsi_len': 4, 'chop_bandwidth': 138}],
['G5M(hV', 61, 68, 8.34, 69, 13, 5.3, {'ott_len': 20, 'ott_percent': 215, 'stop_loss': 214, 'risk_reward': 10, 'chop_rsi_len': 41, 'chop_bandwidth': 179}],
['M[,q.f', 38, 92, 10.67, 25, 12, -3.19, {'ott_len': 24, 'ott_percent': 552, 'stop_loss': 68, 'risk_reward': 75, 'chop_rsi_len': 6, 'chop_bandwidth': 238}],
['+ZOg>n', 35, 70, 23.29, 33, 9, -1.16, {'ott_len': 3, 'ott_percent': 543, 'stop_loss': 223, 'risk_reward': 66, 'chop_rsi_len': 15, 'chop_bandwidth': 267}],
['H<-\\5i', 45, 140, 23.73, 30, 20, -3.11, {'ott_len': 21, 'ott_percent': 277, 'stop_loss': 72, 'risk_reward': 56, 'chop_rsi_len': 10, 'chop_bandwidth': 249}],
['1CndgF', 34, 156, 49.82, 41, 17, 2.8, {'ott_len': 7, 'ott_percent': 339, 'stop_loss': 360, 'risk_reward': 63, 'chop_rsi_len': 40, 'chop_bandwidth': 120}],
['/N7r.J', 30, 193, 13.97, 25, 16, -0.27, {'ott_len': 5, 'ott_percent': 437, 'stop_loss': 116, 'risk_reward': 76, 'chop_rsi_len': 6, 'chop_bandwidth': 135}],
['PD1>V<', 54, 163, 20.0, 55, 20, 3.96, {'ott_len': 26, 'ott_percent': 348, 'stop_loss': 90, 'risk_reward': 29, 'chop_rsi_len': 30, 'chop_bandwidth': 83}],
['oB4dID', 45, 118, 56.11, 35, 14, -2.13, {'ott_len': 45, 'ott_percent': 330, 'stop_loss': 103, 'risk_reward': 63, 'chop_rsi_len': 22, 'chop_bandwidth': 113}],
['l7\\gc^', 60, 35, 42.7, 25, 8, -1.2, {'ott_len': 43, 'ott_percent': 233, 'stop_loss': 280, 'risk_reward': 66, 'chop_rsi_len': 38, 'chop_bandwidth': 208}],
['07t1iJ', 30, 199, 23.05, 26, 30, -1.64, {'ott_len': 6, 'ott_percent': 233, 'stop_loss': 387, 'risk_reward': 18, 'chop_rsi_len': 41, 'chop_bandwidth': 135}],
['5f6+)7', 67, 154, 17.73, 83, 12, 4.9, {'ott_len': 9, 'ott_percent': 649, 'stop_loss': 112, 'risk_reward': 13, 'chop_rsi_len': 3, 'chop_bandwidth': 65}],
['<A?I4^', 38, 159, 45.22, 35, 17, 5.35, {'ott_len': 13, 'ott_percent': 322, 'stop_loss': 152, 'risk_reward': 39, 'chop_rsi_len': 9, 'chop_bandwidth': 208}],
['i7nMgb', 54, 24, 28.38, 0, 4, -2.04, {'ott_len': 41, 'ott_percent': 233, 'stop_loss': 360, 'risk_reward': 43, 'chop_rsi_len': 40, 'chop_bandwidth': 223}],
['o:JK9p', 50, 62, 32.74, 37, 8, -0.2, {'ott_len': 45, 'ott_percent': 259, 'stop_loss': 201, 'risk_reward': 41, 'chop_rsi_len': 12, 'chop_bandwidth': 274}],
['`8*VG,', 48, 167, 27.71, 43, 23, 5.44, {'ott_len': 36, 'ott_percent': 242, 'stop_loss': 59, 'risk_reward': 51, 'chop_rsi_len': 21, 'chop_bandwidth': 25}],
['7P0n)2', 35, 182, 37.96, 37, 16, 1.33, {'ott_len': 10, 'ott_percent': 454, 'stop_loss': 85, 'risk_reward': 72, 'chop_rsi_len': 3, 'chop_bandwidth': 47}],
['DFRlX-', 38, 112, 21.16, 27, 11, -1.95, {'ott_len': 18, 'ott_percent': 366, 'stop_loss': 236, 'risk_reward': 70, 'chop_rsi_len': 31, 'chop_bandwidth': 28}],
['CE)V>;', 47, 197, 19.86, 57, 21, 7.03, {'ott_len': 18, 'ott_percent': 357, 'stop_loss': 54, 'risk_reward': 51, 'chop_rsi_len': 15, 'chop_bandwidth': 80}],
['91u6iJ', 33, 163, 31.1, 25, 27, -3.59, {'ott_len': 12, 'ott_percent': 180, 'stop_loss': 391, 'risk_reward': 22, 'chop_rsi_len': 41, 'chop_bandwidth': 135}],
['4Ptp2B', 34, 136, 35.44, 28, 14, -1.41, {'ott_len': 8, 'ott_percent': 454, 'stop_loss': 387, 'risk_reward': 74, 'chop_rsi_len': 8, 'chop_bandwidth': 105}],
[',[+o+V', 30, 267, 51.0, 23, 21, 2.16, {'ott_len': 3, 'ott_percent': 552, 'stop_loss': 63, 'risk_reward': 73, 'chop_rsi_len': 4, 'chop_bandwidth': 179}],
['RcvHf_', 53, 28, 17.13, 16, 6, -4.14, {'ott_len': 27, 'ott_percent': 623, 'stop_loss': 396, 'risk_reward': 38, 'chop_rsi_len': 40, 'chop_bandwidth': 212}],
['c3rg61', 39, 91, 11.05, 27, 11, -1.18, {'ott_len': 38, 'ott_percent': 197, 'stop_loss': 378, 'risk_reward': 66, 'chop_rsi_len': 11, 'chop_bandwidth': 43}],
['k:VQKm', 61, 34, 55.14, 20, 5, -1.93, {'ott_len': 43, 'ott_percent': 259, 'stop_loss': 254, 'risk_reward': 46, 'chop_rsi_len': 23, 'chop_bandwidth': 263}],
['a<<sMo', 59, 27, 25.74, 33, 6, -1.06, {'ott_len': 36, 'ott_percent': 277, 'stop_loss': 139, 'risk_reward': 76, 'chop_rsi_len': 24, 'chop_bandwidth': 271}],
['5Bl/TL', 32, 153, 26.35, 28, 21, 0.03, {'ott_len': 9, 'ott_percent': 330, 'stop_loss': 351, 'risk_reward': 16, 'chop_rsi_len': 29, 'chop_bandwidth': 142}],
['Y-j@sZ', 56, 23, 20.73, 0, 3, -1.74, {'ott_len': 31, 'ott_percent': 144, 'stop_loss': 342, 'risk_reward': 31, 'chop_rsi_len': 48, 'chop_bandwidth': 194}],
['><r+c-', 39, 161, 18.91, 44, 18, 5.83, {'ott_len': 15, 'ott_percent': 277, 'stop_loss': 378, 'risk_reward': 13, 'chop_rsi_len': 38, 'chop_bandwidth': 28}],
['5@E5rH', 37, 168, 22.7, 43, 23, 7.03, {'ott_len': 9, 'ott_percent': 313, 'stop_loss': 178, 'risk_reward': 22, 'chop_rsi_len': 47, 'chop_bandwidth': 127}],
['v@WLkU', 46, 47, 45.51, 20, 10, -4.43, {'ott_len': 49, 'ott_percent': 313, 'stop_loss': 258, 'risk_reward': 42, 'chop_rsi_len': 43, 'chop_bandwidth': 175}],
['g<)r>J', 46, 137, 36.35, 42, 19, 2.02, {'ott_len': 40, 'ott_percent': 277, 'stop_loss': 54, 'risk_reward': 76, 'chop_rsi_len': 15, 'chop_bandwidth': 135}],
['+BFdKD', 29, 295, 38.89, 24, 29, -2.33, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 183, 'risk_reward': 63, 'chop_rsi_len': 23, 'chop_bandwidth': 113}],
[',jiF3Y', 27, 136, 28.09, 45, 11, 0.43, {'ott_len': 3, 'ott_percent': 685, 'stop_loss': 338, 'risk_reward': 37, 'chop_rsi_len': 9, 'chop_bandwidth': 190}],
['1EkquE', 33, 156, 45.58, 27, 18, -1.61, {'ott_len': 7, 'ott_percent': 357, 'stop_loss': 347, 'risk_reward': 75, 'chop_rsi_len': 49, 'chop_bandwidth': 116}],
['2c0HI_', 47, 92, 21.02, 50, 16, 5.48, {'ott_len': 7, 'ott_percent': 623, 'stop_loss': 85, 'risk_reward': 38, 'chop_rsi_len': 22, 'chop_bandwidth': 212}],
['+BFdrD', 26, 263, 26.97, 24, 29, -2.82, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 183, 'risk_reward': 63, 'chop_rsi_len': 47, 'chop_bandwidth': 113}],
[',B`d6D', 30, 297, 39.81, 26, 30, 0.5, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 298, 'risk_reward': 63, 'chop_rsi_len': 11, 'chop_bandwidth': 113}],
['r6:IS^', 55, 67, 37.97, 53, 13, 4.91, {'ott_len': 47, 'ott_percent': 224, 'stop_loss': 130, 'risk_reward': 39, 'chop_rsi_len': 28, 'chop_bandwidth': 208}],
['5swn)a', 30, 86, 13.25, 8, 12, -6.03, {'ott_len': 9, 'ott_percent': 765, 'stop_loss': 400, 'risk_reward': 72, 'chop_rsi_len': 3, 'chop_bandwidth': 219}],
['5H3VCa', 37, 126, 32.34, 37, 16, 4.24, {'ott_len': 9, 'ott_percent': 384, 'stop_loss': 99, 'risk_reward': 51, 'chop_rsi_len': 18, 'chop_bandwidth': 219}],
['lR\\iHN', 38, 62, 35.84, 28, 7, -4.01, {'ott_len': 43, 'ott_percent': 472, 'stop_loss': 280, 'risk_reward': 68, 'chop_rsi_len': 21, 'chop_bandwidth': 149}],
]
| dnas = [['Tv0(Zs', 90, 11, 3.31, 100, 1, 0.36, {'ott_len': 28, 'ott_percent': 791, 'stop_loss': 85, 'risk_reward': 10, 'chop_rsi_len': 32, 'chop_bandwidth': 285}], ['wLXY\\1', 36, 71, 20.85, 14, 7, -4.76, {'ott_len': 50, 'ott_percent': 419, 'stop_loss': 263, 'risk_reward': 53, 'chop_rsi_len': 34, 'chop_bandwidth': 43}], ['m@7bp/', 42, 113, 20.42, 25, 16, -3.41, {'ott_len': 44, 'ott_percent': 313, 'stop_loss': 116, 'risk_reward': 61, 'chop_rsi_len': 46, 'chop_bandwidth': 36}], ['oA0qI^', 45, 77, 36.93, 35, 14, -0.85, {'ott_len': 45, 'ott_percent': 322, 'stop_loss': 85, 'risk_reward': 75, 'chop_rsi_len': 22, 'chop_bandwidth': 208}], ['oMHHI_', 44, 56, 30.42, 28, 7, 0.35, {'ott_len': 45, 'ott_percent': 428, 'stop_loss': 192, 'risk_reward': 38, 'chop_rsi_len': 22, 'chop_bandwidth': 212}], ['JX,t2j', 44, 97, 30.14, 46, 13, 4.76, {'ott_len': 22, 'ott_percent': 525, 'stop_loss': 68, 'risk_reward': 77, 'chop_rsi_len': 8, 'chop_bandwidth': 252}], ['e<I(af', 80, 20, 6.6, 66, 6, 1.2, {'ott_len': 39, 'ott_percent': 277, 'stop_loss': 196, 'risk_reward': 10, 'chop_rsi_len': 37, 'chop_bandwidth': 238}], ['[,Y.*j', 49, 121, 41.38, 22, 18, -2.42, {'ott_len': 33, 'ott_percent': 135, 'stop_loss': 267, 'risk_reward': 15, 'chop_rsi_len': 3, 'chop_bandwidth': 252}], ['mO4dGF', 38, 97, 21.19, 30, 13, -1.66, {'ott_len': 44, 'ott_percent': 446, 'stop_loss': 103, 'risk_reward': 63, 'chop_rsi_len': 21, 'chop_bandwidth': 120}], ['CRg4wH', 40, 85, 22.04, 44, 9, 0.95, {'ott_len': 18, 'ott_percent': 472, 'stop_loss': 329, 'risk_reward': 21, 'chop_rsi_len': 50, 'chop_bandwidth': 127}], ['wK@GeQ', 42, 68, 22.15, 30, 10, -2.21, {'ott_len': 50, 'ott_percent': 410, 'stop_loss': 156, 'risk_reward': 37, 'chop_rsi_len': 39, 'chop_bandwidth': 161}], ['oMWHF_', 41, 55, 27.45, 28, 7, -3.61, {'ott_len': 45, 'ott_percent': 428, 'stop_loss': 258, 'risk_reward': 38, 'chop_rsi_len': 20, 'chop_bandwidth': 212}], ['YO><L_', 53, 69, 20.56, 50, 10, 5.23, {'ott_len': 31, 'ott_percent': 446, 'stop_loss': 147, 'risk_reward': 28, 'chop_rsi_len': 24, 'chop_bandwidth': 212}], [',P`(eV', 50, 60, 20.73, 58, 12, 8.04, {'ott_len': 3, 'ott_percent': 454, 'stop_loss': 298, 'risk_reward': 10, 'chop_rsi_len': 39, 'chop_bandwidth': 179}], ['9.9F`9', 35, 275, 28.03, 17, 46, -8.04, {'ott_len': 12, 'ott_percent': 153, 'stop_loss': 125, 'risk_reward': 37, 'chop_rsi_len': 36, 'chop_bandwidth': 72}], [':JFX)1', 34, 143, 42.36, 30, 13, -1.86, {'ott_len': 12, 'ott_percent': 401, 'stop_loss': 183, 'risk_reward': 53, 'chop_rsi_len': 3, 'chop_bandwidth': 43}], ['9YC;(q', 40, 109, 18.57, 33, 9, -2.36, {'ott_len': 12, 'ott_percent': 534, 'stop_loss': 170, 'risk_reward': 27, 'chop_rsi_len': 2, 'chop_bandwidth': 278}], ['a5v:,r', 44, 69, 36.07, 37, 8, -3.12, {'ott_len': 36, 'ott_percent': 215, 'stop_loss': 396, 'risk_reward': 26, 'chop_rsi_len': 4, 'chop_bandwidth': 282}], ['2D4j*:', 32, 228, 36.17, 37, 24, 1.91, {'ott_len': 7, 'ott_percent': 348, 'stop_loss': 103, 'risk_reward': 68, 'chop_rsi_len': 3, 'chop_bandwidth': 76}], ['H<XF,l', 40, 98, 31.16, 16, 12, -5.22, {'ott_len': 21, 'ott_percent': 277, 'stop_loss': 263, 'risk_reward': 37, 'chop_rsi_len': 4, 'chop_bandwidth': 260}], ['qAAIr^', 47, 21, 9.29, 20, 5, -2.35, {'ott_len': 46, 'ott_percent': 322, 'stop_loss': 161, 'risk_reward': 39, 'chop_rsi_len': 47, 'chop_bandwidth': 208}], ['LH0k\\o', 50, 12, 7.97, 20, 5, -1.93, {'ott_len': 23, 'ott_percent': 384, 'stop_loss': 85, 'risk_reward': 69, 'chop_rsi_len': 34, 'chop_bandwidth': 271}], ['3S.hwT', 50, 54, 37.5, 33, 12, 2.86, {'ott_len': 8, 'ott_percent': 481, 'stop_loss': 77, 'risk_reward': 67, 'chop_rsi_len': 50, 'chop_bandwidth': 172}], ['5S=Q?i', 37, 82, 21.83, 27, 11, -0.59, {'ott_len': 9, 'ott_percent': 481, 'stop_loss': 143, 'risk_reward': 46, 'chop_rsi_len': 16, 'chop_bandwidth': 249}], ['AQr2pa', 47, 19, 10.64, 50, 6, -0.87, {'ott_len': 17, 'ott_percent': 463, 'stop_loss': 378, 'risk_reward': 19, 'chop_rsi_len': 46, 'chop_bandwidth': 219}], ['^D+leP', 46, 106, 32.53, 41, 17, 1.46, {'ott_len': 34, 'ott_percent': 348, 'stop_loss': 63, 'risk_reward': 70, 'chop_rsi_len': 39, 'chop_bandwidth': 157}], ['\\ERgMp', 53, 28, 16.3, 33, 6, -2.59, {'ott_len': 33, 'ott_percent': 357, 'stop_loss': 236, 'risk_reward': 66, 'chop_rsi_len': 24, 'chop_bandwidth': 274}], ['OXf+R_', 60, 58, 30.93, 50, 8, 4.23, {'ott_len': 25, 'ott_percent': 525, 'stop_loss': 325, 'risk_reward': 13, 'chop_rsi_len': 28, 'chop_bandwidth': 212}], ['jVXfX<', 37, 64, 24.67, 14, 7, -4.53, {'ott_len': 42, 'ott_percent': 508, 'stop_loss': 263, 'risk_reward': 65, 'chop_rsi_len': 31, 'chop_bandwidth': 83}], ['vBJh]Z', 43, 53, 39.69, 37, 8, -3.11, {'ott_len': 49, 'ott_percent': 330, 'stop_loss': 201, 'risk_reward': 67, 'chop_rsi_len': 34, 'chop_bandwidth': 194}], ['tutp,b', 50, 40, 52.45, 0, 5, -5.75, {'ott_len': 48, 'ott_percent': 782, 'stop_loss': 387, 'risk_reward': 74, 'chop_rsi_len': 4, 'chop_bandwidth': 223}], [',W+d^Z', 39, 53, 19.61, 28, 14, 0.82, {'ott_len': 3, 'ott_percent': 516, 'stop_loss': 63, 'risk_reward': 63, 'chop_rsi_len': 35, 'chop_bandwidth': 194}], ['*W44N`', 50, 68, 12.29, 46, 13, 2.81, {'ott_len': 2, 'ott_percent': 516, 'stop_loss': 103, 'risk_reward': 21, 'chop_rsi_len': 25, 'chop_bandwidth': 216}], [',W+d+F', 31, 284, 37.8, 25, 27, 2.45, {'ott_len': 3, 'ott_percent': 516, 'stop_loss': 63, 'risk_reward': 63, 'chop_rsi_len': 4, 'chop_bandwidth': 120}], ['F/0eI[', 40, 154, 33.68, 42, 21, 2.91, {'ott_len': 20, 'ott_percent': 162, 'stop_loss': 85, 'risk_reward': 64, 'chop_rsi_len': 22, 'chop_bandwidth': 197}], ['9XS,_)', 46, 130, 14.09, 42, 14, 2.82, {'ott_len': 12, 'ott_percent': 525, 'stop_loss': 241, 'risk_reward': 14, 'chop_rsi_len': 35, 'chop_bandwidth': 14}], ['\\BAZGb', 40, 71, 22.33, 36, 11, -3.44, {'ott_len': 33, 'ott_percent': 330, 'stop_loss': 161, 'risk_reward': 54, 'chop_rsi_len': 21, 'chop_bandwidth': 223}], ['iY2;Lq', 76, 21, 8.08, 71, 7, 3.53, {'ott_len': 41, 'ott_percent': 534, 'stop_loss': 94, 'risk_reward': 27, 'chop_rsi_len': 24, 'chop_bandwidth': 278}], ['+D`0XI', 29, 257, 28.25, 22, 31, 3.4, {'ott_len': 3, 'ott_percent': 348, 'stop_loss': 298, 'risk_reward': 17, 'chop_rsi_len': 31, 'chop_bandwidth': 131}], ['OEJO,F', 41, 105, 33.62, 20, 10, -4.61, {'ott_len': 25, 'ott_percent': 357, 'stop_loss': 201, 'risk_reward': 45, 'chop_rsi_len': 4, 'chop_bandwidth': 120}], [';(o/-K', 33, 278, 16.2, 28, 38, -1.48, {'ott_len': 13, 'ott_percent': 100, 'stop_loss': 365, 'risk_reward': 16, 'chop_rsi_len': 5, 'chop_bandwidth': 138}], ['7R5S-h', 35, 152, 29.19, 35, 14, 2.41, {'ott_len': 10, 'ott_percent': 472, 'stop_loss': 108, 'risk_reward': 48, 'chop_rsi_len': 5, 'chop_bandwidth': 245}], ['tGVME/', 35, 74, 20.06, 20, 10, -4.75, {'ott_len': 48, 'ott_percent': 375, 'stop_loss': 254, 'risk_reward': 43, 'chop_rsi_len': 20, 'chop_bandwidth': 36}], ['oC5drF', 45, 110, 47.73, 35, 14, -1.8, {'ott_len': 45, 'ott_percent': 339, 'stop_loss': 108, 'risk_reward': 63, 'chop_rsi_len': 47, 'chop_bandwidth': 120}], ['.QVrq_', 72, 11, 13.84, 20, 5, -0.62, {'ott_len': 5, 'ott_percent': 463, 'stop_loss': 254, 'risk_reward': 76, 'chop_rsi_len': 46, 'chop_bandwidth': 212}], ['5TKdDm', 37, 51, 17.75, 22, 9, -3.44, {'ott_len': 9, 'ott_percent': 490, 'stop_loss': 205, 'risk_reward': 63, 'chop_rsi_len': 19, 'chop_bandwidth': 263}], ['[B/d7D', 46, 134, 49.17, 35, 17, -2.48, {'ott_len': 33, 'ott_percent': 330, 'stop_loss': 81, 'risk_reward': 63, 'chop_rsi_len': 11, 'chop_bandwidth': 113}], [')TQ<w\\', 36, 11, 6.5, 28, 7, -1.36, {'ott_len': 2, 'ott_percent': 490, 'stop_loss': 232, 'risk_reward': 28, 'chop_rsi_len': 50, 'chop_bandwidth': 201}], ['gKT*`t', 83, 6, 6.18, 0, 1, -1.31, {'ott_len': 40, 'ott_percent': 410, 'stop_loss': 245, 'risk_reward': 12, 'chop_rsi_len': 36, 'chop_bandwidth': 289}], ['@Om:db', 44, 25, 10.94, 20, 5, -2.7, {'ott_len': 16, 'ott_percent': 446, 'stop_loss': 356, 'risk_reward': 26, 'chop_rsi_len': 38, 'chop_bandwidth': 223}], ['Q[FofV', 41, 55, 23.07, 28, 7, -2.57, {'ott_len': 26, 'ott_percent': 552, 'stop_loss': 183, 'risk_reward': 73, 'chop_rsi_len': 40, 'chop_bandwidth': 179}], ['\\BHH@l', 45, 61, 42.54, 33, 9, -1.02, {'ott_len': 33, 'ott_percent': 330, 'stop_loss': 192, 'risk_reward': 38, 'chop_rsi_len': 17, 'chop_bandwidth': 260}], ['75\\adC', 37, 200, 68.9, 21, 32, -4.78, {'ott_len': 10, 'ott_percent': 215, 'stop_loss': 280, 'risk_reward': 61, 'chop_rsi_len': 38, 'chop_bandwidth': 109}], ['oMvHF`', 42, 45, 22.17, 28, 7, -3.61, {'ott_len': 45, 'ott_percent': 428, 'stop_loss': 396, 'risk_reward': 38, 'chop_rsi_len': 20, 'chop_bandwidth': 216}], ['t;FMPb', 47, 53, 22.55, 33, 6, 1.33, {'ott_len': 48, 'ott_percent': 268, 'stop_loss': 183, 'risk_reward': 43, 'chop_rsi_len': 26, 'chop_bandwidth': 223}], ['_7@QqN', 44, 87, 28.24, 46, 15, 3.21, {'ott_len': 35, 'ott_percent': 233, 'stop_loss': 156, 'risk_reward': 46, 'chop_rsi_len': 46, 'chop_bandwidth': 149}], ['5OCd3F', 33, 150, 49.76, 33, 12, -1.0, {'ott_len': 9, 'ott_percent': 446, 'stop_loss': 170, 'risk_reward': 63, 'chop_rsi_len': 9, 'chop_bandwidth': 120}], ['.PFCsR', 47, 57, 45.36, 36, 11, 1.71, {'ott_len': 5, 'ott_percent': 454, 'stop_loss': 183, 'risk_reward': 34, 'chop_rsi_len': 48, 'chop_bandwidth': 164}], [',H+c7e', 30, 240, 13.89, 33, 27, 6.32, {'ott_len': 3, 'ott_percent': 384, 'stop_loss': 63, 'risk_reward': 62, 'chop_rsi_len': 11, 'chop_bandwidth': 234}], ['ZB-d3D', 45, 132, 36.83, 33, 18, -0.14, {'ott_len': 32, 'ott_percent': 330, 'stop_loss': 72, 'risk_reward': 63, 'chop_rsi_len': 9, 'chop_bandwidth': 113}], ['D9YmB.', 35, 139, 12.09, 42, 14, -1.17, {'ott_len': 18, 'ott_percent': 251, 'stop_loss': 267, 'risk_reward': 71, 'chop_rsi_len': 18, 'chop_bandwidth': 32}], ['<S*w?2', 34, 188, 21.9, 41, 17, 4.17, {'ott_len': 13, 'ott_percent': 481, 'stop_loss': 59, 'risk_reward': 80, 'chop_rsi_len': 16, 'chop_bandwidth': 47}], ['4juD3[', 36, 95, 32.91, 14, 7, -3.13, {'ott_len': 8, 'ott_percent': 685, 'stop_loss': 391, 'risk_reward': 35, 'chop_rsi_len': 9, 'chop_bandwidth': 197}], ['+BFG)D', 26, 324, 32.58, 22, 31, -0.86, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 183, 'risk_reward': 37, 'chop_rsi_len': 3, 'chop_bandwidth': 113}], ['@]*Bg5', 62, 140, 27.38, 57, 14, 1.83, {'ott_len': 16, 'ott_percent': 570, 'stop_loss': 59, 'risk_reward': 33, 'chop_rsi_len': 40, 'chop_bandwidth': 58}], ['1Pj:,K', 28, 143, 14.43, 35, 14, -1.15, {'ott_len': 7, 'ott_percent': 454, 'stop_loss': 342, 'risk_reward': 26, 'chop_rsi_len': 4, 'chop_bandwidth': 138}], ['G5M(hV', 61, 68, 8.34, 69, 13, 5.3, {'ott_len': 20, 'ott_percent': 215, 'stop_loss': 214, 'risk_reward': 10, 'chop_rsi_len': 41, 'chop_bandwidth': 179}], ['M[,q.f', 38, 92, 10.67, 25, 12, -3.19, {'ott_len': 24, 'ott_percent': 552, 'stop_loss': 68, 'risk_reward': 75, 'chop_rsi_len': 6, 'chop_bandwidth': 238}], ['+ZOg>n', 35, 70, 23.29, 33, 9, -1.16, {'ott_len': 3, 'ott_percent': 543, 'stop_loss': 223, 'risk_reward': 66, 'chop_rsi_len': 15, 'chop_bandwidth': 267}], ['H<-\\5i', 45, 140, 23.73, 30, 20, -3.11, {'ott_len': 21, 'ott_percent': 277, 'stop_loss': 72, 'risk_reward': 56, 'chop_rsi_len': 10, 'chop_bandwidth': 249}], ['1CndgF', 34, 156, 49.82, 41, 17, 2.8, {'ott_len': 7, 'ott_percent': 339, 'stop_loss': 360, 'risk_reward': 63, 'chop_rsi_len': 40, 'chop_bandwidth': 120}], ['/N7r.J', 30, 193, 13.97, 25, 16, -0.27, {'ott_len': 5, 'ott_percent': 437, 'stop_loss': 116, 'risk_reward': 76, 'chop_rsi_len': 6, 'chop_bandwidth': 135}], ['PD1>V<', 54, 163, 20.0, 55, 20, 3.96, {'ott_len': 26, 'ott_percent': 348, 'stop_loss': 90, 'risk_reward': 29, 'chop_rsi_len': 30, 'chop_bandwidth': 83}], ['oB4dID', 45, 118, 56.11, 35, 14, -2.13, {'ott_len': 45, 'ott_percent': 330, 'stop_loss': 103, 'risk_reward': 63, 'chop_rsi_len': 22, 'chop_bandwidth': 113}], ['l7\\gc^', 60, 35, 42.7, 25, 8, -1.2, {'ott_len': 43, 'ott_percent': 233, 'stop_loss': 280, 'risk_reward': 66, 'chop_rsi_len': 38, 'chop_bandwidth': 208}], ['07t1iJ', 30, 199, 23.05, 26, 30, -1.64, {'ott_len': 6, 'ott_percent': 233, 'stop_loss': 387, 'risk_reward': 18, 'chop_rsi_len': 41, 'chop_bandwidth': 135}], ['5f6+)7', 67, 154, 17.73, 83, 12, 4.9, {'ott_len': 9, 'ott_percent': 649, 'stop_loss': 112, 'risk_reward': 13, 'chop_rsi_len': 3, 'chop_bandwidth': 65}], ['<A?I4^', 38, 159, 45.22, 35, 17, 5.35, {'ott_len': 13, 'ott_percent': 322, 'stop_loss': 152, 'risk_reward': 39, 'chop_rsi_len': 9, 'chop_bandwidth': 208}], ['i7nMgb', 54, 24, 28.38, 0, 4, -2.04, {'ott_len': 41, 'ott_percent': 233, 'stop_loss': 360, 'risk_reward': 43, 'chop_rsi_len': 40, 'chop_bandwidth': 223}], ['o:JK9p', 50, 62, 32.74, 37, 8, -0.2, {'ott_len': 45, 'ott_percent': 259, 'stop_loss': 201, 'risk_reward': 41, 'chop_rsi_len': 12, 'chop_bandwidth': 274}], ['`8*VG,', 48, 167, 27.71, 43, 23, 5.44, {'ott_len': 36, 'ott_percent': 242, 'stop_loss': 59, 'risk_reward': 51, 'chop_rsi_len': 21, 'chop_bandwidth': 25}], ['7P0n)2', 35, 182, 37.96, 37, 16, 1.33, {'ott_len': 10, 'ott_percent': 454, 'stop_loss': 85, 'risk_reward': 72, 'chop_rsi_len': 3, 'chop_bandwidth': 47}], ['DFRlX-', 38, 112, 21.16, 27, 11, -1.95, {'ott_len': 18, 'ott_percent': 366, 'stop_loss': 236, 'risk_reward': 70, 'chop_rsi_len': 31, 'chop_bandwidth': 28}], ['CE)V>;', 47, 197, 19.86, 57, 21, 7.03, {'ott_len': 18, 'ott_percent': 357, 'stop_loss': 54, 'risk_reward': 51, 'chop_rsi_len': 15, 'chop_bandwidth': 80}], ['91u6iJ', 33, 163, 31.1, 25, 27, -3.59, {'ott_len': 12, 'ott_percent': 180, 'stop_loss': 391, 'risk_reward': 22, 'chop_rsi_len': 41, 'chop_bandwidth': 135}], ['4Ptp2B', 34, 136, 35.44, 28, 14, -1.41, {'ott_len': 8, 'ott_percent': 454, 'stop_loss': 387, 'risk_reward': 74, 'chop_rsi_len': 8, 'chop_bandwidth': 105}], [',[+o+V', 30, 267, 51.0, 23, 21, 2.16, {'ott_len': 3, 'ott_percent': 552, 'stop_loss': 63, 'risk_reward': 73, 'chop_rsi_len': 4, 'chop_bandwidth': 179}], ['RcvHf_', 53, 28, 17.13, 16, 6, -4.14, {'ott_len': 27, 'ott_percent': 623, 'stop_loss': 396, 'risk_reward': 38, 'chop_rsi_len': 40, 'chop_bandwidth': 212}], ['c3rg61', 39, 91, 11.05, 27, 11, -1.18, {'ott_len': 38, 'ott_percent': 197, 'stop_loss': 378, 'risk_reward': 66, 'chop_rsi_len': 11, 'chop_bandwidth': 43}], ['k:VQKm', 61, 34, 55.14, 20, 5, -1.93, {'ott_len': 43, 'ott_percent': 259, 'stop_loss': 254, 'risk_reward': 46, 'chop_rsi_len': 23, 'chop_bandwidth': 263}], ['a<<sMo', 59, 27, 25.74, 33, 6, -1.06, {'ott_len': 36, 'ott_percent': 277, 'stop_loss': 139, 'risk_reward': 76, 'chop_rsi_len': 24, 'chop_bandwidth': 271}], ['5Bl/TL', 32, 153, 26.35, 28, 21, 0.03, {'ott_len': 9, 'ott_percent': 330, 'stop_loss': 351, 'risk_reward': 16, 'chop_rsi_len': 29, 'chop_bandwidth': 142}], ['Y-j@sZ', 56, 23, 20.73, 0, 3, -1.74, {'ott_len': 31, 'ott_percent': 144, 'stop_loss': 342, 'risk_reward': 31, 'chop_rsi_len': 48, 'chop_bandwidth': 194}], ['><r+c-', 39, 161, 18.91, 44, 18, 5.83, {'ott_len': 15, 'ott_percent': 277, 'stop_loss': 378, 'risk_reward': 13, 'chop_rsi_len': 38, 'chop_bandwidth': 28}], ['5@E5rH', 37, 168, 22.7, 43, 23, 7.03, {'ott_len': 9, 'ott_percent': 313, 'stop_loss': 178, 'risk_reward': 22, 'chop_rsi_len': 47, 'chop_bandwidth': 127}], ['v@WLkU', 46, 47, 45.51, 20, 10, -4.43, {'ott_len': 49, 'ott_percent': 313, 'stop_loss': 258, 'risk_reward': 42, 'chop_rsi_len': 43, 'chop_bandwidth': 175}], ['g<)r>J', 46, 137, 36.35, 42, 19, 2.02, {'ott_len': 40, 'ott_percent': 277, 'stop_loss': 54, 'risk_reward': 76, 'chop_rsi_len': 15, 'chop_bandwidth': 135}], ['+BFdKD', 29, 295, 38.89, 24, 29, -2.33, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 183, 'risk_reward': 63, 'chop_rsi_len': 23, 'chop_bandwidth': 113}], [',jiF3Y', 27, 136, 28.09, 45, 11, 0.43, {'ott_len': 3, 'ott_percent': 685, 'stop_loss': 338, 'risk_reward': 37, 'chop_rsi_len': 9, 'chop_bandwidth': 190}], ['1EkquE', 33, 156, 45.58, 27, 18, -1.61, {'ott_len': 7, 'ott_percent': 357, 'stop_loss': 347, 'risk_reward': 75, 'chop_rsi_len': 49, 'chop_bandwidth': 116}], ['2c0HI_', 47, 92, 21.02, 50, 16, 5.48, {'ott_len': 7, 'ott_percent': 623, 'stop_loss': 85, 'risk_reward': 38, 'chop_rsi_len': 22, 'chop_bandwidth': 212}], ['+BFdrD', 26, 263, 26.97, 24, 29, -2.82, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 183, 'risk_reward': 63, 'chop_rsi_len': 47, 'chop_bandwidth': 113}], [',B`d6D', 30, 297, 39.81, 26, 30, 0.5, {'ott_len': 3, 'ott_percent': 330, 'stop_loss': 298, 'risk_reward': 63, 'chop_rsi_len': 11, 'chop_bandwidth': 113}], ['r6:IS^', 55, 67, 37.97, 53, 13, 4.91, {'ott_len': 47, 'ott_percent': 224, 'stop_loss': 130, 'risk_reward': 39, 'chop_rsi_len': 28, 'chop_bandwidth': 208}], ['5swn)a', 30, 86, 13.25, 8, 12, -6.03, {'ott_len': 9, 'ott_percent': 765, 'stop_loss': 400, 'risk_reward': 72, 'chop_rsi_len': 3, 'chop_bandwidth': 219}], ['5H3VCa', 37, 126, 32.34, 37, 16, 4.24, {'ott_len': 9, 'ott_percent': 384, 'stop_loss': 99, 'risk_reward': 51, 'chop_rsi_len': 18, 'chop_bandwidth': 219}], ['lR\\iHN', 38, 62, 35.84, 28, 7, -4.01, {'ott_len': 43, 'ott_percent': 472, 'stop_loss': 280, 'risk_reward': 68, 'chop_rsi_len': 21, 'chop_bandwidth': 149}]] |
class Pager:
def __init__(self, page, listing, total_count):
self.page = page
self.listing = listing
self.per_page = 20 # TODO: make this a setting
self.total_count = total_count
@property
def pages(self):
return int(self.total_count / self.per_page) + (
self.total_count % self.per_page > 0
)
@property
def has_prev(self):
return self.page > 1
@property
def has_next(self):
return self.page < self.pages
def iter_pages(self, left_edge=2, left_current=2, right_current=5, right_edge=2):
last = 0
for num in range(1, self.pages + 1):
if (
num <= left_edge
or (
num > self.page - left_current - 1
and num < self.page + right_current
)
or num > self.pages - right_edge
):
if last + 1 != num:
yield None
yield num
last = num
def __iter__(self):
return iter(self.iter_pages())
def __repr__(self):
return "<Pager %s>" % self.page
| class Pager:
def __init__(self, page, listing, total_count):
self.page = page
self.listing = listing
self.per_page = 20
self.total_count = total_count
@property
def pages(self):
return int(self.total_count / self.per_page) + (self.total_count % self.per_page > 0)
@property
def has_prev(self):
return self.page > 1
@property
def has_next(self):
return self.page < self.pages
def iter_pages(self, left_edge=2, left_current=2, right_current=5, right_edge=2):
last = 0
for num in range(1, self.pages + 1):
if num <= left_edge or (num > self.page - left_current - 1 and num < self.page + right_current) or num > self.pages - right_edge:
if last + 1 != num:
yield None
yield num
last = num
def __iter__(self):
return iter(self.iter_pages())
def __repr__(self):
return '<Pager %s>' % self.page |
# automatically generated by the FlatBuffers compiler, do not modify
# namespace:
class Array(object):
NONE = 0
ArrayUInt = 1
ArrayULong = 2
ArrayDouble = 3
ArrayFloat = 4
| class Array(object):
none = 0
array_u_int = 1
array_u_long = 2
array_double = 3
array_float = 4 |
n = int(input())
for i in range(n):
years = 0
p, r, f = map(int, input().split())
popl = p
while popl <= f:
popl *= r
years += 1
print(years) | n = int(input())
for i in range(n):
years = 0
(p, r, f) = map(int, input().split())
popl = p
while popl <= f:
popl *= r
years += 1
print(years) |
def lcs(list):
if len(list) == 0:
return 0
sums = [0]*(len(list))
for i in range(0, len(list)):
if i == 0:
sums[i] = list[i]
start_index = i
last_index = i
continue
new_sum = sums[i-1] + list[i]
if new_sum > list[i]:
sums[i] = new_sum
else:
sums[i] = list[i]
return max(sums)
print(lcs([-1, 5, -3, 4, 2, -4, 5]))
print(lcs([]))
print(lcs([-1, 5, -3, 1, 2, -4, -5]))
| def lcs(list):
if len(list) == 0:
return 0
sums = [0] * len(list)
for i in range(0, len(list)):
if i == 0:
sums[i] = list[i]
start_index = i
last_index = i
continue
new_sum = sums[i - 1] + list[i]
if new_sum > list[i]:
sums[i] = new_sum
else:
sums[i] = list[i]
return max(sums)
print(lcs([-1, 5, -3, 4, 2, -4, 5]))
print(lcs([]))
print(lcs([-1, 5, -3, 1, 2, -4, -5])) |
class Region(object):
def __init__(self, node):
# FIXME: are these new to 4.4??
# And what is 4.4 anyway, latest is 4.3.4!!
# - mangled_name, paradigm, role
self.name = node.find('name').text
self.idx = int(node.get('id'))
#self.mangled_name = node.find('mangled_name').text
self.description = node.find('descr').text
self.url = node.find('url').text
# Call tree node references
self.cnodes = []
# Classification
#self.paradigm = node.find('paradigm').text
#self.role = node.find('role').text
# No idea...
self.mod = node.get('mod') # What is this?
self.begin = node.get('begin')
self.end = node.get('end')
| class Region(object):
def __init__(self, node):
self.name = node.find('name').text
self.idx = int(node.get('id'))
self.description = node.find('descr').text
self.url = node.find('url').text
self.cnodes = []
self.mod = node.get('mod')
self.begin = node.get('begin')
self.end = node.get('end') |
class SuffStats(object):
def _suff_stats(self, X):
raise NotImplementedError
def add(self, X):
values = self._suff_stats(X)
for key, value in values.items():
self.__dict__[key] += value
def remove(self, X):
values = self._suff_stats(X)
for key, value in values.items():
self.__dict__[key] -= value
def __iadd__(self, X):
self.add(X)
return self
def __isub__(self, X):
self.remove(X)
return self
| class Suffstats(object):
def _suff_stats(self, X):
raise NotImplementedError
def add(self, X):
values = self._suff_stats(X)
for (key, value) in values.items():
self.__dict__[key] += value
def remove(self, X):
values = self._suff_stats(X)
for (key, value) in values.items():
self.__dict__[key] -= value
def __iadd__(self, X):
self.add(X)
return self
def __isub__(self, X):
self.remove(X)
return self |
N, M = map(int, input().split())
from1 = set()
toN = set()
for _ in range(M):
a, b = map(int, input().split())
if a == 1:
from1.add(b)
elif b == N:
toN.add(a)
if from1 & toN:
print('POSSIBLE')
else:
print('IMPOSSIBLE')
| (n, m) = map(int, input().split())
from1 = set()
to_n = set()
for _ in range(M):
(a, b) = map(int, input().split())
if a == 1:
from1.add(b)
elif b == N:
toN.add(a)
if from1 & toN:
print('POSSIBLE')
else:
print('IMPOSSIBLE') |
# Program to find the product of a,b,c which are Pythagorean Triplet that satisfice the following:
# 1. a < b < c
# 2. a**2 + b**2 = c**2
# 3. a + b + c = 1000
print("Please Wait...")
for a in range(300):
for b in range(400):
for c in range(500):
if(a < b < c):
if((a**2) + (b**2) == (c**2)):
if((a+b+c) == 1000):
print("Product of",a,"*",b,"*",c,"=",(a*b*c))
break
| print('Please Wait...')
for a in range(300):
for b in range(400):
for c in range(500):
if a < b < c:
if a ** 2 + b ** 2 == c ** 2:
if a + b + c == 1000:
print('Product of', a, '*', b, '*', c, '=', a * b * c)
break |
class SouthboundMessage:
__endpoint__ = None
__http_method__ = None
def serialize(self):
raise NotImplementedError
| class Southboundmessage:
__endpoint__ = None
__http_method__ = None
def serialize(self):
raise NotImplementedError |
print(G.has_node('lea'))
# a more general method:
print('lea' in G.nodes()) | print(G.has_node('lea'))
print('lea' in G.nodes()) |
class Configuration:
__shared_state = {
'debug': True,
'router': None,
'templates_dir': None
}
def __new__(cls, *args, **kwargs):
obj = super(Configuration, cls).__new__(cls, *args, **kwargs)
obj.__dict__ = cls.__shared_state
return obj
| class Configuration:
__shared_state = {'debug': True, 'router': None, 'templates_dir': None}
def __new__(cls, *args, **kwargs):
obj = super(Configuration, cls).__new__(cls, *args, **kwargs)
obj.__dict__ = cls.__shared_state
return obj |
class Atom:
def __init__(self, x, y, z, xvel):
self.x = x
self.y = y
self.z = z
self.type = 1
self.vx = xvel
self.vy = 0.0
self.vz = 0.0
def add_ball(atoms, xpos, xvel):
r = 2
s = 1.55
h = 0.5 * s
for ix in range(-r, r+1):
for iy in range(-r, r+1):
for iz in range(-r, r+1):
x = ix * s
y = iy * s
z = iz * s
if (x**2 + y**2 + z**2 > r**2):
continue
x = x + xpos
atoms.append(Atom(x, y, z, xvel))
atoms.append(Atom(x, y+h, z+h, xvel))
atoms.append(Atom(x+h, y, z+h, xvel))
atoms.append(Atom(x+h, y+h, z, xvel))
def save_file(filename, atoms):
with open(filename, "w") as f:
f.write("Position Data\n\n")
f.write("{} atoms\n".format(len(atoms)))
f.write("1 atom types\n\n")
f.write("-40.00 40.00 xlo xhi\n")
f.write("-20.00 20.00 ylo yhi\n")
f.write("-20.00 20.00 zlo zhi\n")
f.write("\n")
f.write("Atoms\n\n")
for i, a in enumerate(atoms):
f.write("{} {} {} {} {}\n".format(i+1, a.type, a.x, a.y, a.z))
f.write("\n")
f.write("Velocities\n\n")
for i, a in enumerate(atoms):
f.write("{} {} {} {}\n".format(i+1, a.vx, a.vy, a.vz))
print("Generated {}".format(filename))
atoms = []
add_ball(atoms, -20, 2.0)
add_ball(atoms, 20, -2.0)
save_file("collision.atoms", atoms)
| class Atom:
def __init__(self, x, y, z, xvel):
self.x = x
self.y = y
self.z = z
self.type = 1
self.vx = xvel
self.vy = 0.0
self.vz = 0.0
def add_ball(atoms, xpos, xvel):
r = 2
s = 1.55
h = 0.5 * s
for ix in range(-r, r + 1):
for iy in range(-r, r + 1):
for iz in range(-r, r + 1):
x = ix * s
y = iy * s
z = iz * s
if x ** 2 + y ** 2 + z ** 2 > r ** 2:
continue
x = x + xpos
atoms.append(atom(x, y, z, xvel))
atoms.append(atom(x, y + h, z + h, xvel))
atoms.append(atom(x + h, y, z + h, xvel))
atoms.append(atom(x + h, y + h, z, xvel))
def save_file(filename, atoms):
with open(filename, 'w') as f:
f.write('Position Data\n\n')
f.write('{} atoms\n'.format(len(atoms)))
f.write('1 atom types\n\n')
f.write('-40.00 40.00 xlo xhi\n')
f.write('-20.00 20.00 ylo yhi\n')
f.write('-20.00 20.00 zlo zhi\n')
f.write('\n')
f.write('Atoms\n\n')
for (i, a) in enumerate(atoms):
f.write('{} {} {} {} {}\n'.format(i + 1, a.type, a.x, a.y, a.z))
f.write('\n')
f.write('Velocities\n\n')
for (i, a) in enumerate(atoms):
f.write('{} {} {} {}\n'.format(i + 1, a.vx, a.vy, a.vz))
print('Generated {}'.format(filename))
atoms = []
add_ball(atoms, -20, 2.0)
add_ball(atoms, 20, -2.0)
save_file('collision.atoms', atoms) |
lookup = {'A':'aaaaa', 'B':'aaaab', 'C':'aaaba', 'D':'aaabb', 'E':'aabaa',
'F':'aabab', 'G':'aabba', 'H':'aabbb', 'I':'abaaa', 'J':'abaaa',
'K':'abaab', 'L':'ababa', 'M':'ababb', 'N':'abbaa', 'O':'abbab',
'P':'abbba', 'Q':'abbbb', 'R':'baaaa', 'S':'baaab', 'T':'baaba',
'U':'baabb', 'V':'baabb', 'W':'babaa', 'X':'babab', 'Y':'babba', 'Z':'babbb'}
def decrypt(message):
decipher = ''
i = 0
while True :
if(i < len(message)-4):
substr = message[i:i + 5]
if(substr[0] != ' '):
decipher += list(lookup.keys())[list(lookup.values()).index(substr)]
i += 5
else:
decipher += ' '
i += 1
else:
break
return decipher
def main():
message = input("Enter Your Cipher Text: " )
result = decrypt(message.lower())
print (result)
if __name__ == '__main__':
main()
| lookup = {'A': 'aaaaa', 'B': 'aaaab', 'C': 'aaaba', 'D': 'aaabb', 'E': 'aabaa', 'F': 'aabab', 'G': 'aabba', 'H': 'aabbb', 'I': 'abaaa', 'J': 'abaaa', 'K': 'abaab', 'L': 'ababa', 'M': 'ababb', 'N': 'abbaa', 'O': 'abbab', 'P': 'abbba', 'Q': 'abbbb', 'R': 'baaaa', 'S': 'baaab', 'T': 'baaba', 'U': 'baabb', 'V': 'baabb', 'W': 'babaa', 'X': 'babab', 'Y': 'babba', 'Z': 'babbb'}
def decrypt(message):
decipher = ''
i = 0
while True:
if i < len(message) - 4:
substr = message[i:i + 5]
if substr[0] != ' ':
decipher += list(lookup.keys())[list(lookup.values()).index(substr)]
i += 5
else:
decipher += ' '
i += 1
else:
break
return decipher
def main():
message = input('Enter Your Cipher Text: ')
result = decrypt(message.lower())
print(result)
if __name__ == '__main__':
main() |
def extractTravistranslationsCom(item):
'''
Parser for 'travistranslations.com'
DISABLED
'''
return None | def extract_travistranslations_com(item):
"""
Parser for 'travistranslations.com'
DISABLED
"""
return None |
class BufferFullException(Exception):
pass
class BufferEmptyException(Exception):
pass
class CircularBuffer:
def __init__(self, capacity):
self.buffer = [None] * capacity
self.read_index = 0
self.write_index = 0
def read(self):
data = self.buffer[self.read_index]
if not data:
raise BufferEmptyException(r".+")
self.buffer[self.read_index] = None
self.read_index = (self.read_index + 1) % len(self.buffer)
return data
def write(self, data):
if self.buffer[self.write_index]:
raise BufferFullException(r".+")
self.buffer[self.write_index] = data
self.write_index = (self.write_index + 1) % len(self.buffer)
def overwrite(self, data):
if self.buffer[self.write_index]:
self.buffer[self.read_index] = data
self.read_index = (self.read_index + 1) % len(self.buffer)
self.write_index = self.read_index
else:
self.write(data)
def clear(self):
self.buffer = [None] * len(self.buffer)
self.read_index = 0
self.write_index = 0
| class Bufferfullexception(Exception):
pass
class Bufferemptyexception(Exception):
pass
class Circularbuffer:
def __init__(self, capacity):
self.buffer = [None] * capacity
self.read_index = 0
self.write_index = 0
def read(self):
data = self.buffer[self.read_index]
if not data:
raise buffer_empty_exception('.+')
self.buffer[self.read_index] = None
self.read_index = (self.read_index + 1) % len(self.buffer)
return data
def write(self, data):
if self.buffer[self.write_index]:
raise buffer_full_exception('.+')
self.buffer[self.write_index] = data
self.write_index = (self.write_index + 1) % len(self.buffer)
def overwrite(self, data):
if self.buffer[self.write_index]:
self.buffer[self.read_index] = data
self.read_index = (self.read_index + 1) % len(self.buffer)
self.write_index = self.read_index
else:
self.write(data)
def clear(self):
self.buffer = [None] * len(self.buffer)
self.read_index = 0
self.write_index = 0 |
getObject = {
'accountId': 31111,
'balancedTerminationFlag': False,
'cooldown': 1800,
'createDate': '2018-04-30T15:07:40-04:00',
'desiredMemberCount': None,
'id': 12222222,
'lastActionDate': '2019-10-02T16:26:17-04:00',
'loadBalancers': [],
'maximumMemberCount': 6,
'minimumMemberCount': 2,
'modifyDate': '2019-10-03T17:16:47-04:00',
'name': 'tests',
'networkVlans': [
{
'networkVlan': {
'accountId': 31111,
'id': 2222222,
'modifyDate': '2019-07-16T13:09:47-04:00',
'networkSpace': 'PRIVATE',
'primaryRouter': {
'hostname': 'bcr01a.sao01'
},
'primarySubnetId': 1172222,
'vlanNumber': 1111
},
'networkVlanId': 2281111
}
],
'policies': [
{
'actions': [
{
'amount': 1,
'createDate': '2019-09-26T18:30:22-04:00',
'deleteFlag': None,
'id': 611111,
'modifyDate': None,
'scalePolicy': None,
'scalePolicyId': 681111,
'scaleType': 'RELATIVE',
'typeId': 1
}
],
'cooldown': None,
'createDate': '2019-09-26T18:30:14-04:00',
'id': 680000,
'name': 'prime-poly',
'scaleActions': [
{
'amount': 1,
'createDate': '2019-09-26T18:30:22-04:00',
'deleteFlag': None,
'id': 633333,
'modifyDate': None,
'scalePolicy': None,
'scalePolicyId': 680123,
'scaleType': 'RELATIVE',
'typeId': 1
}
],
'triggers': [
{
'createDate': '2019-09-26T18:30:14-04:00',
'deleteFlag': None,
'id': 557111,
'modifyDate': None,
'scalePolicy': None,
'scalePolicyId': 680000,
'typeId': 3
}
]
}
],
'regionalGroup': {
'description': 'sa-bra-south-1',
'id': 663,
'locationGroupTypeId': 42,
'locations': [
{
'id': 983497,
'longName': 'Sao Paulo 1',
'name': 'sao01',
'statusId': 2
}
],
'name': 'sa-bra-south-1',
'securityLevelId': None
},
'regionalGroupId': 663,
'status': {
'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'
},
'suspendedFlag': False,
'terminationPolicy': {
'id': 2, 'keyName': 'NEWEST', 'name': 'Newest'
},
'terminationPolicyId': 2,
'virtualGuestAssets': [],
'virtualGuestMemberCount': 6,
'virtualGuestMemberTemplate': {
'accountId': 31111,
'blockDevices': [
{
'bootableFlag': None,
'createDate': None,
'device': '0',
'diskImage': {
'capacity': 25,
'createDate': None,
'id': None,
'modifyDate': None,
'parentId': None,
'storageRepositoryId': None,
'typeId': None},
'diskImageId': None,
'guestId': None,
'hotPlugFlag': None,
'id': None,
'modifyDate': None,
'statusId': None
},
{
'bootableFlag': None,
'createDate': None,
'device': '2',
'diskImage': {
'capacity': 10,
'createDate': None,
'id': None,
'modifyDate': None,
'parentId': None,
'storageRepositoryId': None,
'typeId': None},
'diskImageId': None,
'guestId': None,
'hotPlugFlag': None,
'id': None,
'modifyDate': None,
'statusId': None
}
],
'createDate': None,
'datacenter': {
'id': None,
'name': 'sao01',
'statusId': None
},
'dedicatedAccountHostOnlyFlag': None,
'domain': 'tech-support.com',
'hostname': 'testing',
'hourlyBillingFlag': True,
'id': None,
'lastPowerStateId': None,
'lastVerifiedDate': None,
'localDiskFlag': False,
'maxCpu': None,
'maxMemory': 1024,
'metricPollDate': None,
'modifyDate': None,
'networkComponents': [
{
'createDate': None,
'guestId': None,
'id': None,
'maxSpeed': 100,
'modifyDate': None,
'networkId': None,
'port': None,
'speed': None
}
],
'operatingSystemReferenceCode': 'CENTOS_LATEST',
'placementGroupId': None,
'postInstallScriptUri': 'https://test.com/',
'privateNetworkOnlyFlag': False,
'provisionDate': None,
'sshKeys': [
{
'createDate': None,
'id': 490279,
'modifyDate': None
}
],
'startCpus': 1,
'statusId': None,
'typeId': None},
'virtualGuestMembers': [
{
'id': 3111111,
'virtualGuest': {
'domain': 'tech-support.com',
'hostname': 'test',
'provisionDate': '2019-09-27T14:29:53-04:00'
}
}
]
}
getVirtualGuestMembers = getObject['virtualGuestMembers']
scale = [
{
"accountId": 31111,
"cooldown": 1800,
"createDate": "2016-10-25T01:48:34+08:00",
"id": 12222222,
"maximumMemberCount": 5,
"minimumMemberCount": 0,
"name": "tests",
"virtualGuest": {
"accountId": 31111,
"createDate": "2019-10-02T15:24:54-06:00",
"billingItem": {
"cancellationDate": "2019-10-02T08:34:21-06:00"}
},
"virtualGuestMemberTemplate": {
"accountId": 31111,
"domain": "sodg.com",
"hostname": "testing",
"maxMemory": 32768,
"startCpus": 32,
"blockDevices": [
{
"device": "0",
"diskImage": {
"capacity": 25,
}
}
],
"datacenter": {
"name": "sao01",
},
"hourlyBillingFlag": True,
"operatingSystemReferenceCode": "CENTOS_LATEST",
"privateNetworkOnlyFlag": True
},
"virtualGuestMemberCount": 0,
"status": {
"id": 1,
"keyName": "ACTIVE",
"name": "Active"
},
"virtualGuestAssets": [],
"virtualGuestMembers": []
},
{
"accountId": 31111,
"cooldown": 1800,
"createDate": "2018-04-24T04:22:00+08:00",
"id": 224533333,
"maximumMemberCount": 10,
"minimumMemberCount": 0,
"modifyDate": "2019-01-19T04:53:21+08:00",
"name": "test-ajcb",
"virtualGuest": {
"accountId": 31111,
"createDate": "2019-10-02T15:24:54-06:00",
"billingItem": {
"cancellationDate": "2019-10-02T08:34:21-06:00"}
},
"virtualGuestMemberTemplate": {
"accountId": 31111,
"domain": "test.local",
"hostname": "autoscale-ajcb01",
"id": None,
"maxCpu": None,
"maxMemory": 1024,
"postInstallScriptUri": "http://test.com",
"startCpus": 1,
"blockDevices": [
{
"device": "0",
"diskImage": {
"capacity": 25,
}
}
],
"datacenter": {
"name": "seo01",
},
"hourlyBillingFlag": True,
"operatingSystemReferenceCode": "CENTOS_7_64",
},
"virtualGuestMemberCount": 0,
"status": {
"id": 1,
"keyName": "ACTIVE",
"name": "Active"
},
"virtualGuestAssets": [],
"virtualGuestMembers": []
}
]
scaleTo = [
{
"accountId": 31111,
"cooldown": 1800,
"createDate": "2016-10-25T01:48:34+08:00",
"id": 12222222,
"lastActionDate": "2016-10-25T01:48:34+08:00",
"maximumMemberCount": 5,
"minimumMemberCount": 0,
"name": "tests",
"regionalGroupId": 663,
"virtualGuest": {
},
"virtualGuestMemberTemplate": {
"accountId": 31111,
"domain": "sodg.com",
"hostname": "testing",
"id": None,
"maxCpu": None,
"maxMemory": 32768,
"startCpus": 32,
"datacenter": {
"name": "sao01",
},
"hourlyBillingFlag": True,
"operatingSystemReferenceCode": "CENTOS_LATEST",
"privateNetworkOnlyFlag": True
},
"virtualGuestMemberCount": 0,
"status": {
"id": 1,
"keyName": "ACTIVE",
"name": "Active"
},
"virtualGuestAssets": [],
"virtualGuestMembers": []
},
{
"accountId": 31111,
"cooldown": 1800,
"createDate": "2018-04-24T04:22:00+08:00",
"id": 224533333,
"lastActionDate": "2019-01-19T04:53:18+08:00",
"maximumMemberCount": 10,
"minimumMemberCount": 0,
"modifyDate": "2019-01-19T04:53:21+08:00",
"name": "test-ajcb",
"regionalGroupId": 1025,
"virtualGuest": {
"accountId": 31111,
"createDate": "2019-10-02T15:24:54-06:00",
"billingItem": {
"cancellationDate": "2019-10-02T08:34:21-06:00"}
},
"virtualGuestMemberTemplate": {
"accountId": 31111,
"domain": "test.local",
"hostname": "autoscale-ajcb01",
"id": None,
"maxCpu": None,
"maxMemory": 1024,
"postInstallScriptUri": "http://test.com",
"startCpus": 1,
"blockDevices": [
{
"device": "0",
"diskImage": {
"capacity": 25,
}
}
],
"datacenter": {
"name": "seo01",
},
"hourlyBillingFlag": True,
"operatingSystemReferenceCode": "CENTOS_7_64",
},
"virtualGuestMemberCount": 0,
"status": {
"id": 1,
"keyName": "ACTIVE",
"name": "Active"
},
"virtualGuestAssets": [],
"virtualGuestMembers": []
},
]
getLogs = [
{
"createDate": "2019-10-03T04:26:11+08:00",
"description": "Scaling group to 6 member(s) by adding 3 member(s) as manually requested",
"id": 3821111,
"scaleGroupId": 2252222,
"scaleGroup": {
"accountId": 31111,
"cooldown": 1800,
"createDate": "2018-05-01T03:07:40+08:00",
"id": 2251111,
"lastActionDate": "2019-10-03T04:26:17+08:00",
"maximumMemberCount": 6,
"minimumMemberCount": 2,
"modifyDate": "2019-10-03T04:26:21+08:00",
"name": "ajcb-autoscale11",
"regionalGroupId": 663,
"terminationPolicyId": 2,
"virtualGuestMemberTemplate": {
"accountId": 31111,
"domain": "techsupport.com",
"hostname": "ajcb-autoscale22",
"maxMemory": 1024,
"postInstallScriptUri": "https://pastebin.com/raw/62wrEKuW",
"startCpus": 1,
"blockDevices": [
{
"device": "0",
"diskImage": {
"capacity": 25,
}
},
{
"device": "2",
"diskImage": {
"capacity": 10,
}
}
],
"datacenter": {
"name": "sao01",
},
"networkComponents": [
{
"maxSpeed": 100,
}
],
"operatingSystemReferenceCode": "CENTOS_LATEST",
"sshKeys": [
{
"id": 49111,
}
]
},
"logs": [
{
"createDate": "2019-09-28T02:31:35+08:00",
"description": "Scaling group to 3 member(s) by removing -1 member(s) as manually requested",
"id": 3821111,
"scaleGroupId": 2251111,
},
{
"createDate": "2019-09-28T02:26:11+08:00",
"description": "Scaling group to 4 member(s) by adding 2 member(s) as manually requested",
"id": 38211111,
"scaleGroupId": 2251111,
},
]
}
},
]
editObject = True
forceDeleteObject = True
createObject = {
"accountId": 307608,
"cooldown": 3600,
"createDate": "2022-04-22T13:45:24-06:00",
"id": 5446140,
"lastActionDate": "2022-04-22T13:45:29-06:00",
"maximumMemberCount": 5,
"minimumMemberCount": 1,
"name": "test22042022",
"regionalGroupId": 4568,
"suspendedFlag": False,
"terminationPolicyId": 2,
"virtualGuestMemberTemplate": {
"accountId": 307608,
"domain": "test.com",
"hostname": "testvs",
"maxMemory": 2048,
"startCpus": 2,
"blockDevices": [
{
"diskImage": {
"capacity": 100,
}
}
],
"hourlyBillingFlag": True,
"localDiskFlag": True,
"networkComponents": [
{
"maxSpeed": 100,
}
],
"operatingSystemReferenceCode": "CENTOS_7_64",
"userData": [
{
"value": "the userData"
}
]
},
"virtualGuestMemberCount": 0,
"networkVlans": [],
"policies": [],
"status": {
"id": 1,
"keyName": "ACTIVE",
"name": "Active"
},
"virtualGuestAssets": [],
"virtualGuestMembers": [
{
"createDate": "2022-04-22T13:45:29-06:00",
"id": 123456,
"scaleGroupId": 5446140,
"virtualGuest": {
"createDate": "2022-04-22T13:45:28-06:00",
"deviceStatusId": 3,
"domain": "test.com",
"fullyQualifiedDomainName": "testvs-97e7.test.com",
"hostname": "testvs-97e7",
"id": 129911702,
"maxCpu": 2,
"maxCpuUnits": "CORE",
"maxMemory": 2048,
"startCpus": 2,
"statusId": 1001,
"typeId": 1,
"uuid": "46e55f99-b412-4287-95b5-b8182b2fc924",
"status": {
"keyName": "ACTIVE",
"name": "Active"
}
}
}
]
}
| get_object = {'accountId': 31111, 'balancedTerminationFlag': False, 'cooldown': 1800, 'createDate': '2018-04-30T15:07:40-04:00', 'desiredMemberCount': None, 'id': 12222222, 'lastActionDate': '2019-10-02T16:26:17-04:00', 'loadBalancers': [], 'maximumMemberCount': 6, 'minimumMemberCount': 2, 'modifyDate': '2019-10-03T17:16:47-04:00', 'name': 'tests', 'networkVlans': [{'networkVlan': {'accountId': 31111, 'id': 2222222, 'modifyDate': '2019-07-16T13:09:47-04:00', 'networkSpace': 'PRIVATE', 'primaryRouter': {'hostname': 'bcr01a.sao01'}, 'primarySubnetId': 1172222, 'vlanNumber': 1111}, 'networkVlanId': 2281111}], 'policies': [{'actions': [{'amount': 1, 'createDate': '2019-09-26T18:30:22-04:00', 'deleteFlag': None, 'id': 611111, 'modifyDate': None, 'scalePolicy': None, 'scalePolicyId': 681111, 'scaleType': 'RELATIVE', 'typeId': 1}], 'cooldown': None, 'createDate': '2019-09-26T18:30:14-04:00', 'id': 680000, 'name': 'prime-poly', 'scaleActions': [{'amount': 1, 'createDate': '2019-09-26T18:30:22-04:00', 'deleteFlag': None, 'id': 633333, 'modifyDate': None, 'scalePolicy': None, 'scalePolicyId': 680123, 'scaleType': 'RELATIVE', 'typeId': 1}], 'triggers': [{'createDate': '2019-09-26T18:30:14-04:00', 'deleteFlag': None, 'id': 557111, 'modifyDate': None, 'scalePolicy': None, 'scalePolicyId': 680000, 'typeId': 3}]}], 'regionalGroup': {'description': 'sa-bra-south-1', 'id': 663, 'locationGroupTypeId': 42, 'locations': [{'id': 983497, 'longName': 'Sao Paulo 1', 'name': 'sao01', 'statusId': 2}], 'name': 'sa-bra-south-1', 'securityLevelId': None}, 'regionalGroupId': 663, 'status': {'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'}, 'suspendedFlag': False, 'terminationPolicy': {'id': 2, 'keyName': 'NEWEST', 'name': 'Newest'}, 'terminationPolicyId': 2, 'virtualGuestAssets': [], 'virtualGuestMemberCount': 6, 'virtualGuestMemberTemplate': {'accountId': 31111, 'blockDevices': [{'bootableFlag': None, 'createDate': None, 'device': '0', 'diskImage': {'capacity': 25, 'createDate': None, 'id': None, 'modifyDate': None, 'parentId': None, 'storageRepositoryId': None, 'typeId': None}, 'diskImageId': None, 'guestId': None, 'hotPlugFlag': None, 'id': None, 'modifyDate': None, 'statusId': None}, {'bootableFlag': None, 'createDate': None, 'device': '2', 'diskImage': {'capacity': 10, 'createDate': None, 'id': None, 'modifyDate': None, 'parentId': None, 'storageRepositoryId': None, 'typeId': None}, 'diskImageId': None, 'guestId': None, 'hotPlugFlag': None, 'id': None, 'modifyDate': None, 'statusId': None}], 'createDate': None, 'datacenter': {'id': None, 'name': 'sao01', 'statusId': None}, 'dedicatedAccountHostOnlyFlag': None, 'domain': 'tech-support.com', 'hostname': 'testing', 'hourlyBillingFlag': True, 'id': None, 'lastPowerStateId': None, 'lastVerifiedDate': None, 'localDiskFlag': False, 'maxCpu': None, 'maxMemory': 1024, 'metricPollDate': None, 'modifyDate': None, 'networkComponents': [{'createDate': None, 'guestId': None, 'id': None, 'maxSpeed': 100, 'modifyDate': None, 'networkId': None, 'port': None, 'speed': None}], 'operatingSystemReferenceCode': 'CENTOS_LATEST', 'placementGroupId': None, 'postInstallScriptUri': 'https://test.com/', 'privateNetworkOnlyFlag': False, 'provisionDate': None, 'sshKeys': [{'createDate': None, 'id': 490279, 'modifyDate': None}], 'startCpus': 1, 'statusId': None, 'typeId': None}, 'virtualGuestMembers': [{'id': 3111111, 'virtualGuest': {'domain': 'tech-support.com', 'hostname': 'test', 'provisionDate': '2019-09-27T14:29:53-04:00'}}]}
get_virtual_guest_members = getObject['virtualGuestMembers']
scale = [{'accountId': 31111, 'cooldown': 1800, 'createDate': '2016-10-25T01:48:34+08:00', 'id': 12222222, 'maximumMemberCount': 5, 'minimumMemberCount': 0, 'name': 'tests', 'virtualGuest': {'accountId': 31111, 'createDate': '2019-10-02T15:24:54-06:00', 'billingItem': {'cancellationDate': '2019-10-02T08:34:21-06:00'}}, 'virtualGuestMemberTemplate': {'accountId': 31111, 'domain': 'sodg.com', 'hostname': 'testing', 'maxMemory': 32768, 'startCpus': 32, 'blockDevices': [{'device': '0', 'diskImage': {'capacity': 25}}], 'datacenter': {'name': 'sao01'}, 'hourlyBillingFlag': True, 'operatingSystemReferenceCode': 'CENTOS_LATEST', 'privateNetworkOnlyFlag': True}, 'virtualGuestMemberCount': 0, 'status': {'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'}, 'virtualGuestAssets': [], 'virtualGuestMembers': []}, {'accountId': 31111, 'cooldown': 1800, 'createDate': '2018-04-24T04:22:00+08:00', 'id': 224533333, 'maximumMemberCount': 10, 'minimumMemberCount': 0, 'modifyDate': '2019-01-19T04:53:21+08:00', 'name': 'test-ajcb', 'virtualGuest': {'accountId': 31111, 'createDate': '2019-10-02T15:24:54-06:00', 'billingItem': {'cancellationDate': '2019-10-02T08:34:21-06:00'}}, 'virtualGuestMemberTemplate': {'accountId': 31111, 'domain': 'test.local', 'hostname': 'autoscale-ajcb01', 'id': None, 'maxCpu': None, 'maxMemory': 1024, 'postInstallScriptUri': 'http://test.com', 'startCpus': 1, 'blockDevices': [{'device': '0', 'diskImage': {'capacity': 25}}], 'datacenter': {'name': 'seo01'}, 'hourlyBillingFlag': True, 'operatingSystemReferenceCode': 'CENTOS_7_64'}, 'virtualGuestMemberCount': 0, 'status': {'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'}, 'virtualGuestAssets': [], 'virtualGuestMembers': []}]
scale_to = [{'accountId': 31111, 'cooldown': 1800, 'createDate': '2016-10-25T01:48:34+08:00', 'id': 12222222, 'lastActionDate': '2016-10-25T01:48:34+08:00', 'maximumMemberCount': 5, 'minimumMemberCount': 0, 'name': 'tests', 'regionalGroupId': 663, 'virtualGuest': {}, 'virtualGuestMemberTemplate': {'accountId': 31111, 'domain': 'sodg.com', 'hostname': 'testing', 'id': None, 'maxCpu': None, 'maxMemory': 32768, 'startCpus': 32, 'datacenter': {'name': 'sao01'}, 'hourlyBillingFlag': True, 'operatingSystemReferenceCode': 'CENTOS_LATEST', 'privateNetworkOnlyFlag': True}, 'virtualGuestMemberCount': 0, 'status': {'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'}, 'virtualGuestAssets': [], 'virtualGuestMembers': []}, {'accountId': 31111, 'cooldown': 1800, 'createDate': '2018-04-24T04:22:00+08:00', 'id': 224533333, 'lastActionDate': '2019-01-19T04:53:18+08:00', 'maximumMemberCount': 10, 'minimumMemberCount': 0, 'modifyDate': '2019-01-19T04:53:21+08:00', 'name': 'test-ajcb', 'regionalGroupId': 1025, 'virtualGuest': {'accountId': 31111, 'createDate': '2019-10-02T15:24:54-06:00', 'billingItem': {'cancellationDate': '2019-10-02T08:34:21-06:00'}}, 'virtualGuestMemberTemplate': {'accountId': 31111, 'domain': 'test.local', 'hostname': 'autoscale-ajcb01', 'id': None, 'maxCpu': None, 'maxMemory': 1024, 'postInstallScriptUri': 'http://test.com', 'startCpus': 1, 'blockDevices': [{'device': '0', 'diskImage': {'capacity': 25}}], 'datacenter': {'name': 'seo01'}, 'hourlyBillingFlag': True, 'operatingSystemReferenceCode': 'CENTOS_7_64'}, 'virtualGuestMemberCount': 0, 'status': {'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'}, 'virtualGuestAssets': [], 'virtualGuestMembers': []}]
get_logs = [{'createDate': '2019-10-03T04:26:11+08:00', 'description': 'Scaling group to 6 member(s) by adding 3 member(s) as manually requested', 'id': 3821111, 'scaleGroupId': 2252222, 'scaleGroup': {'accountId': 31111, 'cooldown': 1800, 'createDate': '2018-05-01T03:07:40+08:00', 'id': 2251111, 'lastActionDate': '2019-10-03T04:26:17+08:00', 'maximumMemberCount': 6, 'minimumMemberCount': 2, 'modifyDate': '2019-10-03T04:26:21+08:00', 'name': 'ajcb-autoscale11', 'regionalGroupId': 663, 'terminationPolicyId': 2, 'virtualGuestMemberTemplate': {'accountId': 31111, 'domain': 'techsupport.com', 'hostname': 'ajcb-autoscale22', 'maxMemory': 1024, 'postInstallScriptUri': 'https://pastebin.com/raw/62wrEKuW', 'startCpus': 1, 'blockDevices': [{'device': '0', 'diskImage': {'capacity': 25}}, {'device': '2', 'diskImage': {'capacity': 10}}], 'datacenter': {'name': 'sao01'}, 'networkComponents': [{'maxSpeed': 100}], 'operatingSystemReferenceCode': 'CENTOS_LATEST', 'sshKeys': [{'id': 49111}]}, 'logs': [{'createDate': '2019-09-28T02:31:35+08:00', 'description': 'Scaling group to 3 member(s) by removing -1 member(s) as manually requested', 'id': 3821111, 'scaleGroupId': 2251111}, {'createDate': '2019-09-28T02:26:11+08:00', 'description': 'Scaling group to 4 member(s) by adding 2 member(s) as manually requested', 'id': 38211111, 'scaleGroupId': 2251111}]}}]
edit_object = True
force_delete_object = True
create_object = {'accountId': 307608, 'cooldown': 3600, 'createDate': '2022-04-22T13:45:24-06:00', 'id': 5446140, 'lastActionDate': '2022-04-22T13:45:29-06:00', 'maximumMemberCount': 5, 'minimumMemberCount': 1, 'name': 'test22042022', 'regionalGroupId': 4568, 'suspendedFlag': False, 'terminationPolicyId': 2, 'virtualGuestMemberTemplate': {'accountId': 307608, 'domain': 'test.com', 'hostname': 'testvs', 'maxMemory': 2048, 'startCpus': 2, 'blockDevices': [{'diskImage': {'capacity': 100}}], 'hourlyBillingFlag': True, 'localDiskFlag': True, 'networkComponents': [{'maxSpeed': 100}], 'operatingSystemReferenceCode': 'CENTOS_7_64', 'userData': [{'value': 'the userData'}]}, 'virtualGuestMemberCount': 0, 'networkVlans': [], 'policies': [], 'status': {'id': 1, 'keyName': 'ACTIVE', 'name': 'Active'}, 'virtualGuestAssets': [], 'virtualGuestMembers': [{'createDate': '2022-04-22T13:45:29-06:00', 'id': 123456, 'scaleGroupId': 5446140, 'virtualGuest': {'createDate': '2022-04-22T13:45:28-06:00', 'deviceStatusId': 3, 'domain': 'test.com', 'fullyQualifiedDomainName': 'testvs-97e7.test.com', 'hostname': 'testvs-97e7', 'id': 129911702, 'maxCpu': 2, 'maxCpuUnits': 'CORE', 'maxMemory': 2048, 'startCpus': 2, 'statusId': 1001, 'typeId': 1, 'uuid': '46e55f99-b412-4287-95b5-b8182b2fc924', 'status': {'keyName': 'ACTIVE', 'name': 'Active'}}}]} |
#
# PySNMP MIB module HPN-ICF-RMON-EXT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPN-ICF-RMON-EXT-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:41:09 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion")
hpnicfrmonExtend, = mibBuilder.importSymbols("HPN-ICF-OID-MIB", "hpnicfrmonExtend")
OwnerString, = mibBuilder.importSymbols("IF-MIB", "OwnerString")
EntryStatus, = mibBuilder.importSymbols("RMON-MIB", "EntryStatus")
trapDestEntry, trapDestIndex = mibBuilder.importSymbols("RMON2-MIB", "trapDestEntry", "trapDestIndex")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
ObjectIdentity, NotificationType, Unsigned32, IpAddress, Counter64, Integer32, iso, TimeTicks, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, Counter32, Bits, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "NotificationType", "Unsigned32", "IpAddress", "Counter64", "Integer32", "iso", "TimeTicks", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "Counter32", "Bits", "Gauge32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
hpnicfperformance = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4))
hpnicfperformance.setRevisions(('2003-03-15 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: hpnicfperformance.setRevisionsDescriptions(('The initial revision of this MIB module.',))
if mibBuilder.loadTexts: hpnicfperformance.setLastUpdated('200303150000Z')
if mibBuilder.loadTexts: hpnicfperformance.setOrganization('')
if mibBuilder.loadTexts: hpnicfperformance.setContactInfo('')
if mibBuilder.loadTexts: hpnicfperformance.setDescription(' ')
hpnicfprialarmTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1), )
if mibBuilder.loadTexts: hpnicfprialarmTable.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmTable.setDescription('A list of alarm entries.')
hpnicfprialarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1), ).setIndexNames((0, "HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmIndex"))
if mibBuilder.loadTexts: hpnicfprialarmEntry.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmEntry.setDescription('A list of parameters that set up a periodic checking for alarm conditions. For example, an instance of the alarmValue object might be named alarmValue.8')
hpnicfprialarmIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfprialarmIndex.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmIndex.setDescription('An index that uniquely identifies an entry in the alarm table. Each such entry defines a diagnostic sample at a particular interval for an object on the device.')
hpnicfprialarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmInterval.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmInterval.setDescription('The interval in seconds over which the data is sampled and compared with the rising and falling thresholds. When setting this variable, care should be taken in the case of deltaValue sampling - the interval should be set short enough that the sampled variable is very unlikely to increase or decrease by more than 2^31 - 1 during a single sampling interval. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmVariable = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmVariable.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmVariable.setDescription('The object identifier of the particular variable to be sampled. Only variables that resolve to an ASN.1 primitive type of INTEGER (INTEGER, Integer32, Counter32, Counter64, Gauge, or TimeTicks) may be sampled. Because SNMP access control is articulated entirely in terms of the contents of MIB views, no access control mechanism exists that can restrict the value of this object to identify only those objects that exist in a particular MIB view. Because there is thus no acceptable means of restricting the read access that could be obtained through the alarm mechanism, the probe must only grant write access to this object in those views that have read access to all objects on the probe. During a set operation, if the supplied variable name is not available in the selected MIB view, a badValue error must be returned. If at any time the variable name of an established alarmEntry is no longer available in the selected MIB view, the probe must change the status of this alarmEntry to invalid(4). This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmSympol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmSympol.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmSympol.setDescription('')
hpnicfprialarmSampleType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("absoluteValue", 1), ("deltaValue", 2), ("speedValue", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmSampleType.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmSampleType.setDescription('The method of sampling the selected variable and calculating the value to be compared against the thresholds. If the value of this object is absoluteValue(1), the value of the selected variable will be compared directly with the thresholds at the end of the sampling interval. If the value of this object is deltaValue(2), the value of the selected variable at the last sample will be subtracted from the current value, and the difference compared with the thresholds. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmValue = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfprialarmValue.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmValue.setDescription('The value of the statistic during the last sampling period. For example, if the sample type is deltaValue, this value will be the difference between the samples at the beginning and end of the period. If the sample type is absoluteValue, this value will be the sampled value at the end of the period. This is the value that is compared with the rising and falling thresholds. The value during the current sampling period is not made available until the period is completed and will remain available until the next period completes.')
hpnicfprialarmStartupAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("risingAlarm", 1), ("fallingAlarm", 2), ("risingOrFallingAlarm", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmStartupAlarm.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmStartupAlarm.setDescription('The alarm that may be sent when this entry is first set to valid. If the first sample after this entry becomes valid is greater than or equal to the risingThreshold and alarmStartupAlarm is equal to risingAlarm(1) or risingOrFallingAlarm(3), then a single rising alarm will be generated. If the first sample after this entry becomes valid is less than or equal to the fallingThreshold and alarmStartupAlarm is equal to fallingAlarm(2) or risingOrFallingAlarm(3), then a single falling alarm will be generated. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmRisingThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmRisingThreshold.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmRisingThreshold.setDescription('A threshold for the sampled statistic. When the current sampled value is greater than or equal to this threshold, and the value at the last sampling interval was less than this threshold, a single event will be generated. A single event will also be generated if the first sample after this entry becomes valid is greater than or equal to this threshold and the associated alarmStartupAlarm is equal to risingAlarm(1) or risingOrFallingAlarm(3). After a rising event is generated, another such event will not be generated until the sampled value falls below this threshold and reaches the alarmFallingThreshold. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmFallingThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmFallingThreshold.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmFallingThreshold.setDescription('A threshold for the sampled statistic. When the current sampled value is less than or equal to this threshold, and the value at the last sampling interval was greater than this threshold, a single event will be generated. A single event will also be generated if the first sample after this entry becomes valid is less than or equal to this threshold and the associated alarmStartupAlarm is equal to fallingAlarm(2) or risingOrFallingAlarm(3). After a falling event is generated, another such event will not be generated until the sampled value rises above this threshold and reaches the alarmRisingThreshold. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmRisingEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmRisingEventIndex.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmRisingEventIndex.setDescription('The index of the eventEntry that is used when a rising threshold is crossed. The eventEntry identified by a particular value of this index is the same as identified by the same value of the eventIndex object. If there is no corresponding entry in the eventTable, then no association exists. In particular, if this value is zero, no associated event will be generated, as zero is not a valid event index. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmFallingEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmFallingEventIndex.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmFallingEventIndex.setDescription('The index of the eventEntry that is used when a falling threshold is crossed. The eventEntry identified by a particular value of this index is the same as identified by the same value of the eventIndex object. If there is no corresponding entry in the eventTable, then no association exists. In particular, if this value is zero, no associated event will be generated, as zero is not a valid event index. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarmStatCycle = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmStatCycle.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmStatCycle.setDescription('')
hpnicfprialarmStatType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("forever", 1), ("during", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmStatType.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmStatType.setDescription('')
hpnicfprialarmOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 14), OwnerString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmOwner.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmOwner.setDescription('The entity that configured this entry and is therefore using the resources assigned to it.')
hpnicfprialarmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 15), EntryStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfprialarmStatus.setStatus('current')
if mibBuilder.loadTexts: hpnicfprialarmStatus.setDescription('The status of this alarm entry.')
hpnicfrmonEnableTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5), )
if mibBuilder.loadTexts: hpnicfrmonEnableTable.setStatus('current')
if mibBuilder.loadTexts: hpnicfrmonEnableTable.setDescription('A list of enable rmon entries.')
hpnicfrmonEnableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5, 1), ).setIndexNames((0, "HPN-ICF-RMON-EXT-MIB", "hpnicfrmonEnableIfIndex"))
if mibBuilder.loadTexts: hpnicfrmonEnableEntry.setStatus('current')
if mibBuilder.loadTexts: hpnicfrmonEnableEntry.setDescription('A list of parameters that set up a hpnicfrmonEnableTable')
hpnicfrmonEnableIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hpnicfrmonEnableIfIndex.setStatus('current')
if mibBuilder.loadTexts: hpnicfrmonEnableIfIndex.setDescription('Specify an interface to enable rmon.')
hpnicfrmonEnableStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hpnicfrmonEnableStatus.setStatus('current')
if mibBuilder.loadTexts: hpnicfrmonEnableStatus.setDescription('Specify an interface to enable rmon.')
hpnicfTrapDestTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 6), )
if mibBuilder.loadTexts: hpnicfTrapDestTable.setStatus('current')
if mibBuilder.loadTexts: hpnicfTrapDestTable.setDescription('Defines the trap destination Extend Table for providing, via SNMP, the capability of configure a trap dest.')
hpnicfTrapDestEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 6, 1), )
trapDestEntry.registerAugmentions(("HPN-ICF-RMON-EXT-MIB", "hpnicfTrapDestEntry"))
hpnicfTrapDestEntry.setIndexNames(*trapDestEntry.getIndexNames())
if mibBuilder.loadTexts: hpnicfTrapDestEntry.setStatus('current')
if mibBuilder.loadTexts: hpnicfTrapDestEntry.setDescription('Defines an entry in the hpnicfTrapDestTable.')
hpnicfTrapDestVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("snmpv1", 1), ("snmpv2", 2), ("snmpv3andauthen", 3), ("snmpv3andnoauthen", 4), ("snmpv3andpriv", 5))).clone('snmpv1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hpnicfTrapDestVersion.setStatus('current')
if mibBuilder.loadTexts: hpnicfTrapDestVersion.setDescription('The version for trap destination. This object may not be modified if the associated trapDestStatus object is equal to active(1).')
hpnicfrmonExtendEventsV2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 0))
if mibBuilder.loadTexts: hpnicfrmonExtendEventsV2.setStatus('current')
if mibBuilder.loadTexts: hpnicfrmonExtendEventsV2.setDescription('Definition point for pri RMON notifications.')
hpnicfpririsingAlarm = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 0, 1)).setObjects(("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmIndex"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmSympol"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmSampleType"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmValue"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmRisingThreshold"))
if mibBuilder.loadTexts: hpnicfpririsingAlarm.setStatus('current')
if mibBuilder.loadTexts: hpnicfpririsingAlarm.setDescription('The SNMP trap that is generated when an alarm entry crosses its rising threshold and generates an event that is configured for sending SNMP traps.')
hpnicfprifallingAlarm = NotificationType((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 0, 2)).setObjects(("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmIndex"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmSympol"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmSampleType"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmValue"), ("HPN-ICF-RMON-EXT-MIB", "hpnicfprialarmFallingThreshold"))
if mibBuilder.loadTexts: hpnicfprifallingAlarm.setStatus('current')
if mibBuilder.loadTexts: hpnicfprifallingAlarm.setDescription('The SNMP trap that is generated when an alarm entry crosses its falling threshold and generates an event that is configured for sending SNMP traps.')
mibBuilder.exportSymbols("HPN-ICF-RMON-EXT-MIB", hpnicfprialarmSympol=hpnicfprialarmSympol, hpnicfrmonEnableEntry=hpnicfrmonEnableEntry, hpnicfprialarmStatType=hpnicfprialarmStatType, hpnicfprifallingAlarm=hpnicfprifallingAlarm, hpnicfprialarmRisingThreshold=hpnicfprialarmRisingThreshold, hpnicfprialarmEntry=hpnicfprialarmEntry, hpnicfprialarmRisingEventIndex=hpnicfprialarmRisingEventIndex, hpnicfprialarmFallingEventIndex=hpnicfprialarmFallingEventIndex, hpnicfrmonEnableIfIndex=hpnicfrmonEnableIfIndex, hpnicfrmonEnableTable=hpnicfrmonEnableTable, hpnicfprialarmOwner=hpnicfprialarmOwner, hpnicfrmonExtendEventsV2=hpnicfrmonExtendEventsV2, hpnicfprialarmSampleType=hpnicfprialarmSampleType, hpnicfTrapDestVersion=hpnicfTrapDestVersion, hpnicfprialarmIndex=hpnicfprialarmIndex, hpnicfpririsingAlarm=hpnicfpririsingAlarm, hpnicfprialarmTable=hpnicfprialarmTable, hpnicfprialarmStatCycle=hpnicfprialarmStatCycle, hpnicfperformance=hpnicfperformance, hpnicfprialarmFallingThreshold=hpnicfprialarmFallingThreshold, hpnicfTrapDestEntry=hpnicfTrapDestEntry, hpnicfprialarmStartupAlarm=hpnicfprialarmStartupAlarm, hpnicfprialarmInterval=hpnicfprialarmInterval, hpnicfTrapDestTable=hpnicfTrapDestTable, hpnicfprialarmStatus=hpnicfprialarmStatus, hpnicfprialarmValue=hpnicfprialarmValue, PYSNMP_MODULE_ID=hpnicfperformance, hpnicfrmonEnableStatus=hpnicfrmonEnableStatus, hpnicfprialarmVariable=hpnicfprialarmVariable)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, constraints_intersection, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion')
(hpnicfrmon_extend,) = mibBuilder.importSymbols('HPN-ICF-OID-MIB', 'hpnicfrmonExtend')
(owner_string,) = mibBuilder.importSymbols('IF-MIB', 'OwnerString')
(entry_status,) = mibBuilder.importSymbols('RMON-MIB', 'EntryStatus')
(trap_dest_entry, trap_dest_index) = mibBuilder.importSymbols('RMON2-MIB', 'trapDestEntry', 'trapDestIndex')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(object_identity, notification_type, unsigned32, ip_address, counter64, integer32, iso, time_ticks, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, counter32, bits, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'NotificationType', 'Unsigned32', 'IpAddress', 'Counter64', 'Integer32', 'iso', 'TimeTicks', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'Counter32', 'Bits', 'Gauge32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
hpnicfperformance = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4))
hpnicfperformance.setRevisions(('2003-03-15 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
hpnicfperformance.setRevisionsDescriptions(('The initial revision of this MIB module.',))
if mibBuilder.loadTexts:
hpnicfperformance.setLastUpdated('200303150000Z')
if mibBuilder.loadTexts:
hpnicfperformance.setOrganization('')
if mibBuilder.loadTexts:
hpnicfperformance.setContactInfo('')
if mibBuilder.loadTexts:
hpnicfperformance.setDescription(' ')
hpnicfprialarm_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1))
if mibBuilder.loadTexts:
hpnicfprialarmTable.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmTable.setDescription('A list of alarm entries.')
hpnicfprialarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1)).setIndexNames((0, 'HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmIndex'))
if mibBuilder.loadTexts:
hpnicfprialarmEntry.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmEntry.setDescription('A list of parameters that set up a periodic checking for alarm conditions. For example, an instance of the alarmValue object might be named alarmValue.8')
hpnicfprialarm_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfprialarmIndex.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmIndex.setDescription('An index that uniquely identifies an entry in the alarm table. Each such entry defines a diagnostic sample at a particular interval for an object on the device.')
hpnicfprialarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmInterval.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmInterval.setDescription('The interval in seconds over which the data is sampled and compared with the rising and falling thresholds. When setting this variable, care should be taken in the case of deltaValue sampling - the interval should be set short enough that the sampled variable is very unlikely to increase or decrease by more than 2^31 - 1 during a single sampling interval. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_variable = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmVariable.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmVariable.setDescription('The object identifier of the particular variable to be sampled. Only variables that resolve to an ASN.1 primitive type of INTEGER (INTEGER, Integer32, Counter32, Counter64, Gauge, or TimeTicks) may be sampled. Because SNMP access control is articulated entirely in terms of the contents of MIB views, no access control mechanism exists that can restrict the value of this object to identify only those objects that exist in a particular MIB view. Because there is thus no acceptable means of restricting the read access that could be obtained through the alarm mechanism, the probe must only grant write access to this object in those views that have read access to all objects on the probe. During a set operation, if the supplied variable name is not available in the selected MIB view, a badValue error must be returned. If at any time the variable name of an established alarmEntry is no longer available in the selected MIB view, the probe must change the status of this alarmEntry to invalid(4). This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_sympol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmSympol.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmSympol.setDescription('')
hpnicfprialarm_sample_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('absoluteValue', 1), ('deltaValue', 2), ('speedValue', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmSampleType.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmSampleType.setDescription('The method of sampling the selected variable and calculating the value to be compared against the thresholds. If the value of this object is absoluteValue(1), the value of the selected variable will be compared directly with the thresholds at the end of the sampling interval. If the value of this object is deltaValue(2), the value of the selected variable at the last sample will be subtracted from the current value, and the difference compared with the thresholds. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_value = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfprialarmValue.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmValue.setDescription('The value of the statistic during the last sampling period. For example, if the sample type is deltaValue, this value will be the difference between the samples at the beginning and end of the period. If the sample type is absoluteValue, this value will be the sampled value at the end of the period. This is the value that is compared with the rising and falling thresholds. The value during the current sampling period is not made available until the period is completed and will remain available until the next period completes.')
hpnicfprialarm_startup_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('risingAlarm', 1), ('fallingAlarm', 2), ('risingOrFallingAlarm', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmStartupAlarm.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmStartupAlarm.setDescription('The alarm that may be sent when this entry is first set to valid. If the first sample after this entry becomes valid is greater than or equal to the risingThreshold and alarmStartupAlarm is equal to risingAlarm(1) or risingOrFallingAlarm(3), then a single rising alarm will be generated. If the first sample after this entry becomes valid is less than or equal to the fallingThreshold and alarmStartupAlarm is equal to fallingAlarm(2) or risingOrFallingAlarm(3), then a single falling alarm will be generated. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_rising_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmRisingThreshold.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmRisingThreshold.setDescription('A threshold for the sampled statistic. When the current sampled value is greater than or equal to this threshold, and the value at the last sampling interval was less than this threshold, a single event will be generated. A single event will also be generated if the first sample after this entry becomes valid is greater than or equal to this threshold and the associated alarmStartupAlarm is equal to risingAlarm(1) or risingOrFallingAlarm(3). After a rising event is generated, another such event will not be generated until the sampled value falls below this threshold and reaches the alarmFallingThreshold. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_falling_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmFallingThreshold.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmFallingThreshold.setDescription('A threshold for the sampled statistic. When the current sampled value is less than or equal to this threshold, and the value at the last sampling interval was greater than this threshold, a single event will be generated. A single event will also be generated if the first sample after this entry becomes valid is less than or equal to this threshold and the associated alarmStartupAlarm is equal to fallingAlarm(2) or risingOrFallingAlarm(3). After a falling event is generated, another such event will not be generated until the sampled value rises above this threshold and reaches the alarmRisingThreshold. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_rising_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmRisingEventIndex.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmRisingEventIndex.setDescription('The index of the eventEntry that is used when a rising threshold is crossed. The eventEntry identified by a particular value of this index is the same as identified by the same value of the eventIndex object. If there is no corresponding entry in the eventTable, then no association exists. In particular, if this value is zero, no associated event will be generated, as zero is not a valid event index. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_falling_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmFallingEventIndex.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmFallingEventIndex.setDescription('The index of the eventEntry that is used when a falling threshold is crossed. The eventEntry identified by a particular value of this index is the same as identified by the same value of the eventIndex object. If there is no corresponding entry in the eventTable, then no association exists. In particular, if this value is zero, no associated event will be generated, as zero is not a valid event index. This object may not be modified if the associated alarmStatus object is equal to valid(1).')
hpnicfprialarm_stat_cycle = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmStatCycle.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmStatCycle.setDescription('')
hpnicfprialarm_stat_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('forever', 1), ('during', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmStatType.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmStatType.setDescription('')
hpnicfprialarm_owner = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 14), owner_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmOwner.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmOwner.setDescription('The entity that configured this entry and is therefore using the resources assigned to it.')
hpnicfprialarm_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 4, 1, 1, 15), entry_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfprialarmStatus.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprialarmStatus.setDescription('The status of this alarm entry.')
hpnicfrmon_enable_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5))
if mibBuilder.loadTexts:
hpnicfrmonEnableTable.setStatus('current')
if mibBuilder.loadTexts:
hpnicfrmonEnableTable.setDescription('A list of enable rmon entries.')
hpnicfrmon_enable_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5, 1)).setIndexNames((0, 'HPN-ICF-RMON-EXT-MIB', 'hpnicfrmonEnableIfIndex'))
if mibBuilder.loadTexts:
hpnicfrmonEnableEntry.setStatus('current')
if mibBuilder.loadTexts:
hpnicfrmonEnableEntry.setDescription('A list of parameters that set up a hpnicfrmonEnableTable')
hpnicfrmon_enable_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hpnicfrmonEnableIfIndex.setStatus('current')
if mibBuilder.loadTexts:
hpnicfrmonEnableIfIndex.setDescription('Specify an interface to enable rmon.')
hpnicfrmon_enable_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hpnicfrmonEnableStatus.setStatus('current')
if mibBuilder.loadTexts:
hpnicfrmonEnableStatus.setDescription('Specify an interface to enable rmon.')
hpnicf_trap_dest_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 6))
if mibBuilder.loadTexts:
hpnicfTrapDestTable.setStatus('current')
if mibBuilder.loadTexts:
hpnicfTrapDestTable.setDescription('Defines the trap destination Extend Table for providing, via SNMP, the capability of configure a trap dest.')
hpnicf_trap_dest_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 6, 1))
trapDestEntry.registerAugmentions(('HPN-ICF-RMON-EXT-MIB', 'hpnicfTrapDestEntry'))
hpnicfTrapDestEntry.setIndexNames(*trapDestEntry.getIndexNames())
if mibBuilder.loadTexts:
hpnicfTrapDestEntry.setStatus('current')
if mibBuilder.loadTexts:
hpnicfTrapDestEntry.setDescription('Defines an entry in the hpnicfTrapDestTable.')
hpnicf_trap_dest_version = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('snmpv1', 1), ('snmpv2', 2), ('snmpv3andauthen', 3), ('snmpv3andnoauthen', 4), ('snmpv3andpriv', 5))).clone('snmpv1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hpnicfTrapDestVersion.setStatus('current')
if mibBuilder.loadTexts:
hpnicfTrapDestVersion.setDescription('The version for trap destination. This object may not be modified if the associated trapDestStatus object is equal to active(1).')
hpnicfrmon_extend_events_v2 = object_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 0))
if mibBuilder.loadTexts:
hpnicfrmonExtendEventsV2.setStatus('current')
if mibBuilder.loadTexts:
hpnicfrmonExtendEventsV2.setDescription('Definition point for pri RMON notifications.')
hpnicfprirising_alarm = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 0, 1)).setObjects(('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmIndex'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmSympol'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmSampleType'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmValue'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmRisingThreshold'))
if mibBuilder.loadTexts:
hpnicfpririsingAlarm.setStatus('current')
if mibBuilder.loadTexts:
hpnicfpririsingAlarm.setDescription('The SNMP trap that is generated when an alarm entry crosses its rising threshold and generates an event that is configured for sending SNMP traps.')
hpnicfprifalling_alarm = notification_type((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 15, 8, 4, 0, 2)).setObjects(('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmIndex'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmSympol'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmSampleType'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmValue'), ('HPN-ICF-RMON-EXT-MIB', 'hpnicfprialarmFallingThreshold'))
if mibBuilder.loadTexts:
hpnicfprifallingAlarm.setStatus('current')
if mibBuilder.loadTexts:
hpnicfprifallingAlarm.setDescription('The SNMP trap that is generated when an alarm entry crosses its falling threshold and generates an event that is configured for sending SNMP traps.')
mibBuilder.exportSymbols('HPN-ICF-RMON-EXT-MIB', hpnicfprialarmSympol=hpnicfprialarmSympol, hpnicfrmonEnableEntry=hpnicfrmonEnableEntry, hpnicfprialarmStatType=hpnicfprialarmStatType, hpnicfprifallingAlarm=hpnicfprifallingAlarm, hpnicfprialarmRisingThreshold=hpnicfprialarmRisingThreshold, hpnicfprialarmEntry=hpnicfprialarmEntry, hpnicfprialarmRisingEventIndex=hpnicfprialarmRisingEventIndex, hpnicfprialarmFallingEventIndex=hpnicfprialarmFallingEventIndex, hpnicfrmonEnableIfIndex=hpnicfrmonEnableIfIndex, hpnicfrmonEnableTable=hpnicfrmonEnableTable, hpnicfprialarmOwner=hpnicfprialarmOwner, hpnicfrmonExtendEventsV2=hpnicfrmonExtendEventsV2, hpnicfprialarmSampleType=hpnicfprialarmSampleType, hpnicfTrapDestVersion=hpnicfTrapDestVersion, hpnicfprialarmIndex=hpnicfprialarmIndex, hpnicfpririsingAlarm=hpnicfpririsingAlarm, hpnicfprialarmTable=hpnicfprialarmTable, hpnicfprialarmStatCycle=hpnicfprialarmStatCycle, hpnicfperformance=hpnicfperformance, hpnicfprialarmFallingThreshold=hpnicfprialarmFallingThreshold, hpnicfTrapDestEntry=hpnicfTrapDestEntry, hpnicfprialarmStartupAlarm=hpnicfprialarmStartupAlarm, hpnicfprialarmInterval=hpnicfprialarmInterval, hpnicfTrapDestTable=hpnicfTrapDestTable, hpnicfprialarmStatus=hpnicfprialarmStatus, hpnicfprialarmValue=hpnicfprialarmValue, PYSNMP_MODULE_ID=hpnicfperformance, hpnicfrmonEnableStatus=hpnicfrmonEnableStatus, hpnicfprialarmVariable=hpnicfprialarmVariable) |
def test_add_project(app, json_project):
project = json_project
old_projects = app.project.get_project_list()
app.project.create_project(project)
new_projects = app.project.get_project_list()
old_projects.append(project)
assert len(old_projects) == len(new_projects) | def test_add_project(app, json_project):
project = json_project
old_projects = app.project.get_project_list()
app.project.create_project(project)
new_projects = app.project.get_project_list()
old_projects.append(project)
assert len(old_projects) == len(new_projects) |
#Entrada
la=int(input("Ingrese la lectura actual: "))
le=int(input("Ingrese la lectura anterior: "))
#Caja negra
lnc=le-la
if(lnc>=0) and (lnc<=100):
s=lnc*4600
elif(lnc>=101) and (lnc<=300):
s=lnc*80000
elif(lnc>=301) and (lnc<=500):
s=lnc*100000
elif(lnc>=501):
s=lnc*120000
#Salida
print("El monto a pagar sera: ", s) | la = int(input('Ingrese la lectura actual: '))
le = int(input('Ingrese la lectura anterior: '))
lnc = le - la
if lnc >= 0 and lnc <= 100:
s = lnc * 4600
elif lnc >= 101 and lnc <= 300:
s = lnc * 80000
elif lnc >= 301 and lnc <= 500:
s = lnc * 100000
elif lnc >= 501:
s = lnc * 120000
print('El monto a pagar sera: ', s) |
#
# PySNMP MIB module DNOS-NSF-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/DNOS-NSF-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:51:52 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection")
dnOS, = mibBuilder.importSymbols("DELL-REF-MIB", "dnOS")
agentInventoryUnitNumber, agentInventoryUnitEntry = mibBuilder.importSymbols("DNOS-INVENTORY-MIB", "agentInventoryUnitNumber", "agentInventoryUnitEntry")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, ModuleIdentity, iso, ObjectIdentity, NotificationType, Counter64, Unsigned32, Integer32, Gauge32, Counter32, Bits, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "ModuleIdentity", "iso", "ObjectIdentity", "NotificationType", "Counter64", "Unsigned32", "Integer32", "Gauge32", "Counter32", "Bits", "TimeTicks")
TextualConvention, DisplayString, TruthValue, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue", "RowStatus")
fastPathNsf = ModuleIdentity((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46))
fastPathNsf.setRevisions(('2011-01-26 00:00', '2009-04-23 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: fastPathNsf.setRevisionsDescriptions(('Postal address updated.', 'Initial version.',))
if mibBuilder.loadTexts: fastPathNsf.setLastUpdated('201101260000Z')
if mibBuilder.loadTexts: fastPathNsf.setOrganization('Dell, Inc.')
if mibBuilder.loadTexts: fastPathNsf.setContactInfo('')
if mibBuilder.loadTexts: fastPathNsf.setDescription('This MIB defines the objects used for FastPath to configure and report information and status of NSF features.')
agentNsfUnitTable = MibTable((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 1), )
if mibBuilder.loadTexts: agentNsfUnitTable.setStatus('current')
if mibBuilder.loadTexts: agentNsfUnitTable.setDescription('A table of Per-Unit configuration objects for NSF.')
agentNsfUnitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 1, 1), )
agentInventoryUnitEntry.registerAugmentions(("DNOS-NSF-MIB", "agentNsfUnitEntry"))
agentNsfUnitEntry.setIndexNames(*agentInventoryUnitEntry.getIndexNames())
if mibBuilder.loadTexts: agentNsfUnitEntry.setStatus('current')
if mibBuilder.loadTexts: agentNsfUnitEntry.setDescription('Each Instance corresponds with a different unit managed by this agent.')
agentNsfUnitSupport = MibTableColumn((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 1, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfUnitSupport.setStatus('current')
if mibBuilder.loadTexts: agentNsfUnitSupport.setDescription('Indicates if the unit supports the NSF feature.')
agentNsfGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2))
agentNsfAdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentNsfAdminStatus.setStatus('current')
if mibBuilder.loadTexts: agentNsfAdminStatus.setDescription('Controls whether NSF is enabled on the unit/stack.')
agentNsfOperStatus = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfOperStatus.setStatus('current')
if mibBuilder.loadTexts: agentNsfOperStatus.setDescription('Indicates whether NSF is enabled on the unit/stack.')
agentNsfLastStartupReason = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("power-on", 2), ("warm-admin-move", 3), ("cold-admin-move", 4), ("warm-auto-restart", 5), ("cold-auto-restart", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfLastStartupReason.setStatus('current')
if mibBuilder.loadTexts: agentNsfLastStartupReason.setDescription("The type of activation that caused the software to start the last time. unknown: The switch rebooted for an unknown reason. power-on: The switch rebooted. This could have been caused by a power cycle or an administrative 'Reload' command. warm-admin-move: The administrator issued a command for the stand-by manager to take over. cold-admin-move: The administrator issued a command for the stand-by manager to take over, but the system was not ready for a warm-failover. warm-auto-restart: The primary management card restarted due to a failure, and the system executed a nonstop forwarding failover. cold-auto-restart: The system switched from the active manager to the backup manager and was unable to maintain user data traffic. This is usually caused by multiple failures occurring close together")
agentNsfTimeSinceLastRestart = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfTimeSinceLastRestart.setStatus('current')
if mibBuilder.loadTexts: agentNsfTimeSinceLastRestart.setDescription('Time since the current management card became the active management card.')
agentNsfRestartInProgress = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfRestartInProgress.setStatus('current')
if mibBuilder.loadTexts: agentNsfRestartInProgress.setDescription('Whether a restart is in progress. A restart is not considered complete until all hardware tables have been fully reconciled.')
agentNsfWarmRestartReady = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfWarmRestartReady.setStatus('current')
if mibBuilder.loadTexts: agentNsfWarmRestartReady.setDescription('Whether the initial full checkpoint has finished.')
agentNsfBackupConfigurationAge = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 7), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfBackupConfigurationAge.setStatus('current')
if mibBuilder.loadTexts: agentNsfBackupConfigurationAge.setDescription('Age of the configuration on the backup unit. The time since the running configuration was last copied to the backup unit.')
agentNsfInitiateFailover = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentNsfInitiateFailover.setStatus('current')
if mibBuilder.loadTexts: agentNsfInitiateFailover.setDescription('Triggers an administrative failover to the backup unit.')
agentCheckpointStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3))
agentCheckpointClearStatistics = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentCheckpointClearStatistics.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointClearStatistics.setDescription('When set to enable(1), resets checkpoint statistics.')
agentCheckpointMessages = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentCheckpointMessages.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointMessages.setDescription('Total number of checkpoint messages sent.')
agentCheckpointBytes = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentCheckpointBytes.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointBytes.setDescription('Size in bytes of the total ammount of checkpoint messages sent.')
agentCheckpointTimeSinceCountersCleared = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentCheckpointTimeSinceCountersCleared.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointTimeSinceCountersCleared.setDescription('Indicates how long since the Checkpoint counters have been cleared.')
agentCheckpointMessageRateInterval = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 5), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: agentCheckpointMessageRateInterval.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointMessageRateInterval.setDescription('Indicates the duration in seconds of the message rate interval.')
agentCheckpointMessageRate = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentCheckpointMessageRate.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointMessageRate.setDescription('Number of checkpoint messages received in the last interval defined by agentCheckpointMessageRateInterval.')
agentCheckpointHighestMessageRate = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentCheckpointHighestMessageRate.setStatus('current')
if mibBuilder.loadTexts: agentCheckpointHighestMessageRate.setDescription('Highest number of checkpoint messages received in an interval defined by agentCheckpointMessageRateInterval.')
agentNsfOspfGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4))
agentNsfOspfSupportMode = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("planned", 2), ("always", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentNsfOspfSupportMode.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfSupportMode.setDescription('')
agentNsfOspfRestartInterval = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 2), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentNsfOspfRestartInterval.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfRestartInterval.setDescription('')
agentNsfOspfRestartStatus = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("not-restarting", 2), ("planned-restart", 3), ("unplanned-restart", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfOspfRestartStatus.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfRestartStatus.setDescription('')
agentNsfOspfRestartAge = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfOspfRestartAge.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfRestartAge.setDescription('')
agentNsfOspfRestartExitReason = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("none", 1), ("in-progress", 2), ("completed", 3), ("timed-out", 4), ("topology-change", 5), ("manual-clear", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentNsfOspfRestartExitReason.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfRestartExitReason.setDescription('')
agentNsfOspfHelperSupportMode = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("planned", 2), ("always", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentNsfOspfHelperSupportMode.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfHelperSupportMode.setDescription('')
agentNsfOspfHelperStrictLSAChecking = MibScalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentNsfOspfHelperStrictLSAChecking.setStatus('current')
if mibBuilder.loadTexts: agentNsfOspfHelperStrictLSAChecking.setDescription('')
agentNsfTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 0))
agentNsfStackRestartComplete = NotificationType((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 0, 1)).setObjects(("DNOS-INVENTORY-MIB", "agentInventoryUnitNumber"), ("DNOS-NSF-MIB", "agentNsfLastStartupReason"))
if mibBuilder.loadTexts: agentNsfStackRestartComplete.setStatus('current')
if mibBuilder.loadTexts: agentNsfStackRestartComplete.setDescription('Sent when the stack finishes restarting after a failover.')
mibBuilder.exportSymbols("DNOS-NSF-MIB", PYSNMP_MODULE_ID=fastPathNsf, agentCheckpointTimeSinceCountersCleared=agentCheckpointTimeSinceCountersCleared, agentNsfOspfRestartExitReason=agentNsfOspfRestartExitReason, agentNsfTraps=agentNsfTraps, agentCheckpointMessageRateInterval=agentCheckpointMessageRateInterval, agentCheckpointMessageRate=agentCheckpointMessageRate, agentNsfBackupConfigurationAge=agentNsfBackupConfigurationAge, agentCheckpointHighestMessageRate=agentCheckpointHighestMessageRate, agentNsfLastStartupReason=agentNsfLastStartupReason, agentNsfAdminStatus=agentNsfAdminStatus, agentNsfTimeSinceLastRestart=agentNsfTimeSinceLastRestart, agentNsfOspfHelperStrictLSAChecking=agentNsfOspfHelperStrictLSAChecking, agentCheckpointClearStatistics=agentCheckpointClearStatistics, agentCheckpointBytes=agentCheckpointBytes, agentNsfUnitTable=agentNsfUnitTable, agentCheckpointStatsGroup=agentCheckpointStatsGroup, agentNsfInitiateFailover=agentNsfInitiateFailover, agentNsfUnitSupport=agentNsfUnitSupport, agentCheckpointMessages=agentCheckpointMessages, agentNsfOspfRestartAge=agentNsfOspfRestartAge, agentNsfOperStatus=agentNsfOperStatus, agentNsfOspfRestartStatus=agentNsfOspfRestartStatus, agentNsfOspfGroup=agentNsfOspfGroup, fastPathNsf=fastPathNsf, agentNsfGroup=agentNsfGroup, agentNsfWarmRestartReady=agentNsfWarmRestartReady, agentNsfUnitEntry=agentNsfUnitEntry, agentNsfOspfRestartInterval=agentNsfOspfRestartInterval, agentNsfStackRestartComplete=agentNsfStackRestartComplete, agentNsfOspfSupportMode=agentNsfOspfSupportMode, agentNsfRestartInProgress=agentNsfRestartInProgress, agentNsfOspfHelperSupportMode=agentNsfOspfHelperSupportMode)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_union, value_range_constraint, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection')
(dn_os,) = mibBuilder.importSymbols('DELL-REF-MIB', 'dnOS')
(agent_inventory_unit_number, agent_inventory_unit_entry) = mibBuilder.importSymbols('DNOS-INVENTORY-MIB', 'agentInventoryUnitNumber', 'agentInventoryUnitEntry')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, module_identity, iso, object_identity, notification_type, counter64, unsigned32, integer32, gauge32, counter32, bits, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'ModuleIdentity', 'iso', 'ObjectIdentity', 'NotificationType', 'Counter64', 'Unsigned32', 'Integer32', 'Gauge32', 'Counter32', 'Bits', 'TimeTicks')
(textual_convention, display_string, truth_value, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue', 'RowStatus')
fast_path_nsf = module_identity((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46))
fastPathNsf.setRevisions(('2011-01-26 00:00', '2009-04-23 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
fastPathNsf.setRevisionsDescriptions(('Postal address updated.', 'Initial version.'))
if mibBuilder.loadTexts:
fastPathNsf.setLastUpdated('201101260000Z')
if mibBuilder.loadTexts:
fastPathNsf.setOrganization('Dell, Inc.')
if mibBuilder.loadTexts:
fastPathNsf.setContactInfo('')
if mibBuilder.loadTexts:
fastPathNsf.setDescription('This MIB defines the objects used for FastPath to configure and report information and status of NSF features.')
agent_nsf_unit_table = mib_table((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 1))
if mibBuilder.loadTexts:
agentNsfUnitTable.setStatus('current')
if mibBuilder.loadTexts:
agentNsfUnitTable.setDescription('A table of Per-Unit configuration objects for NSF.')
agent_nsf_unit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 1, 1))
agentInventoryUnitEntry.registerAugmentions(('DNOS-NSF-MIB', 'agentNsfUnitEntry'))
agentNsfUnitEntry.setIndexNames(*agentInventoryUnitEntry.getIndexNames())
if mibBuilder.loadTexts:
agentNsfUnitEntry.setStatus('current')
if mibBuilder.loadTexts:
agentNsfUnitEntry.setDescription('Each Instance corresponds with a different unit managed by this agent.')
agent_nsf_unit_support = mib_table_column((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 1, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfUnitSupport.setStatus('current')
if mibBuilder.loadTexts:
agentNsfUnitSupport.setDescription('Indicates if the unit supports the NSF feature.')
agent_nsf_group = mib_identifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2))
agent_nsf_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentNsfAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
agentNsfAdminStatus.setDescription('Controls whether NSF is enabled on the unit/stack.')
agent_nsf_oper_status = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfOperStatus.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOperStatus.setDescription('Indicates whether NSF is enabled on the unit/stack.')
agent_nsf_last_startup_reason = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknown', 1), ('power-on', 2), ('warm-admin-move', 3), ('cold-admin-move', 4), ('warm-auto-restart', 5), ('cold-auto-restart', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfLastStartupReason.setStatus('current')
if mibBuilder.loadTexts:
agentNsfLastStartupReason.setDescription("The type of activation that caused the software to start the last time. unknown: The switch rebooted for an unknown reason. power-on: The switch rebooted. This could have been caused by a power cycle or an administrative 'Reload' command. warm-admin-move: The administrator issued a command for the stand-by manager to take over. cold-admin-move: The administrator issued a command for the stand-by manager to take over, but the system was not ready for a warm-failover. warm-auto-restart: The primary management card restarted due to a failure, and the system executed a nonstop forwarding failover. cold-auto-restart: The system switched from the active manager to the backup manager and was unable to maintain user data traffic. This is usually caused by multiple failures occurring close together")
agent_nsf_time_since_last_restart = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfTimeSinceLastRestart.setStatus('current')
if mibBuilder.loadTexts:
agentNsfTimeSinceLastRestart.setDescription('Time since the current management card became the active management card.')
agent_nsf_restart_in_progress = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 5), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfRestartInProgress.setStatus('current')
if mibBuilder.loadTexts:
agentNsfRestartInProgress.setDescription('Whether a restart is in progress. A restart is not considered complete until all hardware tables have been fully reconciled.')
agent_nsf_warm_restart_ready = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 6), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfWarmRestartReady.setStatus('current')
if mibBuilder.loadTexts:
agentNsfWarmRestartReady.setDescription('Whether the initial full checkpoint has finished.')
agent_nsf_backup_configuration_age = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 7), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfBackupConfigurationAge.setStatus('current')
if mibBuilder.loadTexts:
agentNsfBackupConfigurationAge.setDescription('Age of the configuration on the backup unit. The time since the running configuration was last copied to the backup unit.')
agent_nsf_initiate_failover = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 2, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentNsfInitiateFailover.setStatus('current')
if mibBuilder.loadTexts:
agentNsfInitiateFailover.setDescription('Triggers an administrative failover to the backup unit.')
agent_checkpoint_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3))
agent_checkpoint_clear_statistics = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentCheckpointClearStatistics.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointClearStatistics.setDescription('When set to enable(1), resets checkpoint statistics.')
agent_checkpoint_messages = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentCheckpointMessages.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointMessages.setDescription('Total number of checkpoint messages sent.')
agent_checkpoint_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentCheckpointBytes.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointBytes.setDescription('Size in bytes of the total ammount of checkpoint messages sent.')
agent_checkpoint_time_since_counters_cleared = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentCheckpointTimeSinceCountersCleared.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointTimeSinceCountersCleared.setDescription('Indicates how long since the Checkpoint counters have been cleared.')
agent_checkpoint_message_rate_interval = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 5), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentCheckpointMessageRateInterval.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointMessageRateInterval.setDescription('Indicates the duration in seconds of the message rate interval.')
agent_checkpoint_message_rate = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 6), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentCheckpointMessageRate.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointMessageRate.setDescription('Number of checkpoint messages received in the last interval defined by agentCheckpointMessageRateInterval.')
agent_checkpoint_highest_message_rate = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 3, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentCheckpointHighestMessageRate.setStatus('current')
if mibBuilder.loadTexts:
agentCheckpointHighestMessageRate.setDescription('Highest number of checkpoint messages received in an interval defined by agentCheckpointMessageRateInterval.')
agent_nsf_ospf_group = mib_identifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4))
agent_nsf_ospf_support_mode = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('planned', 2), ('always', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentNsfOspfSupportMode.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfSupportMode.setDescription('')
agent_nsf_ospf_restart_interval = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 2), unsigned32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentNsfOspfRestartInterval.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfRestartInterval.setDescription('')
agent_nsf_ospf_restart_status = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('not-restarting', 2), ('planned-restart', 3), ('unplanned-restart', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfOspfRestartStatus.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfRestartStatus.setDescription('')
agent_nsf_ospf_restart_age = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfOspfRestartAge.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfRestartAge.setDescription('')
agent_nsf_ospf_restart_exit_reason = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('none', 1), ('in-progress', 2), ('completed', 3), ('timed-out', 4), ('topology-change', 5), ('manual-clear', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentNsfOspfRestartExitReason.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfRestartExitReason.setDescription('')
agent_nsf_ospf_helper_support_mode = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('planned', 2), ('always', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentNsfOspfHelperSupportMode.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfHelperSupportMode.setDescription('')
agent_nsf_ospf_helper_strict_lsa_checking = mib_scalar((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 4, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentNsfOspfHelperStrictLSAChecking.setStatus('current')
if mibBuilder.loadTexts:
agentNsfOspfHelperStrictLSAChecking.setDescription('')
agent_nsf_traps = mib_identifier((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 0))
agent_nsf_stack_restart_complete = notification_type((1, 3, 6, 1, 4, 1, 674, 10895, 5000, 2, 6132, 1, 1, 46, 0, 1)).setObjects(('DNOS-INVENTORY-MIB', 'agentInventoryUnitNumber'), ('DNOS-NSF-MIB', 'agentNsfLastStartupReason'))
if mibBuilder.loadTexts:
agentNsfStackRestartComplete.setStatus('current')
if mibBuilder.loadTexts:
agentNsfStackRestartComplete.setDescription('Sent when the stack finishes restarting after a failover.')
mibBuilder.exportSymbols('DNOS-NSF-MIB', PYSNMP_MODULE_ID=fastPathNsf, agentCheckpointTimeSinceCountersCleared=agentCheckpointTimeSinceCountersCleared, agentNsfOspfRestartExitReason=agentNsfOspfRestartExitReason, agentNsfTraps=agentNsfTraps, agentCheckpointMessageRateInterval=agentCheckpointMessageRateInterval, agentCheckpointMessageRate=agentCheckpointMessageRate, agentNsfBackupConfigurationAge=agentNsfBackupConfigurationAge, agentCheckpointHighestMessageRate=agentCheckpointHighestMessageRate, agentNsfLastStartupReason=agentNsfLastStartupReason, agentNsfAdminStatus=agentNsfAdminStatus, agentNsfTimeSinceLastRestart=agentNsfTimeSinceLastRestart, agentNsfOspfHelperStrictLSAChecking=agentNsfOspfHelperStrictLSAChecking, agentCheckpointClearStatistics=agentCheckpointClearStatistics, agentCheckpointBytes=agentCheckpointBytes, agentNsfUnitTable=agentNsfUnitTable, agentCheckpointStatsGroup=agentCheckpointStatsGroup, agentNsfInitiateFailover=agentNsfInitiateFailover, agentNsfUnitSupport=agentNsfUnitSupport, agentCheckpointMessages=agentCheckpointMessages, agentNsfOspfRestartAge=agentNsfOspfRestartAge, agentNsfOperStatus=agentNsfOperStatus, agentNsfOspfRestartStatus=agentNsfOspfRestartStatus, agentNsfOspfGroup=agentNsfOspfGroup, fastPathNsf=fastPathNsf, agentNsfGroup=agentNsfGroup, agentNsfWarmRestartReady=agentNsfWarmRestartReady, agentNsfUnitEntry=agentNsfUnitEntry, agentNsfOspfRestartInterval=agentNsfOspfRestartInterval, agentNsfStackRestartComplete=agentNsfStackRestartComplete, agentNsfOspfSupportMode=agentNsfOspfSupportMode, agentNsfRestartInProgress=agentNsfRestartInProgress, agentNsfOspfHelperSupportMode=agentNsfOspfHelperSupportMode) |
expected_output = {
'table_id': {
'0xe0000000': {
'forward_referenced': 'No',
'prefix_count': 12,
'prefix_limit': 10000000,
'prefix_limit_notified': 'No',
'safi': 'uni',
'table_deleted': 'No',
'table_id': '0xe0000000',
'table_name': 'default',
'table_reached_convergence': 'Yes',
'table_version': 13,
'vrf_name': 'default'
},
'0xe0000001': {
'forward_referenced': 'No',
'prefix_count': 0,
'prefix_limit': 10000000,
'prefix_limit_notified': 'No',
'safi': 'uni',
'table_deleted': 'No',
'table_id': '0xe0000001',
'table_name': 'default',
'table_reached_convergence': 'Yes',
'table_version': 0,
'vrf_name': 'bob:by'
},
'0xe0000002': {
'forward_referenced': 'No',
'prefix_count': 2,
'prefix_limit': 10000000,
'prefix_limit_notified': 'No',
'safi': 'uni',
'table_deleted': 'No',
'table_id': '0xe0000002',
'table_name': 'default',
'table_reached_convergence': 'Yes',
'table_version': 3,
'vrf_name': 'DC-LAN'
},
'0xe0100000': {
'forward_referenced': 'No',
'prefix_count': 0,
'prefix_limit': 10000000,
'prefix_limit_notified': 'No',
'safi': 'multi',
'table_deleted': 'No',
'table_id': '0xe0100000',
'table_name': 'default',
'table_reached_convergence': 'Yes',
'table_version': 0,
'vrf_name': '**nVjjh'
}
}
}
| expected_output = {'table_id': {'0xe0000000': {'forward_referenced': 'No', 'prefix_count': 12, 'prefix_limit': 10000000, 'prefix_limit_notified': 'No', 'safi': 'uni', 'table_deleted': 'No', 'table_id': '0xe0000000', 'table_name': 'default', 'table_reached_convergence': 'Yes', 'table_version': 13, 'vrf_name': 'default'}, '0xe0000001': {'forward_referenced': 'No', 'prefix_count': 0, 'prefix_limit': 10000000, 'prefix_limit_notified': 'No', 'safi': 'uni', 'table_deleted': 'No', 'table_id': '0xe0000001', 'table_name': 'default', 'table_reached_convergence': 'Yes', 'table_version': 0, 'vrf_name': 'bob:by'}, '0xe0000002': {'forward_referenced': 'No', 'prefix_count': 2, 'prefix_limit': 10000000, 'prefix_limit_notified': 'No', 'safi': 'uni', 'table_deleted': 'No', 'table_id': '0xe0000002', 'table_name': 'default', 'table_reached_convergence': 'Yes', 'table_version': 3, 'vrf_name': 'DC-LAN'}, '0xe0100000': {'forward_referenced': 'No', 'prefix_count': 0, 'prefix_limit': 10000000, 'prefix_limit_notified': 'No', 'safi': 'multi', 'table_deleted': 'No', 'table_id': '0xe0100000', 'table_name': 'default', 'table_reached_convergence': 'Yes', 'table_version': 0, 'vrf_name': '**nVjjh'}}} |
grid_size = 8
cycles = 6
grid = [[[[c for c in input()] for _ in range(grid_size)]]]
for i in range(grid_size):
grid[0][0][i] = ['.' for _ in range(cycles)] + grid[0][0][i] + ['.' for _ in range(cycles)]
for _ in range(cycles):
grid[0][0] = [['.' for _ in range(grid_size + cycles * 2)]] + grid[0][0] + \
[['.' for _ in range(grid_size + cycles * 2)]]
for _ in range(cycles):
grid[0] = [[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)]] + grid[0] + \
[[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)]]
for _ in range(cycles):
grid = [[[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)]
for _ in range(len(grid[0]))]] + grid + \
[[[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)]
for _ in range(len(grid[0]))]]
for _ in range(cycles):
new_grid = [[[['.' for _ in range(len(grid[0][0][0]))] for _ in range(len(grid[0][0]))]
for _ in range(len(grid[0]))] for _ in range(len(grid))]
for w in range(len(grid)):
for z in range(len(grid[w])):
for y in range(len(grid[w][z])):
for x in range(len(grid[w][z][y])):
active_neighbours = 0
for h in range(max(0, w-1), min(w+2, len(grid))):
for i in range(max(0, z-1), min(z+2, len(grid[w]))):
for j in range(max(0, y-1), min(y+2, len(grid[w][z]))):
for k in range(max(0, x-1), min(x+2, len(grid[w][z][y]))):
if grid[h][i][j][k] == '#' and (h != w or i != z or j != y or k != x):
active_neighbours += 1
if grid[w][z][y][x] == '#':
new_grid[w][z][y][x] = '#' if 2 <= active_neighbours <= 3 else '.'
else:
new_grid[w][z][y][x] = '#' if active_neighbours == 3 else '.'
grid = new_grid
counter = 0
for w in range(len(grid)):
for z in range(len(grid[w])):
for y in range(len(grid[w][z])):
for x in range(len(grid[w][z][y])):
if grid[w][z][y][x] == '#':
counter += 1
print(counter)
| grid_size = 8
cycles = 6
grid = [[[[c for c in input()] for _ in range(grid_size)]]]
for i in range(grid_size):
grid[0][0][i] = ['.' for _ in range(cycles)] + grid[0][0][i] + ['.' for _ in range(cycles)]
for _ in range(cycles):
grid[0][0] = [['.' for _ in range(grid_size + cycles * 2)]] + grid[0][0] + [['.' for _ in range(grid_size + cycles * 2)]]
for _ in range(cycles):
grid[0] = [[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)]] + grid[0] + [[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)]]
for _ in range(cycles):
grid = [[[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)] for _ in range(len(grid[0]))]] + grid + [[[['.' for _ in range(grid_size + cycles * 2)] for _ in range(grid_size + cycles * 2)] for _ in range(len(grid[0]))]]
for _ in range(cycles):
new_grid = [[[['.' for _ in range(len(grid[0][0][0]))] for _ in range(len(grid[0][0]))] for _ in range(len(grid[0]))] for _ in range(len(grid))]
for w in range(len(grid)):
for z in range(len(grid[w])):
for y in range(len(grid[w][z])):
for x in range(len(grid[w][z][y])):
active_neighbours = 0
for h in range(max(0, w - 1), min(w + 2, len(grid))):
for i in range(max(0, z - 1), min(z + 2, len(grid[w]))):
for j in range(max(0, y - 1), min(y + 2, len(grid[w][z]))):
for k in range(max(0, x - 1), min(x + 2, len(grid[w][z][y]))):
if grid[h][i][j][k] == '#' and (h != w or i != z or j != y or (k != x)):
active_neighbours += 1
if grid[w][z][y][x] == '#':
new_grid[w][z][y][x] = '#' if 2 <= active_neighbours <= 3 else '.'
else:
new_grid[w][z][y][x] = '#' if active_neighbours == 3 else '.'
grid = new_grid
counter = 0
for w in range(len(grid)):
for z in range(len(grid[w])):
for y in range(len(grid[w][z])):
for x in range(len(grid[w][z][y])):
if grid[w][z][y][x] == '#':
counter += 1
print(counter) |
#! Symbol table class holds the value of the variables respectively in a dict
class SymbolTable:
def __init__(self, parent = None):
self.symbols = {}
self.parent = parent
def get(self,name):
value = self.symbols.get(name, None)
if value == None and self.parent:
return self.parent.get(name)
return value
def set(self,name, value):
self.symbols[name] = value
def remove(self, name):
del self.symbols[name]
| class Symboltable:
def __init__(self, parent=None):
self.symbols = {}
self.parent = parent
def get(self, name):
value = self.symbols.get(name, None)
if value == None and self.parent:
return self.parent.get(name)
return value
def set(self, name, value):
self.symbols[name] = value
def remove(self, name):
del self.symbols[name] |
def tag_skip_and_punct(nlp, name, config):
r''' Detects and tags spacy tokens that are punctuation and that should be skipped.
Args:
nlp (spacy.language.<lng>):
The base spacy NLP pipeline.
name (`str`):
The component instance name.
config (`medcat.config.Config`):
Global config for medcat.
'''
return _Tagger(nlp, name, config)
tag_skip_and_punct.name = "tag_skip_and_punct"
class _Tagger(object):
def __init__(self, nlp, name, config):
self.nlp = nlp
self.name = name
self.config = config
def __call__(self, doc):
# Make life easier
cnf_p = self.config.preprocessing
for token in doc:
if self.config.punct_checker.match(token.lower_) and token.text not in cnf_p['keep_punct']:
# There can't be punct in a token if it also has text
token._.is_punct = True
token._.to_skip = True
elif self.config.word_skipper.match(token.lower_):
# Skip if specific strings
token._.to_skip = True
elif cnf_p['skip_stopwords'] and token.is_stop:
token._.to_skip = True
return doc
| def tag_skip_and_punct(nlp, name, config):
""" Detects and tags spacy tokens that are punctuation and that should be skipped.
Args:
nlp (spacy.language.<lng>):
The base spacy NLP pipeline.
name (`str`):
The component instance name.
config (`medcat.config.Config`):
Global config for medcat.
"""
return __tagger(nlp, name, config)
tag_skip_and_punct.name = 'tag_skip_and_punct'
class _Tagger(object):
def __init__(self, nlp, name, config):
self.nlp = nlp
self.name = name
self.config = config
def __call__(self, doc):
cnf_p = self.config.preprocessing
for token in doc:
if self.config.punct_checker.match(token.lower_) and token.text not in cnf_p['keep_punct']:
token._.is_punct = True
token._.to_skip = True
elif self.config.word_skipper.match(token.lower_):
token._.to_skip = True
elif cnf_p['skip_stopwords'] and token.is_stop:
token._.to_skip = True
return doc |
channel_routing = {
'websocket.receive': 'chat.consumers.ws_message',
'websocket.connect': 'chat.consumers.ws_add',
'websocket.disconnect': 'chat.consumers.ws_disconnect',
'slack.message': 'chat.consumers.slack_message',
}
| channel_routing = {'websocket.receive': 'chat.consumers.ws_message', 'websocket.connect': 'chat.consumers.ws_add', 'websocket.disconnect': 'chat.consumers.ws_disconnect', 'slack.message': 'chat.consumers.slack_message'} |
def power(base, exponent):
assert int(exponent) == exponent and exponent>=0, "exponent must be an integer greater or equal to zero"
if exponent == 0:
return 1
if exponent == 1:
return base
return base * power(base, exponent-1)
print(power(4, 3)) | def power(base, exponent):
assert int(exponent) == exponent and exponent >= 0, 'exponent must be an integer greater or equal to zero'
if exponent == 0:
return 1
if exponent == 1:
return base
return base * power(base, exponent - 1)
print(power(4, 3)) |
def main():
# input
a = int(input())
b = int(input())
h = int(input())
# compute
# output
print((a+b) * h // 2)
if __name__ == '__main__':
main()
| def main():
a = int(input())
b = int(input())
h = int(input())
print((a + b) * h // 2)
if __name__ == '__main__':
main() |
def Fac(n):
if n == 1:
return n
return n * Fac(n - 1)
def sum_digits(n):
s = 0
while n:
s += n % 10
n //= 10
return s
print(sum_digits(Fac(100))) | def fac(n):
if n == 1:
return n
return n * fac(n - 1)
def sum_digits(n):
s = 0
while n:
s += n % 10
n //= 10
return s
print(sum_digits(fac(100))) |
# Runtime: 258 ms, faster than 43.76% of Python3 online submissions for How Many Numbers Are Smaller Than the Current Number.
# Memory Usage: 14.4 MB, less than 46.01% of Python3 online submissions for How Many Numbers Are Smaller Than the Current Number.
# https://leetcode.com/submissions/detail/591527345/
class Solution:
def smallerNumbersThanCurrent(self, nums: List[int]) -> List[int]:
output_list = list()
for current_number in nums:
count_smaller = 0
for i in nums:
if i < current_number:
count_smaller += 1
output_list.append(count_smaller)
return output_list
| class Solution:
def smaller_numbers_than_current(self, nums: List[int]) -> List[int]:
output_list = list()
for current_number in nums:
count_smaller = 0
for i in nums:
if i < current_number:
count_smaller += 1
output_list.append(count_smaller)
return output_list |
# cook your dish here
for _ in range(int(input())):
n = int(input())
print(int(n/2)+1)
| for _ in range(int(input())):
n = int(input())
print(int(n / 2) + 1) |
# Idade em Dias
dia=int(input())
print('{} ano(s)'.format(dia//365))
print('{} mes(es)'.format((dia%365)//30))
print('{} dia(s)'.format((dia%365)%30))
| dia = int(input())
print('{} ano(s)'.format(dia // 365))
print('{} mes(es)'.format(dia % 365 // 30))
print('{} dia(s)'.format(dia % 365 % 30)) |
sample_rate = 44100
window_size = 2048 # 1024 # 2048
overlap = 672 # 256 # 672 # So that there are 320 frames in an audio clip
seq_len = 320 # 573 # 320
mel_bins = 64
labels = ['airport', 'bus', 'metro', 'metro_station', 'park', 'public_square',
'shopping_mall', 'street_pedestrian', 'street_traffic', 'tram']
lb_to_ix = {lb: ix for ix, lb in enumerate(labels)}
ix_to_lb = {ix: lb for ix, lb in enumerate(labels)}
labels_domain = ['a', 'b', 'c']
lb_to_ix_domain = {lbd: ixd for ixd, lbd in enumerate(labels_domain)}
ix_to_lb_domain = {ixd: lbd for ixd, lbd in enumerate(labels_domain)}
| sample_rate = 44100
window_size = 2048
overlap = 672
seq_len = 320
mel_bins = 64
labels = ['airport', 'bus', 'metro', 'metro_station', 'park', 'public_square', 'shopping_mall', 'street_pedestrian', 'street_traffic', 'tram']
lb_to_ix = {lb: ix for (ix, lb) in enumerate(labels)}
ix_to_lb = {ix: lb for (ix, lb) in enumerate(labels)}
labels_domain = ['a', 'b', 'c']
lb_to_ix_domain = {lbd: ixd for (ixd, lbd) in enumerate(labels_domain)}
ix_to_lb_domain = {ixd: lbd for (ixd, lbd) in enumerate(labels_domain)} |
# alonso = 18
# edad = 0
# for x in range(5):
# edad = edad + 1
# print(alonso + edad)
# # alumnos = [20, 25, 23, 24, 26]
# # for fgh in alumnos:
# # print(fgh)
print(round(3.5))
print(round(4.5))
print(round(5.5))
print(round(80.5))
| print(round(3.5))
print(round(4.5))
print(round(5.5))
print(round(80.5)) |
__ACTIVATION__ = 'relu'
__NORM_LAYER__ = 'bn'
def get_default_activation():
global __ACTIVATION__
return __ACTIVATION__
def set_default_activation(name):
global __ACTIVATION__
__ACTIVATION__ = name
def get_default_norm_layer():
global __NORM_LAYER__
return __NORM_LAYER__
def set_default_norm_layer(name):
global __NORM_LAYER__
__NORM_LAYER__ = name
| __activation__ = 'relu'
__norm_layer__ = 'bn'
def get_default_activation():
global __ACTIVATION__
return __ACTIVATION__
def set_default_activation(name):
global __ACTIVATION__
__activation__ = name
def get_default_norm_layer():
global __NORM_LAYER__
return __NORM_LAYER__
def set_default_norm_layer(name):
global __NORM_LAYER__
__norm_layer__ = name |
#
# PySNMP MIB module CISCO-CONFIG-COPY-MIB (http://pysnmp.sf.net)
# ASN.1 source http://mibs.snmplabs.com:80/asn1/CISCO-CONFIG-COPY-MIB
# Produced by pysmi-0.0.7 at Tue Feb 7 11:41:27 2017
# On host e436de1e4e9d platform Linux version 4.4.0-59-generic by user root
# Using Python version 2.7.13 (default, Dec 22 2016, 09:22:15)
#
( Integer, ObjectIdentifier, OctetString, ) = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
( NamedValues, ) = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
( ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, ) = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint")
( ciscoMgmt, ) = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
( FcNameIdOrZero, ) = mibBuilder.importSymbols("CISCO-ST-TC", "FcNameIdOrZero")
( InetAddress, InetAddressType, ) = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType")
( SnmpAdminString, ) = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
( NotificationGroup, ModuleCompliance, ObjectGroup, ) = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
( Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, Bits, TimeTicks, Counter64, Unsigned32, ModuleIdentity, Gauge32, iso, ObjectIdentity, IpAddress, Counter32, ) = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "Bits", "TimeTicks", "Counter64", "Unsigned32", "ModuleIdentity", "Gauge32", "iso", "ObjectIdentity", "IpAddress", "Counter32")
( DisplayString, TimeStamp, TruthValue, RowStatus, TextualConvention, ) = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TimeStamp", "TruthValue", "RowStatus", "TextualConvention")
ciscoConfigCopyMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 96)).setRevisions(("2005-04-06 00:00", "2004-03-17 00:00", "2002-12-17 00:00", "2002-05-30 00:00", "2002-05-07 00:00", "2002-03-28 00:00",))
class ConfigCopyProtocol(Integer32, TextualConvention):
subtypeSpec = Integer32.subtypeSpec+SingleValueConstraint(1, 2, 3, 4, 5,)
namedValues = NamedValues(("tftp", 1), ("ftp", 2), ("rcp", 3), ("scp", 4), ("sftp", 5),)
class ConfigCopyState(Integer32, TextualConvention):
subtypeSpec = Integer32.subtypeSpec+SingleValueConstraint(1, 2, 3, 4,)
namedValues = NamedValues(("waiting", 1), ("running", 2), ("successful", 3), ("failed", 4),)
class ConfigCopyFailCause(Integer32, TextualConvention):
subtypeSpec = Integer32.subtypeSpec+SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9,)
namedValues = NamedValues(("unknown", 1), ("badFileName", 2), ("timeout", 3), ("noMem", 4), ("noConfig", 5), ("unsupportedProtocol", 6), ("someConfigApplyFailed", 7), ("systemNotReady", 8), ("requestAborted", 9),)
class ConfigFileType(Integer32, TextualConvention):
subtypeSpec = Integer32.subtypeSpec+SingleValueConstraint(1, 2, 3, 4, 5, 6,)
namedValues = NamedValues(("networkFile", 1), ("iosFile", 2), ("startupConfig", 3), ("runningConfig", 4), ("terminal", 5), ("fabricStartupConfig", 6),)
ciscoConfigCopyMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 1))
ccCopy = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1))
ccCopyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1), )
ccCopyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1), ).setIndexNames((0, "CISCO-CONFIG-COPY-MIB", "ccCopyIndex"))
ccCopyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1,2147483647)))
ccCopyProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 2), ConfigCopyProtocol().clone('tftp')).setMaxAccess("readcreate")
ccCopySourceFileType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 3), ConfigFileType()).setMaxAccess("readcreate")
ccCopyDestFileType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 4), ConfigFileType()).setMaxAccess("readcreate")
ccCopyServerAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 5), IpAddress()).setMaxAccess("readcreate")
ccCopyFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 6), DisplayString()).setMaxAccess("readcreate")
ccCopyUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1,40))).setMaxAccess("readcreate")
ccCopyUserPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1,40))).setMaxAccess("readcreate")
ccCopyNotificationOnCompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 9), TruthValue().clone('false')).setMaxAccess("readcreate")
ccCopyState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 10), ConfigCopyState()).setMaxAccess("readonly")
ccCopyTimeStarted = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 11), TimeStamp()).setMaxAccess("readonly")
ccCopyTimeCompleted = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 12), TimeStamp()).setMaxAccess("readonly")
ccCopyFailCause = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 13), ConfigCopyFailCause()).setMaxAccess("readonly")
ccCopyEntryRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 14), RowStatus()).setMaxAccess("readcreate")
ccCopyServerAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 15), InetAddressType()).setMaxAccess("readcreate")
ccCopyServerAddressRev1 = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 16), InetAddress()).setMaxAccess("readcreate")
ccCopyErrorTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2), )
ccCopyErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1), ).setIndexNames((0, "CISCO-CONFIG-COPY-MIB", "ccCopyIndex"), (0, "CISCO-CONFIG-COPY-MIB", "ccCopyErrorIndex"))
ccCopyErrorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 1), Unsigned32())
ccCopyErrorDeviceIpAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 2), InetAddressType()).setMaxAccess("readonly")
ccCopyErrorDeviceIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 3), InetAddress()).setMaxAccess("readonly")
ccCopyErrorDeviceWWN = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 4), FcNameIdOrZero()).setMaxAccess("readonly")
ccCopyErrorDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 5), SnmpAdminString()).setMaxAccess("readonly")
ciscoConfigCopyMIBTrapPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 2))
ccCopyMIBTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 2, 1))
ccCopyCompletion = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 96, 2, 1, 1)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyServerAddress"), ("CISCO-CONFIG-COPY-MIB", "ccCopyFileName"), ("CISCO-CONFIG-COPY-MIB", "ccCopyState"), ("CISCO-CONFIG-COPY-MIB", "ccCopyTimeStarted"), ("CISCO-CONFIG-COPY-MIB", "ccCopyTimeCompleted"), ("CISCO-CONFIG-COPY-MIB", "ccCopyFailCause"),))
ciscoConfigCopyMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 3))
ccCopyMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1))
ccCopyMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2))
ccCopyMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1, 1)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyGroup"), ("CISCO-CONFIG-COPY-MIB", "ccCopyNotificationsGroup"),))
ccCopyMIBComplianceRev1 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1, 2)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyGroupRev1"), ("CISCO-CONFIG-COPY-MIB", "ccCopyNotificationsGroup"),))
ccCopyMIBComplianceRev2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1, 3)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyGroupRev1"), ("CISCO-CONFIG-COPY-MIB", "ccCopyNotificationsGroup"), ("CISCO-CONFIG-COPY-MIB", "ccCopyErrorGroup"),))
ccCopyGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 1)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyProtocol"), ("CISCO-CONFIG-COPY-MIB", "ccCopySourceFileType"), ("CISCO-CONFIG-COPY-MIB", "ccCopyDestFileType"), ("CISCO-CONFIG-COPY-MIB", "ccCopyServerAddress"), ("CISCO-CONFIG-COPY-MIB", "ccCopyFileName"), ("CISCO-CONFIG-COPY-MIB", "ccCopyUserName"), ("CISCO-CONFIG-COPY-MIB", "ccCopyUserPassword"), ("CISCO-CONFIG-COPY-MIB", "ccCopyNotificationOnCompletion"), ("CISCO-CONFIG-COPY-MIB", "ccCopyState"), ("CISCO-CONFIG-COPY-MIB", "ccCopyTimeStarted"), ("CISCO-CONFIG-COPY-MIB", "ccCopyTimeCompleted"), ("CISCO-CONFIG-COPY-MIB", "ccCopyFailCause"), ("CISCO-CONFIG-COPY-MIB", "ccCopyEntryRowStatus"),))
ccCopyNotificationsGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 2)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyCompletion"),))
ccCopyGroupRev1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 3)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyProtocol"), ("CISCO-CONFIG-COPY-MIB", "ccCopySourceFileType"), ("CISCO-CONFIG-COPY-MIB", "ccCopyDestFileType"), ("CISCO-CONFIG-COPY-MIB", "ccCopyServerAddressType"), ("CISCO-CONFIG-COPY-MIB", "ccCopyServerAddressRev1"), ("CISCO-CONFIG-COPY-MIB", "ccCopyFileName"), ("CISCO-CONFIG-COPY-MIB", "ccCopyUserName"), ("CISCO-CONFIG-COPY-MIB", "ccCopyUserPassword"), ("CISCO-CONFIG-COPY-MIB", "ccCopyNotificationOnCompletion"), ("CISCO-CONFIG-COPY-MIB", "ccCopyState"), ("CISCO-CONFIG-COPY-MIB", "ccCopyTimeStarted"), ("CISCO-CONFIG-COPY-MIB", "ccCopyTimeCompleted"), ("CISCO-CONFIG-COPY-MIB", "ccCopyFailCause"), ("CISCO-CONFIG-COPY-MIB", "ccCopyEntryRowStatus"),))
ccCopyErrorGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 4)).setObjects(*(("CISCO-CONFIG-COPY-MIB", "ccCopyErrorDeviceIpAddressType"), ("CISCO-CONFIG-COPY-MIB", "ccCopyErrorDeviceIpAddress"), ("CISCO-CONFIG-COPY-MIB", "ccCopyErrorDeviceWWN"), ("CISCO-CONFIG-COPY-MIB", "ccCopyErrorDescription"),))
mibBuilder.exportSymbols("CISCO-CONFIG-COPY-MIB", ciscoConfigCopyMIBConformance=ciscoConfigCopyMIBConformance, ccCopyMIBGroups=ccCopyMIBGroups, ccCopyServerAddress=ccCopyServerAddress, ccCopyNotificationOnCompletion=ccCopyNotificationOnCompletion, ciscoConfigCopyMIB=ciscoConfigCopyMIB, ccCopyState=ccCopyState, ccCopyDestFileType=ccCopyDestFileType, ccCopySourceFileType=ccCopySourceFileType, ccCopyErrorEntry=ccCopyErrorEntry, ccCopyMIBCompliance=ccCopyMIBCompliance, ccCopyTimeCompleted=ccCopyTimeCompleted, ccCopyErrorDeviceIpAddress=ccCopyErrorDeviceIpAddress, ccCopyEntry=ccCopyEntry, ccCopyErrorDeviceIpAddressType=ccCopyErrorDeviceIpAddressType, PYSNMP_MODULE_ID=ciscoConfigCopyMIB, ccCopyMIBTraps=ccCopyMIBTraps, ccCopyServerAddressType=ccCopyServerAddressType, ccCopyUserPassword=ccCopyUserPassword, ccCopyGroupRev1=ccCopyGroupRev1, ciscoConfigCopyMIBObjects=ciscoConfigCopyMIBObjects, ccCopyMIBCompliances=ccCopyMIBCompliances, ccCopyTable=ccCopyTable, ccCopyErrorDeviceWWN=ccCopyErrorDeviceWWN, ccCopyCompletion=ccCopyCompletion, ciscoConfigCopyMIBTrapPrefix=ciscoConfigCopyMIBTrapPrefix, ccCopyErrorIndex=ccCopyErrorIndex, ccCopyErrorDescription=ccCopyErrorDescription, ccCopyFailCause=ccCopyFailCause, ccCopyUserName=ccCopyUserName, ccCopyTimeStarted=ccCopyTimeStarted, ConfigCopyState=ConfigCopyState, ccCopyNotificationsGroup=ccCopyNotificationsGroup, ConfigCopyFailCause=ConfigCopyFailCause, ccCopyServerAddressRev1=ccCopyServerAddressRev1, ccCopyErrorTable=ccCopyErrorTable, ConfigFileType=ConfigFileType, ccCopyFileName=ccCopyFileName, ConfigCopyProtocol=ConfigCopyProtocol, ccCopyGroup=ccCopyGroup, ccCopyMIBComplianceRev1=ccCopyMIBComplianceRev1, ccCopyEntryRowStatus=ccCopyEntryRowStatus, ccCopyIndex=ccCopyIndex, ccCopyMIBComplianceRev2=ccCopyMIBComplianceRev2, ccCopy=ccCopy, ccCopyErrorGroup=ccCopyErrorGroup, ccCopyProtocol=ccCopyProtocol)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, single_value_constraint, constraints_intersection, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(fc_name_id_or_zero,) = mibBuilder.importSymbols('CISCO-ST-TC', 'FcNameIdOrZero')
(inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, mib_identifier, bits, time_ticks, counter64, unsigned32, module_identity, gauge32, iso, object_identity, ip_address, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'MibIdentifier', 'Bits', 'TimeTicks', 'Counter64', 'Unsigned32', 'ModuleIdentity', 'Gauge32', 'iso', 'ObjectIdentity', 'IpAddress', 'Counter32')
(display_string, time_stamp, truth_value, row_status, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TimeStamp', 'TruthValue', 'RowStatus', 'TextualConvention')
cisco_config_copy_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 96)).setRevisions(('2005-04-06 00:00', '2004-03-17 00:00', '2002-12-17 00:00', '2002-05-30 00:00', '2002-05-07 00:00', '2002-03-28 00:00'))
class Configcopyprotocol(Integer32, TextualConvention):
subtype_spec = Integer32.subtypeSpec + single_value_constraint(1, 2, 3, 4, 5)
named_values = named_values(('tftp', 1), ('ftp', 2), ('rcp', 3), ('scp', 4), ('sftp', 5))
class Configcopystate(Integer32, TextualConvention):
subtype_spec = Integer32.subtypeSpec + single_value_constraint(1, 2, 3, 4)
named_values = named_values(('waiting', 1), ('running', 2), ('successful', 3), ('failed', 4))
class Configcopyfailcause(Integer32, TextualConvention):
subtype_spec = Integer32.subtypeSpec + single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9)
named_values = named_values(('unknown', 1), ('badFileName', 2), ('timeout', 3), ('noMem', 4), ('noConfig', 5), ('unsupportedProtocol', 6), ('someConfigApplyFailed', 7), ('systemNotReady', 8), ('requestAborted', 9))
class Configfiletype(Integer32, TextualConvention):
subtype_spec = Integer32.subtypeSpec + single_value_constraint(1, 2, 3, 4, 5, 6)
named_values = named_values(('networkFile', 1), ('iosFile', 2), ('startupConfig', 3), ('runningConfig', 4), ('terminal', 5), ('fabricStartupConfig', 6))
cisco_config_copy_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 1))
cc_copy = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1))
cc_copy_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1))
cc_copy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1)).setIndexNames((0, 'CISCO-CONFIG-COPY-MIB', 'ccCopyIndex'))
cc_copy_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
cc_copy_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 2), config_copy_protocol().clone('tftp')).setMaxAccess('readcreate')
cc_copy_source_file_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 3), config_file_type()).setMaxAccess('readcreate')
cc_copy_dest_file_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 4), config_file_type()).setMaxAccess('readcreate')
cc_copy_server_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 5), ip_address()).setMaxAccess('readcreate')
cc_copy_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 6), display_string()).setMaxAccess('readcreate')
cc_copy_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(1, 40))).setMaxAccess('readcreate')
cc_copy_user_password = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(1, 40))).setMaxAccess('readcreate')
cc_copy_notification_on_completion = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 9), truth_value().clone('false')).setMaxAccess('readcreate')
cc_copy_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 10), config_copy_state()).setMaxAccess('readonly')
cc_copy_time_started = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 11), time_stamp()).setMaxAccess('readonly')
cc_copy_time_completed = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 12), time_stamp()).setMaxAccess('readonly')
cc_copy_fail_cause = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 13), config_copy_fail_cause()).setMaxAccess('readonly')
cc_copy_entry_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 14), row_status()).setMaxAccess('readcreate')
cc_copy_server_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 15), inet_address_type()).setMaxAccess('readcreate')
cc_copy_server_address_rev1 = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 1, 1, 16), inet_address()).setMaxAccess('readcreate')
cc_copy_error_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2))
cc_copy_error_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1)).setIndexNames((0, 'CISCO-CONFIG-COPY-MIB', 'ccCopyIndex'), (0, 'CISCO-CONFIG-COPY-MIB', 'ccCopyErrorIndex'))
cc_copy_error_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 1), unsigned32())
cc_copy_error_device_ip_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 2), inet_address_type()).setMaxAccess('readonly')
cc_copy_error_device_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 3), inet_address()).setMaxAccess('readonly')
cc_copy_error_device_wwn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 4), fc_name_id_or_zero()).setMaxAccess('readonly')
cc_copy_error_description = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 96, 1, 1, 2, 1, 5), snmp_admin_string()).setMaxAccess('readonly')
cisco_config_copy_mib_trap_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 2))
cc_copy_mib_traps = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 2, 1))
cc_copy_completion = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 96, 2, 1, 1)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyServerAddress'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyFileName'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyState'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyTimeStarted'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyTimeCompleted'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyFailCause')))
cisco_config_copy_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 3))
cc_copy_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1))
cc_copy_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2))
cc_copy_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1, 1)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyGroup'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyNotificationsGroup')))
cc_copy_mib_compliance_rev1 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1, 2)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyGroupRev1'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyNotificationsGroup')))
cc_copy_mib_compliance_rev2 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 1, 3)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyGroupRev1'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyNotificationsGroup'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyErrorGroup')))
cc_copy_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 1)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyProtocol'), ('CISCO-CONFIG-COPY-MIB', 'ccCopySourceFileType'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyDestFileType'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyServerAddress'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyFileName'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyUserName'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyUserPassword'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyNotificationOnCompletion'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyState'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyTimeStarted'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyTimeCompleted'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyFailCause'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyEntryRowStatus')))
cc_copy_notifications_group = notification_group((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 2)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyCompletion'),))
cc_copy_group_rev1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 3)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyProtocol'), ('CISCO-CONFIG-COPY-MIB', 'ccCopySourceFileType'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyDestFileType'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyServerAddressType'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyServerAddressRev1'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyFileName'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyUserName'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyUserPassword'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyNotificationOnCompletion'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyState'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyTimeStarted'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyTimeCompleted'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyFailCause'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyEntryRowStatus')))
cc_copy_error_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 96, 3, 2, 4)).setObjects(*(('CISCO-CONFIG-COPY-MIB', 'ccCopyErrorDeviceIpAddressType'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyErrorDeviceIpAddress'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyErrorDeviceWWN'), ('CISCO-CONFIG-COPY-MIB', 'ccCopyErrorDescription')))
mibBuilder.exportSymbols('CISCO-CONFIG-COPY-MIB', ciscoConfigCopyMIBConformance=ciscoConfigCopyMIBConformance, ccCopyMIBGroups=ccCopyMIBGroups, ccCopyServerAddress=ccCopyServerAddress, ccCopyNotificationOnCompletion=ccCopyNotificationOnCompletion, ciscoConfigCopyMIB=ciscoConfigCopyMIB, ccCopyState=ccCopyState, ccCopyDestFileType=ccCopyDestFileType, ccCopySourceFileType=ccCopySourceFileType, ccCopyErrorEntry=ccCopyErrorEntry, ccCopyMIBCompliance=ccCopyMIBCompliance, ccCopyTimeCompleted=ccCopyTimeCompleted, ccCopyErrorDeviceIpAddress=ccCopyErrorDeviceIpAddress, ccCopyEntry=ccCopyEntry, ccCopyErrorDeviceIpAddressType=ccCopyErrorDeviceIpAddressType, PYSNMP_MODULE_ID=ciscoConfigCopyMIB, ccCopyMIBTraps=ccCopyMIBTraps, ccCopyServerAddressType=ccCopyServerAddressType, ccCopyUserPassword=ccCopyUserPassword, ccCopyGroupRev1=ccCopyGroupRev1, ciscoConfigCopyMIBObjects=ciscoConfigCopyMIBObjects, ccCopyMIBCompliances=ccCopyMIBCompliances, ccCopyTable=ccCopyTable, ccCopyErrorDeviceWWN=ccCopyErrorDeviceWWN, ccCopyCompletion=ccCopyCompletion, ciscoConfigCopyMIBTrapPrefix=ciscoConfigCopyMIBTrapPrefix, ccCopyErrorIndex=ccCopyErrorIndex, ccCopyErrorDescription=ccCopyErrorDescription, ccCopyFailCause=ccCopyFailCause, ccCopyUserName=ccCopyUserName, ccCopyTimeStarted=ccCopyTimeStarted, ConfigCopyState=ConfigCopyState, ccCopyNotificationsGroup=ccCopyNotificationsGroup, ConfigCopyFailCause=ConfigCopyFailCause, ccCopyServerAddressRev1=ccCopyServerAddressRev1, ccCopyErrorTable=ccCopyErrorTable, ConfigFileType=ConfigFileType, ccCopyFileName=ccCopyFileName, ConfigCopyProtocol=ConfigCopyProtocol, ccCopyGroup=ccCopyGroup, ccCopyMIBComplianceRev1=ccCopyMIBComplianceRev1, ccCopyEntryRowStatus=ccCopyEntryRowStatus, ccCopyIndex=ccCopyIndex, ccCopyMIBComplianceRev2=ccCopyMIBComplianceRev2, ccCopy=ccCopy, ccCopyErrorGroup=ccCopyErrorGroup, ccCopyProtocol=ccCopyProtocol) |
params = {
'contacts_csv': 'CUSTOMERCONTACTS.csv',
'shipments_csv': 'CUSTOMERSHIPMENTS.csv',
'packingslips_csv': 'PACKINGSLIPS.csv',
'log_file': 'logfile.txt',
'BigVendor_code': 2758,
'dlr_email_template_file': 'Dealer_email.html',
'BigVendor_email_template_file': 'BigVendor_email.html',
# Credentials created via http://www.ups.com/upsdeveloperkit
'ups_access_license': "AAAAAAAAAAAAAAA",
'ups_userid': "xxxxxx",
'ups_password': "xxxxxxx",
# Used only for creating the link for an email recipient
'ups_web_root': "http://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=",
'gmail_userid': 'xxxxxxxx',
'gmail_password': 'xxxxxxxxx',
# gmail password is specified with "--password xxxx" command line option.
# This must be set to something that will never appear in a real email,
# because we're doublechecking before sending them to make sure
# this text isn't in the email to send.
'text_placeholder_if_info_missing': '<font color="red">[MISSING]</font>',
'email_from_name': "[My Company] Shipping",
'email_subject_line_jd': "Your [Big Vendor] direct order with [My Company] has shipped",
'email_subject_line_non_jd': "Your order with [My Company] has shipped",
#(need to build in an additional parameter if there will be different subject lines
# for JD vs. non-JD orders.)
'email_from_name_for_internal_notes': "Shipping notification records",
'email_address_for_company_records': "xxxx@xxxx.com",
'email_address_for_contact_info_updating': "xxxx@xxxx.com",
# The 'simulated_emails' option causes the emailer to create HTML files in the
# working directory containing the email example, instead of actually sending
# anything to any email address. Overrides the "testing mode" below.
'simulated_emails': False,
# The 'email_in_testing_mode' option allows email addresses found in the
# customer contacts sheet to be replaced by these testing addresses.
# This has no effect if "simulated_emails" is True.
'email_in_testing_mode': False,
'test_email_recipient_as_customer': "xxxx@xxxx.com",
'test_email_recipient_as_records': "xxxx@xxxx.com",
'test_email_recipient_as_contactupdating': "xxxx@xxxx.com",
}
item_column_labels = {
'part': 'Part No.',
'description': 'Description',
'quantity': 'Qty'
}
shipments_heading = {
'name': 'Name',
'cust_id': 'Customer',
'BigVendor_shortchar_lookup': 'ShortChar01',
}
pslips_heading = {
'slip_id': 'Packing Slip',
'cust_id': 'Customer', # program uses only the right-most "Customer" value
'order_id': 'Order',
'BigVendor_dns_number': 'Reference 4',
'BigVendor_shortchar_id': 'Reference 5',
'addr_name': 'Name',
'addr_line1': "Address",
'addr_line2': "Address2",
'addr_line3': "Address3",
'addr_city': 'City',
'addr_state': 'State/Province',
'addr_pcode': 'Postal Code',
'shipvia': 'Ship Via',
'tracknum': 'Tracking Number',
'description': 'Rev Description',
'partcode': 'Part',
'quantity': 'Qty',
}
contacts_heading = {
'cust_id': 'Customer',
'name': 'Name',
'email': 'EMail Address',
}
mail_fieldtags = {
'greeting_name': 'putncdealernamehere',
'dns': 'putdnshere', # ["Big Vendor"] orders only
'fso': 'putfsohere',
'date': 'putdatehere',
'tracknum': 'placetrackingnumberhere',
'a_name': 'putnamehere',
'a_address': 'putaddresshere',
'a_citysz': 'putcityszhere',
'itemtable': 'puttablehere',
} | params = {'contacts_csv': 'CUSTOMERCONTACTS.csv', 'shipments_csv': 'CUSTOMERSHIPMENTS.csv', 'packingslips_csv': 'PACKINGSLIPS.csv', 'log_file': 'logfile.txt', 'BigVendor_code': 2758, 'dlr_email_template_file': 'Dealer_email.html', 'BigVendor_email_template_file': 'BigVendor_email.html', 'ups_access_license': 'AAAAAAAAAAAAAAA', 'ups_userid': 'xxxxxx', 'ups_password': 'xxxxxxx', 'ups_web_root': 'http://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=', 'gmail_userid': 'xxxxxxxx', 'gmail_password': 'xxxxxxxxx', 'text_placeholder_if_info_missing': '<font color="red">[MISSING]</font>', 'email_from_name': '[My Company] Shipping', 'email_subject_line_jd': 'Your [Big Vendor] direct order with [My Company] has shipped', 'email_subject_line_non_jd': 'Your order with [My Company] has shipped', 'email_from_name_for_internal_notes': 'Shipping notification records', 'email_address_for_company_records': 'xxxx@xxxx.com', 'email_address_for_contact_info_updating': 'xxxx@xxxx.com', 'simulated_emails': False, 'email_in_testing_mode': False, 'test_email_recipient_as_customer': 'xxxx@xxxx.com', 'test_email_recipient_as_records': 'xxxx@xxxx.com', 'test_email_recipient_as_contactupdating': 'xxxx@xxxx.com'}
item_column_labels = {'part': 'Part No.', 'description': 'Description', 'quantity': 'Qty'}
shipments_heading = {'name': 'Name', 'cust_id': 'Customer', 'BigVendor_shortchar_lookup': 'ShortChar01'}
pslips_heading = {'slip_id': 'Packing Slip', 'cust_id': 'Customer', 'order_id': 'Order', 'BigVendor_dns_number': 'Reference 4', 'BigVendor_shortchar_id': 'Reference 5', 'addr_name': 'Name', 'addr_line1': 'Address', 'addr_line2': 'Address2', 'addr_line3': 'Address3', 'addr_city': 'City', 'addr_state': 'State/Province', 'addr_pcode': 'Postal Code', 'shipvia': 'Ship Via', 'tracknum': 'Tracking Number', 'description': 'Rev Description', 'partcode': 'Part', 'quantity': 'Qty'}
contacts_heading = {'cust_id': 'Customer', 'name': 'Name', 'email': 'EMail Address'}
mail_fieldtags = {'greeting_name': 'putncdealernamehere', 'dns': 'putdnshere', 'fso': 'putfsohere', 'date': 'putdatehere', 'tracknum': 'placetrackingnumberhere', 'a_name': 'putnamehere', 'a_address': 'putaddresshere', 'a_citysz': 'putcityszhere', 'itemtable': 'puttablehere'} |
#
# PySNMP MIB module RADLAN-DHCPv6-RELAY (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RADLAN-DHCPv6-RELAY
# Produced by pysmi-0.3.4 at Mon Apr 29 20:37:53 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint")
InetAddressIPv6, InetAddressType, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressIPv6", "InetAddressType", "InetAddress")
rlDhcpv6Relay, = mibBuilder.importSymbols("RADLAN-DHCPv6", "rlDhcpv6Relay")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter64, IpAddress, Integer32, TimeTicks, Counter32, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, ModuleIdentity, Gauge32, Bits, iso, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "IpAddress", "Integer32", "TimeTicks", "Counter32", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "ModuleIdentity", "Gauge32", "Bits", "iso", "ObjectIdentity")
DisplayString, RowStatus, MacAddress, TextualConvention, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "RowStatus", "MacAddress", "TextualConvention", "TruthValue")
rlDhcpv6RelayInterfaceListTable = MibTable((1, 3, 6, 1, 4, 1, 89, 214, 3, 1), )
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceListTable.setStatus('current')
rlDhcpv6RelayInterfaceListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 214, 3, 1, 1), ).setIndexNames((0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayInterfaceListIfIndex"))
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceListEntry.setStatus('current')
rlDhcpv6RelayInterfaceListIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 1, 1, 1), Unsigned32())
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceListIfIndex.setStatus('current')
rlDhcpv6RelayInterfaceListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 1, 1, 2), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceListRowStatus.setStatus('current')
rlDhcpv6RelayDestinationsGlobalTable = MibTable((1, 3, 6, 1, 4, 1, 89, 214, 3, 2), )
if mibBuilder.loadTexts: rlDhcpv6RelayDestinationsGlobalTable.setStatus('current')
rlDhcpv6RelayDestinationsGlobalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1), ).setIndexNames((0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayDestinationsGlobalIpv6AddrType"), (0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayDestinationsGlobalIpv6Addr"), (0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayDestinationsGlobalOutputInterface"))
if mibBuilder.loadTexts: rlDhcpv6RelayDestinationsGlobalEntry.setStatus('current')
rlDhcpv6RelayDestinationsGlobalIpv6AddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 1), InetAddressType())
if mibBuilder.loadTexts: rlDhcpv6RelayDestinationsGlobalIpv6AddrType.setStatus('current')
rlDhcpv6RelayDestinationsGlobalIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 2), InetAddress())
if mibBuilder.loadTexts: rlDhcpv6RelayDestinationsGlobalIpv6Addr.setStatus('current')
rlDhcpv6RelayDestinationsGlobalOutputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 3), Unsigned32())
if mibBuilder.loadTexts: rlDhcpv6RelayDestinationsGlobalOutputInterface.setStatus('current')
rlDhcpv6RelayDestinationsGlobalRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 4), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rlDhcpv6RelayDestinationsGlobalRowStatus.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsTable = MibTable((1, 3, 6, 1, 4, 1, 89, 214, 3, 3), )
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsTable.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1), ).setIndexNames((0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayInterfaceDestinationsIfindex"), (0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayInterfaceDestinationsIpv6AddrType"), (0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayInterfaceDestinationsIpv6Addr"), (0, "RADLAN-DHCPv6-RELAY", "rlDhcpv6RelayInterfaceDestinationsOutputInterface"))
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsEntry.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsIfindex = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 1), Unsigned32())
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsIfindex.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsIpv6AddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 2), InetAddressType())
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsIpv6AddrType.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 3), InetAddress())
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsIpv6Addr.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsOutputInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 4), Unsigned32())
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsOutputInterface.setStatus('current')
rlDhcpv6RelayInterfaceDestinationsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 5), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rlDhcpv6RelayInterfaceDestinationsRowStatus.setStatus('current')
mibBuilder.exportSymbols("RADLAN-DHCPv6-RELAY", rlDhcpv6RelayInterfaceDestinationsEntry=rlDhcpv6RelayInterfaceDestinationsEntry, rlDhcpv6RelayInterfaceDestinationsOutputInterface=rlDhcpv6RelayInterfaceDestinationsOutputInterface, rlDhcpv6RelayInterfaceDestinationsRowStatus=rlDhcpv6RelayInterfaceDestinationsRowStatus, rlDhcpv6RelayInterfaceListTable=rlDhcpv6RelayInterfaceListTable, rlDhcpv6RelayDestinationsGlobalOutputInterface=rlDhcpv6RelayDestinationsGlobalOutputInterface, rlDhcpv6RelayInterfaceListIfIndex=rlDhcpv6RelayInterfaceListIfIndex, rlDhcpv6RelayDestinationsGlobalIpv6AddrType=rlDhcpv6RelayDestinationsGlobalIpv6AddrType, rlDhcpv6RelayInterfaceDestinationsIfindex=rlDhcpv6RelayInterfaceDestinationsIfindex, rlDhcpv6RelayInterfaceDestinationsIpv6AddrType=rlDhcpv6RelayInterfaceDestinationsIpv6AddrType, rlDhcpv6RelayDestinationsGlobalIpv6Addr=rlDhcpv6RelayDestinationsGlobalIpv6Addr, rlDhcpv6RelayDestinationsGlobalRowStatus=rlDhcpv6RelayDestinationsGlobalRowStatus, rlDhcpv6RelayInterfaceDestinationsTable=rlDhcpv6RelayInterfaceDestinationsTable, rlDhcpv6RelayInterfaceDestinationsIpv6Addr=rlDhcpv6RelayInterfaceDestinationsIpv6Addr, rlDhcpv6RelayDestinationsGlobalEntry=rlDhcpv6RelayDestinationsGlobalEntry, rlDhcpv6RelayInterfaceListEntry=rlDhcpv6RelayInterfaceListEntry, rlDhcpv6RelayDestinationsGlobalTable=rlDhcpv6RelayDestinationsGlobalTable, rlDhcpv6RelayInterfaceListRowStatus=rlDhcpv6RelayInterfaceListRowStatus)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, value_range_constraint, constraints_union, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint')
(inet_address_i_pv6, inet_address_type, inet_address) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressIPv6', 'InetAddressType', 'InetAddress')
(rl_dhcpv6_relay,) = mibBuilder.importSymbols('RADLAN-DHCPv6', 'rlDhcpv6Relay')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter64, ip_address, integer32, time_ticks, counter32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, mib_identifier, module_identity, gauge32, bits, iso, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'IpAddress', 'Integer32', 'TimeTicks', 'Counter32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'MibIdentifier', 'ModuleIdentity', 'Gauge32', 'Bits', 'iso', 'ObjectIdentity')
(display_string, row_status, mac_address, textual_convention, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'RowStatus', 'MacAddress', 'TextualConvention', 'TruthValue')
rl_dhcpv6_relay_interface_list_table = mib_table((1, 3, 6, 1, 4, 1, 89, 214, 3, 1))
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceListTable.setStatus('current')
rl_dhcpv6_relay_interface_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 214, 3, 1, 1)).setIndexNames((0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayInterfaceListIfIndex'))
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceListEntry.setStatus('current')
rl_dhcpv6_relay_interface_list_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 1, 1, 1), unsigned32())
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceListIfIndex.setStatus('current')
rl_dhcpv6_relay_interface_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 1, 1, 2), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceListRowStatus.setStatus('current')
rl_dhcpv6_relay_destinations_global_table = mib_table((1, 3, 6, 1, 4, 1, 89, 214, 3, 2))
if mibBuilder.loadTexts:
rlDhcpv6RelayDestinationsGlobalTable.setStatus('current')
rl_dhcpv6_relay_destinations_global_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1)).setIndexNames((0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayDestinationsGlobalIpv6AddrType'), (0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayDestinationsGlobalIpv6Addr'), (0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayDestinationsGlobalOutputInterface'))
if mibBuilder.loadTexts:
rlDhcpv6RelayDestinationsGlobalEntry.setStatus('current')
rl_dhcpv6_relay_destinations_global_ipv6_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
rlDhcpv6RelayDestinationsGlobalIpv6AddrType.setStatus('current')
rl_dhcpv6_relay_destinations_global_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 2), inet_address())
if mibBuilder.loadTexts:
rlDhcpv6RelayDestinationsGlobalIpv6Addr.setStatus('current')
rl_dhcpv6_relay_destinations_global_output_interface = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 3), unsigned32())
if mibBuilder.loadTexts:
rlDhcpv6RelayDestinationsGlobalOutputInterface.setStatus('current')
rl_dhcpv6_relay_destinations_global_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 2, 1, 4), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rlDhcpv6RelayDestinationsGlobalRowStatus.setStatus('current')
rl_dhcpv6_relay_interface_destinations_table = mib_table((1, 3, 6, 1, 4, 1, 89, 214, 3, 3))
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsTable.setStatus('current')
rl_dhcpv6_relay_interface_destinations_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1)).setIndexNames((0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayInterfaceDestinationsIfindex'), (0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayInterfaceDestinationsIpv6AddrType'), (0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayInterfaceDestinationsIpv6Addr'), (0, 'RADLAN-DHCPv6-RELAY', 'rlDhcpv6RelayInterfaceDestinationsOutputInterface'))
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsEntry.setStatus('current')
rl_dhcpv6_relay_interface_destinations_ifindex = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 1), unsigned32())
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsIfindex.setStatus('current')
rl_dhcpv6_relay_interface_destinations_ipv6_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 2), inet_address_type())
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsIpv6AddrType.setStatus('current')
rl_dhcpv6_relay_interface_destinations_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 3), inet_address())
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsIpv6Addr.setStatus('current')
rl_dhcpv6_relay_interface_destinations_output_interface = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 4), unsigned32())
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsOutputInterface.setStatus('current')
rl_dhcpv6_relay_interface_destinations_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 214, 3, 3, 1, 5), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rlDhcpv6RelayInterfaceDestinationsRowStatus.setStatus('current')
mibBuilder.exportSymbols('RADLAN-DHCPv6-RELAY', rlDhcpv6RelayInterfaceDestinationsEntry=rlDhcpv6RelayInterfaceDestinationsEntry, rlDhcpv6RelayInterfaceDestinationsOutputInterface=rlDhcpv6RelayInterfaceDestinationsOutputInterface, rlDhcpv6RelayInterfaceDestinationsRowStatus=rlDhcpv6RelayInterfaceDestinationsRowStatus, rlDhcpv6RelayInterfaceListTable=rlDhcpv6RelayInterfaceListTable, rlDhcpv6RelayDestinationsGlobalOutputInterface=rlDhcpv6RelayDestinationsGlobalOutputInterface, rlDhcpv6RelayInterfaceListIfIndex=rlDhcpv6RelayInterfaceListIfIndex, rlDhcpv6RelayDestinationsGlobalIpv6AddrType=rlDhcpv6RelayDestinationsGlobalIpv6AddrType, rlDhcpv6RelayInterfaceDestinationsIfindex=rlDhcpv6RelayInterfaceDestinationsIfindex, rlDhcpv6RelayInterfaceDestinationsIpv6AddrType=rlDhcpv6RelayInterfaceDestinationsIpv6AddrType, rlDhcpv6RelayDestinationsGlobalIpv6Addr=rlDhcpv6RelayDestinationsGlobalIpv6Addr, rlDhcpv6RelayDestinationsGlobalRowStatus=rlDhcpv6RelayDestinationsGlobalRowStatus, rlDhcpv6RelayInterfaceDestinationsTable=rlDhcpv6RelayInterfaceDestinationsTable, rlDhcpv6RelayInterfaceDestinationsIpv6Addr=rlDhcpv6RelayInterfaceDestinationsIpv6Addr, rlDhcpv6RelayDestinationsGlobalEntry=rlDhcpv6RelayDestinationsGlobalEntry, rlDhcpv6RelayInterfaceListEntry=rlDhcpv6RelayInterfaceListEntry, rlDhcpv6RelayDestinationsGlobalTable=rlDhcpv6RelayDestinationsGlobalTable, rlDhcpv6RelayInterfaceListRowStatus=rlDhcpv6RelayInterfaceListRowStatus) |
class FlaskAWSCognitoError(Exception):
pass
class TokenVerifyError(Exception):
pass
| class Flaskawscognitoerror(Exception):
pass
class Tokenverifyerror(Exception):
pass |
class Queue:
def __init__(self):
self.front = None
self.rear = None
def enqueue(self,value):
new_node = value
if self.rear:
self.rear.next = new_node
self.rear = new_node
else:
self.front = new_node
self.rear = new_node
def dequeue(self):
try:
if self.front:
temp = self.front
self.front = self.front.next
return temp.value
else:
raise Exception('Empty Queue')
except:
return 'Empty Queue'
def peek(self):
try:
if self.front:
return self.front.value
else:
raise Exception('Empty Queue')
except:
return 'Empty Queue'
def isEmpty(self):
if self.front:
return False
elif not self.front:
return True
class Node:
def __init__(self,value):
self.value = value
self.next = None
self.left = None
self.right = None
class BinaryTree:
def __init__(self):
self.root = None
def pre_order(self):
output=[]
def _walk(node):
output.append(node.value)
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
_walk(self.root)
return output
def in_order(self):
output=[]
def _walk(node):
if node.left:
_walk(node.left)
output.append(node.value)
if node.right:
_walk(node.right)
_walk(self.root)
return output
def post_order(self):
output=[]
def _walk(node):
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
output.append(node.value)
_walk(self.root)
return output
def breadth_first(self):
if self.root:
output=[]
q = Queue()
q.enqueue(self.root)
while q.front != None:
current = q.front
if current.left:
q.enqueue(current.left)
if current.right:
q.enqueue(current.right)
output.append(current.value)
q.dequeue()
return output
else:
return 'Empty Tree'
def find_maximum_value(self):
self.max=self.root.value
def _walk(node):
if node.value > self.max:
self.max =node.value
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
_walk(self.root)
return self.max
class BinarySearchTree(BinaryTree):
def add(self, value):
if not self.root:
self.root = Node(value)
else:
def _walk(node):
if value < node.value:
if not node.left:
node.left = Node(value)
return
else:
_walk(node.left)
else:
if not node.right:
node.right = Node(value)
return
else:
_walk(node.right)
_walk(self.root)
def contains(self,value):
if self.root:
current = self.root
def _walk(current):
if value == current.value:
return True
elif value < current.value:
current = current.left
if current:
return _walk(current)
elif value > current.value:
current = current.right
if current:
return _walk(current)
if _walk(current) == True:
return True
else:
return False
else:
return False
def fizz_buzz_tree(tree):
new_tree = tree
if new_tree.root != None:
def _walk(node):
if node.value%3==0 and node.value%5==0:
node.value = 'FizzBuzz'
elif node.value%3==0:
node.value = 'Fizz'
elif node.value%5==0:
node.value = 'Buzz'
elif node.value%3!=0 and node.value%5!=0:
node.value = str(node.value)
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
_walk(new_tree.root)
return new_tree
else:
new_tree.root =Node('Tree is Empty')
return new_tree
if __name__ == "__main__":
bt = BinaryTree()
bt.root = Node(4)
bt.root.right = Node(9)
bt.root.left = Node(15)
bt.root.right.left = Node(6)
bt.root.left.left = Node(3)
bt.root.left.right = Node(5)
print(bt.find_maximum_value())
print(fizz_buzz_tree(bt).breadth_first())
| class Queue:
def __init__(self):
self.front = None
self.rear = None
def enqueue(self, value):
new_node = value
if self.rear:
self.rear.next = new_node
self.rear = new_node
else:
self.front = new_node
self.rear = new_node
def dequeue(self):
try:
if self.front:
temp = self.front
self.front = self.front.next
return temp.value
else:
raise exception('Empty Queue')
except:
return 'Empty Queue'
def peek(self):
try:
if self.front:
return self.front.value
else:
raise exception('Empty Queue')
except:
return 'Empty Queue'
def is_empty(self):
if self.front:
return False
elif not self.front:
return True
class Node:
def __init__(self, value):
self.value = value
self.next = None
self.left = None
self.right = None
class Binarytree:
def __init__(self):
self.root = None
def pre_order(self):
output = []
def _walk(node):
output.append(node.value)
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
_walk(self.root)
return output
def in_order(self):
output = []
def _walk(node):
if node.left:
_walk(node.left)
output.append(node.value)
if node.right:
_walk(node.right)
_walk(self.root)
return output
def post_order(self):
output = []
def _walk(node):
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
output.append(node.value)
_walk(self.root)
return output
def breadth_first(self):
if self.root:
output = []
q = queue()
q.enqueue(self.root)
while q.front != None:
current = q.front
if current.left:
q.enqueue(current.left)
if current.right:
q.enqueue(current.right)
output.append(current.value)
q.dequeue()
return output
else:
return 'Empty Tree'
def find_maximum_value(self):
self.max = self.root.value
def _walk(node):
if node.value > self.max:
self.max = node.value
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
_walk(self.root)
return self.max
class Binarysearchtree(BinaryTree):
def add(self, value):
if not self.root:
self.root = node(value)
else:
def _walk(node):
if value < node.value:
if not node.left:
node.left = node(value)
return
else:
_walk(node.left)
elif not node.right:
node.right = node(value)
return
else:
_walk(node.right)
_walk(self.root)
def contains(self, value):
if self.root:
current = self.root
def _walk(current):
if value == current.value:
return True
elif value < current.value:
current = current.left
if current:
return _walk(current)
elif value > current.value:
current = current.right
if current:
return _walk(current)
if _walk(current) == True:
return True
else:
return False
else:
return False
def fizz_buzz_tree(tree):
new_tree = tree
if new_tree.root != None:
def _walk(node):
if node.value % 3 == 0 and node.value % 5 == 0:
node.value = 'FizzBuzz'
elif node.value % 3 == 0:
node.value = 'Fizz'
elif node.value % 5 == 0:
node.value = 'Buzz'
elif node.value % 3 != 0 and node.value % 5 != 0:
node.value = str(node.value)
if node.left:
_walk(node.left)
if node.right:
_walk(node.right)
_walk(new_tree.root)
return new_tree
else:
new_tree.root = node('Tree is Empty')
return new_tree
if __name__ == '__main__':
bt = binary_tree()
bt.root = node(4)
bt.root.right = node(9)
bt.root.left = node(15)
bt.root.right.left = node(6)
bt.root.left.left = node(3)
bt.root.left.right = node(5)
print(bt.find_maximum_value())
print(fizz_buzz_tree(bt).breadth_first()) |
class db_connection_issue(Exception):
pass
| class Db_Connection_Issue(Exception):
pass |
# copyright by Adam Celej
class Zamowienie:
def __init__(self, id_zamowienia, id_zamawiajacego, id_przedmiotu):
self.id_zamowienia = id_zamowienia
self.id_zamawiajacego = id_zamawiajacego
self.id_przedmiotu = id_przedmiotu
self.lista_zamowien = []
def __del__(self):
print("Zamowienie zostalo anulowane")
| class Zamowienie:
def __init__(self, id_zamowienia, id_zamawiajacego, id_przedmiotu):
self.id_zamowienia = id_zamowienia
self.id_zamawiajacego = id_zamawiajacego
self.id_przedmiotu = id_przedmiotu
self.lista_zamowien = []
def __del__(self):
print('Zamowienie zostalo anulowane') |
# -*- coding: utf-8 -*-
class Match:
score = []
opcionset = {"1st": 0, "2nd": 1, "3rd": 2, "4th": 3, "5th": 4}
def __init__(self, player1, player2, pacted_sets):
self.p1 = player1
self.p2 = player2
self.pacted_sets = pacted_sets
self.textoganador = ""
self.wonp1 = 0
self.wonp2 = 0
del self.score[:]
self.score.append("0-0")
self.ganadorinicial = "none"
def score_set(self):
self.ganador()
return "{0} | {1}".format(self.textoganador, self.listascoreset())
def iniciarganador(self, playerwon):
if self.ganadorinicial == "none":
self.ganadorinicial = playerwon
def listascoreset(self):
listascore = ""
inicio = 0
for index in self.score:
if inicio == 0:
listascore = index
inicio += 1
else:
listascore = listascore + ", " + index
return listascore
def ordenarscoreganador(self, playerwon, scorej1, scorej2):
self.iniciarganador(playerwon)
if self.ganadorinicial == playerwon:
return scorej1 + "-" + scorej2
else:
return scorej2 + "-" + scorej1
def save_set_won(self, player):
if(player == self.p1):
self.wonp1 += 1
else:
self.wonp2 += 1
def save_score_set(self, scorej1, scorej2, numberset, playerwon):
if(numberset == "1st"):
self.score[0] = self.ordenarscoreganador(
playerwon, scorej1, scorej2)
else:
self.score.insert(self.opcionset.get(
numberset), self.ordenarscoreganador(playerwon, scorej1, scorej2))
def ganador(self):
numeroaum = 1
if int(self.pacted_sets) == 5:
numeroaum = 2
if((self.wonp1 + numeroaum) == int(self.pacted_sets)):
self.textoganador = self.p1 + " defeated " + self.p2
elif ((self.wonp2 + numeroaum) == int(self.pacted_sets)):
self.textoganador = self.p2 + " defeated " + self.p1
else:
self.textoganador = self.p1 + " plays with " + self.p2
| class Match:
score = []
opcionset = {'1st': 0, '2nd': 1, '3rd': 2, '4th': 3, '5th': 4}
def __init__(self, player1, player2, pacted_sets):
self.p1 = player1
self.p2 = player2
self.pacted_sets = pacted_sets
self.textoganador = ''
self.wonp1 = 0
self.wonp2 = 0
del self.score[:]
self.score.append('0-0')
self.ganadorinicial = 'none'
def score_set(self):
self.ganador()
return '{0} | {1}'.format(self.textoganador, self.listascoreset())
def iniciarganador(self, playerwon):
if self.ganadorinicial == 'none':
self.ganadorinicial = playerwon
def listascoreset(self):
listascore = ''
inicio = 0
for index in self.score:
if inicio == 0:
listascore = index
inicio += 1
else:
listascore = listascore + ', ' + index
return listascore
def ordenarscoreganador(self, playerwon, scorej1, scorej2):
self.iniciarganador(playerwon)
if self.ganadorinicial == playerwon:
return scorej1 + '-' + scorej2
else:
return scorej2 + '-' + scorej1
def save_set_won(self, player):
if player == self.p1:
self.wonp1 += 1
else:
self.wonp2 += 1
def save_score_set(self, scorej1, scorej2, numberset, playerwon):
if numberset == '1st':
self.score[0] = self.ordenarscoreganador(playerwon, scorej1, scorej2)
else:
self.score.insert(self.opcionset.get(numberset), self.ordenarscoreganador(playerwon, scorej1, scorej2))
def ganador(self):
numeroaum = 1
if int(self.pacted_sets) == 5:
numeroaum = 2
if self.wonp1 + numeroaum == int(self.pacted_sets):
self.textoganador = self.p1 + ' defeated ' + self.p2
elif self.wonp2 + numeroaum == int(self.pacted_sets):
self.textoganador = self.p2 + ' defeated ' + self.p1
else:
self.textoganador = self.p1 + ' plays with ' + self.p2 |
#!/usr/bin/env python3
def day5(filename):
with open("input.txt", "r") as rd:
data = rd.readlines()
nice = [s for s in data if nice_string(s)]
print("Step 1:", len(nice))
def nice_string(string):
vowels = "aeiou"
forbidden = ("ab", "cd", "pq", "xy")
if len([l for l in string if l in vowels]) < 3:
return False
for x in range(len(string)-1):
if string[x] == string[x+1]:
break
else:
return False
for x in forbidden:
if x in string:
return False
return True
if __name__ == "__main__":
assert nice_string("ugknbfddgicrmopn")
assert nice_string("aaa")
assert not nice_string("jchzalrnumimnmhp")
assert not nice_string("haegwjzuvuyypxyu")
assert not nice_string("dvszwmarrgswjxmb")
day5("input.txt")
| def day5(filename):
with open('input.txt', 'r') as rd:
data = rd.readlines()
nice = [s for s in data if nice_string(s)]
print('Step 1:', len(nice))
def nice_string(string):
vowels = 'aeiou'
forbidden = ('ab', 'cd', 'pq', 'xy')
if len([l for l in string if l in vowels]) < 3:
return False
for x in range(len(string) - 1):
if string[x] == string[x + 1]:
break
else:
return False
for x in forbidden:
if x in string:
return False
return True
if __name__ == '__main__':
assert nice_string('ugknbfddgicrmopn')
assert nice_string('aaa')
assert not nice_string('jchzalrnumimnmhp')
assert not nice_string('haegwjzuvuyypxyu')
assert not nice_string('dvszwmarrgswjxmb')
day5('input.txt') |
#!usr/bin/env python3
# python provides a way for specifying function parameters using keywords.
# we can define a function that takes positional arguments along with keyword
# arguments that take optional values. Then, when you want to call the
# function, you can specify values by position or by keyword.
# sometimes we want to enforce calling a function by specifying parameters by
# keyword, since it can improve the readability of the code and can make it
# safer in case the parameter has a significant effect on how the program runs.
# This way, the function caller is aware of the significance of the parameter
# and others who read the code can easily see and understand what's happening.
# To accomplish this we can separate the positional arguments with a single
# asterisk character followed by parameters that are keyword-only.
# if we really need to make sure that someone using a particular function
# clearly understands what they're doing and why they're doing it, we can use
# keyword-only arguments to help ensure clarity in the code.
# use keyword-only arguments to help ensure code clarity
def my_function(arg1, arg2, *, suppress_exceptions=False):
print(arg1, arg2, suppress_exceptions)
def my_function2(*, arg1, arg2):
print(arg1, arg2)
def main():
# if we try to call the function without the keyword we'll get
# "TypeError: my_function() takes 2 positional arguments but 3 were given"
# my_function(1, 2, True)
my_function(1, 2, suppress_exceptions=True)
my_function(arg2=1, arg1=2, suppress_exceptions=True)
# my_function2(1,2) # will throw
# TypeError: my_function2() takes 0 positional arguments but 2 were given
my_function2(arg1=1, arg2=2)
if __name__ == "__main__":
main()
# CONSOLE OUTPUT:
# 1 2 True
# 2 1 True
# 1 2
| def my_function(arg1, arg2, *, suppress_exceptions=False):
print(arg1, arg2, suppress_exceptions)
def my_function2(*, arg1, arg2):
print(arg1, arg2)
def main():
my_function(1, 2, suppress_exceptions=True)
my_function(arg2=1, arg1=2, suppress_exceptions=True)
my_function2(arg1=1, arg2=2)
if __name__ == '__main__':
main() |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def isSameTree(self, p: Optional[TreeNode], q: Optional[TreeNode]) -> bool:
if not p and not q:
return True
elif (p and not q) or (not p and q):
return False
else:
stack=[(p, q)]
while(stack):
cur_p, cur_q = stack.pop(0)
if cur_p.val!=cur_q.val:
return False
if cur_p.left and cur_q.left:
stack.append((cur_p.left, cur_q.left))
if cur_p.right and cur_q.right:
stack.append((cur_p.right, cur_q.right))
if (cur_p.left and not cur_q.left) or (not cur_p.left and cur_q.left):
return False
if (cur_p.right and not cur_q.right) or (not cur_p.right and cur_q.right):
return False
return True | class Solution:
def is_same_tree(self, p: Optional[TreeNode], q: Optional[TreeNode]) -> bool:
if not p and (not q):
return True
elif p and (not q) or (not p and q):
return False
else:
stack = [(p, q)]
while stack:
(cur_p, cur_q) = stack.pop(0)
if cur_p.val != cur_q.val:
return False
if cur_p.left and cur_q.left:
stack.append((cur_p.left, cur_q.left))
if cur_p.right and cur_q.right:
stack.append((cur_p.right, cur_q.right))
if cur_p.left and (not cur_q.left) or (not cur_p.left and cur_q.left):
return False
if cur_p.right and (not cur_q.right) or (not cur_p.right and cur_q.right):
return False
return True |
# The function for selection sort
def SelectionSort(list):
for i in range (0,len(list)):
elem=list[i]
pos=i
for j in range(i+1,len(list)):
if list[j]>=elem:
elem=list[j]
pos=j
list[i], list[pos] = list[pos], list[i]
return list
def HybridSort(nlist):
# If the length of the list is less than or equal to 4, then sort using selection sort
if len(nlist)<=4:
nlist=SelectionSort(nlist)
# Otherwise sort using merge sort, unless the list is of length 1
if len(nlist)>1 and len(nlist)>4:
# Find the middle of the list
mid = len(nlist)//2
# Use this to create two lists
lefthalf = nlist[:mid]
righthalf = nlist[mid:]
HybridSort(lefthalf)
HybridSort(righthalf)
# Merging
i=j=k=0
# While the lists are not exhausted
while i < len(lefthalf) and j < len(righthalf):
# If the left half first index is greater than right half, add it to the output list
if lefthalf[i] >= righthalf[j]:
nlist[k]=lefthalf[i]
# Increment the value of i so that the element would not be added multiple times
i=i+1
else:
# Other wise the right half first index is larger, so add that
nlist[k]=righthalf[j]
# And again increment the index
j=j+1
# Increment k to jump to the next index in nlist
k=k+1
# If the loop has broken out to here then one of the lists is empty
# Loop adding all the remaining elements of the lefthalf list, if it is empty then just move on
while i < len(lefthalf):
nlist[k]=lefthalf[i]
i=i+1
k=k+1
# Loop adding all the remaining elements of the righthalf list, again, if it is empty then just move on
while j < len(righthalf):
nlist[k]=righthalf[j]
j=j+1
k=k+1
| def selection_sort(list):
for i in range(0, len(list)):
elem = list[i]
pos = i
for j in range(i + 1, len(list)):
if list[j] >= elem:
elem = list[j]
pos = j
(list[i], list[pos]) = (list[pos], list[i])
return list
def hybrid_sort(nlist):
if len(nlist) <= 4:
nlist = selection_sort(nlist)
if len(nlist) > 1 and len(nlist) > 4:
mid = len(nlist) // 2
lefthalf = nlist[:mid]
righthalf = nlist[mid:]
hybrid_sort(lefthalf)
hybrid_sort(righthalf)
i = j = k = 0
while i < len(lefthalf) and j < len(righthalf):
if lefthalf[i] >= righthalf[j]:
nlist[k] = lefthalf[i]
i = i + 1
else:
nlist[k] = righthalf[j]
j = j + 1
k = k + 1
while i < len(lefthalf):
nlist[k] = lefthalf[i]
i = i + 1
k = k + 1
while j < len(righthalf):
nlist[k] = righthalf[j]
j = j + 1
k = k + 1 |
'''
Python module to hold DNS processing exceptions
'''
class SWAN_DNS_Exception(Exception):
'''
General SWAN DNS exception
'''
pass
class SWAN_StopProcessingRequest(SWAN_DNS_Exception):
'''
An exception which indicates to stop the processing of a dns request.
This shuld be thrown from a dns processing modules in order to specify that
processing is no longer needed and an answer should be returned to the sender
'''
pass
class SWAN_UnkownInetFamily(SWAN_DNS_Exception):
'''
An exception which indicate that the server was started with unkown inet_family value
'''
pass
class SWAN_SkipProcessing(SWAN_DNS_Exception):
'''
An exception which indicates that a module processing should be skipped.
'''
pass
class SWAN_ModuleConfigurationError(SWAN_DNS_Exception):
'''
An exception which indicates that a module configuration is invalid
'''
pass
class SWAN_ModuleLoadError(SWAN_DNS_Exception):
'''
An exception which indicate that there was a problem loading a module
'''
pass
class SWAN_NoSuchZoneError(SWAN_DNS_Exception):
'''
An exception which indicate that a dns server can not resolve a specific zone.
'''
pass
class SWAN_DropAnswer(SWAN_DNS_Exception):
'''
An exception which indicates to drop the response and not provide answers to the client
'''
pass
class SWAN_ConfigurationError(SWAN_DNS_Exception):
'''
An exception which indicates that loading the configuration of a server is not valid
'''
pass
| """
Python module to hold DNS processing exceptions
"""
class Swan_Dns_Exception(Exception):
"""
General SWAN DNS exception
"""
pass
class Swan_Stopprocessingrequest(SWAN_DNS_Exception):
"""
An exception which indicates to stop the processing of a dns request.
This shuld be thrown from a dns processing modules in order to specify that
processing is no longer needed and an answer should be returned to the sender
"""
pass
class Swan_Unkowninetfamily(SWAN_DNS_Exception):
"""
An exception which indicate that the server was started with unkown inet_family value
"""
pass
class Swan_Skipprocessing(SWAN_DNS_Exception):
"""
An exception which indicates that a module processing should be skipped.
"""
pass
class Swan_Moduleconfigurationerror(SWAN_DNS_Exception):
"""
An exception which indicates that a module configuration is invalid
"""
pass
class Swan_Moduleloaderror(SWAN_DNS_Exception):
"""
An exception which indicate that there was a problem loading a module
"""
pass
class Swan_Nosuchzoneerror(SWAN_DNS_Exception):
"""
An exception which indicate that a dns server can not resolve a specific zone.
"""
pass
class Swan_Dropanswer(SWAN_DNS_Exception):
"""
An exception which indicates to drop the response and not provide answers to the client
"""
pass
class Swan_Configurationerror(SWAN_DNS_Exception):
"""
An exception which indicates that loading the configuration of a server is not valid
"""
pass |
def insertion_sort(A):
n = len(A)
for i in range(1,n):
key = A[i]
j = i-1
while (j >= 0) and (A[j] > key):
A[j+1] = A[j]
j -= 1
A[j + 1] = key
return A
u = [1,2,3,4,5,6]
v = [6,5,4,3,2,1]
print(insertion_sort(u))
print(insertion_sort(v)) | def insertion_sort(A):
n = len(A)
for i in range(1, n):
key = A[i]
j = i - 1
while j >= 0 and A[j] > key:
A[j + 1] = A[j]
j -= 1
A[j + 1] = key
return A
u = [1, 2, 3, 4, 5, 6]
v = [6, 5, 4, 3, 2, 1]
print(insertion_sort(u))
print(insertion_sort(v)) |
prompt = "\nEnter cities you've visited"
prompt += "\nEnter quit when you're finished! "
cities = []
while True:
place = input(prompt)
if place == 'quit':
break
else:
print(f"I've always wanted to go to {place.title()}!!")
cities.append(prompt)
for city in cities:
print(city.title()) | prompt = "\nEnter cities you've visited"
prompt += "\nEnter quit when you're finished! "
cities = []
while True:
place = input(prompt)
if place == 'quit':
break
else:
print(f"I've always wanted to go to {place.title()}!!")
cities.append(prompt)
for city in cities:
print(city.title()) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.