content
stringlengths 7
1.05M
|
|---|
best_bpsp = float("inf")
n_feats = 64
scale = 3
resblocks = 3
K = 10
plot = ""
log_likelihood = True
collect_probs = False
|
def test():
# Test
assert("for index, area in enumerate(areas)" in __solution__ or "for index, area in enumerate( areas)" in __solution__ or "for index, area in enumerate(areas )" in __solution__ or "for index, area in enumerate( areas )" in __solution__
), "اجابة خاطئة: هناك خطأ في صناعة اللوب"
assert("'Room ' + str(index + 1) + ': ' + str(area)" in __solution__ or "'Room ' + str(index+1) + ': ' + str(area)" in __solution__ or "'Room ' + str( index + 1) + ': ' + str(area)" in __solution__ or "'Room ' + str( index + 1 ) + ': ' + str(area)" in __solution__
or "'Room ' + str(index+ 1) + ': ' + str(area)" in __solution__ or "'Room ' + str(index +1) + ': ' + str(area)" in __solution__ or "'Room ' + str( index+1 ) + ': ' + str(area)" in __solution__ or "'Room ' + str( index+ 1) + ': ' + str(area)" in __solution__
or "'Room ' + str( index +1) + ': ' + str(area)" in __solution__ or "'Room ' + str( index+1) + ': ' + str(area)" in __solution__ or "'Room ' + str(index+1 ) + ': ' + str(area)" in __solution__
or "'Room ' + str(index + 1) + ': ' + str( area)" in __solution__ or "'Room ' + str(index+1) + ': ' + str( area)" in __solution__ or "'Room ' + str( index + 1) + ': ' + str( area)" in __solution__ or "'Room ' + str( index + 1 ) + ': ' + str( area)" in __solution__
or "'Room ' + str(index+ 1) + ': ' + str( area)" in __solution__ or "'Room ' + str(index +1) + ': ' + str( area)" in __solution__ or "'Room ' + str( index+1 ) + ': ' + str( area)" in __solution__ or "'Room ' + str( index+ 1) + ': ' + str( area)" in __solution__
or "'Room ' + str( index +1) + ': ' + str( area)" in __solution__ or "'Room ' + str( index+1) + ': ' + str( area)" in __solution__ or "'Room ' + str(index+1 ) + ': ' + str( area)" in __solution__
or "'Room ' + str(index + 1) + ': ' + str(area )" in __solution__ or "'Room ' + str(index+1) + ': ' + str(area )" in __solution__ or "'Room ' + str( index + 1) + ': ' + str(area )" in __solution__ or "'Room ' + str( index + 1 ) + ': ' + str(area )" in __solution__
or "'Room ' + str(index+ 1) + ': ' + str(area )" in __solution__ or "'Room ' + str(index +1) + ': ' + str(area )" in __solution__ or "'Room ' + str( index+1 ) + ': ' + str(area )" in __solution__ or "'Room ' + str( index+ 1) + ': ' + str(area )" in __solution__
or "'Room ' + str( index +1) + ': ' + str(area )" in __solution__ or "'Room ' + str( index+1) + ': ' + str(area )" in __solution__ or "'Room ' + str(index+1 ) + ': ' + str(area )" in __solution__
or "'Room ' + str(index + 1 ) + ': ' + str(area )" in __solution__ or "'Room ' + str(index+1 ) + ': ' + str(area )" in __solution__ or "'Room ' + str( index + 1 ) + ': ' + str(area )" in __solution__
or "'Room ' + str(index+ 1 ) + ': ' + str(area )" in __solution__ or "'Room ' + str(index +1 ) + ': ' + str(area )" in __solution__ or "'Room ' + str( index+ 1 ) + ': ' + str(area )" in __solution__
or "'Room ' + str( index +1 ) + ': ' + str(area )" in __solution__ or "'Room ' + str( index+1 ) + ': ' + str(area )" in __solution__
or "'Room ' + str(index + 1 ) + ': ' + str(area)" in __solution__ or "'Room ' + str(index+1 ) + ': ' + str(area)" in __solution__ or "'Room ' + str( index + 1 ) + ': ' + str(area)" in __solution__
or "'Room ' + str(index+ 1 ) + ': ' + str(area)" in __solution__ or "'Room ' + str(index +1 ) + ': ' + str(area)" in __solution__ or "'Room ' + str( index+ 1 ) + ': ' + str(area)" in __solution__
or "'Room ' + str( index +1 ) + ': ' + str(area)" in __solution__ or "'Room ' + str( index+1 ) + ': ' + str(area)" in __solution__
or "'Room ' + str(index + 1 ) + ': ' + str( area)" in __solution__ or "'Room ' + str(index+1 ) + ': ' + str( area)" in __solution__ or "'Room ' + str( index + 1 ) + ': ' + str( area)" in __solution__
or "'Room ' + str(index+ 1 ) + ': ' + str( area)" in __solution__ or "'Room ' + str(index +1 ) + ': ' + str( area)" in __solution__ or "'Room ' + str( index+ 1 ) + ': ' + str( area)" in __solution__
or "'Room ' + str( index +1 ) + ': ' + str( area)" in __solution__ or "'Room ' + str( index+1 ) + ': ' + str( area)" in __solution__
), "اجابة خاطئة: هناك خطأ في امر الطباعه"
__msg__.good("اجابة صحيحة. احسنت")
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def reorderList(self, head):
"""
:type head: ListNode
:rtype: void Do not return anything, modify head in-place instead.
1->2->3->4
1->4->2->3
"""
if head == None:
return
stack = []
node = head
length = 0
while node != None:
length += 1
stack.append(node)
node = node.next
node = head
for _ in range(length//2 + 1):
n = stack.pop()
n.next = None
n.next = node.next
node.next = n
node = n.next
node.next = None
|
def countArrangement(n: int) -> int:
options = [[] * n for _ in range(n)]
for i in range(1, n + 1):
for j in range(1, i):
if i % j == 0:
options[i-1].append(j)
for j in range(i, n+1, i):
options[i-1].append(j)
options.sort(key=len)
taken = set()
def backtrack(i):
if i >= n:
return 1
total = 0
for option in [o for o in options[i] if o not in taken]:
taken.add(option)
total += backtrack(i+1)
taken.remove(option)
return total
return backtrack(0)
|
S = 'I want that Farm House to be in my name, comprende? Also, I want Chocolates.'
D = {}
#SS = S.split()
for item in S:
if item in D:
D[item] = D[item] + 1
else:
D[item] = 1
print(D)
|
class TestSessOverallResults:
def __init__(self):
self._recall = -1.
self._precision = -1.
self._f_measure = -1.
def __str__(self):
rez = '\nRecall : ' + str(self.recall)
rez += '\nPrecision : ' + str(self.precision)
rez += '\nF-measure : ' + str(self.f_measure)
rez += '\n\nThe overall result values are valid : ' \
+ str(self.is_valid())
return rez
##########################################################################
# precision
@property
def precision(self):
return self._precision
@precision.setter
def precision(
self,
value: float):
if not isinstance(value, float) or value < .0 or value > 100.0:
raise ValueError('Precision must be float and >= 0, <= 100.')
self._precision = value
##########################################################################
# recall
@property
def recall(self):
return self._recall
@recall.setter
def recall(
self,
value: float):
if not isinstance(value, float) or value < .0 or value > 100.0:
raise ValueError('Recall must be float and >= 0, <= 100.')
self._recall = value
##########################################################################
# f_measure
@property
def f_measure(self):
return self._f_measure
@f_measure.setter
def f_measure(
self,
value: float):
if not isinstance(value, float) or value < .0 or value > 100.0:
raise ValueError('F_measure must be float and >= 0, <= 100.')
self._f_measure = value
##########################################################################
# Public methods
def is_valid(self):
"""
:return: - True if valid.
- False otherwise.
"""
if not isinstance(self.recall, float) \
or not isinstance(self.f_measure, float) \
or not isinstance(self.precision, float):
return False
if self.recall < .0 or self.recall > 100.0 \
or self.f_measure < .0 or self.f_measure > 100.0 \
or self.precision < .0 or self.precision > 100.0:
return False
return True
##########################################################################
|
def dfs(node,parent):
for child in graph[node]:
if child!=parent:
dfs(child,node)
taken,nottaken=1,0
for neigh in graph[node]:
if neigh!=parent:
taken+=dp[neigh][0]
nottaken+=dp[neigh][1]
dp[node][1]=min(taken,nottaken)
dp[node][0]=nottaken
if __name__ == '__main__':
n=int(input())
dp=[[0 for j in range(2)] for i in range(n)]
graph=[[]for i in range(n)]
for i in range(n-1):
a,b=map(int,input().split())
a=a-1
b=b-1
graph[a].append(b)
graph[b].append(a)
dfs(0,-1)
print(dp)
|
TASK_URL = "http://empty-website.ctf.sicamp.ru:8080"
TITLE = "Пустой сайт?"
STATEMENT_TEMPLATE = f'''
Действительно ли на [этом]({TASK_URL}/{{0}}) сайте нет ничего полезного?
'''
def generate(context):
participant = context['participant']
token = tokens[participant.id % len(tokens)]
return TaskStatement(TITLE, STATEMENT_TEMPLATE.format(token))
tokens = ['JYXQy1aaW8a', '6Mx8ScjqDT1', 'iwqT9p3fk9M', '3P50kxuhT3Z', '1jQQOPRP6H7', 'wJUii7jqEd7', 'ZzbpWLSMeTS', 'Af1DrKb8EHc', '2FQ3KQHodip', 'bahsBje6xoj', '858SBV067AX', 'Q3xuPnFRvmQ', 'HBQy8PxIh5a', 'Z8YhgXjPR2M', 'KlaIXS6XiYT', 'NtA01niBRPO', 'HEKMYj08M8T', '9mtdnWOYo2r', 'FrtxKtJAFrX', 'Nv0gsE1Fg0D', 'SIz1gKoxFe2', 'xQxe6KvaygR', 'TYH4cyE4T0T', 'KuQKWXyTJBd', 'yFS50iWCHft', 'MXbWUmPH6RT', 'l9couPDiJIN', 'r2NyZoKVv7C', 'ZK3Zdn3Jegi', '5U8dQWS1Xj1', 'KV4TmV4GRr9', 'akalCLNwfv9', 'koAIaUJikKX', 'lnTFVzDsXrg', 'tKMitYN6UUv', 'Q4Bxv9mbTWi', 'e3zVTqOv7Aa', 'QGN776NKym5', 'yr5Bw2bgMyG', 'CyP2OW6slCG', 'dIXIO1Am63W', 'qoIBvXM6DCZ', 'Mtw8fJcN3Fm', 'KFOu1oGwGHm', 'g7ENHKbxipz', 'fYIpIEJKSg0', 'sDGgKenZeth', 'Ia1h3Mr7JXl', 'LSlm9Fgwyrf', 'fRnpnXmx7n0', 'LDv8SoknyKR', 'Dc6sYYLLIGd', 'TA1MXGEUgQw', 'hqoDvU0s72H', 'bZNFLFRJ3uL', 'KDUuI7B7p0x', 'DVisdvNqULV', 'XZncuTzXrtu', 'FcyPTmjdv28', 'vRd4tkAR49y', 'is7ldpp1yJF', 'KmDTxXVTu7G', 'mJ7bVli0wKt', 'P3lCZs402l2', 'GR1TFZ2n0Zv', 'ToIGufGe8WU', 'iS9alRiFBtk', 'by3NViB1NLq', '8Qq5udeeHtu', 's2Psk5fngQB', '4GU3sfn3wUn', 'l36mYTKattP', 'FSiqIS6wI2d', 'TFQa62Ra1Gy', 'mv6HSMR1VWy', 'mCupiAEHH4P', 'VJ2gVGv6h9k', 'WOdzzjsRm7t', 'RRJgM6ISouE', 'h6OngeT9tVW', '4n7KmYl0t08', '05QWZOC5IEx', 'TIdYIsULi2O', 'yy4fpgNgzL3', 'MCuFsoSfDBA', 'WqASJsL4wQW', 'uC8hdWMnYJp', 'szrCF5wrcoC', 'xeAs3elzHdB', 'qfhPa6lkaBT', 'vqZD1wVqj5U', '7cHXPmZk6r1', 'It9LanMAigH', 'X7gLYUSnOzW', '80pKaFAwvoZ', 'kb5zKbNyRag', 'Zm2GZUkfuKq', 'vu4fUsWcqxs', 'Cga427nt4Uh', 'ypaTBRdFtmG', '1DNit22cZCp', 'lBko0YFrbAV', 'C1qLMjDifOn', 'yUru5xep9Yo', 'XdtqnkccQDw', 'cqwZVmtgHUz', 'bqY6IGx3C3E', 'l1ZiWgy0ndf', 'hA8kulfqlGM', 'kdFFG6E0d6o', 'PBInOCZzNnt', 'viDHxtHUZg6', 'h41hpcCKuH0', 'wLE3Yaowm1F', 'lE7FNi9bTwO', 'iAq6wsM1ZVZ', 'vijQq3NVQoo', 'nehrYgtFu2T', 'h3xtaHVUVHe', '93uF6mauk9e', 'HDhmQ1gSfkj', 'lLTc53CvcxJ', '2kb9qI1riSg', 'bnB32cIpXcb', '0xVBnxNm5up', 'cq1xklFqEYO', 'drUpm4eEr8V', 'GBj3pIhg1vN', 'b150iodchxP', 'Cr2wvqyOU7m', 'p6Jq2Zao5UK', '4L7rXjk9FQy', '1qoAbGaTPBi', 'ijmLTvs3SnG', 'b5vVB5cwsbb', 'a2KiYdXSRLx', 'DnqFMubOoZY', 'N2ENocGsfxv', 'V2JZdHUlKgA', '33Hx4cGWBc7', 'Z6Ok8FBNQH3', 'xcNynugmnPY', 'JCpoIfrsC3v', 'iTwbQobC8o5', 'XKwirImHcNC', '0KMPBkbL70T', 'kYgxuUeEDmp', 'vc1lxSO765L', '3mEYDPMUqXT', 'kGG8pk5xLwn', '51XDb7HqH89', '9fqISjAVGpT', '1N1A8Bh3wJ7', 'oSpzHHVzD8o', 'B62NnFLMy9i', 'MGfrnzOotRZ', '2SAQoPq6bZE', '64vx5DWdYT7', 'itPTS3ayJPv', 'bQPVQcACplx', 'b8I7XFhm4zw', 'WUuBtOxyfLm', 'j6EVrDWPsvm', 'l3NgtPRsvPv', 'ds7zgnmYdZ7', 'QZJkekC3HOa', 'rBETFKSa1mH', 'lPwq0qMHROa', 'RuCe6Pim798', 'qUKsHPtPW4T', 'rvqty6vXmCU', 'kC7NwqiwQhj', 'cxDkVXXFCPr', '2YkqfeKcigl', 'WS9EQnfkIAt', 'BdIrEnA5NGC', 'PKlYR6mglNG', '2vm7oR11xWT', '6fHAtT3MyZz', 'v6hmWLxtdoU', 'HLnwIawgzMc', 'gGSgrIYsqqm', '7qyioDgHJmn', 'GiqiTKevEV3', 'Zt7AFBqRkJz', 'evtj9vVYTXi', 'L3sv1FRRTWx', 'tV08XSJwQTy', 'DCphK7pwtMO', 'yeFjqpizUtF', 'oBvweIFeHfE', 'M8V3Z1tWjX3', 'oCfrVAZDkr4', 'LlZuCPjpvqa', 'G7JsqHfTcIC', 'hJH3VtM9MSi', 'mPLnbWyymGl', '5CRYNdWlYNp', 'wSVHLWSkC2C', 'n3iPLlzoCrk']
|
# Application condition
waitFor.id == max_used_id and not cur_node_is_processed
# Reaction
wait_for_touch_sensor_code = "while (!ecrobot_get_touch_sensor(NXT_PORT_S" + waitFor.Port + ")) {}\n"
code.append([wait_for_touch_sensor_code])
id_to_pos_in_code[waitFor.id] = len(code) - 1
cur_node_is_processed = True
|
print('Event')
#-------------Lorem
for i in [5,4,5]:
print(i)
|
# 4-6. Odd Numbers: Use the third argument of the range() function to make a list
# of the odd numbers from 1 to 20. Use a for loop to print each number.
for i in range(1,21):
if i%2!=0:
print(i)
|
class ResponseObject():
def __init__(self, status=500, msg="Unknown Error", data=None):
self.status = status
self.msg = msg
if data:
self.data = data
else:
self.data = {}
self.response = { "status" : self.status, "msg" : self.msg, "data" : self.data }
|
MOEST = {
"professionOrOccupation": [{
"id": "https://d-nb.info/gnd/4040841-3",
"label": "Musiker"
}, {
"id": "https://d-nb.info/gnd/4012434-4",
"label": "Dirigent"
}],
"gender": [{
"id": "https://d-nb.info/standards/vocab/gnd/gender#male",
"label": "Männlich"
}],
"dateOfBirth": ["1960"],
"variantNameEntityForThePerson": [{
"forename": ["..."],
"surname": ["Welser-Möst"]
}, {
"forename": ["Franz Welser-"],
"surname": ["Möst"]
}],
"type": ["DifferentiatedPerson", "Person", "AuthorityResource"],
"@context": "http://lobid.org/gnd/context.jsonld",
"gndSubjectCategory": [{
"id": "https://d-nb.info/standards/vocab/gnd/gnd-sc#14.4p",
"label": "Personen zu Musik"
}],
"oldAuthorityNumber": ["(DE-588c)4762838-8", "(DE-101c)310289289", "(DE-588a)134599284", "(DE-588a)124584233"],
"geographicAreaCode": [{
"id": "https://d-nb.info/standards/vocab/gnd/geographic-area-code#XA-AT",
"label": "Österreich"
}],
"publication": ["Korngold, Erich Wolfgang: Symphony in F sharp. - 1996"],
"describedBy": {
"id": "https://d-nb.info/gnd/124584233/about",
"license": {
"id": "http://creativecommons.org/publicdomain/zero/1.0/",
"label": "http://creativecommons.org/publicdomain/zero/1.0/"
},
"dateModified": "2020-08-26T15:43:11.000"
},
"gndIdentifier": "124584233",
"id": "https://d-nb.info/gnd/124584233",
"preferredName": "Welser-Möst, Franz",
"wikipedia": [{
"id": "https://de.wikipedia.org/wiki/Franz_Welser-M%C3%B6st",
"label": "https://de.wikipedia.org/wiki/Franz_Welser-M%C3%B6st"
}],
"variantName": ["Möst, Franz Welser-", "Welser-Möst, ..."],
"preferredNameEntityForThePerson": {
"forename": ["Franz"],
"surname": ["Welser-Möst"]
},
"sameAs": [{
"collection": {
"abbr": "BNF",
"name": "Bibliothèque nationale de France",
"publisher": "Bibliothèque nationale de France",
"icon": "https://www.bnf.fr/themes/custom/bnfsi/favicon.ico",
"id": "http://www.wikidata.org/entity/Q19938912"
},
"id": "http://catalogue.bnf.fr/ark:/12148/cb139590339"
}, {
"id": "http://dbpedia.org/resource/Franz_Welser-M%C3%B6st",
"collection": {
"id": "http://www.wikidata.org/entity/QQ465",
"abbr": "DBpedia",
"publisher": "DBpedia",
"icon": "http://dbpedia.org/favicon.ico",
"name": "DBpedia"
}
}, {
"id": "http://id.loc.gov/rwo/agents/n88665176",
"collection": {
"id": "http://www.wikidata.org/entity/Q13219454",
"abbr": "LC",
"publisher": "Library of Congress",
"icon": "http://www.loc.gov/favicon.ico",
"name": "NACO Authority File"
}
}, {
"id": "http://isni.org/isni/0000000114904594",
"collection": {
"id": "http://isni.org"
}
}, {
"id": "http://viaf.org/viaf/39568598",
"collection": {
"id": "http://www.wikidata.org/entity/Q54919",
"abbr": "VIAF",
"publisher": "OCLC",
"icon": "http://viaf.org/viaf/images/viaf.ico",
"name": "Virtual International Authority File (VIAF)"
}
}, {
"id": "http://www.wikidata.org/entity/Q93820",
"collection": {
"id": "http://www.wikidata.org/entity/Q2013",
"abbr": "WIKIDATA",
"publisher": "Wikimedia Foundation Inc.",
"icon": "https://www.wikidata.org/static/favicon/wikidata.ico",
"name": "Wikidata"
}
}, {
"collection": {
"abbr": "DNB",
"name": "Gemeinsame Normdatei (GND) im Katalog der Deutschen Nationalbibliothek",
"publisher": "Deutsche Nationalbibliothek",
"icon": "https://www.dnb.de/SiteGlobals/Frontend/DNBWeb/Images/favicon.png?__blob=normal&v=4",
"id": "http://www.wikidata.org/entity/Q36578"
},
"id": "https://d-nb.info/gnd/124584233/about"
}, {
"collection": {
"abbr": "dewiki",
"name": "Wikipedia (Deutsch)",
"publisher": "Wikimedia Foundation Inc.",
"icon": "https://de.wikipedia.org/static/favicon/wikipedia.ico",
"id": "http://www.wikidata.org/entity/Q48183"
},
"id": "https://de.wikipedia.org/wiki/Franz_Welser-M%C3%B6st"
}, {
"collection": {
"abbr": "enwiki",
"name": "Wikipedia (English)",
"publisher": "Wikimedia Foundation Inc.",
"icon": "https://en.wikipedia.org/static/favicon/wikipedia.ico",
"id": "http://www.wikidata.org/entity/Q328"
},
"id": "https://en.wikipedia.org/wiki/Franz_Welser-M%C3%B6st"
}, {
"collection": {
"abbr": "DDB",
"name": "Deutsche Digitale Bibliothek",
"publisher": "Deutsche Digitale Bibliothek",
"icon": "https://www.deutsche-digitale-bibliothek.de/favicon.ico",
"id": "http://www.wikidata.org/entity/Q621630"
},
"id": "https://www.deutsche-digitale-bibliothek.de/person/gnd/124584233"
}],
"depiction": [{
"id": "http://commons.wikimedia.org/wiki/Special:FilePath/Franz%20Welser-Most%20conducting%20the%20New%20York%20Philharmonic%20-%2049616007592.jpg",
"url": "https://commons.wikimedia.org/wiki/File:Franz%20Welser-Most%20conducting%20the%20New%20York%20Philharmonic%20-%2049616007592.jpg?uselang=de",
"thumbnail": "https://commons.wikimedia.org/wiki/Special:FilePath/Franz%20Welser-Most%20conducting%20the%20New%20York%20Philharmonic%20-%2049616007592.jpg?width=270"
}]
}
OBAMA = {
'gnd': "https://d-nb.info/gnd/132522136",
'thumb': 'https://commons.wikimedia.org/wiki/Special:FilePath/President%20Barack%20Obama.jpg?width=270'
}
|
class Settings:
PROJECT_TITLE: str = "Book store"
PROJECT_VERSION: str = "0.1.1"
settings = Settings()
|
__all__ = [
'api_exception',
'update_webhook_400_response_exception',
'retrieve_webhook_400_response_exception',
'create_webhook_400_response_exception',
]
|
"""
An example of a procedural style FizzBuzz program.
For coding interviews, this is okay, but in general,
I do NOT recommend this approach to coding as it is
nearly impossible to test its correctness.
"""
for x in range(1, 101):
if x % 15 is 0:
print("FizzBuzz")
elif x % 3 is 0:
print("Fizz")
elif x % 5 is 0:
print("Buzz")
else:
print(x)
|
# simple calculator
# This function adds two numbers
def add(x, y):
return float(x) + float(y)
# This function subtracts two numbers
def subtract(x, y):
return float(x) - float(y)
# This function multiplies two numbers
def multiply(x, y):
return float(x) * float(y)
# This function divides two numbers
def divide(x, y):
try:
return float(x) / float(y)
except ValueError:
return 0
except ZeroDivisionError:
return 0
finally:
print("There was a problem with the division.")
def union(list_one: set, list_two: set):
list_one = set(list_one.split(","))
list_two = set(list_two.split(","))
return list_one.union(list_two)
def difference(list_one, list_two):
list_one = set(list_one.split(","))
list_two = set(list_two.split(","))
return list_one.difference(list_two)
def intersection(list_one, list_two):
list_one = set(list_one.split(","))
list_two = set(list_two.split(","))
return list_one.intersection(list_two)
def calculate_stats(list_one, list_two):
list_one = list_one.split(",")
list_two = list_two.split(",")
print(f"List 1 Min: {min(list_one)}")
print(f"List 1 Max: {max(list_one)}")
print(f"List 1 Length: {len(list_one)}")
print(f"List 2 Min: {min(list_two)}")
print(f"List 2 Max: {max(list_two)}")
print(f"List 2 Length: {len(list_two)}")
def sort_lists(list_one, list_two):
list_one = list_one.split(",")
list_two = list_two.split(",")
combined_list = list_one + list_two
combined_list.sort()
return combined_list
operation = input("Please enter Operation:")
first_param = input("Please enter first parameter:")
second_param = input("Please enter second parameter:")
if operation == 'Add':
print(first_param, "+", second_param, "=", add(first_param, second_param))
elif operation == 'Sub':
print(first_param, "-", second_param, "=", subtract(first_param, second_param))
elif operation == 'Mul':
print(first_param, "*", second_param, "=", multiply(first_param, second_param))
elif operation == 'Div':
print(first_param, "/", second_param, "=", divide(first_param, second_param))
elif operation.upper() == 'UNION':
print(f"Union: {union(first_param, second_param)}")
elif operation.upper() == 'INTERSECTION':
print(f"Intersection: {intersection(first_param, second_param)}")
elif operation.upper() == 'DIFFERENCE':
print(f"Difference: {difference(first_param, second_param)}")
elif operation.upper() == 'SORT':
print(sort_lists(first_param, second_param))
elif operation.upper() == 'STATS':
print(calculate_stats(first_param, second_param))
else:
print("Unknown operation.")
|
class Stop:
"""
Represents each one of the physical stops in a GTFS dataset (from https://developers.google.com/transit/gtfs/reference/)
Fields
______
* **id** `(stop_id)` **Required** - The stop_id field contains an ID that uniquely identifies a stop, station, or station entrance. Multiple routes may use the same stop. The stop_id is used by systems as an internal identifier of this record (e.g., primary key in database), and therefore the stop_id must be dataset unique.
* **code** `(stop_code)` **Optional** - The stop_code field contains short text or a number that uniquely identifies the stop for passengers. Stop codes are often used in phone-based transit information systems or printed on stop signage to make it easier for riders to get a stop schedule or real-time arrival information for a particular stop. The stop_code field contains short text or a number that uniquely identifies the stop for passengers. The stop_code can be the same as stop_id if it is passenger-facing. This field should be left blank for stops without a code presented to passengers.
* **name** `(stop_name)` **Required** - The stop_name field contains the name of a stop, station, or station entrance. Please use a name that people will understand in the local and tourist vernacular.
* **desc** `(stop_desc)` **Optional** - The stop_desc field contains a description of a stop. Please provide useful, quality information. Do not simply duplicate the name of the stop.
* **lat** `(stop_lat)` **Required** - The stop_lat field contains the latitude of a stop, station, or station entrance. The field value must be a valid WGS 84 latitude.
* **lon** `(stop_lon)` **Required** - The stop_lon field contains the longitude of a stop, station, or station entrance. The field value must be a valid WGS 84 longitude value from -180 to 180.
* **zone_id** `(zone_id)` **Optional** - The zone_id field defines the fare zone for a stop ID. Zone IDs are required if you want to provide fare information using fare_rules.txt. If this stop ID represents a station, the zone ID is ignored.
* **url** `(stop_url)` **Optional** - The stop_url field contains the URL of a web page about a particular stop. This should be different from the agency_url and the route_url fields. The value must be a fully qualified URL that includes http:// or https://, and any special characters in the URL must be correctly escaped. See http://www.w3.org/Addressing/URL/4_URI_Recommentations.html for a description of how to create fully qualified URL values.
* **location_type** `(location_type)` **Optional** - The location_type field identifies whether this stop ID represents a stop, station, or station entrance. If no location type is specified, or the location_type is blank, stop IDs are treated as stops. Stations may have different properties from stops when they are represented on a map or used in trip planning. The location type field can have the following values:
- 0 or blank - Stop. A location where passengers board or disembark from a transit vehicle.
- 1 - Station. A physical structure or area that contains one or more stop.
- 2 - Station Entrance/Exit. A location where passengers can enter or exit a station from the street. The stop entry must also specify a parent_station value referencing the stop ID of the parent station for the entrance.
* **parent_station** `(parent_station)` **Optional** - For stops that are physically located inside stations, the parent_station field identifies the station associated with the stop. To use this field, stops.txt must also contain a row where this stop ID is assigned location type=1.
This stop ID represents... This entry's location type... This entry's parent_station field contains...
A stop located inside a station. 0 or blank The stop ID of the station where this stop is located. The stop referenced by parent_station must have location_type=1.
A stop located outside a station. 0 or blank A blank value. The parent_station field doesn't apply to this stop.
A station. 1 A blank value. Stations can't contain other stations.
* **timezone** `(stop_timezone)` **Optional** - The stop_timezone field contains the timezone in which this stop, station, or station entrance is located. Please refer to Wikipedia List of Timezones for a list of valid values. If omitted, the stop should be assumed to be located in the timezone specified by agency_timezone in agency.txt. When a stop has a parent station, the stop is considered to be in the timezone specified by the parent station's stop_timezone value. If the parent has no stop_timezone value, the stops that belong to that station are assumed to be in the timezone specified by agency_timezone, even if the stops have their own stop_timezone values. In other words, if a given stop has a parent_station value, any stop_timezone value specified for that stop must be ignored. Even if stop_timezone values are provided in stops.txt, the times in stop_times.txt should continue to be specified as time since midnight in the timezone specified by agency_timezone in agency.txt. This ensures that the time values in a trip always increase over the course of a trip, regardless of which timezones the trip crosses.
* **wheelchair_boarding** `(wheelchair_boarding)` **Optional** - The wheelchair_boarding field identifies whether wheelchair boardings are possible from the specified stop, station, or station entrance. The field can have the following values:
- 0 (or empty) - indicates that there is no accessibility information for the stop
- 1 - indicates that at least some vehicles at this stop can be boarded by a rider in a wheelchair
- 2 - wheelchair boarding is not possible at this stop
When a stop is part of a larger station complex, as indicated by a stop with a parent_station value, the stop's wheelchair_boarding field has the following additional semantics:
- 0 (or empty) - the stop will inherit its wheelchair_boarding value from the parent station, if specified in the parent
- 1 - there exists some accessible path from outside the station to the specific stop / platform
- 2 - there exists no accessible path from outside the station to the specific stop / platform
For station entrances, the wheelchair_boarding field has the following additional semantics:
- 0 (or empty) - the station entrance will inherit its wheelchair_boarding value from the parent station, if specified in the parent
- 1 - the station entrance is wheelchair accessible (e.g. an elevator is available to platforms if they are not at-grade)
- 2 - there exists no accessible path from the entrance to station platforms
"""
def __init__(self):
"""
Initializes the class with members corresponding to all fields in the GTFS specification. See Stop class
documentation
"""
self.id = None
self.code = ""
self.name = None
self.desc = ""
self.lat = None
self.lon = None
self.zone_id = None
self.url = None
self.location_type = 0
self.parent_station = None
self.timezone = None
self.wheelchair_boarding = 0
|
DEFAULT_MOD = 10 ** 9 + 7
def mod_permutation(n, k, mod=DEFAULT_MOD):
if k >= mod:
return 0
ret = 1
for i in range(n, n - k, -1):
ret = (ret * i) % mod
return ret
def mod_factorial(n, mod=DEFAULT_MOD):
if n >= mod:
return 0
else:
return mod_permutation(n, n, mod)
def mod_combination(n, k, mod=DEFAULT_MOD):
k = min(k, n - k)
mod_power = 0
numerator = 1
denominator = 1
for i in range(n, n - k, -1):
while i % mod == 0:
i //= mod
mod_power += 1
numerator = (numerator * i) % mod
for i in range(k, 0, -1):
while i % mod == 0:
i //= mod
mod_power -= 1
denominator = (denominator * i) % mod
if mod_power > 0:
return 0
else:
return (numerator * pow(denominator, mod - 2, mod)) % mod
|
# -*- coding: utf-8 -*-
n = int(input("Enter one number: "))
if n < 0:
print("please enter a positive ")
else:
while n != 1:
print(int(n))
if n % 2 != 0:
n = 3 * n + 1
else:
n /= 2
print("result ", int(n))
|
"""
Modified from https://github.com/facebookresearch/fvcore
"""
__all__ = ["Registry"]
class Registry:
"""A registry providing name -> object mapping, to support
custom modules.
To create a registry (e.g. a backbone registry):
.. code-block:: python
BACKBONE_REGISTRY = Registry('BACKBONE')
To register an object:
.. code-block:: python
@BACKBONE_REGISTRY.register()
class MyBackbone(nn.Module):
...
Or:
.. code-block:: python
BACKBONE_REGISTRY.register(MyBackbone)
"""
def __init__(self, name):
self._name = name
self._obj_map = dict()
def _do_register(self, name, obj, force=False):
if name in self._obj_map and not force:
raise KeyError(
'An object named "{}" was already '
'registered in "{}" registry'.format(name, self._name)
)
self._obj_map[name] = obj
def register(self, obj=None, force=False):
if obj is None:
# Used as a decorator
def wrapper(fn_or_class):
name = fn_or_class.__name__
self._do_register(name, fn_or_class, force=force)
return fn_or_class
return wrapper
# Used as a function call
name = obj.__name__
self._do_register(name, obj, force=force)
def get(self, name):
if name not in self._obj_map:
raise KeyError(
'Object name "{}" does not exist '
'in "{}" registry'.format(name, self._name)
)
return self._obj_map[name]
def registered_names(self):
return list(self._obj_map.keys())
|
"""The protocol_*.py files in this package are based on PySerial's file
test/handlers/protocol_test.py, modified for different behaviors. The call
serial.serial_for_url("XYZ://") looks for a class Serial in a file named protocol_XYZ.py in this
package (i.e. directory).
This package init file will be loaded as part of searching for a protocol handler in this package.
It is important to use root-relative imports (e.g. relative to the POCS directory) so that all
modules and packages are loaded only once.
"""
|
def create_authority_hints(default_hints, trust_chains):
"""
:param default_hints: The authority hints provided to the entity at startup
:param trust_chains: A list of TrustChain instances
:return: An authority_hints dictionary
"""
intermediates = {trust_chain.iss_path[1] for trust_chain in trust_chains if
len(trust_chain.iss_path)}
return list(set(default_hints).intersection(intermediates))
|
def get_special_people(affiliation):
# print(affiliation)
'''
人を抽出
{
name:名前,
count:登場回数
}
'''
people_list=[]
for value in affiliation.values():#辞書型なのでvalues必要
if(value['form']=="Person"):
# print(value['lemma'])
people_list.append(value['lemma'])
# print(people_list)
'''
かぶり除去
'''
#名前と登場回数を辞書型で保存
name_counter={}
for people in people_list:
try:
name_counter[people]+=1
except:
name_counter[people]=1
#それを登録する形に改変
special_people_raw=[]
for key,value in name_counter.items():
special_people_raw.append({
'name':key,
'count':value
})
# print(special_people_raw)
#多い順に並び替え
special_people=sorted(special_people_raw, key=lambda x:x['count'],reverse=True)
return special_people
|
{"query": {"function_score": {"query": {
"bool": {"should": [{"multi_match": {"query": "python", "fields": ["nickname^2", "username^4"]}}],
"filter": {"range": {"follower_count": {"gte": "50000", "lte": "100000"}}}}},
"field_value_factor": {"field": "follower_count", "modifier": "log1p", "missing": 0,
"factor": 1}, "boost_mode": "avg"}},
"highlight": {"fields": {"nickname": {}, "description": {}}}, "size": 10, "from": 0}
{
"query": {
"function_score": {
"query": {
"bool": {"must": [{
"multi_match": {
"query": "python",
"fields": ["nickname^2", "username^4"]
}}],
"filter": {"range": {
"follower_count": {
"gte": "50000",
"lte": "100000"
}
}}}
},
"field_value_factor": {
"field": "follower_count",
"modifier": "log1p",
"missing": 0,
"factor": 1
},
"boost_mode": "avg"
}
},
"highlight": {
"fields": {
"nickname": {},
"description": {}
}
},
"size":10,
"from": 0
}
|
"""Crie um algoritmo que multiplique dois valores aleatórios entre 1 e 50. Você deverá usar
condicionais e funções nesse processo."""
def multiplicacao(valor_1,valor_2):
multiplica = valor_1*valor_2
print(f"\nA multiplicação dos dois valores é: {multiplica}!""\n")
valor1 = int(input("Digite um valor de 1 a 50? "))
valor2 = int(input("Digite um valor de 1 a 50? "))
if 0< valor1 < 51 and 0 < valor2 < 51:
multiplicacao(valor1,valor2)
else:
print("Você precisa digitar valores entre 1 e 50!")
valor1 = int(input("Digite um valor de 1 a 50? "))
valor2 = int(input("Digite um valor de 1 a 50? "))
multiplicacao(valor1,valor2)
|
def restart():
prompt = input("Type [y] to play again or any other key to quit. ")
if prompt.lower() == "y":
return True
else:
return False
|
"Faça um script que informe se uma pessoa está pronta para dirigir um carro."
"Uma pessoa só pode dirigir se for maior de idade e se tiver carteira de motorista."
"Dica: carteira pode ser variável lógica."
# IDADE
idade = int(input("Digite sua idade: "))
if idade >=18:
print("Você tem a idade mínima para dirigir")
# HABILITAÇÃO
cnh = str(input("Você possui CNH-B, digite S [SIM] ou N [NÃO]: ")).upper()
if cnh == "S":
print("Você é habilitado!")
else:
print("Você não está apto à dirigir, espere atingir os requesitos mínimos")
else:
print("Você não tem idade para dirigir")
|
# Exercício 081 - Extraindo Dados de uma Lista
valores = []
while True:
valores.append(int(input('Digite um número: ')))
if input('Quer continuar? [S/N] ') not in 'sS': break
print(f'Você digitou {len(valores)} elementos.')
print(f'Os valores em ordem decrescente são {sorted(valores, reverse=True)}')
print(f'O valor 5 {"não " if 5 not in valores else ""}faz parte da lista!')
|
#!/usr/bin/env python3
try:
checksum = 0
while True:
numbers = [int(n) for n in input().split()]
checksum += max(numbers) - min(numbers)
except EOFError:
print(checksum)
|
TOKEN = "1807234388:AAHbvU9Crr6BURnLMwT8m4hrneGgxGvbm8A"
pochta_api_login = "YadBdduZvCLDvZ"
pochta_api_password = "oAD8k3MpRHq5"
|
def escape(text):
return text.replace('\\', '\\\\').replace('"', '\\"')
opposites = {
'north': 'south',
'east': 'west',
'south': 'north',
'west': 'east'
}
class Rel:
def __init__(self, offset=0):
self.offset = offset
def __add__(self, other):
return Rel(self.offset + other)
def __sub__(self, other):
return Rel(self.offset - other)
def __str__(self):
if self.offset == 0:
return '~'
return '~%d' % self.offset
class CommandPlacer:
def __init__(self, origin):
self.x, self.y, self.z = origin
self.commands = []
self.block_positions = []
def place(self, line):
orig_x, orig_z = self.x, self.z
branch_len = 0
for main, branch in line:
setblock = self.create_setblock(main)
self.commands.append(setblock)
this_branch_len = 0
for additional in branch:
self.x += 1
setblock = self.create_setblock(additional, True)
self.commands.append(setblock)
this_branch_len += 1
self.x = orig_x
branch_len = max(branch_len, this_branch_len)
self.z += 1
if branch_len > 0: branch_len += 1 # add space after branch
self.x = orig_x + 1 + branch_len
self.z = orig_z
def output(self):
return self.commands
def cleanup(self):
destroyblocks = []
for pos in self.block_positions:
destroyblocks.append('setblock %s %s %s air' % pos)
return destroyblocks
def create_setblock(self, block, rotate=False):
block, command = block
self.block_positions.append((self.x, self.y, self.z))
if block.mode == 'CHAIN':
block_type = 'chain_command_block'
elif block.mode == 'REPEAT':
block_type = 'repeating_command_block'
else:
block_type = 'command_block'
state = {}
if block.cond:
state['conditional'] = 'true'
direction = 'south'
if rotate:
direction = 'east'
if block.opposite:
direction = opposites[direction]
state['facing'] = direction
state_str = '[' + ','.join([k+'='+v for k,v in state.items()]) + ']'
data = ('{TrackOutput:0b,auto:%db,Command:"%s",' \
+ 'UpdateLastExecution:%db}') % (
1 if block.auto else 0,
escape(command),
1 if block.single_use else 0)
block = block_type + state_str + data
return 'setblock %s %s %s %s replace' % (
self.x, self.y, self.z, block)
|
# /General
# api: Allows return the results in json.
# db_name_f: Name of data base file.
api_return = True
db_name_f = 'data.db'
# /APIs
# Enables or disables the API.
situacaoIntelx = False
situacaoHaveIPwned = False
situacaoScylla = True
# /Notification E-mail account
# id_f3: E-mail.
# id_f4: Password.
id_f3 = 'EMAIL'
id_f4 = 'PASS'
|
#Write a Python program to print without newline or space.
print("The Lord is good.", end="")
print("All the time")
|
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
length = len(nums)
hashmap = {}
for i in range(length):
if target - nums[i] in hashmap:
return [hashmap[target-nums[i]], i]
else:
hashmap[nums[i]] = i
return []
|
#!/usr/bin/env python
"""Tools to updates list of data."""
def update_month_index(entries, updated_entry):
"""Update the Monthly index of blog posts.
Take a dictionaries and adjust its values
by inserting at the right place.
"""
new_uri = list(updated_entry)[0]
try:
entries[new_uri]['updated'] = updated_entry['updated']
except Exception:
entries.update(updated_entry)
finally:
return entries
|
#!/usr/bin/env python3
# https://www.hackerrank.com/challenges/py-if-else
if __name__ == '__main__':
n = int(input())
r = n % 2
if r == 0:
if n > 20 or (n >= 2 and n <= 5):
print ("Not Weird")
elif n >= 6 and n <= 20:
print ("Weird")
else:
print ("Weird")
|
### Written by Jason-Silla ###
### https://github.com/Jason-Silla/JohnAI ###
class Fraction:
numerator = 1
denominatior = 1
def __init__(self, *info):
if len(info) == 2:
self.numerator = numerator
self.denominator = denominator
elif len(info) == 0:
pass
else:
raise ValueError
def simplify(self):
num = 2
while True:
if self.numerator % num == 0 and self.denominator % num == 0:
self.numerator = self.numerator/num
self.denominator = self.denominator/num
elif(not(num > self.numerator or num > self.denominator)):
num += 1
else:
break
del(num)
def __add__(self, f):
rf, nf1, nf2 = Fraction()
a = Fraction(self.denominator, self.denominator)
b = Fraction(f.denominator, f.denominator)
nf1.numerator = self.numerator * b.numerator
nf1.denominator = self.denominator * b.denominator
nf2.numerator = f.numerator * a.numerator
nf2.denominator = f.denominator * a.denominator
rf.numerator = nf1.numerator + nf2.numerator
rf.denominator = nf1.denominator
rf.simplify()
del(nf1, nf2, a, b)
return rf
def __sub__(self, f):
rf, nf1, nf2 = Fraction()
a = Fraction(self.denominator, self.denominator)
b = Fraction(f.denominator, f.denominator)
nf1.numerator = self.numerator * b.numerator
nf1.denominator = self.denominator * b.denominator
nf2.numerator = f.numerator * a.numerator
nf2.denominator = f.denominator * a.denominator
rf.numerator = nf1.numerator - nf2.numerator
rf.denominator = nf1.denominator
del(nf1, nf2, a, b)
rf.simplify()
return rf
def __mul__(self, f):
newf = Fraction()
newf.numerator = self.numerator * f.numerator
newf.denominator = self.denominator * f.denominator;
newf.simplify();
return newf
def __truediv__(self, f):
newf = Fraction()
newf.numerator = self.numerator * f.denominator
newf.denominator = self.denominator * f.numerator
newf.simplify()
return newf
def __str__(self):
if self.denominator == 1:
return self.numerator
elif self.denominator == 0:
return 0
else:
return f"{self.numerator}/{self.denominator}"
def toDouble(self):
return self.numerator/self.denominator
def __mod__(self, f):
newf = Fraction()
newf.numerator = self.numerator * f.denominator
newf.denominator = self.denominator * f.numerator
whole = newf.numerator/newf.denominator
remainderN = whole * newf.denominator
remainder = Fraction(remainderN, newf.denominator)
remainder = newf - remainder
remainder.simplify()
del(newf, whole, remainderN)
return remainder
class SlopeIntForm:
def init(self, y, m, x, b):
self.y = y
self.m = m
self.x = x
self.b = b
def init(self, m, b):
self.m = m
self.b = b
def slopeIntFromPoints(a, b):
slope = Fraction()
slope.numerator((b.x - a.x).toDouble())
slope.denominatior((b.y - a.y).toDouble())
be = Fraction()
equation = SlopeIntForm(slope, be)
return equation
|
def resolve():
n, m, l = map(int, input().split())
a = [list(map(int, input().split())) for i in range(n)]
b = [list(map(int, input().split())) for i in range(m)]
c = []
for i in range(n):
tmp = []
for j in range(l):
x = 0
for k in range(m):
x += a[i][k] * b[k][j]
tmp.append(x)
c.append(tmp)
for line in c:
print(*line)
|
# -*- coding: utf-8 -*-
'''
Sort and save unique values to a new file. Ignore rows that do not have a value.
Sample values in a file might look like this
02/02/2018 23:15:12, 1234567889
02/02/2018 23:15:13, 1234568889
02/02/2018 23:15:18, 1234568889
02/02/2018 23:15:19,
02/02/2018 23:15:25, 1234545889
02/02/2018 23:17:12, 1234512889
02/02/2018 23:18:10,
02/02/2018 23:19:12, 123456889
'''
FILE_TO_READ = "./sample_files/unique_and_sorted.csv" #replace with your file name
FILE_TO_WRITE = "./sample_files/file_to_write.csv"
def unique_and_sorted(FILE_TO_READ, FILE_TO_WRITE):
count_list =[]
with open(FILE_TO_READ,'r') as fread, open(FILE_TO_WRITE,'w') as fwrite:
for line in fread: #split the row and add the values into the list
str = line.split(',')
if (str[1] != "\n"):
count_list.append(int(str[1]))
count_list = list(set(count_list)) #save the value into a new list and sort it
count_list.sort()
for item in count_list:
fwrite.write('%s\n' %item)
fread.close()
fwrite.close()
def main():
unique_and_sorted(FILE_TO_READ, FILE_TO_WRITE)
if __name__ == "__main__":
main()
|
__author__ = 'Tony Beltramelli - www.tonybeltramelli.com'
CONTEXT_LENGTH = 64
IMAGE_SIZE = 256
BATCH_SIZE = 64
EPOCHS = 10
STEPS_PER_EPOCH = 72000
IMG_DATA_TYPE = ".jpg"
|
class Solution:
def fizzBuzz(self, n: int) -> List[str]:
l = list()
for x in range(1, n + 1):
if x % 3 == 0 and x % 5 == 0:
l.append('FizzBuzz')
elif x % 3 == 0:
l.append('Fizz')
elif x % 5 == 0:
l.append('Buzz')
else:
l.append(str(x))
return l
|
class Label:
def __init__(self, name):
self.name = name
class LabelAccess:
def __init__(self, name, lower_byte):
self.name = name
self.lower_byte = lower_byte
def high(name):
return LabelAccess(name, False)
def low(name):
return LabelAccess(name, True)
|
widths = {'Alpha': 722,
'Beta': 667,
'Chi': 722,
'Delta': 612,
'Epsilon': 611,
'Eta': 722,
'Euro': 750,
'Gamma': 603,
'Ifraktur': 686,
'Iota': 333,
'Kappa': 722,
'Lambda': 686,
'Mu': 889,
'Nu': 722,
'Omega': 768,
'Omicron': 722,
'Phi': 763,
'Pi': 768,
'Psi': 795,
'Rfraktur': 795,
'Rho': 556,
'Sigma': 592,
'Tau': 611,
'Theta': 741,
'Upsilon': 690,
'Upsilon1': 620,
'Xi': 645,
'Zeta': 611,
'aleph': 823,
'alpha': 631,
'ampersand': 778,
'angle': 768,
'angleleft': 329,
'angleright': 329,
'apple': 790,
'approxequal': 549,
'arrowboth': 1042,
'arrowdblboth': 1042,
'arrowdbldown': 603,
'arrowdblleft': 987,
'arrowdblright': 987,
'arrowdblup': 603,
'arrowdown': 603,
'arrowhorizex': 1000,
'arrowleft': 987,
'arrowright': 987,
'arrowup': 603,
'arrowvertex': 603,
'asteriskmath': 500,
'bar': 200,
'beta': 549,
'braceex': 494,
'braceleft': 480,
'braceleftbt': 494,
'braceleftmid': 494,
'bracelefttp': 494,
'braceright': 480,
'bracerightbt': 494,
'bracerightmid': 494,
'bracerighttp': 494,
'bracketleft': 333,
'bracketleftbt': 384,
'bracketleftex': 384,
'bracketlefttp': 384,
'bracketright': 333,
'bracketrightbt': 384,
'bracketrightex': 384,
'bracketrighttp': 384,
'bullet': 460,
'carriagereturn': 658,
'chi': 549,
'circlemultiply': 768,
'circleplus': 768,
'club': 753,
'colon': 278,
'comma': 250,
'congruent': 549,
'copyrightsans': 790,
'copyrightserif': 790,
'degree': 400,
'delta': 494,
'diamond': 753,
'divide': 549,
'dotmath': 250,
'eight': 500,
'element': 713,
'ellipsis': 1000,
'emptyset': 823,
'epsilon': 439,
'equal': 549,
'equivalence': 549,
'eta': 603,
'exclam': 333,
'existential': 549,
'five': 500,
'florin': 500,
'four': 500,
'fraction': 167,
'gamma': 411,
'gradient': 713,
'greater': 549,
'greaterequal': 549,
'heart': 753,
'infinity': 713,
'integral': 274,
'integralbt': 686,
'integralex': 686,
'integraltp': 686,
'intersection': 768,
'iota': 329,
'kappa': 549,
'lambda': 549,
'less': 549,
'lessequal': 549,
'logicaland': 603,
'logicalnot': 713,
'logicalor': 603,
'lozenge': 494,
'minus': 549,
'minute': 247,
'mu': 576,
'multiply': 549,
'nine': 500,
'notelement': 713,
'notequal': 549,
'notsubset': 713,
'nu': 521,
'numbersign': 500,
'omega': 686,
'omega1': 713,
'omicron': 549,
'one': 500,
'parenleft': 333,
'parenleftbt': 384,
'parenleftex': 384,
'parenlefttp': 384,
'parenright': 333,
'parenrightbt': 384,
'parenrightex': 384,
'parenrighttp': 384,
'partialdiff': 494,
'percent': 833,
'period': 250,
'perpendicular': 658,
'phi': 521,
'phi1': 603,
'pi': 549,
'plus': 549,
'plusminus': 549,
'product': 823,
'propersubset': 713,
'propersuperset': 713,
'proportional': 713,
'psi': 686,
'question': 444,
'radical': 549,
'radicalex': 500,
'reflexsubset': 713,
'reflexsuperset': 713,
'registersans': 790,
'registerserif': 790,
'rho': 549,
'second': 411,
'semicolon': 278,
'seven': 500,
'sigma': 603,
'sigma1': 439,
'similar': 549,
'six': 500,
'slash': 278,
'space': 250,
'spade': 753,
'suchthat': 439,
'summation': 713,
'tau': 439,
'therefore': 863,
'theta': 521,
'theta1': 631,
'three': 500,
'trademarksans': 786,
'trademarkserif': 890,
'two': 500,
'underscore': 500,
'union': 768,
'universal': 713,
'upsilon': 576,
'weierstrass': 987,
'xi': 493,
'zero': 500,
'zeta': 494}
|
def dfNoHdr(df):
# INPUT: df with a header
# OUTPUT: dfNH without a header
dict={}
for column in df.columns:
dict[column] = df.columns.get_loc(column)
df.rename(columns = dict, inplace = True)
return df
|
# Write a python function which accepts a linked list of whole numbers,
# moves the last element of the linked list to front and returns the linked list.
# Sample Input Expected Output
# 9->3->56->6->2->7->4 4->9->3->56->6->2->7
#DSA-Prac-1
class Node:
def __init__(self, data):
self.__data = data
self.__next = None
def get_data(self):
return self.__data
def set_data(self, data):
self.__data = data
def get_next(self):
return self.__next
def set_next(self, next_node):
self.__next = next_node
class LinkedList:
def __init__(self):
self.__head = None
self.__tail = None
def get_head(self):
return self.__head
def get_tail(self):
return self.__tail
def add(self, data):
new_node = Node(data)
if(self.__head is None):
self.__head = self.__tail = new_node
else:
self.__tail.set_next(new_node)
self.__tail = new_node
def insert(self, data, data_before):
new_node = Node(data)
if(data_before == None):
new_node.set_next(self.__head)
self.__head = new_node
if(new_node.get_next() == None):
self.__tail = new_node
else:
node_before = self.find_node(data_before)
if(node_before is not None):
new_node.set_next(node_before.get_next())
node_before.set_next(new_node)
if(new_node.get_next() is None):
self.__tail = new_node
else:
print(data_before, "is not present in the Linked list")
def display(self):
temp = self.__head
while(temp is not None):
print(temp.get_data())
temp = temp.get_next()
def find_node(self, data):
temp = self.__head
while(temp is not None):
if(temp.get_data() == data):
return temp
temp = temp.get_next()
return None
def delete(self, data):
node = self.find_node(data)
if(node is not None):
if(node == self.__head):
if(self.__head == self.__tail):
self.__tail = None
self.__head = node.get_next()
else:
temp = self.__head
while(temp is not None):
if(temp.get_next() == node):
temp.set_next(node.get_next())
if(node == self.__tail):
self.__tail = temp
node.set_next(None)
break
temp = temp.get_next()
else:
print(data, "is not present in Linked list")
#You can use the below __str__() to print the elements of the DS object while debugging
def __str__(self):
temp = self.__head
msg = []
while(temp is not None):
msg.append(str(temp.get_data()))
temp = temp.get_next()
msg = " ".join(msg)
msg = "Linkedlist data(Head to Tail): " + msg
return msg
def change_order(input_list):
#start writing your code here
last = input_list.get_tail().get_data()
input_list.delete(last)
input_list.insert(last,None)
return input_list
input_list = LinkedList()
input_list.add(9)
input_list.add(3)
input_list.add(56)
input_list.add(6)
input_list.add(2)
input_list.add(7)
input_list.add(4)
result = change_order(input_list)
result.display()
|
NEW_AIRTABLE_REQUEST_JSON = {
"Skillsets": "C / C++,Web (Frontend Development),Mobile (iOS),Java,DevOps",
"Slack User": "ic4rusX",
"Details": " Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin blandit porttitor nulla eu consectetur."
" Maecenas consectetur erat at odio iaculis, ac auctor nunc imperdiet. Sed neque quam, cursus eget nunc"
" et, viverra gravida justo. Vivamus pharetra magna vel leo rutrum imperdiet. Vestibulum tempus non leo"
" vestibulum iaculis. Ut nec lacinia elit, viverra vulputate tortor. Phasellus eu luctus odio."
" Vestibulum accumsan est sed metus dignissim, quis sollicitudin diam posuere. Duis ullamcorper"
" ante vel vulputate semper. Aliquam viverra, lorem sit amet tristique consequat, velit tortor"
" lacinia sem, sed placerat nisi sapien rutrum lacus. Mauris vehicula purus mi. Integer feugiat "
"consectetur elit, ac interdum turpis condimentum ut. Pellentesque sollicitudin est nunc, non accumsan"
" metus laoreet nec.\n\nPellentesque rhoncus iaculis felis. Donec efficitur bibendum arcu, sed varius "
"orci bibendum nec. Morbi laoreet nunc nec urna pharetra viverra. Nulla vel magna ex. Fusce semper nisl"
" commodo nulla tempus, nec aliquam libero bibendum. Proin eleifend odio nec augue facilisis, nec"
" faucibus tortor venenatis. Pellentesque pulvinar erat nec justo bibendum blandit.\n\nDonec ut libero"
" a ex posuere euismod. Cras vitae turpis sit amet magna egestas vehicula. Maecenas interdum commodo"
" quam, vitae ornare mauris viverra vel. In vestibulum enim pulvinar, pharetra augue a, tempor felis."
" Proin vel cursus tellus. Quisque eget mauris neque. Cras eu pharetra leo. Nam nulla tortor, imperdiet"
" sit amet dictum eu, mollis id ante. ",
"Service": "recry8s14qGJhHeOC",
"Email": "ic4rusX@gmail.com",
"Record": "someRecId'"
}
USER_ID_FROM_EMAIL_RESPONSE = {'ok': True, 'user': {'id': 'AGF2354'}}
SLACK_USER_ID = "<@AGF2354>"
TEXT_DICT_MATCHES = f"Mentors matching all or some of the requested skillsets: {SLACK_USER_ID}"
TEXT_DICT_MESSAGE = f"User {SLACK_USER_ID} has requested a mentor for General Guidance - Slack Chat Given Skillset(s): C / " \
"C++,Web (Frontend Development),Mobile (iOS),Java,DevOps View requests: " \
"<https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable> Please reply to the channel " \
"if you'd like to be assigned to this request."
TEXT_DICT_DETAILS = 'Additional details: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin blandit ' \
'porttitor nulla eu consectetur. Maecenas consectetur erat at odio iaculis, ac auctor nunc ' \
'imperdiet. Sed neque quam, cursus eget nunc et, viverra gravida justo. Vivamus pharetra magna ' \
'vel leo rutrum imperdiet. Vestibulum tempus non leo vestibulum iaculis. Ut nec lacinia elit, ' \
'viverra vulputate tortor. Phasellus eu luctus odio. Vestibulum accumsan est sed metus dignissim, ' \
'quis sollicitudin diam posuere. Duis ullamcorper ante vel vulputate semper. Aliquam viverra, ' \
'lorem sit amet tristique consequat, velit tortor lacinia sem, sed placerat nisi sapien rutrum ' \
'lacus. Mauris vehicula purus mi. Integer feugiat consectetur elit, ac interdum turpis ' \
'condimentum ut. Pellentesque sollicitudin est nunc, non accumsan metus laoreet nec. Pellentesque ' \
'rhoncus iaculis felis. Donec efficitur bibendum arcu, sed varius orci bibendum nec. Morbi ' \
'laoreet nunc nec urna pharetra viverra. Nulla vel magna ex. Fusce semper nisl commodo nulla ' \
'tempus, nec aliquam libero bibendum. Proin eleifend odio nec augue facilisis, nec faucibus ' \
'tortor venenatis. Pellentesque pulvinar erat nec justo bibendum blandit. Donec ut libero a ex ' \
'posuere euismod. Cras vitae turpis sit amet magna egestas vehicula. Maecenas interdum commodo ' \
'quam, vitae ornare mauris viverra vel. In vestibulum enim pulvinar, pharetra augue a, ' \
'tempor felis. Proin vel cursus tellus. Quisque eget mauris neque. Cras eu pharetra leo. Nam ' \
'nulla tortor, imperdiet sit amet dictum eu, mollis id ante.'
MENTOR_REQUEST_ATTACHMENT = [
{
'text': '',
'fallback': '',
'color': '#3AA3E3',
'callback_id': 'claim_mentee',
'attachment_type': 'default',
'actions': [
{
'name': 'fakerec',
'text': 'Claim Mentee',
'type': 'button',
'style': 'primary',
'value': f'mentee_claimed',
}
]
}
]
CLAIM_MENTEE_EVENT = {'type': 'interactive_message',
'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'type': 'button', 'value': 'mentee_claimed'}],
'callback_id': 'claim_mentee', 'team': {'id': 'T8M8SQEN7', 'domain': 'test'},
'channel': {'id': 'G8NDRJJF9', 'name': 'privategroup'},
'user': {'id': 'U11111', 'name': 'tester'},
'action_ts': '1521402127.915363', 'message_ts': '1521402116.000129', 'attachment_id': '1',
'token': 'faketoken', 'is_app_unfurl': False, 'original_message': {
'text': 'User <@U8N6XBL7Q> has requested a mentor for General Guidance - Slack Chat\n\nGiven Skillset(s): None given\n\nView requests: <https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable>',
'username': 'test2-bot', 'bot_id': 'B8N6Z8M8E',
'attachments': [
{'callback_id': 'claim_mentee', 'id': 1, 'color': '3AA3E3', 'actions': [
{'id': '1', 'name': 'rec7pRh2FwyO4nP2W', 'text': 'Claim Mentee', 'type': 'button',
'value': 'mentee_claimed', 'style': 'primary'}]}], 'type': 'message', 'subtype': 'bot_message',
'thread_ts': '1521402116.000129', 'reply_count': 1, 'replies': [{'user': 'B00', 'ts': '1521402117.000015'}],
'subscribed': False, 'unread_count': 1, 'ts': '1521402116.000129'},
'response_url': 'https://hooks.slack.com/actions/T8M8SQEN7/332727073942/JPnXPwSk8A5jffzf0DHuSnhS',
'trigger_id': '331226307360.293298830755.c73cad81aa525200275c2868dd168ab0'}
RESET_MENTEE_CLAIM_EVENT = {'type': 'interactive_message',
'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'type': 'button', 'value': 'reset_claim_mentee'}],
'callback_id': 'claim_mentee', 'team': {'id': 'T8M8SQEN7', 'domain': 'test'},
'channel': {'id': 'G8NDRJJF9', 'name': 'privategroup'},
'user': {'id': 'U11111', 'name': 'tester'}, 'action_ts': '1521403472.901817',
'message_ts': '1521402116.000129', 'attachment_id': '1',
'token': 'faketoken', 'is_app_unfurl': False, 'original_message': {
'text': 'User <@U8N6XBL7Q> has requested a mentor for General Guidance - Slack Chat\n\nGiven Skillset(s): None given\n\nView requests: <https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable>',
'username': 'test2-bot', 'bot_id': 'B8N6Z8M8E', 'attachments': [{'callback_id': 'claim_mentee',
'text': ':100: Request claimed by <@U8N6XBL7Q>:100:\n<!date^1521402131^Greeted at {date_num} {time_secs}|Failed to parse time>',
'id': 1, 'color': '3AA3E3', 'actions': [
{'id': '1', 'name': 'rec7pRh2FwyO4nP2W', 'text': 'Reset claim', 'type': 'button',
'value': 'reset_claim_mentee', 'style': 'danger'}]}], 'type': 'message', 'subtype': 'bot_message',
'thread_ts': '1521402116.000129', 'reply_count': 1, 'replies': [{'user': 'B00', 'ts': '1521402117.000015'}],
'subscribed': False, 'unread_count': 1, 'ts': '1521402116.000129'},
'response_url': 'https://hooks.slack.com/actions/T8M8SQEN7/331230500336/J5MfM0OC6I37iV9xQSPqQ2UD',
'trigger_id': '332007136373.293298830755.614be10d27ebd4e3d22af708906f27e0'}
INVALID_MENTOR_ID_TEXT = f":warning: <@U11111>'s Slack Email not found in Mentor table. :warning:"
RESET_MENTEE_ATTACHMENT = [{'text': 'Reset by <@U11111> at <!date^11111^ {date_num} {time_secs}|Failed to parse time>',
'fallback': '', 'color': '#3AA3E3', 'callback_id': 'claim_mentee',
'attachment_type': 'default', 'actions': [
{'name': 'rec7pRh2FwyO4nP2W', 'text': 'Claim Mentee', 'type': 'button', 'style': 'primary',
'value': 'mentee_claimed'}]}]
SLACK_USER_INFO = {'user': {'profile': {'email': 'fake@email.com'}}}
|
# -*- coding: utf-8 -*-
#
# Copyright 2014-2021 BigML
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""Options for BigMLer cluster
"""
def get_cluster_options(defaults=None):
"""Adding arguments for the cluster subcommand
"""
if defaults is None:
defaults = {}
options = {
# Input fields to include in the cluster.
'--cluster-fields': {
"action": 'store',
"dest": 'cluster_fields',
"default": defaults.get('cluster_fields', None),
"help": ("Comma-separated list of input fields"
" (predictors) to create the cluster.")},
# If a BigML cluster is provided, the script will use it to generate
# centroid predictions.
'--cluster': {
'action': 'store',
'dest': 'cluster',
'default': defaults.get('cluster', None),
'help': "BigML cluster Id."},
# The path to a file containing cluster ids.
'--clusters': {
'action': 'store',
'dest': 'clusters',
'default': defaults.get('clusters', None),
'help': ("Path to a file containing cluster/ids. One cluster"
" per line (e.g., cluster/50a206a8035d0706dc000376"
").")},
# If a BigML json file containing a cluster structure is provided,
# the script will use it.
'--cluster-file': {
'action': 'store',
'dest': 'cluster_file',
'default': defaults.get('cluster_file', None),
'help': "BigML cluster JSON structure file."},
# Number of centroids to be generated in the cluster
'--k': {
'action': 'store',
'type': int,
'dest': 'cluster_k',
'default': defaults.get('cluster_k', None),
'help': "Number of centroids to be generated in the cluster."},
# Does not create a cluster just a dataset.
'--no-cluster': {
'action': 'store_true',
'dest': 'no_cluster',
'default': defaults.get('no_cluster', False),
'help': "Do not create a cluster."},
# The path to a file containing cluster attributes.
'--cluster-attributes': {
'action': 'store',
'dest': 'cluster_attributes',
'default': defaults.get('cluster_attributes', None),
'help': ("Path to a json file describing cluster"
" attributes.")},
# Create a cluster, not just a dataset.
'--no-no-cluster': {
'action': 'store_false',
'dest': 'no_cluster',
'default': defaults.get('no_cluster', False),
'help': "Create a cluster."},
# Comma separated list of datasets to be generated from the cluster.
'--cluster-datasets': {
'action': 'store',
'dest': 'cluster_datasets',
'nargs': '?',
'const': '',
'default': defaults.get('cluster_datasets', None),
'help': ("Comma-separated list of centroid names. The"
" related datasets will be generated. All datasets "
"will be generated if empty.")},
# The seed to be used in cluster building.
'--cluster-seed': {
'action': 'store',
'dest': 'cluster_seed',
'default': defaults.get('cluster_seed', None),
'help': "The seed to be used in cluster building."},
# The path to a file containing batch prediction attributes.
'--batch-centroid-attributes': {
'action': 'store',
'dest': 'batch_centroid_attributes',
'default': defaults.get('batch_centroid_attributes', None),
'help': ("Path to a json file describing batch centroid"
" attributes.")},
# The path to a file containing centroid attributes.
'--centroid-attributes': {
'action': 'store',
'dest': 'centroid_attributes',
'default': defaults.get('centroid_attributes', None),
'help': ("Path to a json file describing centroid"
" attributes.")},
# Comma separated list of models to be generated from the cluster.
'--cluster-models': {
'action': 'store',
'dest': 'cluster_models',
'nargs': '?',
'const': '',
'default': defaults.get('cluster_models', None),
'help': ("Comma-separated list of centroid names. The"
" related models will be generated. All models "
"will be generated if empty.")},
# Comma separated list of summary fields
'--summary-fields': {
'action': 'store',
'dest': 'summary_fields',
'default': defaults.get('summary_fields', None),
'help': ("Comma-separated list of summary fields, that will be"
" included in the generated datasets but not used in"
" clustering.")}}
return options
|
# 1
# 12
# 123
# 1234
# 12345
n = int (input("Enter the number "))
for i in range(1,n+1):
for j in range(1,i+1):
print(j,end="")
print()
|
class School:
# Konstruktor z domyślnym argumentem - uwaga na domyślną listę!
def __init__(self, name, students=None):
self.name = name
if students is None:
students = []
self.students = students
class Student:
def __init__(self, first_name, last_name):
self.first_name = first_name
self.last_name = last_name
self.promoted = False
def print_student(student):
print(f"Student: {student.first_name} {student.last_name}, promoted: {student.promoted}")
# Uwaga - ponownie side effect
def assign_student_to_school(school, student):
school.students.append(student)
def run_example():
school_without_students = School("Pusta szkoła")
first_student = Student(first_name="Jakub", last_name="Kowalski")
assign_student_to_school(school_without_students, first_student)
for student in school_without_students.students:
print_student(student)
if __name__ == '__main__':
run_example()
|
INCREASE: int = 1 # global namespace
DECREASE: int = -1
space = ' '
sign = '* '
def print_rhombus(n: int): # global namespace
# fn-in-fn: closure
def print_line(i: int, direction: int): # local namespace visible in print_rhombus
if i == 0: # i is part of the local namespace of print_line
return
line = (n - i) * space + i * sign
print(line.rstrip())
if i == n:
direction = DECREASE # change is happening in the local namespace of print_line
print_line(i + direction, direction) # recusrion
print_line(1, INCREASE)
n = int(input())
print_rhombus(n)
|
# _________________________________________________________________________
#
# PyUtilib: A Python utility library.
# Copyright (c) 2008 Sandia Corporation.
# This software is distributed under the BSD License.
# Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
# the U.S. Government retains certain rights in this software.
# _________________________________________________________________________
class ExcelSpreadsheet_base(object):
def can_read(self):
return False
def can_write(self):
return False
def can_calculate(self):
return False
|
# Copyright 2019 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Command line options for meta optimization."""
def setup_args(parser):
parser.add_argument('--metaoptimizer', type=str, default='es')
parser.add_argument('-n', '--num_samples', type=int, default=10000)
parser.add_argument('--worker_mode', type=str, default='cmd')
parser.add_argument('--num_procs', type=int, default=4)
parser.add_argument('--distribute', type=int, default=1)
parser.add_argument('--cleanup_experiment', type=int, default=0)
# Maximize a reward or minimize a loss?
parser.add_argument('--maximize', type=int, default=1)
parser.add_argument('--worst_score', type=float, default=0)
# Parameter options
parser.add_argument('-p', '--param', type=str, default='partition')
parser.add_argument('-s', '--search', type=str, default='partition')
parser.add_argument('--cmd_config', type=str, default='')
# Meta optimization debugging options
parser.add_argument('--meta_eval_noise', type=float, default=0.)
|
def method1(n: int) -> int:
if n <= 2:
return []
else:
sieve = [True] * (n + 1)
for x in range(3, int(n ** 0.5) + 1, 2):
for y in range(3, (n // x) + 1, 2):
sieve[(x * y)] = False
return [2] + [i for i in range(3, n, 2) if sieve[i]]
if __name__ == "__main__":
"""
from timeit import timeit
print(timeit(lambda: method1(20), number=10000)) # 0.015664431000914192
"""
|
"""This file contains all defined containers and heat sources as variables.
All variables are strings, so there are no docstrings available.
In case you are wondering, this is the text in the module docstring of /tools/equipments.py .
"""
# containers
pewter_cauldron = 'pewter_cauldron'
copper_cauldron = 'copper_cauldron'
martini_glass = 'martini_glass'
old_kettle = 'old_kettle'
# heat sources
fire = 'fire'
eternal_flame = 'eternal_flame'
breathe_on_cauldron = 'breathe_on_cauldron'
|
#!/usr/bin/env python3
_ = input()
_v, *v = sorted(map(int, input().split()))
for i in v:
_v = (_v + i) / 2
print(_v)
|
#
# PySNMP MIB module TRIPPLITE-PRODUCTS (http://pysnmp.sf.net)
# ASN.1 source file://./TRIPPLITE-PRODUCTS.MIB
# Produced by pysmi-0.2.2 at Wed Apr 11 14:12:10 2018
# On host Tim platform Linux version 4.15.15-1-ARCH by user syp
# Using Python version 2.7.13 (default, Oct 26 2017, 17:04:19)
#
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")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, Bits, TimeTicks, Counter64, Unsigned32, enterprises, ModuleIdentity, Gauge32, iso, ObjectIdentity, IpAddress, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "Bits", "TimeTicks", "Counter64", "Unsigned32", "enterprises", "ModuleIdentity", "Gauge32", "iso", "ObjectIdentity", "IpAddress", "Counter32")
DisplayString, TruthValue, RowStatus, TextualConvention, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "RowStatus", "TextualConvention", "TimeStamp")
tripplite, = mibBuilder.importSymbols("TRIPPLITE", "tripplite")
tlpProducts = ModuleIdentity((1, 3, 6, 1, 4, 1, 850, 1))
tlpProducts.setRevisions(('2016-06-22 11:15', '2016-02-02 11:15', '2016-01-25 12:30', '2016-01-20 12:00', '2016-01-08 11:40', '2015-11-25 13:00', '2015-11-10 13:00', '2015-10-16 12:30', '2015-08-19 12:00', '2014-12-04 10:00', '2014-04-14 09:00',))
if mibBuilder.loadTexts: tlpProducts.setLastUpdated('201606221115Z')
if mibBuilder.loadTexts: tlpProducts.setOrganization('Tripp Lite')
tlpHardware = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1))
tlpSoftware = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2))
tlpAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3))
tlpNotify = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 4))
tlpDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 1))
tlpDeviceDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 2))
tlpDeviceTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3))
tlpUps = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1))
tlpPdu = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2))
tlpEnvirosense = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3))
tlpAts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4))
tlpCooling = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5))
tlpKvm = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6))
tlpRackTrack = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7))
tlpSwitch = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8))
tlpUpsIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1))
tlpUpsDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2))
tlpUpsDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3))
tlpUpsControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4))
tlpUpsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5))
tlpUpsBattery = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1))
tlpUpsInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2))
tlpUpsOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3))
tlpUpsBypass = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4))
tlpUpsOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5))
tlpUpsWatchdog = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6))
tlpPduIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1))
tlpPduDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2))
tlpPduDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3))
tlpPduControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4))
tlpPduConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5))
tlpPduInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1))
tlpPduOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2))
tlpPduOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3))
tlpPduCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4))
tlpPduBreaker = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5))
tlpPduHeatsink = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6))
tlpEnvIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1))
tlpEnvDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3))
tlpEnvConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5))
tlpAtsIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1))
tlpAtsDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2))
tlpAtsDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3))
tlpAtsControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4))
tlpAtsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5))
tlpAtsInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1))
tlpAtsOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2))
tlpAtsOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3))
tlpAtsCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4))
tlpAtsBreaker = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5))
tlpAtsHeatsink = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6))
tlpCoolingIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1))
tlpCoolingDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 2))
tlpCoolingDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3))
tlpCoolingControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 4))
tlpCoolingConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 5))
tlpCoolingInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 1))
tlpCoolingOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 2))
tlpKvmIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1))
tlpKvmDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 2))
tlpKvmDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 3))
tlpKvmControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 4))
tlpKvmConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 5))
tlpRackTrackIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1))
tlpRackTrackDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 2))
tlpRackTrackDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 3))
tlpRackTrackControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 4))
tlpRackTrackConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 5))
tlpSwitchIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1))
tlpSwitchDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 2))
tlpSwitchDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 3))
tlpSwitchControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 4))
tlpSwitchConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 5))
tlpAgentDetails = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1))
tlpAgentSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2))
tlpAgentContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3))
tlpAgentIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1))
tlpAgentAttributes = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2))
tlpAgentConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1))
tlpAgentEmailContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1))
tlpAgentSnmpContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2))
tlpAlarmsWellKnown = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3))
tlpAlarmControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 4))
tlpAgentAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 1))
tlpDeviceAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2))
tlpUpsAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3))
tlpPduAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4))
tlpEnvAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5))
tlpAtsAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6))
tlpCoolingAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7))
tlpKvmAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 8))
tlpRackTrackAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 9))
tlpSwitchAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 10))
tlpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 4, 1))
tlpDeviceNumDevices = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceNumDevices.setStatus('current')
tlpDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2), )
if mibBuilder.loadTexts: tlpDeviceTable.setStatus('current')
tlpDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpDeviceEntry.setStatus('current')
tlpDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIndex.setStatus('current')
tlpDeviceRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 2), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceRowStatus.setStatus('current')
tlpDeviceType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 3), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceType.setStatus('current')
tlpDeviceManufacturer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceManufacturer.setStatus('current')
tlpDeviceModel = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceModel.setStatus('current')
tlpDeviceName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpDeviceName.setStatus('current')
tlpDeviceID = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpDeviceID.setStatus('current')
tlpDeviceLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 8), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpDeviceLocation.setStatus('current')
tlpDeviceRegion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 9), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpDeviceRegion.setStatus('current')
tlpDeviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7)).clone(namedValues=NamedValues(("none", 0), ("critical", 1), ("warning", 2), ("info", 3), ("status", 4), ("offline", 5), ("custom", 6), ("configuration", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceStatus.setStatus('current')
tlpDeviceIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1), )
if mibBuilder.loadTexts: tlpDeviceIdentTable.setStatus('current')
tlpDeviceIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpDeviceIdentEntry.setStatus('current')
tlpDeviceIdentProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setStatus('current')
tlpDeviceIdentCommPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("unknown", 0), ("serial", 1), ("usb", 2), ("hid", 3), ("simulated", 4), ("unittest", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setStatus('current')
tlpDeviceIdentCommPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setStatus('current')
tlpDeviceIdentFirmwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setStatus('current')
tlpDeviceIdentSerialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setStatus('current')
tlpDeviceIdentDateInstalled = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setStatus('current')
tlpDeviceIdentHardwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setStatus('current')
tlpDeviceIdentCurrentUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setStatus('current')
tlpDeviceIdentTotalUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setStatus('current')
tlpUpsIdentNumUps = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumUps.setStatus('current')
tlpUpsIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2), )
if mibBuilder.loadTexts: tlpUpsIdentTable.setStatus('current')
tlpUpsIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsIdentEntry.setStatus('current')
tlpUpsIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setStatus('current')
tlpUpsIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setStatus('current')
tlpUpsIdentNumBypass = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setStatus('current')
tlpUpsIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setStatus('current')
tlpUpsIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setStatus('current')
tlpUpsIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setStatus('current')
tlpUpsIdentNumBatteryPacks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setStatus('current')
tlpUpsSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3), )
if mibBuilder.loadTexts: tlpUpsSupportsTable.setStatus('current')
tlpUpsSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsSupportsEntry.setStatus('current')
tlpUpsSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setStatus('current')
tlpUpsSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setStatus('current')
tlpUpsSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setStatus('current')
tlpUpsSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setStatus('current')
tlpUpsSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setStatus('current')
tlpUpsDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1), )
if mibBuilder.loadTexts: tlpUpsDeviceTable.setStatus('current')
tlpUpsDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsDeviceEntry.setStatus('current')
tlpUpsDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setStatus('current')
tlpUpsDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setStatus('current')
tlpUpsDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setStatus('current')
tlpUpsDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setStatus('current')
tlpUpsDeviceTestDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setStatus('current')
tlpUpsDeviceTestResultsStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)).clone(namedValues=NamedValues(("noTest", 0), ("doneAndPassed", 1), ("doneAndWarning", 2), ("doneAndError", 3), ("aborted", 4), ("inProgress", 5), ("noTestInitiated", 6), ("badBattery", 7), ("overCurrent", 8), ("batteryFailed", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setStatus('current')
tlpUpsDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 7), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setStatus('current')
tlpUpsDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 8), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setStatus('current')
tlpUpsBatterySummaryTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1), )
if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setStatus('current')
tlpUpsBatterySummaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setStatus('current')
tlpUpsBatteryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("unknown", 1), ("batteryNormal", 2), ("batteryLow", 3), ("batteryDepleted", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryStatus.setStatus('current')
tlpUpsSecondsOnBattery = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 2), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setStatus('current')
tlpUpsEstimatedMinutesRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 3), Unsigned32()).setUnits('minutes').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setStatus('current')
tlpUpsEstimatedChargeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setStatus('current')
tlpUpsBatteryRunTimeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 5), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setStatus('current')
tlpUpsBatteryDetailTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2), )
if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setStatus('current')
tlpUpsBatteryDetailEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setStatus('current')
tlpUpsBatteryDetailVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 1), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setStatus('current')
tlpUpsBatteryDetailCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 2), Unsigned32()).setUnits('0.1 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setStatus('current')
tlpUpsBatteryDetailCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setStatus('current')
tlpUpsBatteryDetailCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("floating", 0), ("charging", 1), ("resting", 2), ("discharging", 3), ("normal", 4), ("standby", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setStatus('current')
tlpUpsBatteryDetailChargerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("ok", 0), ("inFaultCondition", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setStatus('current')
tlpUpsBatteryPackIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3), )
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setStatus('current')
tlpUpsBatteryPackIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex"))
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setStatus('current')
tlpUpsBatteryPackIdentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setStatus('current')
tlpUpsBatteryPackIdentManufacturer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setStatus('current')
tlpUpsBatteryPackIdentModel = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setStatus('current')
tlpUpsBatteryPackIdentSerialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setStatus('current')
tlpUpsBatteryPackIdentFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setStatus('current')
tlpUpsBatteryPackIdentSKU = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setStatus('current')
tlpUpsBatteryPackConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4), )
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setStatus('current')
tlpUpsBatteryPackConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex"))
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setStatus('current')
tlpUpsBatteryPackConfigChemistry = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("leadAcid", 1), ("nickelCadmium", 2), ("lithiumIon", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setStatus('current')
tlpUpsBatteryPackConfigStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("nonsmart", 1), ("smart", 2), ("bms", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setStatus('current')
tlpUpsBatteryPackConfigLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("internal", 1), ("external", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setStatus('current')
tlpUpsBatteryPackConfigStrings = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setStatus('current')
tlpUpsBatteryPackConfigBatteriesPerString = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setStatus('current')
tlpUpsBatteryPackConfigCellsPerBattery = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 4, 6)).clone(namedValues=NamedValues(("unknown", 0), ("one", 1), ("two", 2), ("four", 4), ("six", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setStatus('current')
tlpUpsBatteryPackConfigNumBatteries = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setStatus('current')
tlpUpsBatteryPackConfigCapacityUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("mAHr", 0), ("mWHr", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setStatus('current')
tlpUpsBatteryPackConfigDesignCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setStatus('current')
tlpUpsBatteryPackConfigCellCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setStatus('current')
tlpUpsBatteryPackConfigMinCellVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setStatus('current')
tlpUpsBatteryPackConfigMaxCellVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 12), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setStatus('current')
tlpUpsBatteryPackDetailTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5), )
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setStatus('current')
tlpUpsBatteryPackDetailEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex"))
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setStatus('current')
tlpUpsBatteryPackDetailCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("good", 1), ("weak", 2), ("bad", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setStatus('current')
tlpUpsBatteryPackDetailTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 2), Unsigned32()).setUnits('degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setStatus('current')
tlpUpsBatteryPackDetailTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 3), Unsigned32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setStatus('current')
tlpUpsBatteryPackDetailAge = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 4), Unsigned32()).setUnits('0.1 Years').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setStatus('current')
tlpUpsBatteryPackDetailLastReplaceDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setStatus('current')
tlpUpsBatteryPackDetailNextReplaceDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setStatus('current')
tlpUpsBatteryPackDetailCycleCount = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setStatus('current')
tlpUpsInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1), )
if mibBuilder.loadTexts: tlpUpsInputTable.setStatus('current')
tlpUpsInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsInputEntry.setStatus('current')
tlpUpsInputLineBads = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputLineBads.setStatus('current')
tlpUpsInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setStatus('current')
tlpUpsInputNominalFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setStatus('current')
tlpUpsInputLowTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setStatus('current')
tlpUpsInputLowTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setStatus('current')
tlpUpsInputLowTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setStatus('current')
tlpUpsInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setStatus('current')
tlpUpsInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 8), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setStatus('current')
tlpUpsInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setStatus('current')
tlpUpsInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2), )
if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setStatus('current')
tlpUpsInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsInputPhaseIndex"))
if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setStatus('current')
tlpUpsInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setStatus('current')
tlpUpsInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 2), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setStatus('current')
tlpUpsInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setStatus('current')
tlpUpsInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setStatus('current')
tlpUpsInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setStatus('current')
tlpUpsInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setStatus('current')
tlpUpsInputPhasePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 7), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsInputPhasePower.setStatus('current')
tlpUpsOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1), )
if mibBuilder.loadTexts: tlpUpsOutputTable.setStatus('current')
tlpUpsOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsOutputEntry.setStatus('current')
tlpUpsOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)).clone(namedValues=NamedValues(("unknown", 0), ("other", 1), ("none", 2), ("normal", 3), ("bypass", 4), ("battery", 5), ("boosting", 6), ("reducing", 7), ("second", 8), ("economy", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputSource.setStatus('current')
tlpUpsOutputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setStatus('current')
tlpUpsOutputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 3), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputFrequency.setStatus('current')
tlpUpsOutputLineTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2), )
if mibBuilder.loadTexts: tlpUpsOutputLineTable.setStatus('current')
tlpUpsOutputLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutputLineIndex"))
if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setStatus('current')
tlpUpsOutputLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setStatus('current')
tlpUpsOutputLineVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setStatus('current')
tlpUpsOutputLineCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 3), Unsigned32()).setUnits('0.1 Amp').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setStatus('current')
tlpUpsOutputLinePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 4), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputLinePower.setStatus('current')
tlpUpsOutputLinePercentLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setStatus('current')
tlpUpsOutputLineFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 6), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setStatus('current')
tlpUpsBypassTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1), )
if mibBuilder.loadTexts: tlpUpsBypassTable.setStatus('current')
tlpUpsBypassEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsBypassEntry.setStatus('current')
tlpUpsBypassFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1, 1), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBypassFrequency.setStatus('current')
tlpUpsBypassLineTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2), )
if mibBuilder.loadTexts: tlpUpsBypassLineTable.setStatus('current')
tlpUpsBypassLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBypassLineIndex"))
if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setStatus('current')
tlpUpsBypassLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setStatus('current')
tlpUpsBypassLineVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setStatus('current')
tlpUpsBypassLineCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 3), Unsigned32()).setUnits('0.1 Amp').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setStatus('current')
tlpUpsBypassLinePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 4), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsBypassLinePower.setStatus('current')
tlpUpsOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1), )
if mibBuilder.loadTexts: tlpUpsOutletTable.setStatus('current')
tlpUpsOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutletIndex"))
if mibBuilder.loadTexts: tlpUpsOutletEntry.setStatus('current')
tlpUpsOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletIndex.setStatus('current')
tlpUpsOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletName.setStatus('current')
tlpUpsOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletDescription.setStatus('current')
tlpUpsOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletState.setStatus('current')
tlpUpsOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletControllable.setStatus('current')
tlpUpsOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletCommand.setStatus('current')
tlpUpsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletVoltage.setStatus('current')
tlpUpsOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletCurrent.setStatus('current')
tlpUpsOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletPower.setStatus('current')
tlpUpsOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletRampAction.setStatus('current')
tlpUpsOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setStatus('current')
tlpUpsOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletShedAction.setStatus('current')
tlpUpsOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setStatus('current')
tlpUpsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 14), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletGroup.setStatus('current')
tlpUpsOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2), )
if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setStatus('current')
tlpUpsOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutletGroupIndex"))
if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setStatus('current')
tlpUpsOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setStatus('current')
tlpUpsOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 2), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setStatus('current')
tlpUpsOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletGroupName.setStatus('current')
tlpUpsOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setStatus('current')
tlpUpsOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsOutletGroupState.setStatus('current')
tlpUpsOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setStatus('current')
tlpUpsWatchdogTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1), )
if mibBuilder.loadTexts: tlpUpsWatchdogTable.setStatus('current')
tlpUpsWatchdogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setStatus('current')
tlpUpsWatchdogSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setStatus('current')
tlpUpsWatchdogSecsBeforeReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 2), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setStatus('current')
tlpUpsControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1), )
if mibBuilder.loadTexts: tlpUpsControlTable.setStatus('current')
tlpUpsControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsControlEntry.setStatus('current')
tlpUpsControlSelfTest = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlSelfTest.setStatus('current')
tlpUpsControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlRamp.setStatus('current')
tlpUpsControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlShed.setStatus('current')
tlpUpsControlUpsOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlUpsOn.setStatus('current')
tlpUpsControlUpsOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlUpsOff.setStatus('current')
tlpUpsControlUpsReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setStatus('current')
tlpUpsControlBypass = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsControlBypass.setStatus('current')
tlpUpsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1), )
if mibBuilder.loadTexts: tlpUpsConfigTable.setStatus('current')
tlpUpsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsConfigEntry.setStatus('current')
tlpUpsConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 1), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setStatus('current')
tlpUpsConfigInputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 2), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setStatus('current')
tlpUpsConfigOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 3), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setStatus('current')
tlpUpsConfigOutputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 4), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setStatus('current')
tlpUpsConfigAudibleStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2), ("muted", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setStatus('current')
tlpUpsConfigAutoBatteryTest = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4)).clone(namedValues=NamedValues(("disabled", 0), ("biweekly", 1), ("monthly", 2), ("quarterly", 3), ("semiannually", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setStatus('current')
tlpUpsConfigAutoRestartAfterShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setStatus('current')
tlpUpsConfigAutoRampOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setStatus('current')
tlpUpsConfigAutoShedOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 9), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setStatus('current')
tlpUpsConfigBypassLowerLimitPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-20, -5))).setUnits('percent').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setStatus('current')
tlpUpsConfigBypassUpperLimitPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 20))).setUnits('percent').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setStatus('current')
tlpUpsConfigBypassLowerLimitVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 12), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setStatus('current')
tlpUpsConfigBypassUpperLimitVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 13), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setStatus('current')
tlpUpsConfigColdStart = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 14), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigColdStart.setStatus('current')
tlpUpsConfigEconomicMode = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 15), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("online", 0), ("economy", 1), ("constant50Hz", 2), ("constant60Hz", 3), ("constantAuto", 4), ("autoAdaptive", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setStatus('current')
tlpUpsConfigFaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 16), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("bypass", 0), ("standby", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setStatus('current')
tlpUpsConfigOffMode = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 17), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("standby", 0), ("bypass", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigOffMode.setStatus('current')
tlpUpsConfigLineSensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 18), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("normal", 0), ("reduced", 1), ("fullyReduced", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setStatus('current')
tlpUpsConfigAutoRestartTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2), )
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setStatus('current')
tlpUpsConfigAutoRestartEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setStatus('current')
tlpUpsConfigAutoRestartInverterShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setStatus('current')
tlpUpsConfigAutoRestartDelayedWakeup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setStatus('current')
tlpUpsConfigAutoRestartLowVoltageCutoff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setStatus('current')
tlpUpsConfigAutoRestartOverLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setStatus('current')
tlpUpsConfigAutoRestartOverTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setStatus('current')
tlpUpsConfigThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3), )
if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setStatus('current')
tlpUpsConfigThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setStatus('current')
tlpUpsConfigBatteryAgeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 1), Unsigned32()).setUnits('months').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setStatus('current')
tlpUpsConfigLowBatteryThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setUnits('percent').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setStatus('current')
tlpUpsConfigLowBatteryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 3), Unsigned32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setStatus('current')
tlpUpsConfigOverLoadThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 105))).setUnits('percent').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setStatus('current')
tlpPduIdentNumPdu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumPdu.setStatus('current')
tlpPduIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2), )
if mibBuilder.loadTexts: tlpPduIdentTable.setStatus('current')
tlpPduIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduIdentEntry.setStatus('current')
tlpPduIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumInputs.setStatus('current')
tlpPduIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setStatus('current')
tlpPduIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumPhases.setStatus('current')
tlpPduIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setStatus('current')
tlpPduIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setStatus('current')
tlpPduIdentNumCircuits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setStatus('current')
tlpPduIdentNumBreakers = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setStatus('current')
tlpPduIdentNumHeatsinks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setStatus('current')
tlpPduSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3), )
if mibBuilder.loadTexts: tlpPduSupportsTable.setStatus('current')
tlpPduSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduSupportsEntry.setStatus('current')
tlpPduSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setStatus('current')
tlpPduSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduSupportsRampShed.setStatus('current')
tlpPduSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setStatus('current')
tlpPduSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setStatus('current')
tlpPduSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setStatus('current')
tlpPduDisplayTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4), )
if mibBuilder.loadTexts: tlpPduDisplayTable.setStatus('current')
tlpPduDisplayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduDisplayEntry.setStatus('current')
tlpPduDisplayScheme = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("schemeReverse", 0), ("schemeNormal", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDisplayScheme.setStatus('current')
tlpPduDisplayOrientation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("displayNormal", 0), ("displayReverse", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDisplayOrientation.setStatus('current')
tlpPduDisplayAutoScroll = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("scrollDisabled", 0), ("scrollEnabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setStatus('current')
tlpPduDisplayIntensity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("intensity25", 1), ("intensity50", 2), ("intensity75", 3), ("intensity100", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDisplayIntensity.setStatus('current')
tlpPduDisplayUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("normal", 0), ("metric", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDisplayUnits.setStatus('current')
tlpPduDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1), )
if mibBuilder.loadTexts: tlpPduDeviceTable.setStatus('current')
tlpPduDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduDeviceEntry.setStatus('current')
tlpPduDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setStatus('current')
tlpPduDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setStatus('current')
tlpPduDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setStatus('current')
tlpPduDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setStatus('current')
tlpPduDeviceTotalInputPowerRating = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 5), Integer32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setStatus('current')
tlpPduDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 6), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setStatus('current')
tlpPduDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 7), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setStatus('current')
tlpPduDevicePhaseImbalance = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setStatus('current')
tlpPduDeviceOutputPowerTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setStatus('current')
tlpPduDeviceAggregatePowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 10), Unsigned32()).setUnits('0.1 Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setStatus('current')
tlpPduDeviceOutputCurrentPrecision = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("none", 0), ("tenths", 1), ("hundredths", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setStatus('current')
tlpPduInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1), )
if mibBuilder.loadTexts: tlpPduInputTable.setStatus('current')
tlpPduInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduInputEntry.setStatus('current')
tlpPduInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setStatus('current')
tlpPduInputNominalVoltagePhaseToPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setStatus('current')
tlpPduInputNominalVoltagePhaseToNeutral = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setStatus('current')
tlpPduInputLowTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setStatus('current')
tlpPduInputLowTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 5), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setStatus('current')
tlpPduInputLowTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 6), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setStatus('current')
tlpPduInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setStatus('current')
tlpPduInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 8), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setStatus('current')
tlpPduInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 9), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setStatus('current')
tlpPduInputCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 10), Unsigned32()).setUnits('Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setStatus('current')
tlpPduInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2), )
if mibBuilder.loadTexts: tlpPduInputPhaseTable.setStatus('current')
tlpPduInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduInputPhaseIndex"))
if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setStatus('current')
tlpPduInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setStatus('current')
tlpPduInputPhasePhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setStatus('current')
tlpPduInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 3), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setStatus('current')
tlpPduInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setStatus('current')
tlpPduInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setStatus('current')
tlpPduInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 6), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setStatus('current')
tlpPduInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setStatus('current')
tlpPduOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1), )
if mibBuilder.loadTexts: tlpPduOutputTable.setStatus('current')
tlpPduOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutputIndex"))
if mibBuilder.loadTexts: tlpPduOutputEntry.setStatus('current')
tlpPduOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputIndex.setStatus('current')
tlpPduOutputPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("phase1", 1), ("phase2", 2), ("phase3", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputPhase.setStatus('current')
tlpPduOutputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputPhaseType.setStatus('current')
tlpPduOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputVoltage.setStatus('current')
tlpPduOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputCurrent.setStatus('current')
tlpPduOutputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setStatus('current')
tlpPduOutputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setStatus('current')
tlpPduOutputActivePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 8), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputActivePower.setStatus('current')
tlpPduOutputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.01 percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setStatus('current')
tlpPduOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("none", 0), ("normal", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutputSource.setStatus('current')
tlpPduOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1), )
if mibBuilder.loadTexts: tlpPduOutletTable.setStatus('current')
tlpPduOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutletIndex"))
if mibBuilder.loadTexts: tlpPduOutletEntry.setStatus('current')
tlpPduOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletIndex.setStatus('current')
tlpPduOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletName.setStatus('current')
tlpPduOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletDescription.setStatus('current')
tlpPduOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletState.setStatus('current')
tlpPduOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletControllable.setStatus('current')
tlpPduOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletCommand.setStatus('current')
tlpPduOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletVoltage.setStatus('current')
tlpPduOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletCurrent.setStatus('current')
tlpPduOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletPower.setStatus('current')
tlpPduOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletRampAction.setStatus('current')
tlpPduOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletRampDelay.setStatus('current')
tlpPduOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletShedAction.setStatus('current')
tlpPduOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletShedDelay.setStatus('current')
tlpPduOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 14), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletGroup.setStatus('current')
tlpPduOutletBank = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletBank.setStatus('current')
tlpPduOutletCircuit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletCircuit.setStatus('current')
tlpPduOutletPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 17), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletPhase.setStatus('current')
tlpPduOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2), )
if mibBuilder.loadTexts: tlpPduOutletGroupTable.setStatus('current')
tlpPduOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutletGroupIndex"))
if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setStatus('current')
tlpPduOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setStatus('current')
tlpPduOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 2), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setStatus('current')
tlpPduOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletGroupName.setStatus('current')
tlpPduOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setStatus('current')
tlpPduOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduOutletGroupState.setStatus('current')
tlpPduOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setStatus('current')
tlpPduCircuitTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1), )
if mibBuilder.loadTexts: tlpPduCircuitTable.setStatus('current')
tlpPduCircuitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduCircuitIndex"))
if mibBuilder.loadTexts: tlpPduCircuitEntry.setStatus('current')
tlpPduCircuitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitIndex.setStatus('current')
tlpPduCircuitPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitPhase.setStatus('current')
tlpPduCircuitInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 3), Integer32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setStatus('current')
tlpPduCircuitTotalCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 4), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setStatus('current')
tlpPduCircuitCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 5), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setStatus('current')
tlpPduCircuitCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 6), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setStatus('current')
tlpPduCircuitCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 7), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setStatus('current')
tlpPduCircuitTotalPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 8), Integer32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setStatus('current')
tlpPduCircuitPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setStatus('current')
tlpPduCircuitUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 10), Unsigned32()).setUnits('0.01 %').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduCircuitUtilization.setStatus('current')
tlpPduBreakerTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1), )
if mibBuilder.loadTexts: tlpPduBreakerTable.setStatus('current')
tlpPduBreakerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduBreakerIndex"))
if mibBuilder.loadTexts: tlpPduBreakerEntry.setStatus('current')
tlpPduBreakerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduBreakerIndex.setStatus('current')
tlpPduBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("open", 0), ("closed", 1), ("notInstalled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduBreakerStatus.setStatus('current')
tlpPduHeatsinkTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1), )
if mibBuilder.loadTexts: tlpPduHeatsinkTable.setStatus('current')
tlpPduHeatsinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduHeatsinkIndex"))
if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setStatus('current')
tlpPduHeatsinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setStatus('current')
tlpPduHeatsinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("notAvailable", 0), ("available", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setStatus('current')
tlpPduHeatsinkTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 3), Integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setStatus('current')
tlpPduHeatsinkTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 4), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setStatus('current')
tlpPduControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1), )
if mibBuilder.loadTexts: tlpPduControlTable.setStatus('current')
tlpPduControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduControlEntry.setStatus('current')
tlpPduControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduControlRamp.setStatus('current')
tlpPduControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduControlShed.setStatus('current')
tlpPduControlPduOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduControlPduOn.setStatus('current')
tlpPduControlPduOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduControlPduOff.setStatus('current')
tlpPduControlPduReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduControlPduReboot.setStatus('current')
tlpPduConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1), )
if mibBuilder.loadTexts: tlpPduConfigTable.setStatus('current')
tlpPduConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpPduConfigEntry.setStatus('current')
tlpPduConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setStatus('current')
tlpEnvIdentNumEnvirosense = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setStatus('current')
tlpEnvIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2), )
if mibBuilder.loadTexts: tlpEnvIdentTable.setStatus('current')
tlpEnvIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpEnvIdentEntry.setStatus('current')
tlpEnvIdentTempSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setStatus('current')
tlpEnvIdentHumiditySupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setStatus('current')
tlpEnvNumInputContacts = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvNumInputContacts.setStatus('current')
tlpEnvNumOutputContacts = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setStatus('current')
tlpEnvTemperatureTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1), )
if mibBuilder.loadTexts: tlpEnvTemperatureTable.setStatus('current')
tlpEnvTemperatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setStatus('current')
tlpEnvTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 1), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvTemperatureC.setStatus('current')
tlpEnvTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 2), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvTemperatureF.setStatus('current')
tlpEnvTemperatureInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setStatus('current')
tlpEnvHumidityTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2), )
if mibBuilder.loadTexts: tlpEnvHumidityTable.setStatus('current')
tlpEnvHumidityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpEnvHumidityEntry.setStatus('current')
tlpEnvHumidityHumidity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setStatus('current')
tlpEnvHumidityInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setStatus('current')
tlpEnvInputContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3), )
if mibBuilder.loadTexts: tlpEnvInputContactTable.setStatus('current')
tlpEnvInputContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpEnvInputContactIndex"))
if mibBuilder.loadTexts: tlpEnvInputContactEntry.setStatus('current')
tlpEnvInputContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvInputContactIndex.setStatus('current')
tlpEnvInputContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvInputContactName.setStatus('current')
tlpEnvInputContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setStatus('current')
tlpEnvInputContactCurrentState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setStatus('current')
tlpEnvInputContactInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setStatus('current')
tlpEnvOutputContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4), )
if mibBuilder.loadTexts: tlpEnvOutputContactTable.setStatus('current')
tlpEnvOutputContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpEnvOutputContactIndex"))
if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setStatus('current')
tlpEnvOutputContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setStatus('current')
tlpEnvOutputContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvOutputContactName.setStatus('current')
tlpEnvOutputContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setStatus('current')
tlpEnvOutputContactCurrentState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setStatus('current')
tlpEnvOutputContactInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setStatus('current')
tlpEnvConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1), )
if mibBuilder.loadTexts: tlpEnvConfigTable.setStatus('current')
tlpEnvConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpEnvConfigEntry.setStatus('current')
tlpEnvTemperatureLowLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 1), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setStatus('current')
tlpEnvTemperatureHighLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 2), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setStatus('current')
tlpEnvHumidityLowLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setStatus('current')
tlpEnvHumidityHighLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setStatus('current')
tlpAtsIdentNumAts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumAts.setStatus('current')
tlpAtsIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2), )
if mibBuilder.loadTexts: tlpAtsIdentTable.setStatus('current')
tlpAtsIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsIdentEntry.setStatus('current')
tlpAtsIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setStatus('current')
tlpAtsIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setStatus('current')
tlpAtsIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setStatus('current')
tlpAtsIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setStatus('current')
tlpAtsIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setStatus('current')
tlpAtsIdentNumCircuits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setStatus('current')
tlpAtsIdentNumBreakers = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setStatus('current')
tlpAtsIdentNumHeatsinks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setStatus('current')
tlpAtsSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3), )
if mibBuilder.loadTexts: tlpAtsSupportsTable.setStatus('current')
tlpAtsSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsSupportsEntry.setStatus('current')
tlpAtsSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setStatus('current')
tlpAtsSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setStatus('current')
tlpAtsSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setStatus('current')
tlpAtsSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setStatus('current')
tlpAtsSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setStatus('current')
tlpAtsDisplayTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4), )
if mibBuilder.loadTexts: tlpAtsDisplayTable.setStatus('current')
tlpAtsDisplayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsDisplayEntry.setStatus('current')
tlpAtsDisplayScheme = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("schemeReverse", 0), ("schemeNormal", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDisplayScheme.setStatus('current')
tlpAtsDisplayOrientation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("displayNormal", 0), ("displayReverse", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setStatus('current')
tlpAtsDisplayAutoScroll = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("scrollDisabled", 0), ("scrollEnabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setStatus('current')
tlpAtsDisplayIntensity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("intensity25", 1), ("intensity50", 2), ("intensity75", 3), ("intensity100", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setStatus('current')
tlpAtsDisplayUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("normal", 0), ("metric", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDisplayUnits.setStatus('current')
tlpAtsDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1), )
if mibBuilder.loadTexts: tlpAtsDeviceTable.setStatus('current')
tlpAtsDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsDeviceEntry.setStatus('current')
tlpAtsDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setStatus('current')
tlpAtsDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setStatus('current')
tlpAtsDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setStatus('current')
tlpAtsDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setStatus('current')
tlpAtsDeviceTotalInputPowerRating = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 5), Integer32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setStatus('current')
tlpAtsDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 6), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setStatus('current')
tlpAtsDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 7), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setStatus('current')
tlpAtsDevicePhaseImbalance = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setStatus('current')
tlpAtsDeviceOutputPowerTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setStatus('current')
tlpAtsDeviceAggregatePowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 10), Unsigned32()).setUnits('0.1 Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setStatus('current')
tlpAtsDeviceOutputCurrentPrecision = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("none", 0), ("tenths", 1), ("hundredths", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setStatus('current')
tlpAtsDeviceGeneralFault = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 12), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setStatus('current')
tlpAtsInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1), )
if mibBuilder.loadTexts: tlpAtsInputTable.setStatus('current')
tlpAtsInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsInputEntry.setStatus('current')
tlpAtsInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setStatus('current')
tlpAtsInputNominalVoltagePhaseToPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setStatus('current')
tlpAtsInputNominalVoltagePhaseToNeutral = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setStatus('current')
tlpAtsInputBadTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setStatus('current')
tlpAtsInputBadTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 5), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setStatus('current')
tlpAtsInputBadTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 6), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setStatus('current')
tlpAtsInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setStatus('current')
tlpAtsInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 8), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setStatus('current')
tlpAtsInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 9), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setStatus('current')
tlpAtsInputFairVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 10), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setStatus('current')
tlpAtsInputBadVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 11), Unsigned32()).setUnits('Volts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setStatus('current')
tlpAtsInputSourceAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("none", 0), ("inputSourceA", 1), ("inputSourceB", 2), ("inputSourceAB", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setStatus('current')
tlpAtsInputSourceInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("inputSourceA", 0), ("inputSourceB", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setStatus('current')
tlpAtsInputSourceTransitionCount = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 14), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setStatus('current')
tlpAtsInputCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 15), Unsigned32()).setUnits('Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setStatus('current')
tlpAtsInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2), )
if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setStatus('current')
tlpAtsInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsInputLineIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsInputPhaseIndex"))
if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setStatus('current')
tlpAtsInputLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputLineIndex.setStatus('current')
tlpAtsInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setStatus('current')
tlpAtsInputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputPhaseType.setStatus('current')
tlpAtsInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 4), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setStatus('current')
tlpAtsInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setStatus('current')
tlpAtsInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 6), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setStatus('current')
tlpAtsInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setStatus('current')
tlpAtsInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 8), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setStatus('current')
tlpAtsOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1), )
if mibBuilder.loadTexts: tlpAtsOutputTable.setStatus('current')
tlpAtsOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutputIndex"))
if mibBuilder.loadTexts: tlpAtsOutputEntry.setStatus('current')
tlpAtsOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputIndex.setStatus('current')
tlpAtsOutputPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("phase1", 1), ("phase2", 2), ("phase3", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputPhase.setStatus('current')
tlpAtsOutputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setStatus('current')
tlpAtsOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputVoltage.setStatus('current')
tlpAtsOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputCurrent.setStatus('current')
tlpAtsOutputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setStatus('current')
tlpAtsOutputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setStatus('current')
tlpAtsOutputActivePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 8), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputActivePower.setStatus('current')
tlpAtsOutputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.01 percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setStatus('current')
tlpAtsOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("none", 0), ("normal", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutputSource.setStatus('current')
tlpAtsOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1), )
if mibBuilder.loadTexts: tlpAtsOutletTable.setStatus('current')
tlpAtsOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutletIndex"))
if mibBuilder.loadTexts: tlpAtsOutletEntry.setStatus('current')
tlpAtsOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletIndex.setStatus('current')
tlpAtsOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletName.setStatus('current')
tlpAtsOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletDescription.setStatus('current')
tlpAtsOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletState.setStatus('current')
tlpAtsOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletControllable.setStatus('current')
tlpAtsOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletCommand.setStatus('current')
tlpAtsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletVoltage.setStatus('current')
tlpAtsOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletCurrent.setStatus('current')
tlpAtsOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletPower.setStatus('current')
tlpAtsOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletRampAction.setStatus('current')
tlpAtsOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setStatus('current')
tlpAtsOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletShedAction.setStatus('current')
tlpAtsOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setStatus('current')
tlpAtsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 14), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletGroup.setStatus('current')
tlpAtsOutletBank = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletBank.setStatus('current')
tlpAtsOutletCircuit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletCircuit.setStatus('current')
tlpAtsOutletPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 17), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletPhase.setStatus('current')
tlpAtsOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2), )
if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setStatus('current')
tlpAtsOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutletGroupIndex"))
if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setStatus('current')
tlpAtsOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setStatus('current')
tlpAtsOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 2), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setStatus('current')
tlpAtsOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletGroupName.setStatus('current')
tlpAtsOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setStatus('current')
tlpAtsOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsOutletGroupState.setStatus('current')
tlpAtsOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setStatus('current')
tlpAtsCircuitTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1), )
if mibBuilder.loadTexts: tlpAtsCircuitTable.setStatus('current')
tlpAtsCircuitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsCircuitIndex"))
if mibBuilder.loadTexts: tlpAtsCircuitEntry.setStatus('current')
tlpAtsCircuitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitIndex.setStatus('current')
tlpAtsCircuitPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitPhase.setStatus('current')
tlpAtsCircuitInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 3), Integer32()).setUnits('0.1 Volt DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setStatus('current')
tlpAtsCircuitTotalCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 4), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setStatus('current')
tlpAtsCircuitCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 5), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setStatus('current')
tlpAtsCircuitCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 6), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setStatus('current')
tlpAtsCircuitCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 7), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setStatus('current')
tlpAtsCircuitTotalPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 8), Integer32()).setUnits('Watts').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setStatus('current')
tlpAtsCircuitPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setStatus('current')
tlpAtsCircuitUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 10), Unsigned32()).setUnits('0.01 %').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setStatus('current')
tlpAtsBreakerTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1), )
if mibBuilder.loadTexts: tlpAtsBreakerTable.setStatus('current')
tlpAtsBreakerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsBreakerIndex"))
if mibBuilder.loadTexts: tlpAtsBreakerEntry.setStatus('current')
tlpAtsBreakerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsBreakerIndex.setStatus('current')
tlpAtsBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("open", 0), ("closed", 1), ("notInstalled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsBreakerStatus.setStatus('current')
tlpAtsHeatsinkTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1), )
if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setStatus('current')
tlpAtsHeatsinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsHeatsinkIndex"))
if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setStatus('current')
tlpAtsHeatsinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setStatus('current')
tlpAtsHeatsinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("notAvailable", 0), ("available", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setStatus('current')
tlpAtsHeatsinkTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 3), Integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setStatus('current')
tlpAtsHeatsinkTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 4), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setStatus('current')
tlpAtsControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1), )
if mibBuilder.loadTexts: tlpAtsControlTable.setStatus('current')
tlpAtsControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsControlEntry.setStatus('current')
tlpAtsControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsControlRamp.setStatus('current')
tlpAtsControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsControlShed.setStatus('current')
tlpAtsControlAtsOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsControlAtsOn.setStatus('current')
tlpAtsControlAtsOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsControlAtsOff.setStatus('current')
tlpAtsControlAtsReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setStatus('current')
tlpAtsControlResetGeneralFault = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setStatus('current')
tlpAtsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1), )
if mibBuilder.loadTexts: tlpAtsConfigTable.setStatus('current')
tlpAtsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsConfigEntry.setStatus('current')
tlpAtsConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setStatus('current')
tlpAtsConfigSourceSelect = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("inputSourceA", 1), ("inputSourceB", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setStatus('current')
tlpAtsConfigSource1ReturnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 3), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setStatus('current')
tlpAtsConfigSource2ReturnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 4), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setStatus('current')
tlpAtsConfigAutoRampOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setStatus('current')
tlpAtsConfigAutoShedOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setStatus('current')
tlpAtsConfigVoltageRangeTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2), )
if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setStatus('current')
tlpAtsConfigVoltageRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setStatus('current')
tlpAtsConfigHighVoltageTransfer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 1), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setStatus('current')
tlpAtsConfigHighVoltageReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 2), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setStatus('current')
tlpAtsConfigSource1TransferReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setStatus('current')
tlpAtsConfigSource1BrownoutSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setStatus('current')
tlpAtsConfigSource1TransferSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 5), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setStatus('current')
tlpAtsConfigSource2TransferReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 6), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setStatus('current')
tlpAtsConfigSource2BrownoutSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setStatus('current')
tlpAtsConfigSource2TransferSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 8), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setStatus('current')
tlpAtsConfigLowVoltageReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 9), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setStatus('current')
tlpAtsConfigLowVoltageTransfer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 10), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setStatus('current')
tlpAtsConfigVoltageRangeLimitsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3), )
if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setStatus('current')
tlpAtsConfigVoltageRangeLimitsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setStatus('current')
tlpAtsConfigSourceBrownoutSetMinimum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 1), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setStatus('current')
tlpAtsConfigSourceBrownoutSetMaximum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 2), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setStatus('current')
tlpAtsConfigSourceTransferSetMinimum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setStatus('current')
tlpAtsConfigSourceTransferSetMaximum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setStatus('current')
tlpAtsConfigThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4), )
if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setStatus('current')
tlpAtsConfigThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"))
if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setStatus('current')
tlpAtsConfigOverCurrentThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 1), Unsigned32()).setUnits('0.1 Amps').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setStatus('current')
tlpAtsConfigOverTemperatureThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 2), Unsigned32()).setUnits('0.1 Centigrade').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setStatus('current')
tlpAtsConfigOverVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setStatus('current')
tlpAtsConfigOverLoadThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 4), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setStatus('current')
tlpCoolingIdentNumCooling = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setStatus('current')
tlpKvmIdentNumKvm = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setStatus('current')
tlpRackTrackIdentNumRackTrack = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setStatus('current')
tlpSwitchIdentNumSwitch = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setStatus('current')
tlpAgentType = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8)).clone(namedValues=NamedValues(("unknown", 0), ("pal", 1), ("pansa", 2), ("delta", 3), ("sinetica", 4), ("netos6", 5), ("netos7", 6), ("panms", 7), ("nmc5", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentType.setStatus('current')
tlpAgentVersion = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentVersion.setStatus('current')
tlpAgentDriverVersion = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentDriverVersion.setStatus('current')
tlpAgentMAC = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentMAC.setStatus('current')
tlpAgentSerialNum = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentSerialNum.setStatus('current')
tlpAgentUuid = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentUuid.setStatus('current')
tlpAgentAttributesSupports = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1))
tlpAgentAttributesSupportsHTTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setStatus('current')
tlpAgentAttributesSupportsHTTPS = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setStatus('current')
tlpAgentAttributesSupportsFTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setStatus('current')
tlpAgentAttributesSupportsTelnetMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setStatus('current')
tlpAgentAttributesSupportsTelnetCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setStatus('current')
tlpAgentAttributesSupportsSSHMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setStatus('current')
tlpAgentAttributesSupportsSSHCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 7), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setStatus('current')
tlpAgentAttributesSupportsSNMP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 8), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setStatus('current')
tlpAgentAttributesSupportsSNMPTrap = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 9), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setStatus('current')
tlpAgentAttributesAutostart = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2))
tlpAgentAttributesAutostartHTTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setStatus('current')
tlpAgentAttributesAutostartHTTPS = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setStatus('current')
tlpAgentAttributesAutostartFTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setStatus('current')
tlpAgentAttributesAutostartTelnetMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 4), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setStatus('current')
tlpAgentAttributesAutostartTelnetCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setStatus('current')
tlpAgentAttributesAutostartSSHMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setStatus('current')
tlpAgentAttributesAutostartSSHCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 7), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setStatus('current')
tlpAgentAttributesAutostartSNMP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 8), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setStatus('current')
tlpAgentAttributesSnmp = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3))
tlpAgentAttributesSNMPv1Enabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setStatus('current')
tlpAgentAttributesSNMPv2cEnabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setStatus('current')
tlpAgentAttributesSNMPv3Enabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setStatus('current')
tlpAgentAttributesPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4))
tlpAgentAttributesHTTPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setStatus('current')
tlpAgentAttributesHTTPSPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setStatus('current')
tlpAgentAttributesFTPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setStatus('current')
tlpAgentAttributesTelnetMenuPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setStatus('current')
tlpAgentAttributesTelnetCLIPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setStatus('current')
tlpAgentAttributesSSHMenuPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setStatus('current')
tlpAgentAttributesSSHCLIPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setStatus('current')
tlpAgentAttributesSNMPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 8), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setStatus('current')
tlpAgentAttributesSNMPTrapPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setStatus('current')
tlpAgentConfigRemoteRegistration = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 1), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setStatus('current')
tlpAgentConfigCurrentTime = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setStatus('current')
tlpAgentNumEmailContacts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setStatus('current')
tlpAgentEmailContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2), )
if mibBuilder.loadTexts: tlpAgentEmailContactTable.setStatus('current')
tlpAgentEmailContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAgentEmailContactIndex"))
if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setStatus('current')
tlpAgentEmailContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setStatus('current')
tlpAgentEmailContactRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 2), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setStatus('current')
tlpAgentEmailContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentEmailContactName.setStatus('current')
tlpAgentEmailContactAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setStatus('current')
tlpAgentNumSnmpContacts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setStatus('current')
tlpAgentSnmpContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2), )
if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setStatus('current')
tlpAgentSnmpContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAgentSnmpContactIndex"))
if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setStatus('current')
tlpAgentSnmpContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setStatus('current')
tlpAgentSnmpContactRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 2), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setStatus('current')
tlpAgentSnmpContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactName.setStatus('current')
tlpAgentSnmpContactIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setStatus('current')
tlpAgentSnmpContactPort = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setStatus('current')
tlpAgentSnmpContactSnmpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("snmpv1", 1), ("snmpv2c", 2), ("snmpv3", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setStatus('current')
tlpAgentSnmpContactSecurityName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 7), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setStatus('current')
tlpAgentSnmpContactPrivPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 8), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setStatus('current')
tlpAgentSnmpContactAuthPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 9), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setStatus('current')
tlpAlarmsPresent = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 3, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmsPresent.setStatus('current')
tlpAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 3, 2), )
if mibBuilder.loadTexts: tlpAlarmTable.setStatus('current')
tlpAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAlarmId"))
if mibBuilder.loadTexts: tlpAlarmEntry.setStatus('current')
tlpAlarmId = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmId.setStatus('current')
tlpAlarmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 2), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmDescr.setStatus('current')
tlpAlarmTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 3), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmTime.setStatus('current')
tlpAlarmTableRef = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 4), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmTableRef.setStatus('current')
tlpAlarmTableRowRef = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 5), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmTableRowRef.setStatus('current')
tlpAlarmDetail = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmDetail.setStatus('current')
tlpAlarmType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("critical", 1), ("warning", 2), ("info", 3), ("status", 4), ("offline", 5), ("custom", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmType.setStatus('current')
tlpAlarmState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("active", 1), ("inactive", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmState.setStatus('current')
tlpAlarmAcknowledged = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 9), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("notAcknowledged", 1), ("acknowledged", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAlarmAcknowledged.setStatus('current')
tlpAlarmCommunicationsLost = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 1))
if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setStatus('current')
tlpAlarmUserDefined = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2))
tlpAlarmUserDefined01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 1))
if mibBuilder.loadTexts: tlpAlarmUserDefined01.setStatus('current')
tlpAlarmUserDefined02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 2))
if mibBuilder.loadTexts: tlpAlarmUserDefined02.setStatus('current')
tlpAlarmUserDefined03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 3))
if mibBuilder.loadTexts: tlpAlarmUserDefined03.setStatus('current')
tlpAlarmUserDefined04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 4))
if mibBuilder.loadTexts: tlpAlarmUserDefined04.setStatus('current')
tlpAlarmUserDefined05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 5))
if mibBuilder.loadTexts: tlpAlarmUserDefined05.setStatus('current')
tlpAlarmUserDefined06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 6))
if mibBuilder.loadTexts: tlpAlarmUserDefined06.setStatus('current')
tlpAlarmUserDefined07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 7))
if mibBuilder.loadTexts: tlpAlarmUserDefined07.setStatus('current')
tlpAlarmUserDefined08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 8))
if mibBuilder.loadTexts: tlpAlarmUserDefined08.setStatus('current')
tlpAlarmUserDefined09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 9))
if mibBuilder.loadTexts: tlpAlarmUserDefined09.setStatus('current')
tlpUpsAlarmBatteryBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 1))
if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setStatus('current')
tlpUpsAlarmOnBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 2))
if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setStatus('current')
tlpUpsAlarmLowBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 3))
if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setStatus('current')
tlpUpsAlarmDepletedBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 4))
if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setStatus('current')
tlpUpsAlarmTempBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 5))
if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setStatus('current')
tlpUpsAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 6))
if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setStatus('current')
tlpUpsAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 7))
if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setStatus('current')
tlpUpsAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 8))
if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setStatus('current')
tlpUpsAlarmOnBypass = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 9))
if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setStatus('current')
tlpUpsAlarmBypassBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 10))
if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setStatus('current')
tlpUpsAlarmOutputOffAsRequested = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 11))
if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setStatus('current')
tlpUpsAlarmUpsOffAsRequested = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 12))
if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setStatus('current')
tlpUpsAlarmChargerFailed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 13))
if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setStatus('current')
tlpUpsAlarmUpsOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 14))
if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setStatus('current')
tlpUpsAlarmUpsSystemOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 15))
if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setStatus('current')
tlpUpsAlarmFanFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 16))
if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setStatus('current')
tlpUpsAlarmFuseFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 17))
if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setStatus('current')
tlpUpsAlarmGeneralFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 18))
if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setStatus('current')
tlpUpsAlarmDiagnosticTestFailed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 19))
if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setStatus('current')
tlpUpsAlarmAwaitingPower = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 20))
if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setStatus('current')
tlpUpsAlarmShutdownPending = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 21))
if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setStatus('current')
tlpUpsAlarmShutdownImminent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 22))
if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setStatus('current')
tlpUpsAlarmLoadLevelAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23))
tlpUpsAlarmLoadLevelAboveThresholdTotal = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 1))
if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setStatus('current')
tlpUpsAlarmLoadLevelAboveThresholdPhase1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 2))
if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setStatus('current')
tlpUpsAlarmLoadLevelAboveThresholdPhase2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 3))
if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setStatus('current')
tlpUpsAlarmLoadLevelAboveThresholdPhase3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 4))
if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setStatus('current')
tlpUpsAlarmOutputCurrentChanged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 24))
if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setStatus('current')
tlpUpsAlarmBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 25))
if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setStatus('current')
tlpUpsAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26))
tlpUpsAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 1))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setStatus('current')
tlpUpsAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 2))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setStatus('current')
tlpUpsAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 3))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setStatus('current')
tlpUpsAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 4))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setStatus('current')
tlpUpsAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 5))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setStatus('current')
tlpUpsAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 6))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setStatus('current')
tlpUpsAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 7))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setStatus('current')
tlpUpsAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 8))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setStatus('current')
tlpUpsAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 9))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setStatus('current')
tlpUpsAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 10))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setStatus('current')
tlpUpsAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 11))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setStatus('current')
tlpUpsAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 12))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setStatus('current')
tlpUpsAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 13))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setStatus('current')
tlpUpsAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 14))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setStatus('current')
tlpUpsAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 15))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setStatus('current')
tlpUpsAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 16))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setStatus('current')
tlpUpsAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 17))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setStatus('current')
tlpUpsAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 18))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setStatus('current')
tlpUpsAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 19))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setStatus('current')
tlpUpsAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 20))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setStatus('current')
tlpUpsAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 21))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setStatus('current')
tlpUpsAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 22))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setStatus('current')
tlpUpsAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 23))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setStatus('current')
tlpUpsAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 24))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setStatus('current')
tlpUpsAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 25))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setStatus('current')
tlpUpsAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 26))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setStatus('current')
tlpUpsAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 27))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setStatus('current')
tlpUpsAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 28))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setStatus('current')
tlpUpsAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 29))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setStatus('current')
tlpUpsAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 30))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setStatus('current')
tlpUpsAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 31))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setStatus('current')
tlpUpsAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 32))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setStatus('current')
tlpUpsAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 33))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setStatus('current')
tlpUpsAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 34))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setStatus('current')
tlpUpsAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 35))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setStatus('current')
tlpUpsAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 36))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setStatus('current')
tlpUpsAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 37))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setStatus('current')
tlpUpsAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 38))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setStatus('current')
tlpUpsAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 39))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setStatus('current')
tlpUpsAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 40))
if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setStatus('current')
tlpUpsAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27))
tlpUpsAlarmCurrentAboveThreshold1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 1))
if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setStatus('current')
tlpUpsAlarmCurrentAboveThreshold2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 2))
if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setStatus('current')
tlpUpsAlarmCurrentAboveThreshold3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 3))
if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setStatus('current')
tlpUpsAlarmRuntimeBelowWarningLevel = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 28))
if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setStatus('current')
tlpUpsAlarmBusStartVoltageLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 29))
if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setStatus('current')
tlpUpsAlarmBusOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 30))
if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setStatus('current')
tlpUpsAlarmBusUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 31))
if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setStatus('current')
tlpUpsAlarmBusVoltageUnbalanced = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 32))
if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setStatus('current')
tlpUpsAlarmInverterSoftStartBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 33))
if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setStatus('current')
tlpUpsAlarmInverterOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 34))
if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setStatus('current')
tlpUpsAlarmInverterUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 35))
if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setStatus('current')
tlpUpsAlarmInverterCircuitBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 36))
if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setStatus('current')
tlpUpsAlarmBatteryOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 37))
if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setStatus('current')
tlpUpsAlarmBatteryUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 38))
if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setStatus('current')
tlpUpsAlarmSiteWiringFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 39))
if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setStatus('current')
tlpUpsAlarmOverTemperatureProtection = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 40))
if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setStatus('current')
tlpUpsAlarmOverCharged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 41))
if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setStatus('current')
tlpUpsAlarmEPOActive = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 42))
if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setStatus('current')
tlpUpsAlarmBypassFrequencyBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 43))
if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setStatus('current')
tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 44))
if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setStatus('current')
tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 45))
if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setStatus('current')
tlpUpsAlarmSmartBatteryCommLost = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 46))
if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setStatus('current')
tlpUpsAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 47))
if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setStatus('current')
tlpPduAlarmLoadLevelAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 1))
if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setStatus('current')
tlpPduAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 2))
if mibBuilder.loadTexts: tlpPduAlarmInputBad.setStatus('current')
tlpPduAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 3))
if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setStatus('current')
tlpPduAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 4))
if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setStatus('current')
tlpPduAlarmOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 5))
if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setStatus('current')
tlpPduAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6))
tlpPduAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 1))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setStatus('current')
tlpPduAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 2))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setStatus('current')
tlpPduAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 3))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setStatus('current')
tlpPduAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 4))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setStatus('current')
tlpPduAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 5))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setStatus('current')
tlpPduAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 6))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setStatus('current')
tlpPduAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 7))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setStatus('current')
tlpPduAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 8))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setStatus('current')
tlpPduAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 9))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setStatus('current')
tlpPduAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 10))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setStatus('current')
tlpPduAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 11))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setStatus('current')
tlpPduAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 12))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setStatus('current')
tlpPduAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 13))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setStatus('current')
tlpPduAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 14))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setStatus('current')
tlpPduAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 15))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setStatus('current')
tlpPduAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 16))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setStatus('current')
tlpPduAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 17))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setStatus('current')
tlpPduAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 18))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setStatus('current')
tlpPduAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 19))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setStatus('current')
tlpPduAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 20))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setStatus('current')
tlpPduAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 21))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setStatus('current')
tlpPduAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 22))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setStatus('current')
tlpPduAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 23))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setStatus('current')
tlpPduAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 24))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setStatus('current')
tlpPduAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 25))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setStatus('current')
tlpPduAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 26))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setStatus('current')
tlpPduAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 27))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setStatus('current')
tlpPduAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 28))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setStatus('current')
tlpPduAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 29))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setStatus('current')
tlpPduAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 30))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setStatus('current')
tlpPduAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 31))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setStatus('current')
tlpPduAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 32))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setStatus('current')
tlpPduAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 33))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setStatus('current')
tlpPduAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 34))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setStatus('current')
tlpPduAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 35))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setStatus('current')
tlpPduAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 36))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setStatus('current')
tlpPduAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 37))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setStatus('current')
tlpPduAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 38))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setStatus('current')
tlpPduAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 39))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setStatus('current')
tlpPduAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 40))
if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setStatus('current')
tlpPduAlarmCircuitBreakerOpen = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7))
tlpPduAlarmCircuitBreakerOpen01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 1))
if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setStatus('current')
tlpPduAlarmCircuitBreakerOpen02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 2))
if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setStatus('current')
tlpPduAlarmCircuitBreakerOpen03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 3))
if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setStatus('current')
tlpPduAlarmCircuitBreakerOpen04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 4))
if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setStatus('current')
tlpPduAlarmCircuitBreakerOpen05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 5))
if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setStatus('current')
tlpPduAlarmCircuitBreakerOpen06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 6))
if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setStatus('current')
tlpPduAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8))
tlpPduAlarmCurrentAboveThreshold1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 1))
if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setStatus('current')
tlpPduAlarmCurrentAboveThreshold2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 2))
if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setStatus('current')
tlpPduAlarmCurrentAboveThreshold3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 3))
if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setStatus('current')
tlpPduAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 9))
if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setStatus('current')
tlpEnvAlarmTemperatureBeyondLimits = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 1))
if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setStatus('current')
tlpEnvAlarmHumidityBeyondLimits = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 2))
if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setStatus('current')
tlpEnvAlarmInputContact = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3))
tlpEnvAlarmInputContact01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 1))
if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setStatus('current')
tlpEnvAlarmInputContact02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 2))
if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setStatus('current')
tlpEnvAlarmInputContact03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 3))
if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setStatus('current')
tlpEnvAlarmInputContact04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 4))
if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setStatus('current')
tlpEnvAlarmOutputContact = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4))
tlpEnvAlarmOutputContact01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 1))
if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setStatus('current')
tlpEnvAlarmOutputContact02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 2))
if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setStatus('current')
tlpEnvAlarmOutputContact03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 3))
if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setStatus('current')
tlpEnvAlarmOutputContact04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 4))
if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setStatus('current')
tlpAtsAlarmOutage = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1))
tlpAtsAlarmSource1Outage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 1))
if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setStatus('current')
tlpAtsAlarmSource2Outage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 2))
if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setStatus('current')
tlpAtsAlarmTemperature = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2))
tlpAtsAlarmSystemTemperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 1))
if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setStatus('current')
tlpAtsAlarmSource1Temperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 2))
if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setStatus('current')
tlpAtsAlarmSource2Temperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 3))
if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setStatus('current')
tlpAtsAlarmLoadLevelAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 3))
if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setStatus('current')
tlpAtsAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 4))
if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setStatus('current')
tlpAtsAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 5))
if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setStatus('current')
tlpAtsAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 6))
if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setStatus('current')
tlpAtsAlarmOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 7))
if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setStatus('current')
tlpAtsAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8))
tlpAtsAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 1))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setStatus('current')
tlpAtsAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 2))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setStatus('current')
tlpAtsAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 3))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setStatus('current')
tlpAtsAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 4))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setStatus('current')
tlpAtsAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 5))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setStatus('current')
tlpAtsAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 6))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setStatus('current')
tlpAtsAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 7))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setStatus('current')
tlpAtsAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 8))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setStatus('current')
tlpAtsAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 9))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setStatus('current')
tlpAtsAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 10))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setStatus('current')
tlpAtsAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 11))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setStatus('current')
tlpAtsAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 12))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setStatus('current')
tlpAtsAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 13))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setStatus('current')
tlpAtsAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 14))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setStatus('current')
tlpAtsAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 15))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setStatus('current')
tlpAtsAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 16))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setStatus('current')
tlpAtsAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 17))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setStatus('current')
tlpAtsAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 18))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setStatus('current')
tlpAtsAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 19))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setStatus('current')
tlpAtsAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 20))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setStatus('current')
tlpAtsAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 21))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setStatus('current')
tlpAtsAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 22))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setStatus('current')
tlpAtsAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 23))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setStatus('current')
tlpAtsAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 24))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setStatus('current')
tlpAtsAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 25))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setStatus('current')
tlpAtsAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 26))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setStatus('current')
tlpAtsAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 27))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setStatus('current')
tlpAtsAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 28))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setStatus('current')
tlpAtsAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 29))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setStatus('current')
tlpAtsAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 30))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setStatus('current')
tlpAtsAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 31))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setStatus('current')
tlpAtsAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 32))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setStatus('current')
tlpAtsAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 33))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setStatus('current')
tlpAtsAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 34))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setStatus('current')
tlpAtsAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 35))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setStatus('current')
tlpAtsAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 36))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setStatus('current')
tlpAtsAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 37))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setStatus('current')
tlpAtsAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 38))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setStatus('current')
tlpAtsAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 39))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setStatus('current')
tlpAtsAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 40))
if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setStatus('current')
tlpAtsAlarmCircuitBreakerOpen = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9))
tlpAtsAlarmCircuitBreakerOpen01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 1))
if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setStatus('current')
tlpAtsAlarmCircuitBreakerOpen02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 2))
if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setStatus('current')
tlpAtsAlarmCircuitBreakerOpen03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 3))
if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setStatus('current')
tlpAtsAlarmCircuitBreakerOpen04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 4))
if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setStatus('current')
tlpAtsAlarmCircuitBreakerOpen05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 5))
if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setStatus('current')
tlpAtsAlarmCircuitBreakerOpen06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 6))
if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setStatus('current')
tlpAtsAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10))
tlpAtsAlarmCurrentAboveThresholdA1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 1))
if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setStatus('current')
tlpAtsAlarmCurrentAboveThresholdA2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 2))
if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setStatus('current')
tlpAtsAlarmCurrentAboveThresholdA3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 3))
if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setStatus('current')
tlpAtsAlarmCurrentAboveThresholdB1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 4))
if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setStatus('current')
tlpAtsAlarmCurrentAboveThresholdB2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 5))
if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setStatus('current')
tlpAtsAlarmCurrentAboveThresholdB3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 6))
if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setStatus('current')
tlpAtsAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 11))
if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setStatus('current')
tlpAtsAlarmGeneralFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 12))
if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setStatus('current')
tlpAtsAlarmVoltage = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13))
tlpAtsAlarmOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 1))
if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setStatus('current')
tlpAtsAlarmSource1OverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 2))
if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setStatus('current')
tlpAtsAlarmSource2OverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 3))
if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setStatus('current')
tlpAtsAlarmFrequency = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14))
tlpAtsAlarmSource1InvalidFrequency = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 1))
if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setStatus('current')
tlpAtsAlarmSource2InvalidFrequency = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 2))
if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setStatus('current')
tlpCoolingAlarmSupplyAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 1))
if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setStatus('current')
tlpCoolingAlarmReturnAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 2))
if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setStatus('current')
tlpCoolingAlarmCondenserInletAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 3))
if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setStatus('current')
tlpCoolingAlarmCondenserOutletAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 4))
if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setStatus('current')
tlpCoolingAlarmSuctionTemperatureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 5))
if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setStatus('current')
tlpCoolingAlarmEvaporatorTemperatureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 6))
if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setStatus('current')
tlpCoolingAlarmAirFilterClogged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 7))
if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setStatus('current')
tlpCoolingAlarmAirFilterRunHoursViolation = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 8))
if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setStatus('current')
tlpCoolingAlarmSuctionPressureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 9))
if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setStatus('current')
tlpCoolingAlarmInverterCommunicationsFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 10))
if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setStatus('current')
tlpCoolingAlarmRemoteShutdownViaInputContact = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 11))
if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setStatus('current')
tlpCoolingAlarmCondensatePumpFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 12))
if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setStatus('current')
tlpCoolingAlarmLowRefrigerantStartupFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 13))
if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setStatus('current')
tlpCoolingAlarmCondenserFanFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 14))
if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setStatus('current')
tlpCoolingAlarmCondenserFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 15))
if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setStatus('current')
tlpCoolingAlarmEvaporatorCoolingFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 16))
if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setStatus('current')
tlpCoolingAlarmReturnAirTempHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 17))
if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setStatus('current')
tlpCoolingAlarmSupplyAirTempHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 18))
if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setStatus('current')
tlpCoolingAlarmEvaporatorFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 19))
if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setStatus('current')
tlpCoolingAlarmEvaporatorFreezeUp = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 20))
if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setStatus('current')
tlpCoolingAlarmDischargePressureHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 21))
if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setStatus('current')
tlpCoolingAlarmPressureGaugeFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 22))
if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setStatus('current')
tlpCoolingAlarmDischargePressurePersistentHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 23))
if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setStatus('current')
tlpCoolingAlarmSuctionPressureLowStartFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 24))
if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setStatus('current')
tlpCoolingAlarmSuctionPressureLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 25))
if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setStatus('current')
tlpCoolingAlarmSuctionPressurePersistentLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 26))
if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setStatus('current')
tlpCoolingAlarmStartupLinePressureImbalance = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 27))
if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setStatus('current')
tlpCoolingAlarmCompressorFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 28))
if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setStatus('current')
tlpCoolingAlarmCurrentLimit = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 29))
if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setStatus('current')
tlpCoolingAlarmWaterLeak = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 30))
if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setStatus('current')
tlpCoolingAlarmFanUnderCurrent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 31))
if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setStatus('current')
tlpCoolingAlarmFanOverCurrent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 32))
if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setStatus('current')
tlpCoolingAlarmDischargePressureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 33))
if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setStatus('current')
tlpCoolingAlarmWaterFull = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 34))
if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setStatus('current')
tlpCoolingAlarmAutoCoolingOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 35))
if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setStatus('current')
tlpCoolingAlarmPowerButtonPressed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 36))
if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setStatus('current')
tlpCoolingAlarmDisconnectedFromDevice = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 37))
if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setStatus('current')
tlpAlarmControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1), )
if mibBuilder.loadTexts: tlpAlarmControlTable.setStatus('current')
tlpAlarmControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAlarmControlIndex"))
if mibBuilder.loadTexts: tlpAlarmControlEntry.setStatus('current')
tlpAlarmControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmControlIndex.setStatus('current')
tlpAlarmControlDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 2), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmControlDescr.setStatus('current')
tlpAlarmControlDetail = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tlpAlarmControlDetail.setStatus('current')
tlpAlarmControlSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("critical", 1), ("warning", 2), ("info", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: tlpAlarmControlSeverity.setStatus('current')
tlpNotificationsAlarmEntryAdded = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 1)).setObjects(("TRIPPLITE-PRODUCTS", "tlpAlarmId"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDescr"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTime"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRowRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDetail"), ("TRIPPLITE-PRODUCTS", "tlpAlarmType"))
if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setStatus('current')
tlpNotificationsAlarmEntryRemoved = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 2)).setObjects(("TRIPPLITE-PRODUCTS", "tlpAlarmId"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDescr"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTime"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRowRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDetail"), ("TRIPPLITE-PRODUCTS", "tlpAlarmType"))
if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setStatus('current')
tlpNotifySystemStartup = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 3))
if mibBuilder.loadTexts: tlpNotifySystemStartup.setStatus('current')
tlpNotifySystemShutdown = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 4))
if mibBuilder.loadTexts: tlpNotifySystemShutdown.setStatus('current')
tlpNotifySystemUpdate = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 5))
if mibBuilder.loadTexts: tlpNotifySystemUpdate.setStatus('current')
mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpCoolingAlarmCondenserFanFault=tlpCoolingAlarmCondenserFanFault, tlpCoolingAlarmAirFilterClogged=tlpCoolingAlarmAirFilterClogged, tlpUpsInputPhaseCurrent=tlpUpsInputPhaseCurrent, tlpAtsAlarmLoadOff23=tlpAtsAlarmLoadOff23, tlpAgentNumEmailContacts=tlpAgentNumEmailContacts, tlpAtsOutputEntry=tlpAtsOutputEntry, tlpPduSupportsOutletGroup=tlpPduSupportsOutletGroup, tlpPduDeviceTable=tlpPduDeviceTable, tlpAtsOutletGroupRowStatus=tlpAtsOutletGroupRowStatus, tlpUpsConfigColdStart=tlpUpsConfigColdStart, tlpUpsOutletGroupName=tlpUpsOutletGroupName, tlpPduAlarmLoadOff04=tlpPduAlarmLoadOff04, tlpUpsInputPhaseTable=tlpUpsInputPhaseTable, tlpAgentAttributesSupports=tlpAgentAttributesSupports, tlpAtsAlarmInputBad=tlpAtsAlarmInputBad, tlpUpsBatteryPackIdentTable=tlpUpsBatteryPackIdentTable, tlpPduAlarmOutputOverload=tlpPduAlarmOutputOverload, tlpAgentSnmpContactPort=tlpAgentSnmpContactPort, tlpAgentEmailContactAddress=tlpAgentEmailContactAddress, tlpUpsWatchdogSecsBeforeReboot=tlpUpsWatchdogSecsBeforeReboot, tlpSwitchDevice=tlpSwitchDevice, tlpAtsAlarmLoadOff32=tlpAtsAlarmLoadOff32, tlpPduAlarmLoadOff40=tlpPduAlarmLoadOff40, tlpUpsAlarmLoadOff23=tlpUpsAlarmLoadOff23, tlpUpsOutputLineVoltage=tlpUpsOutputLineVoltage, tlpAtsInputPhaseCurrent=tlpAtsInputPhaseCurrent, tlpAtsAlarmTemperature=tlpAtsAlarmTemperature, tlpSwitch=tlpSwitch, tlpPduDeviceMainLoadControllable=tlpPduDeviceMainLoadControllable, tlpUpsInputTable=tlpUpsInputTable, tlpAtsOutputSource=tlpAtsOutputSource, tlpUpsAlarmCurrentAboveThreshold3=tlpUpsAlarmCurrentAboveThreshold3, tlpCoolingDevice=tlpCoolingDevice, tlpEnvAlarmInputContact01=tlpEnvAlarmInputContact01, tlpUpsBattery=tlpUpsBattery, tlpAtsOutputActivePower=tlpAtsOutputActivePower, tlpPduAlarmLoadOff25=tlpPduAlarmLoadOff25, tlpAlarmControlDescr=tlpAlarmControlDescr, tlpUpsDeviceTestResultsStatus=tlpUpsDeviceTestResultsStatus, tlpAtsDeviceMainLoadControllable=tlpAtsDeviceMainLoadControllable, tlpPduAlarmOutputOff=tlpPduAlarmOutputOff, tlpAtsAlarmLoadOff11=tlpAtsAlarmLoadOff11, tlpPduAlarmLoadOff36=tlpPduAlarmLoadOff36, tlpAtsIdentNumOutletGroups=tlpAtsIdentNumOutletGroups, tlpPduAlarmLoadOff14=tlpPduAlarmLoadOff14, tlpUpsIdentNumOutlets=tlpUpsIdentNumOutlets, tlpPduBreakerStatus=tlpPduBreakerStatus, tlpAtsAlarmSource1Outage=tlpAtsAlarmSource1Outage, tlpPduOutletEntry=tlpPduOutletEntry, tlpAtsOutletPhase=tlpAtsOutletPhase, tlpPduInputEntry=tlpPduInputEntry, tlpAtsDeviceMainLoadCommand=tlpAtsDeviceMainLoadCommand, tlpAtsOutputCurrentMax=tlpAtsOutputCurrentMax, tlpCoolingDetail=tlpCoolingDetail, tlpUpsConfigAutoShedOnTransition=tlpUpsConfigAutoShedOnTransition, tlpPduDisplayOrientation=tlpPduDisplayOrientation, tlpUpsAlarmLoadOff22=tlpUpsAlarmLoadOff22, tlpUpsAlarmLoadOff14=tlpUpsAlarmLoadOff14, tlpPduInput=tlpPduInput, tlpAtsConfigSource1BrownoutSet=tlpAtsConfigSource1BrownoutSet, tlpPduAlarmLoadOff28=tlpPduAlarmLoadOff28, tlpPduHeatsinkEntry=tlpPduHeatsinkEntry, tlpUpsAlarmLoadOff31=tlpUpsAlarmLoadOff31, tlpDeviceManufacturer=tlpDeviceManufacturer, tlpCoolingAlarmEvaporatorFailure=tlpCoolingAlarmEvaporatorFailure, tlpPduAlarmInputBad=tlpPduAlarmInputBad, tlpAtsConfigSource2TransferReset=tlpAtsConfigSource2TransferReset, tlpEnvAlarmOutputContact=tlpEnvAlarmOutputContact, tlpEnvIdentTable=tlpEnvIdentTable, tlpAtsAlarmCurrentAboveThresholdA1=tlpAtsAlarmCurrentAboveThresholdA1, tlpEnvOutputContactInAlarm=tlpEnvOutputContactInAlarm, tlpAgentSnmpContactTable=tlpAgentSnmpContactTable, tlpUpsInputPhaseVoltage=tlpUpsInputPhaseVoltage, tlpUpsOutletGroupEntry=tlpUpsOutletGroupEntry, tlpRackTrackAlarms=tlpRackTrackAlarms, tlpCoolingAlarmDischargePressurePersistentHigh=tlpCoolingAlarmDischargePressurePersistentHigh, tlpAtsAlarmOutputOff=tlpAtsAlarmOutputOff, tlpPduSupportsOutletVoltage=tlpPduSupportsOutletVoltage, tlpUpsAlarmLoadOff34=tlpUpsAlarmLoadOff34, tlpCoolingAlarmEvaporatorTemperatureSensorFault=tlpCoolingAlarmEvaporatorTemperatureSensorFault, tlpUpsAlarmLoadOff37=tlpUpsAlarmLoadOff37, tlpAtsConfigSourceSelect=tlpAtsConfigSourceSelect, tlpAtsOutlet=tlpAtsOutlet, tlpUpsOutletGroupTable=tlpUpsOutletGroupTable, tlpAgentSnmpContactSnmpVersion=tlpAgentSnmpContactSnmpVersion, tlpPduAlarmLoadOff30=tlpPduAlarmLoadOff30, tlpPduAlarmLoadOff23=tlpPduAlarmLoadOff23, tlpUpsOutletDescription=tlpUpsOutletDescription, tlpEnvOutputContactNormalState=tlpEnvOutputContactNormalState, tlpPduAlarmCurrentAboveThreshold1=tlpPduAlarmCurrentAboveThreshold1, tlpDeviceIdentDateInstalled=tlpDeviceIdentDateInstalled, tlpAgentAttributesSSHMenuPort=tlpAgentAttributesSSHMenuPort, tlpUpsAlarmTempBad=tlpUpsAlarmTempBad, tlpAtsAlarmLoadOff31=tlpAtsAlarmLoadOff31, tlpUpsOutletCurrent=tlpUpsOutletCurrent, tlpAtsAlarmCircuitBreakerOpen01=tlpAtsAlarmCircuitBreakerOpen01, tlpDeviceIdentEntry=tlpDeviceIdentEntry, tlpUpsAlarmDiagnosticTestFailed=tlpUpsAlarmDiagnosticTestFailed, tlpPduControlTable=tlpPduControlTable, tlpAlarmControlSeverity=tlpAlarmControlSeverity, tlpAtsControlTable=tlpAtsControlTable, tlpAtsCircuitCurrentMin=tlpAtsCircuitCurrentMin, tlpAtsAlarmLoadOff01=tlpAtsAlarmLoadOff01, tlpUpsBatteryPackConfigMinCellVoltage=tlpUpsBatteryPackConfigMinCellVoltage, tlpAtsIdent=tlpAtsIdent, tlpAlarmCommunicationsLost=tlpAlarmCommunicationsLost, tlpUpsControlRamp=tlpUpsControlRamp, tlpPduAlarmLoadOff06=tlpPduAlarmLoadOff06, tlpAtsAlarmLoadOff22=tlpAtsAlarmLoadOff22, tlpUpsControlBypass=tlpUpsControlBypass, tlpPduInputLowTransferVoltage=tlpPduInputLowTransferVoltage, tlpAlarmsWellKnown=tlpAlarmsWellKnown, tlpEnvInputContactIndex=tlpEnvInputContactIndex, tlpAtsIdentNumCircuits=tlpAtsIdentNumCircuits, tlpAtsOutletBank=tlpAtsOutletBank, tlpUpsAlarmShutdownImminent=tlpUpsAlarmShutdownImminent, tlpPduDeviceOutputCurrentPrecision=tlpPduDeviceOutputCurrentPrecision, tlpAtsInputPhaseEntry=tlpAtsInputPhaseEntry, tlpAtsAlarmOutputBad=tlpAtsAlarmOutputBad, tlpAtsOutletCurrent=tlpAtsOutletCurrent, tlpUpsSupportsEntry=tlpUpsSupportsEntry, tlpAtsControlShed=tlpAtsControlShed, tlpAtsAlarmLoadsNotAllOn=tlpAtsAlarmLoadsNotAllOn, tlpUpsInputNominalFrequency=tlpUpsInputNominalFrequency, tlpPduOutletIndex=tlpPduOutletIndex, tlpPduOutletGroupEntry=tlpPduOutletGroupEntry, tlpSwitchIdentNumSwitch=tlpSwitchIdentNumSwitch, tlpAts=tlpAts, tlpAgentAttributesSNMPPort=tlpAgentAttributesSNMPPort, tlpPduAlarmCircuitBreakerOpen06=tlpPduAlarmCircuitBreakerOpen06, tlpAlarmUserDefined03=tlpAlarmUserDefined03, tlpUpsIdentNumOutletGroups=tlpUpsIdentNumOutletGroups, tlpUpsConfigOffMode=tlpUpsConfigOffMode, tlpCoolingAlarmFanUnderCurrent=tlpCoolingAlarmFanUnderCurrent, tlpAgentType=tlpAgentType, tlpUpsAlarmUpsOutputOff=tlpUpsAlarmUpsOutputOff, tlpAgentUuid=tlpAgentUuid, tlpCoolingAlarmRemoteShutdownViaInputContact=tlpCoolingAlarmRemoteShutdownViaInputContact, tlpPduCircuitPowerFactor=tlpPduCircuitPowerFactor, tlpPduAlarmLoadOff21=tlpPduAlarmLoadOff21, tlpDeviceModel=tlpDeviceModel, tlpAgentAttributesSupportsSNMP=tlpAgentAttributesSupportsSNMP, tlpUpsOutletGroupDescription=tlpUpsOutletGroupDescription, tlpPduDevicePowerOnDelay=tlpPduDevicePowerOnDelay, tlpUpsOutputNominalVoltage=tlpUpsOutputNominalVoltage, tlpUpsBatteryPackConfigCellCapacity=tlpUpsBatteryPackConfigCellCapacity, tlpAgentSettings=tlpAgentSettings, tlpEnvIdentTempSupported=tlpEnvIdentTempSupported, tlpUpsBatteryPackConfigEntry=tlpUpsBatteryPackConfigEntry, tlpAgentAttributesSNMPv2cEnabled=tlpAgentAttributesSNMPv2cEnabled, tlpNotifications=tlpNotifications, tlpPduAlarmLoadOff27=tlpPduAlarmLoadOff27, tlpUpsConfigLineSensitivity=tlpUpsConfigLineSensitivity, tlpCoolingAlarmCondensatePumpFault=tlpCoolingAlarmCondensatePumpFault, tlpAtsSupportsEnergywise=tlpAtsSupportsEnergywise, tlpPduCircuitCurrentMax=tlpPduCircuitCurrentMax, tlpPduControlPduReboot=tlpPduControlPduReboot, PYSNMP_MODULE_ID=tlpProducts, tlpUpsControlUpsOff=tlpUpsControlUpsOff, tlpSwitchConfig=tlpSwitchConfig, tlpUpsBatteryPackIdentSerialNum=tlpUpsBatteryPackIdentSerialNum, tlpAtsHeatsink=tlpAtsHeatsink, tlpAgentAttributesAutostartHTTPS=tlpAgentAttributesAutostartHTTPS, tlpCoolingAlarmCompressorFailure=tlpCoolingAlarmCompressorFailure, tlpAtsOutputCurrentMin=tlpAtsOutputCurrentMin, tlpPduOutputEntry=tlpPduOutputEntry, tlpAtsCircuit=tlpAtsCircuit, tlpPduIdentNumPhases=tlpPduIdentNumPhases, tlpAtsDeviceTemperatureF=tlpAtsDeviceTemperatureF, tlpAtsAlarmLoadOff03=tlpAtsAlarmLoadOff03, tlpUpsAlarmLoadOff17=tlpUpsAlarmLoadOff17, tlpUpsBatteryDetailCharge=tlpUpsBatteryDetailCharge, tlpAgentAttributesSnmp=tlpAgentAttributesSnmp, tlpUpsConfigFaultAction=tlpUpsConfigFaultAction, tlpPduDeviceMainLoadCommand=tlpPduDeviceMainLoadCommand, tlpUpsBatteryPackConfigStrings=tlpUpsBatteryPackConfigStrings, tlpAtsOutletIndex=tlpAtsOutletIndex, tlpUps=tlpUps, tlpPduIdentEntry=tlpPduIdentEntry, tlpUpsOutletGroup=tlpUpsOutletGroup, tlpAtsConfigInputVoltage=tlpAtsConfigInputVoltage, tlpAtsInputSourceInUse=tlpAtsInputSourceInUse, tlpCoolingAlarmAirFilterRunHoursViolation=tlpCoolingAlarmAirFilterRunHoursViolation, tlpCoolingAlarmSuctionTemperatureSensorFault=tlpCoolingAlarmSuctionTemperatureSensorFault, tlpPduSupportsTable=tlpPduSupportsTable, tlpUpsOutletGroupRowStatus=tlpUpsOutletGroupRowStatus, tlpPduAlarmCurrentAboveThreshold3=tlpPduAlarmCurrentAboveThreshold3, tlpUpsAlarmLoadOff33=tlpUpsAlarmLoadOff33, tlpPduInputTable=tlpPduInputTable, tlpAtsInputPhaseIndex=tlpAtsInputPhaseIndex, tlpAtsDisplayTable=tlpAtsDisplayTable, tlpAtsConfigSource2BrownoutSet=tlpAtsConfigSource2BrownoutSet, tlpAtsConfigSource1ReturnTime=tlpAtsConfigSource1ReturnTime, tlpUpsBatteryPackIdentEntry=tlpUpsBatteryPackIdentEntry, tlpAlarms=tlpAlarms, tlpUpsAlarmAwaitingPower=tlpUpsAlarmAwaitingPower, tlpPduIdent=tlpPduIdent, tlpAgentAttributesTelnetCLIPort=tlpAgentAttributesTelnetCLIPort, tlpUpsInputHighTransferVoltage=tlpUpsInputHighTransferVoltage, tlpPduInputPhaseVoltageMin=tlpPduInputPhaseVoltageMin, tlpAtsInputBadTransferVoltageUpperBound=tlpAtsInputBadTransferVoltageUpperBound, tlpEnvAlarmOutputContact01=tlpEnvAlarmOutputContact01, tlpUpsOutputLineEntry=tlpUpsOutputLineEntry, tlpAgentAttributesHTTPPort=tlpAgentAttributesHTTPPort, tlpAgentAttributesSNMPTrapPort=tlpAgentAttributesSNMPTrapPort, tlpAtsInputTable=tlpAtsInputTable, tlpPduAlarmLoadOff07=tlpPduAlarmLoadOff07, tlpAtsDeviceGeneralFault=tlpAtsDeviceGeneralFault, tlpAtsAlarmLoadOff39=tlpAtsAlarmLoadOff39, tlpCoolingAlarmSuctionPressureLow=tlpCoolingAlarmSuctionPressureLow, tlpAgentSnmpContactEntry=tlpAgentSnmpContactEntry, tlpCoolingAlarmReturnAirTempHigh=tlpCoolingAlarmReturnAirTempHigh, tlpAtsAlarmCircuitBreakerOpen04=tlpAtsAlarmCircuitBreakerOpen04, tlpPduInputNominalVoltagePhaseToNeutral=tlpPduInputNominalVoltagePhaseToNeutral, tlpRackTrackIdentNumRackTrack=tlpRackTrackIdentNumRackTrack, tlpUpsWatchdogEntry=tlpUpsWatchdogEntry, tlpUpsAlarmBusVoltageUnbalanced=tlpUpsAlarmBusVoltageUnbalanced, tlpAlarmUserDefined07=tlpAlarmUserDefined07, tlpAtsConfigEntry=tlpAtsConfigEntry, tlpPduAlarmLoadOff22=tlpPduAlarmLoadOff22, tlpUpsAlarmLoadOff32=tlpUpsAlarmLoadOff32, tlpAgentAttributesFTPPort=tlpAgentAttributesFTPPort, tlpPduInputPhaseVoltageMax=tlpPduInputPhaseVoltageMax, tlpUpsAlarmDepletedBattery=tlpUpsAlarmDepletedBattery, tlpPduControlRamp=tlpPduControlRamp, tlpUpsAlarmLoadLevelAboveThresholdPhase1=tlpUpsAlarmLoadLevelAboveThresholdPhase1, tlpEnvOutputContactName=tlpEnvOutputContactName, tlpAtsOutputTable=tlpAtsOutputTable, tlpEnvAlarmTemperatureBeyondLimits=tlpEnvAlarmTemperatureBeyondLimits, tlpKvmAlarms=tlpKvmAlarms, tlpPduDevice=tlpPduDevice, tlpAtsControl=tlpAtsControl, tlpAtsOutletGroupState=tlpAtsOutletGroupState, tlpCoolingAlarmFanOverCurrent=tlpCoolingAlarmFanOverCurrent, tlpPduCircuitIndex=tlpPduCircuitIndex, tlpKvmControl=tlpKvmControl, tlpPduDisplayTable=tlpPduDisplayTable, tlpAtsAlarmLoadOff20=tlpAtsAlarmLoadOff20, tlpUpsConfigAutoRestartLowVoltageCutoff=tlpUpsConfigAutoRestartLowVoltageCutoff, tlpPduAlarmOutputBad=tlpPduAlarmOutputBad, tlpAtsBreakerIndex=tlpAtsBreakerIndex, tlpAtsConfigHighVoltageReset=tlpAtsConfigHighVoltageReset, tlpEnvConfig=tlpEnvConfig, tlpEnvTemperatureC=tlpEnvTemperatureC, tlpAtsAlarmOutputOverload=tlpAtsAlarmOutputOverload, tlpPduAlarmLoadOff=tlpPduAlarmLoadOff, tlpEnvTemperatureInAlarm=tlpEnvTemperatureInAlarm, tlpAgentAttributesAutostart=tlpAgentAttributesAutostart, tlpDeviceID=tlpDeviceID, tlpAtsConfigAutoRampOnTransition=tlpAtsConfigAutoRampOnTransition, tlpAtsBreakerStatus=tlpAtsBreakerStatus, tlpUpsOutletVoltage=tlpUpsOutletVoltage, tlpAgentSnmpContactIpAddress=tlpAgentSnmpContactIpAddress, tlpCoolingAlarmDischargePressureHigh=tlpCoolingAlarmDischargePressureHigh)
mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpEnvAlarmHumidityBeyondLimits=tlpEnvAlarmHumidityBeyondLimits, tlpPduAlarmCurrentAboveThreshold2=tlpPduAlarmCurrentAboveThreshold2, tlpCoolingConfig=tlpCoolingConfig, tlpAtsInputLineIndex=tlpAtsInputLineIndex, tlpPduBreakerEntry=tlpPduBreakerEntry, tlpAtsOutput=tlpAtsOutput, tlpPduDeviceTemperatureC=tlpPduDeviceTemperatureC, tlpEnvAlarmOutputContact02=tlpEnvAlarmOutputContact02, tlpAtsCircuitEntry=tlpAtsCircuitEntry, tlpUpsBatteryDetailCurrent=tlpUpsBatteryDetailCurrent, tlpAtsInputPhaseVoltage=tlpAtsInputPhaseVoltage, tlpAtsConfigSourceTransferSetMinimum=tlpAtsConfigSourceTransferSetMinimum, tlpEnvHumidityEntry=tlpEnvHumidityEntry, tlpAgentEmailContactTable=tlpAgentEmailContactTable, tlpUpsConfigAutoRestartDelayedWakeup=tlpUpsConfigAutoRestartDelayedWakeup, tlpUpsConfigOutputFrequency=tlpUpsConfigOutputFrequency, tlpAlarmUserDefined05=tlpAlarmUserDefined05, tlpUpsDeviceTemperatureF=tlpUpsDeviceTemperatureF, tlpEnvAlarmInputContact=tlpEnvAlarmInputContact, tlpUpsConfigAudibleStatus=tlpUpsConfigAudibleStatus, tlpAlarmControlDetail=tlpAlarmControlDetail, tlpAgentSnmpContactRowStatus=tlpAgentSnmpContactRowStatus, tlpUpsAlarmLoadOff20=tlpUpsAlarmLoadOff20, tlpAtsOutletVoltage=tlpAtsOutletVoltage, tlpUpsAlarmRuntimeBelowWarningLevel=tlpUpsAlarmRuntimeBelowWarningLevel, tlpEnvIdent=tlpEnvIdent, tlpAtsAlarmLoadOff=tlpAtsAlarmLoadOff, tlpAtsDeviceMainLoadState=tlpAtsDeviceMainLoadState, tlpPduControlPduOn=tlpPduControlPduOn, tlpCoolingAlarmPowerButtonPressed=tlpCoolingAlarmPowerButtonPressed, tlpEnvInputContactInAlarm=tlpEnvInputContactInAlarm, tlpPduIdentNumBreakers=tlpPduIdentNumBreakers, tlpPduOutletGroupName=tlpPduOutletGroupName, tlpDeviceStatus=tlpDeviceStatus, tlpAtsDeviceTotalInputPowerRating=tlpAtsDeviceTotalInputPowerRating, tlpRackTrackConfig=tlpRackTrackConfig, tlpCoolingAlarmCondenserOutletAirSensorFault=tlpCoolingAlarmCondenserOutletAirSensorFault, tlpAtsOutputPhaseType=tlpAtsOutputPhaseType, tlpUpsAlarmOutputOffAsRequested=tlpUpsAlarmOutputOffAsRequested, tlpPduIdentNumOutputs=tlpPduIdentNumOutputs, tlpUpsOutputLinePercentLoad=tlpUpsOutputLinePercentLoad, tlpPduHeatsinkTemperatureC=tlpPduHeatsinkTemperatureC, tlpEnvOutputContactCurrentState=tlpEnvOutputContactCurrentState, tlpAtsOutletShedAction=tlpAtsOutletShedAction, tlpUpsAlarmOnBattery=tlpUpsAlarmOnBattery, tlpUpsAlarmLoadOff10=tlpUpsAlarmLoadOff10, tlpPduCircuitTotalPower=tlpPduCircuitTotalPower, tlpAlarmAcknowledged=tlpAlarmAcknowledged, tlpDeviceIdentCurrentUptime=tlpDeviceIdentCurrentUptime, tlpAgentAttributesSNMPv3Enabled=tlpAgentAttributesSNMPv3Enabled, tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold, tlpAgentDetails=tlpAgentDetails, tlpAtsHeatsinkEntry=tlpAtsHeatsinkEntry, tlpUpsOutletShedAction=tlpUpsOutletShedAction, tlpAlarmTime=tlpAlarmTime, tlpUpsAlarmLoadOff29=tlpUpsAlarmLoadOff29, tlpUpsOutletPower=tlpUpsOutletPower, tlpUpsConfig=tlpUpsConfig, tlpUpsAlarmLoadOff07=tlpUpsAlarmLoadOff07, tlpEnvInputContactEntry=tlpEnvInputContactEntry, tlpUpsInputPhaseVoltageMax=tlpUpsInputPhaseVoltageMax, tlpUpsAlarmBatteryAgeAboveThreshold=tlpUpsAlarmBatteryAgeAboveThreshold, tlpUpsBatteryPackDetailCondition=tlpUpsBatteryPackDetailCondition, tlpPduOutletPhase=tlpPduOutletPhase, tlpDeviceIdentFirmwareVersion=tlpDeviceIdentFirmwareVersion, tlpPduSupportsOutletCurrentPower=tlpPduSupportsOutletCurrentPower, tlpAgentAttributesSupportsTelnetMenu=tlpAgentAttributesSupportsTelnetMenu, tlpUpsAlarmUpsSystemOff=tlpUpsAlarmUpsSystemOff, tlpPduAlarmLoadOff01=tlpPduAlarmLoadOff01, tlpEnvConfigTable=tlpEnvConfigTable, tlpEnvOutputContactIndex=tlpEnvOutputContactIndex, tlpPduInputHighTransferVoltageLowerBound=tlpPduInputHighTransferVoltageLowerBound, tlpUpsConfigOutputVoltage=tlpUpsConfigOutputVoltage, tlpUpsAlarmLoadOff35=tlpUpsAlarmLoadOff35, tlpPduAlarms=tlpPduAlarms, tlpAtsAlarmLoadOff17=tlpAtsAlarmLoadOff17, tlpCoolingAlarmSupplyAirSensorFault=tlpCoolingAlarmSupplyAirSensorFault, tlpUpsEstimatedMinutesRemaining=tlpUpsEstimatedMinutesRemaining, tlpAtsAlarmCurrentAboveThresholdA2=tlpAtsAlarmCurrentAboveThresholdA2, tlpPduAlarmCircuitBreakerOpen02=tlpPduAlarmCircuitBreakerOpen02, tlpAtsCircuitTotalCurrent=tlpAtsCircuitTotalCurrent, tlpKvmIdentNumKvm=tlpKvmIdentNumKvm, tlpUpsAlarmSiteWiringFault=tlpUpsAlarmSiteWiringFault, tlpUpsSupportsTable=tlpUpsSupportsTable, tlpSwitchDetail=tlpSwitchDetail, tlpAtsSupportsRampShed=tlpAtsSupportsRampShed, tlpAtsAlarmLoadOff15=tlpAtsAlarmLoadOff15, tlpEnvIdentHumiditySupported=tlpEnvIdentHumiditySupported, tlpAtsConfigSourceTransferSetMaximum=tlpAtsConfigSourceTransferSetMaximum, tlpAtsInputHighTransferVoltageUpperBound=tlpAtsInputHighTransferVoltageUpperBound, tlpPduOutputActivePower=tlpPduOutputActivePower, tlpPduConfigInputVoltage=tlpPduConfigInputVoltage, tlpAtsOutletCircuit=tlpAtsOutletCircuit, tlpUpsAlarmLoadOff25=tlpUpsAlarmLoadOff25, tlpCoolingAlarmCondenserFailure=tlpCoolingAlarmCondenserFailure, tlpUpsOutletTable=tlpUpsOutletTable, tlpUpsBatteryPackConfigCapacityUnits=tlpUpsBatteryPackConfigCapacityUnits, tlpUpsAlarmOutputCurrentChanged=tlpUpsAlarmOutputCurrentChanged, tlpUpsAlarmSmartBatteryCommLost=tlpUpsAlarmSmartBatteryCommLost, tlpAtsAlarmLoadOff27=tlpAtsAlarmLoadOff27, tlpUpsInput=tlpUpsInput, tlpPduControlPduOff=tlpPduControlPduOff, tlpAtsBreakerEntry=tlpAtsBreakerEntry, tlpDeviceRowStatus=tlpDeviceRowStatus, tlpCoolingAlarmSupplyAirTempHigh=tlpCoolingAlarmSupplyAirTempHigh, tlpPduCircuitTable=tlpPduCircuitTable, tlpDeviceIdentSerialNum=tlpDeviceIdentSerialNum, tlpUpsAlarmLoadOff15=tlpUpsAlarmLoadOff15, tlpPduHeatsinkTable=tlpPduHeatsinkTable, tlpAtsCircuitCurrentLimit=tlpAtsCircuitCurrentLimit, tlpPduCircuitCurrentMin=tlpPduCircuitCurrentMin, tlpUpsAlarmLoadOff06=tlpUpsAlarmLoadOff06, tlpAtsAlarmLoadOff16=tlpAtsAlarmLoadOff16, tlpUpsAlarmLoadOff24=tlpUpsAlarmLoadOff24, tlpAlarmDescr=tlpAlarmDescr, tlpDeviceNumDevices=tlpDeviceNumDevices, tlpAtsConfigVoltageRangeTable=tlpAtsConfigVoltageRangeTable, tlpRackTrackControl=tlpRackTrackControl, tlpAtsAlarmCurrentAboveThreshold=tlpAtsAlarmCurrentAboveThreshold, tlpAtsConfigSource2TransferSet=tlpAtsConfigSource2TransferSet, tlpUpsAlarmInverterSoftStartBad=tlpUpsAlarmInverterSoftStartBad, tlpPduOutputCurrentMax=tlpPduOutputCurrentMax, tlpPduControl=tlpPduControl, tlpAtsAlarms=tlpAtsAlarms, tlpCoolingAlarmSuctionPressureSensorFault=tlpCoolingAlarmSuctionPressureSensorFault, tlpRackTrackDetail=tlpRackTrackDetail, tlpAgentNumSnmpContacts=tlpAgentNumSnmpContacts, tlpAtsInputPhaseVoltageMin=tlpAtsInputPhaseVoltageMin, tlpPduInputHighTransferVoltage=tlpPduInputHighTransferVoltage, tlpAtsInputNominalVoltagePhaseToPhase=tlpAtsInputNominalVoltagePhaseToPhase, tlpCoolingAlarmSuctionPressureLowStartFailure=tlpCoolingAlarmSuctionPressureLowStartFailure, tlpPduOutletName=tlpPduOutletName, tlpUpsAlarmShutdownPending=tlpUpsAlarmShutdownPending, tlpAlarmDetail=tlpAlarmDetail, tlpPduAlarmLoadsNotAllOn=tlpPduAlarmLoadsNotAllOn, tlpKvmDevice=tlpKvmDevice, tlpPduAlarmLoadOff17=tlpPduAlarmLoadOff17, tlpAtsConfigSource2ReturnTime=tlpAtsConfigSource2ReturnTime, tlpUpsConfigTable=tlpUpsConfigTable, tlpUpsAlarmLoadLevelAboveThreshold=tlpUpsAlarmLoadLevelAboveThreshold, tlpUpsOutletShedDelay=tlpUpsOutletShedDelay, tlpPduAlarmLoadOff05=tlpPduAlarmLoadOff05, tlpUpsWatchdog=tlpUpsWatchdog, tlpUpsAlarmLowBattery=tlpUpsAlarmLowBattery, tlpAtsAlarmLoadOff21=tlpAtsAlarmLoadOff21, tlpAtsOutletName=tlpAtsOutletName, tlpAlarmState=tlpAlarmState, tlpAtsOutletGroupIndex=tlpAtsOutletGroupIndex, tlpPdu=tlpPdu, tlpAtsAlarmCurrentAboveThresholdB1=tlpAtsAlarmCurrentAboveThresholdB1, tlpAgentSnmpContactSecurityName=tlpAgentSnmpContactSecurityName, tlpPduOutletGroupDescription=tlpPduOutletGroupDescription, tlpAtsOutputPhase=tlpAtsOutputPhase, tlpUpsAlarmLoadLevelAboveThresholdTotal=tlpUpsAlarmLoadLevelAboveThresholdTotal, tlpAtsInputHighTransferVoltage=tlpAtsInputHighTransferVoltage, tlpAlarmType=tlpAlarmType, tlpUpsBatteryPackIdentIndex=tlpUpsBatteryPackIdentIndex, tlpUpsBatteryPackIdentManufacturer=tlpUpsBatteryPackIdentManufacturer, tlpAtsOutletRampDelay=tlpAtsOutletRampDelay, tlpUpsInputPhaseIndex=tlpUpsInputPhaseIndex, tlpAtsInputNominalVoltagePhaseToNeutral=tlpAtsInputNominalVoltagePhaseToNeutral, tlpAlarmEntry=tlpAlarmEntry, tlpPduAlarmLoadOff39=tlpPduAlarmLoadOff39, tlpAgentSnmpContactAuthPassword=tlpAgentSnmpContactAuthPassword, tlpUpsOutputSource=tlpUpsOutputSource, tlpUpsAlarmLoadOff02=tlpUpsAlarmLoadOff02, tlpUpsConfigEntry=tlpUpsConfigEntry, tlpUpsAlarmBusUnderVoltage=tlpUpsAlarmBusUnderVoltage, tlpDeviceType=tlpDeviceType, tlpAtsOutputCurrent=tlpAtsOutputCurrent, tlpEnvInputContactName=tlpEnvInputContactName, tlpAgentConfigRemoteRegistration=tlpAgentConfigRemoteRegistration, tlpPduConfigEntry=tlpPduConfigEntry, tlpPduAlarmCurrentAboveThreshold=tlpPduAlarmCurrentAboveThreshold, tlpUpsIdentNumUps=tlpUpsIdentNumUps, tlpPduDisplayScheme=tlpPduDisplayScheme, tlpAtsControlResetGeneralFault=tlpAtsControlResetGeneralFault, tlpUpsAlarmOnBypass=tlpUpsAlarmOnBypass, tlpCoolingAlarmInverterCommunicationsFault=tlpCoolingAlarmInverterCommunicationsFault, tlpAgentMAC=tlpAgentMAC, tlpRackTrack=tlpRackTrack, tlpEnvAlarmInputContact04=tlpEnvAlarmInputContact04, tlpUpsBatteryDetailChargerStatus=tlpUpsBatteryDetailChargerStatus, tlpUpsAlarmLoadsNotAllOn=tlpUpsAlarmLoadsNotAllOn, tlpUpsAlarmLoadOff39=tlpUpsAlarmLoadOff39, tlpAlarmTableRowRef=tlpAlarmTableRowRef, tlpUpsBatteryPackConfigChemistry=tlpUpsBatteryPackConfigChemistry, tlpAtsDeviceTemperatureC=tlpAtsDeviceTemperatureC, tlpUpsDevicePowerOnDelay=tlpUpsDevicePowerOnDelay, tlpAtsDeviceTable=tlpAtsDeviceTable, tlpAtsOutletControllable=tlpAtsOutletControllable, tlpEnvOutputContactEntry=tlpEnvOutputContactEntry, tlpUpsSupportsOutletCurrentPower=tlpUpsSupportsOutletCurrentPower, tlpAtsAlarmLoadOff09=tlpAtsAlarmLoadOff09, tlpPduIdentNumOutletGroups=tlpPduIdentNumOutletGroups, tlpUpsBatteryPackIdentSKU=tlpUpsBatteryPackIdentSKU, tlpCoolingAlarmDischargePressureSensorFault=tlpCoolingAlarmDischargePressureSensorFault, tlpPduDisplayUnits=tlpPduDisplayUnits, tlpPduAlarmLoadLevelAboveThreshold=tlpPduAlarmLoadLevelAboveThreshold, tlpAgentEmailContacts=tlpAgentEmailContacts, tlpNotify=tlpNotify, tlpAtsAlarmSource1InvalidFrequency=tlpAtsAlarmSource1InvalidFrequency, tlpAtsInputBadVoltageThreshold=tlpAtsInputBadVoltageThreshold, tlpUpsBatteryDetailCapacity=tlpUpsBatteryDetailCapacity, tlpPduOutputPowerFactor=tlpPduOutputPowerFactor, tlpSwitchIdent=tlpSwitchIdent, tlpPduAlarmLoadOff19=tlpPduAlarmLoadOff19, tlpAtsDeviceAggregatePowerFactor=tlpAtsDeviceAggregatePowerFactor, tlpAlarmUserDefined=tlpAlarmUserDefined, tlpPduDeviceEntry=tlpPduDeviceEntry, tlpUpsAlarmLoadOff28=tlpUpsAlarmLoadOff28, tlpAtsOutletGroupDescription=tlpAtsOutletGroupDescription, tlpAtsControlAtsOn=tlpAtsControlAtsOn, tlpUpsBatteryPackConfigNumBatteries=tlpUpsBatteryPackConfigNumBatteries, tlpUpsBypass=tlpUpsBypass, tlpUpsAlarmInverterUnderVoltage=tlpUpsAlarmInverterUnderVoltage, tlpEnvTemperatureF=tlpEnvTemperatureF, tlpAtsInputBadTransferVoltageLowerBound=tlpAtsInputBadTransferVoltageLowerBound, tlpPduCircuit=tlpPduCircuit, tlpPduConfig=tlpPduConfig, tlpAtsAlarmLoadOff13=tlpAtsAlarmLoadOff13, tlpAtsOutletShedDelay=tlpAtsOutletShedDelay, tlpSwitchAlarms=tlpSwitchAlarms, tlpUpsIdentTable=tlpUpsIdentTable, tlpUpsAlarmBatteryUnderVoltage=tlpUpsAlarmBatteryUnderVoltage, tlpEnvAlarmOutputContact04=tlpEnvAlarmOutputContact04, tlpPduInputNominalVoltagePhaseToPhase=tlpPduInputNominalVoltagePhaseToPhase, tlpEnvirosense=tlpEnvirosense, tlpAtsAlarmLoadOff02=tlpAtsAlarmLoadOff02, tlpUpsConfigAutoRestartOverLoad=tlpUpsConfigAutoRestartOverLoad, tlpAtsAlarmLoadOff28=tlpAtsAlarmLoadOff28, tlpAlarmUserDefined06=tlpAlarmUserDefined06, tlpCoolingAlarmSuctionPressurePersistentLow=tlpCoolingAlarmSuctionPressurePersistentLow, tlpUpsBatteryPackDetailTemperatureF=tlpUpsBatteryPackDetailTemperatureF, tlpUpsSupportsOutletGroup=tlpUpsSupportsOutletGroup, tlpCoolingAlarmLowRefrigerantStartupFault=tlpCoolingAlarmLowRefrigerantStartupFault, tlpPduAlarmLoadOff13=tlpPduAlarmLoadOff13, tlpSoftware=tlpSoftware, tlpAlarmUserDefined04=tlpAlarmUserDefined04, tlpAtsOutletEntry=tlpAtsOutletEntry, tlpUpsAlarmLoadOff11=tlpUpsAlarmLoadOff11, tlpCoolingAlarmWaterLeak=tlpCoolingAlarmWaterLeak, tlpPduIdentNumOutlets=tlpPduIdentNumOutlets, tlpPduOutputVoltage=tlpPduOutputVoltage, tlpAtsConfigTable=tlpAtsConfigTable, tlpUpsControl=tlpUpsControl, tlpEnvNumInputContacts=tlpEnvNumInputContacts, tlpPduOutputSource=tlpPduOutputSource, tlpPduAlarmLoadOff18=tlpPduAlarmLoadOff18, tlpUpsBypassTable=tlpUpsBypassTable, tlpPduCircuitTotalCurrent=tlpPduCircuitTotalCurrent, tlpPduDisplayIntensity=tlpPduDisplayIntensity, tlpCoolingAlarms=tlpCoolingAlarms, tlpAlarmControl=tlpAlarmControl)
mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpUpsBypassFrequency=tlpUpsBypassFrequency, tlpAtsBreakerTable=tlpAtsBreakerTable, tlpAtsSupportsOutletVoltage=tlpAtsSupportsOutletVoltage, tlpDevice=tlpDevice, tlpPduAlarmCircuitBreakerOpen=tlpPduAlarmCircuitBreakerOpen, tlpUpsBypassLineCurrent=tlpUpsBypassLineCurrent, tlpPduOutletState=tlpPduOutletState, tlpPduIdentNumCircuits=tlpPduIdentNumCircuits, tlpCoolingAlarmWaterFull=tlpCoolingAlarmWaterFull, tlpUpsOutletControllable=tlpUpsOutletControllable, tlpPduOutletGroupTable=tlpPduOutletGroupTable, tlpUpsBatteryPackConfigStyle=tlpUpsBatteryPackConfigStyle, tlpUpsAlarmUpsOffAsRequested=tlpUpsAlarmUpsOffAsRequested, tlpAtsInputPhaseFrequency=tlpAtsInputPhaseFrequency, tlpPduOutletGroupRowStatus=tlpPduOutletGroupRowStatus, tlpUpsDeviceEntry=tlpUpsDeviceEntry, tlpUpsAlarmBusOverVoltage=tlpUpsAlarmBusOverVoltage, tlpDeviceIdentTotalUptime=tlpDeviceIdentTotalUptime, tlpPduOutputCurrentMin=tlpPduOutputCurrentMin, tlpPduOutputCurrent=tlpPduOutputCurrent, tlpUpsAlarmOutputBad=tlpUpsAlarmOutputBad, tlpPduOutletCircuit=tlpPduOutletCircuit, tlpUpsConfigThresholdTable=tlpUpsConfigThresholdTable, tlpAtsInputSourceTransitionCount=tlpAtsInputSourceTransitionCount, tlpUpsAlarms=tlpUpsAlarms, tlpPduInputPhaseFrequency=tlpPduInputPhaseFrequency, tlpAtsConfigAutoShedOnTransition=tlpAtsConfigAutoShedOnTransition, tlpAtsAlarmSource2Temperature=tlpAtsAlarmSource2Temperature, tlpAgentConfig=tlpAgentConfig, tlpAtsDevice=tlpAtsDevice, tlpUpsOutletEntry=tlpUpsOutletEntry, tlpAtsHeatsinkTemperatureF=tlpAtsHeatsinkTemperatureF, tlpAgentAttributesAutostartSSHMenu=tlpAgentAttributesAutostartSSHMenu, tlpUpsInputPhaseEntry=tlpUpsInputPhaseEntry, tlpPduCircuitInputVoltage=tlpPduCircuitInputVoltage, tlpPduOutletRampDelay=tlpPduOutletRampDelay, tlpAgentEmailContactName=tlpAgentEmailContactName, tlpAtsAlarmLoadLevelAboveThreshold=tlpAtsAlarmLoadLevelAboveThreshold, tlpPduInputPhaseTable=tlpPduInputPhaseTable, tlpCoolingInput=tlpCoolingInput, tlpUpsDetail=tlpUpsDetail, tlpAtsDisplayOrientation=tlpAtsDisplayOrientation, tlpAgentAttributesAutostartTelnetCLI=tlpAgentAttributesAutostartTelnetCLI, tlpPduBreakerIndex=tlpPduBreakerIndex, tlpAtsAlarmCurrentAboveThresholdA3=tlpAtsAlarmCurrentAboveThresholdA3, tlpAtsAlarmLoadOff35=tlpAtsAlarmLoadOff35, tlpAtsAlarmCurrentAboveThresholdB2=tlpAtsAlarmCurrentAboveThresholdB2, tlpAtsOutletGroupEntry=tlpAtsOutletGroupEntry, tlpAtsCircuitInputVoltage=tlpAtsCircuitInputVoltage, tlpUpsBatteryPackConfigCellsPerBattery=tlpUpsBatteryPackConfigCellsPerBattery, tlpUpsOutletGroupIndex=tlpUpsOutletGroupIndex, tlpCoolingAlarmDisconnectedFromDevice=tlpCoolingAlarmDisconnectedFromDevice, tlpAtsHeatsinkTemperatureC=tlpAtsHeatsinkTemperatureC, tlpUpsOutputEntry=tlpUpsOutputEntry, tlpPduOutlet=tlpPduOutlet, tlpAtsAlarmLoadOff05=tlpAtsAlarmLoadOff05, tlpCoolingAlarmReturnAirSensorFault=tlpCoolingAlarmReturnAirSensorFault, tlpRackTrackIdent=tlpRackTrackIdent, tlpUpsOutput=tlpUpsOutput, tlpCoolingAlarmCurrentLimit=tlpCoolingAlarmCurrentLimit, tlpUpsConfigAutoRestartEntry=tlpUpsConfigAutoRestartEntry, tlpEnvAlarmInputContact02=tlpEnvAlarmInputContact02, tlpAgentSnmpContactIndex=tlpAgentSnmpContactIndex, tlpPduInputPhaseVoltage=tlpPduInputPhaseVoltage, tlpAgentSerialNum=tlpAgentSerialNum, tlpUpsBatteryPackDetailTable=tlpUpsBatteryPackDetailTable, tlpUpsInputHighTransferVoltageLowerBound=tlpUpsInputHighTransferVoltageLowerBound, tlpCoolingAlarmCondenserInletAirSensorFault=tlpCoolingAlarmCondenserInletAirSensorFault, tlpUpsAlarmOutputOverload=tlpUpsAlarmOutputOverload, tlpAtsOutletGroupTable=tlpAtsOutletGroupTable, tlpAgentAttributesTelnetMenuPort=tlpAgentAttributesTelnetMenuPort, tlpAtsAlarmLoadOff12=tlpAtsAlarmLoadOff12, tlpUpsInputLowTransferVoltageUpperBound=tlpUpsInputLowTransferVoltageUpperBound, tlpAtsAlarmLoadOff18=tlpAtsAlarmLoadOff18, tlpUpsOutletGroupCommand=tlpUpsOutletGroupCommand, tlpAtsAlarmCircuitBreakerOpen06=tlpAtsAlarmCircuitBreakerOpen06, tlpAgentAttributesAutostartSSHCLI=tlpAgentAttributesAutostartSSHCLI, tlpEnvConfigEntry=tlpEnvConfigEntry, tlpUpsOutletRampAction=tlpUpsOutletRampAction, tlpAgentSnmpContacts=tlpAgentSnmpContacts, tlpAtsConfigOverLoadThreshold=tlpAtsConfigOverLoadThreshold, tlpAtsDisplayUnits=tlpAtsDisplayUnits, tlpAgentAttributesAutostartTelnetMenu=tlpAgentAttributesAutostartTelnetMenu, tlpPduAlarmLoadOff29=tlpPduAlarmLoadOff29, tlpAgentEmailContactEntry=tlpAgentEmailContactEntry, tlpAtsHeatsinkTable=tlpAtsHeatsinkTable, tlpAtsAlarmLoadOff19=tlpAtsAlarmLoadOff19, tlpPduAlarmLoadOff26=tlpPduAlarmLoadOff26, tlpUpsBatteryPackDetailEntry=tlpUpsBatteryPackDetailEntry, tlpEnvNumOutputContacts=tlpEnvNumOutputContacts, tlpAtsIdentNumOutputs=tlpAtsIdentNumOutputs, tlpEnvHumidityHumidity=tlpEnvHumidityHumidity, tlpAtsOutletPower=tlpAtsOutletPower, tlpAlarmControlTable=tlpAlarmControlTable, tlpAtsAlarmLoadOff06=tlpAtsAlarmLoadOff06, tlpUpsConfigBatteryAgeThreshold=tlpUpsConfigBatteryAgeThreshold, tlpAtsIdentNumInputs=tlpAtsIdentNumInputs, tlpEnvTemperatureHighLimit=tlpEnvTemperatureHighLimit, tlpAlarmUserDefined09=tlpAlarmUserDefined09, tlpPduAlarmLoadOff38=tlpPduAlarmLoadOff38, tlpNotifySystemStartup=tlpNotifySystemStartup, tlpUpsConfigEconomicMode=tlpUpsConfigEconomicMode, tlpAtsConfigSourceBrownoutSetMaximum=tlpAtsConfigSourceBrownoutSetMaximum, tlpUpsBypassLineEntry=tlpUpsBypassLineEntry, tlpUpsBatteryPackConfigLocation=tlpUpsBatteryPackConfigLocation, tlpUpsIdentNumInputs=tlpUpsIdentNumInputs, tlpUpsIdent=tlpUpsIdent, tlpUpsAlarmCurrentAboveThreshold2=tlpUpsAlarmCurrentAboveThreshold2, tlpUpsBatteryDetailTable=tlpUpsBatteryDetailTable, tlpAlarmsPresent=tlpAlarmsPresent, tlpAtsInput=tlpAtsInput, tlpAtsCircuitPhase=tlpAtsCircuitPhase, tlpUpsOutletGroupState=tlpUpsOutletGroupState, tlpHardware=tlpHardware, tlpPduAlarmLoadOff31=tlpPduAlarmLoadOff31, tlpPduInputPhaseEntry=tlpPduInputPhaseEntry, tlpAtsAlarmOutage=tlpAtsAlarmOutage, tlpAtsConfigSource1TransferSet=tlpAtsConfigSource1TransferSet, tlpPduInputPhasePhaseType=tlpPduInputPhasePhaseType, tlpPduOutput=tlpPduOutput, tlpAtsAlarmLoadOff08=tlpAtsAlarmLoadOff08, tlpPduAlarmLoadOff09=tlpPduAlarmLoadOff09, tlpUpsAlarmLoadOff=tlpUpsAlarmLoadOff, tlpAtsIdentNumOutlets=tlpAtsIdentNumOutlets, tlpPduOutletGroupIndex=tlpPduOutletGroupIndex, tlpUpsBatterySummaryTable=tlpUpsBatterySummaryTable, tlpUpsAlarmGeneralFault=tlpUpsAlarmGeneralFault, tlpAgentAttributesPorts=tlpAgentAttributesPorts, tlpUpsAlarmLoadOff13=tlpUpsAlarmLoadOff13, tlpAgentConfigCurrentTime=tlpAgentConfigCurrentTime, tlpAgentEmailContactIndex=tlpAgentEmailContactIndex, tlpUpsDeviceTable=tlpUpsDeviceTable, tlpUpsConfigAutoBatteryTest=tlpUpsConfigAutoBatteryTest, tlpUpsInputPhaseFrequency=tlpUpsInputPhaseFrequency, tlpAgentDriverVersion=tlpAgentDriverVersion, tlpUpsAlarmLoadOff19=tlpUpsAlarmLoadOff19, tlpEnvInputContactCurrentState=tlpEnvInputContactCurrentState, tlpUpsSupportsRampShed=tlpUpsSupportsRampShed, tlpAlarmControlEntry=tlpAlarmControlEntry, tlpEnvAlarmInputContact03=tlpEnvAlarmInputContact03, tlpPduHeatsinkTemperatureF=tlpPduHeatsinkTemperatureF, tlpAgentAttributesSupportsSNMPTrap=tlpAgentAttributesSupportsSNMPTrap, tlpAtsAlarmLoadOff07=tlpAtsAlarmLoadOff07, tlpAtsInputCurrentLimit=tlpAtsInputCurrentLimit, tlpAgentVersion=tlpAgentVersion, tlpUpsBatteryPackDetailLastReplaceDate=tlpUpsBatteryPackDetailLastReplaceDate, tlpPduIdentNumInputs=tlpPduIdentNumInputs, tlpPduControlEntry=tlpPduControlEntry, tlpUpsAlarmOverTemperatureProtection=tlpUpsAlarmOverTemperatureProtection, tlpAgentSnmpContactName=tlpAgentSnmpContactName, tlpPduAlarmLoadOff11=tlpPduAlarmLoadOff11, tlpPduAlarmLoadOff02=tlpPduAlarmLoadOff02, tlpNotificationsAlarmEntryAdded=tlpNotificationsAlarmEntryAdded, tlpUpsBatteryPackConfigMaxCellVoltage=tlpUpsBatteryPackConfigMaxCellVoltage, tlpUpsAlarmLoadOff26=tlpUpsAlarmLoadOff26, tlpAtsAlarmOverVoltage=tlpAtsAlarmOverVoltage, tlpAgentAttributesSNMPv1Enabled=tlpAgentAttributesSNMPv1Enabled, tlpUpsBatteryDetailVoltage=tlpUpsBatteryDetailVoltage, tlpUpsDeviceTestDate=tlpUpsDeviceTestDate, tlpAtsAlarmLoadOff40=tlpAtsAlarmLoadOff40, tlpUpsInputLowTransferVoltage=tlpUpsInputLowTransferVoltage, tlpEnvTemperatureEntry=tlpEnvTemperatureEntry, tlpPduOutletDescription=tlpPduOutletDescription, tlpDeviceDetail=tlpDeviceDetail, tlpUpsDevice=tlpUpsDevice, tlpAtsOutputIndex=tlpAtsOutputIndex, tlpAtsInputEntry=tlpAtsInputEntry, tlpUpsAlarmBusStartVoltageLow=tlpUpsAlarmBusStartVoltageLow, tlpAtsAlarmVoltage=tlpAtsAlarmVoltage, tlpAtsAlarmCircuitBreakerOpen05=tlpAtsAlarmCircuitBreakerOpen05, tlpAtsOutputPowerFactor=tlpAtsOutputPowerFactor, tlpDeviceLocation=tlpDeviceLocation, tlpEnvIdentEntry=tlpEnvIdentEntry, tlpPduAlarmLoadOff35=tlpPduAlarmLoadOff35, tlpAtsAlarmSource1Temperature=tlpAtsAlarmSource1Temperature, tlpUpsOutputLineFrequency=tlpUpsOutputLineFrequency, tlpCoolingAlarmEvaporatorCoolingFailure=tlpCoolingAlarmEvaporatorCoolingFailure, tlpAtsCircuitPowerFactor=tlpAtsCircuitPowerFactor, tlpPduIdentNumHeatsinks=tlpPduIdentNumHeatsinks, tlpPduOutletBank=tlpPduOutletBank, tlpAtsAlarmLoadOff38=tlpAtsAlarmLoadOff38, tlpUpsConfigLowBatteryTime=tlpUpsConfigLowBatteryTime, tlpAtsAlarmSource2InvalidFrequency=tlpAtsAlarmSource2InvalidFrequency, tlpUpsWatchdogSupported=tlpUpsWatchdogSupported, tlpAtsConfigOverCurrentThreshold=tlpAtsConfigOverCurrentThreshold, tlpUpsConfigAutoRampOnTransition=tlpUpsConfigAutoRampOnTransition, tlpPduOutletShedAction=tlpPduOutletShedAction, tlpCoolingIdentNumCooling=tlpCoolingIdentNumCooling, tlpAtsConfigOverVoltageThreshold=tlpAtsConfigOverVoltageThreshold, tlpKvm=tlpKvm, tlpUpsIdentNumBypass=tlpUpsIdentNumBypass, tlpUpsDeviceMainLoadState=tlpUpsDeviceMainLoadState, tlpAtsIdentNumHeatsinks=tlpAtsIdentNumHeatsinks, tlpAgentAttributesAutostartHTTP=tlpAgentAttributesAutostartHTTP, tlpNotificationsAlarmEntryRemoved=tlpNotificationsAlarmEntryRemoved, tlpAtsConfigLowVoltageTransfer=tlpAtsConfigLowVoltageTransfer, tlpPduAlarmLoadOff12=tlpPduAlarmLoadOff12, tlpUpsAlarmInputBad=tlpUpsAlarmInputBad, tlpAtsOutletGroupName=tlpAtsOutletGroupName, tlpAtsInputPhaseType=tlpAtsInputPhaseType, tlpAlarmUserDefined08=tlpAlarmUserDefined08, tlpKvmIdent=tlpKvmIdent, tlpUpsIdentEntry=tlpUpsIdentEntry, tlpAtsDisplayAutoScroll=tlpAtsDisplayAutoScroll, tlpUpsBatteryDetailEntry=tlpUpsBatteryDetailEntry, tlpAtsConfigThresholdTable=tlpAtsConfigThresholdTable, tlpPduOutletPower=tlpPduOutletPower, tlpUpsAlarmFanFailure=tlpUpsAlarmFanFailure, tlpUpsConfigLowBatteryThreshold=tlpUpsConfigLowBatteryThreshold, tlpCoolingAlarmAutoCoolingOn=tlpCoolingAlarmAutoCoolingOn, tlpDeviceAlarms=tlpDeviceAlarms, tlpAtsOutletTable=tlpAtsOutletTable, tlpUpsConfigThresholdEntry=tlpUpsConfigThresholdEntry, tlpEnvAlarmOutputContact03=tlpEnvAlarmOutputContact03, tlpAtsInputPhaseTable=tlpAtsInputPhaseTable, tlpUpsInputLineBads=tlpUpsInputLineBads, tlpCoolingAlarmPressureGaugeFailure=tlpCoolingAlarmPressureGaugeFailure, tlpAtsHeatsinkIndex=tlpAtsHeatsinkIndex, tlpPduInputNominalVoltage=tlpPduInputNominalVoltage, tlpAtsInputSourceAvailability=tlpAtsInputSourceAvailability, tlpAgentAttributesSupportsFTP=tlpAgentAttributesSupportsFTP, tlpPduOutletGroupCommand=tlpPduOutletGroupCommand, tlpPduAlarmLoadOff15=tlpPduAlarmLoadOff15, tlpAtsDisplayEntry=tlpAtsDisplayEntry, tlpPduAlarmLoadOff32=tlpPduAlarmLoadOff32, tlpEnvHumidityInAlarm=tlpEnvHumidityInAlarm, tlpAtsOutputVoltage=tlpAtsOutputVoltage, tlpAtsDeviceEntry=tlpAtsDeviceEntry, tlpUpsConfigInputVoltage=tlpUpsConfigInputVoltage, tlpKvmConfig=tlpKvmConfig, tlpPduAlarmCircuitBreakerOpen05=tlpPduAlarmCircuitBreakerOpen05, tlpUpsControlUpsOn=tlpUpsControlUpsOn, tlpAtsOutletState=tlpAtsOutletState, tlpPduIdentTable=tlpPduIdentTable, tlpPduOutletCurrent=tlpPduOutletCurrent, tlpAtsBreaker=tlpAtsBreaker, tlpUpsAlarmLoadOff12=tlpUpsAlarmLoadOff12, tlpAgentIdent=tlpAgentIdent, tlpAtsHeatsinkStatus=tlpAtsHeatsinkStatus, tlpAlarmControlIndex=tlpAlarmControlIndex, tlpPduDeviceTotalInputPowerRating=tlpPduDeviceTotalInputPowerRating, tlpUpsAlarmLoadOff01=tlpUpsAlarmLoadOff01, tlpPduDevicePhaseImbalance=tlpPduDevicePhaseImbalance, tlpPduOutletTable=tlpPduOutletTable, tlpUpsIdentNumOutputs=tlpUpsIdentNumOutputs, tlpAtsAlarmLoadOff25=tlpAtsAlarmLoadOff25, tlpPduCircuitCurrentLimit=tlpPduCircuitCurrentLimit, tlpAtsOutletCommand=tlpAtsOutletCommand, tlpAtsConfigThresholdEntry=tlpAtsConfigThresholdEntry, tlpEnvInputContactNormalState=tlpEnvInputContactNormalState, tlpAtsOutletGroup=tlpAtsOutletGroup, tlpPduInputCurrentLimit=tlpPduInputCurrentLimit, tlpAtsConfigVoltageRangeLimitsTable=tlpAtsConfigVoltageRangeLimitsTable, tlpAtsInputPhaseVoltageMax=tlpAtsInputPhaseVoltageMax)
mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpEnvDetail=tlpEnvDetail, tlpAtsCircuitTable=tlpAtsCircuitTable, tlpPduOutletCommand=tlpPduOutletCommand, tlpUpsBatteryPackConfigTable=tlpUpsBatteryPackConfigTable, tlpPduAlarmLoadOff20=tlpPduAlarmLoadOff20, tlpAtsAlarmSource2OverVoltage=tlpAtsAlarmSource2OverVoltage, tlpNotifySystemShutdown=tlpNotifySystemShutdown, tlpUpsIdentNumPhases=tlpUpsIdentNumPhases, tlpPduAlarmLoadOff37=tlpPduAlarmLoadOff37, tlpUpsBypassEntry=tlpUpsBypassEntry, tlpUpsAlarmLoadOff03=tlpUpsAlarmLoadOff03, tlpAtsCircuitIndex=tlpAtsCircuitIndex, tlpPduHeatsinkStatus=tlpPduHeatsinkStatus, tlpAtsAlarmCircuitBreakerOpen=tlpAtsAlarmCircuitBreakerOpen, tlpUpsAlarmLoadOff04=tlpUpsAlarmLoadOff04, tlpAtsSupportsOutletCurrentPower=tlpAtsSupportsOutletCurrentPower, tlpUpsAlarmCurrentAboveThreshold1=tlpUpsAlarmCurrentAboveThreshold1, tlpAtsIdentNumAts=tlpAtsIdentNumAts, tlpPduOutletVoltage=tlpPduOutletVoltage, tlpAtsOutletRampAction=tlpAtsOutletRampAction, tlpPduBreaker=tlpPduBreaker, tlpPduAlarmLoadOff08=tlpPduAlarmLoadOff08, tlpAtsOutletGroupCommand=tlpAtsOutletGroupCommand, tlpEnvTemperatureLowLimit=tlpEnvTemperatureLowLimit, tlpPduOutletGroup=tlpPduOutletGroup, tlpAtsAlarmLoadOff33=tlpAtsAlarmLoadOff33, tlpDeviceIdentProtocol=tlpDeviceIdentProtocol, tlpUpsBypassLineIndex=tlpUpsBypassLineIndex, tlpAgentAlarms=tlpAgentAlarms, tlpPduIdentNumPdu=tlpPduIdentNumPdu, tlpUpsSupportsOutletVoltage=tlpUpsSupportsOutletVoltage, tlpPduCircuitPhase=tlpPduCircuitPhase, tlpAtsAlarmLoadOff24=tlpAtsAlarmLoadOff24, tlpPduDeviceMainLoadState=tlpPduDeviceMainLoadState, tlpUpsAlarmInverterCircuitBad=tlpUpsAlarmInverterCircuitBad, tlpPduBreakerTable=tlpPduBreakerTable, tlpUpsOutletState=tlpUpsOutletState, tlpAtsInputBadTransferVoltage=tlpAtsInputBadTransferVoltage, tlpUpsOutletRampDelay=tlpUpsOutletRampDelay, tlpUpsOutputLineCurrent=tlpUpsOutputLineCurrent, tlpPduAlarmLoadOff16=tlpPduAlarmLoadOff16, tlpUpsOutputTable=tlpUpsOutputTable, tlpAgentAttributesSSHCLIPort=tlpAgentAttributesSSHCLIPort, tlpAlarmTable=tlpAlarmTable, tlpAtsAlarmSystemTemperature=tlpAtsAlarmSystemTemperature, tlpPduAlarmCircuitBreakerOpen03=tlpPduAlarmCircuitBreakerOpen03, tlpUpsAlarmLoadOff05=tlpUpsAlarmLoadOff05, tlpCooling=tlpCooling, tlpAtsSupportsOutletGroup=tlpAtsSupportsOutletGroup, tlpUpsConfigBypassUpperLimitPercent=tlpUpsConfigBypassUpperLimitPercent, tlpEnvOutputContactTable=tlpEnvOutputContactTable, tlpAtsAlarmGeneralFault=tlpAtsAlarmGeneralFault, tlpSwitchControl=tlpSwitchControl, tlpAtsControlAtsReboot=tlpAtsControlAtsReboot, tlpPduInputLowTransferVoltageLowerBound=tlpPduInputLowTransferVoltageLowerBound, tlpUpsAlarmLoadOff30=tlpUpsAlarmLoadOff30, tlpAgentAttributes=tlpAgentAttributes, tlpPduSupportsEntry=tlpPduSupportsEntry, tlpUpsWatchdogTable=tlpUpsWatchdogTable, tlpAtsDisplayIntensity=tlpAtsDisplayIntensity, tlpUpsAlarmInverterOverVoltage=tlpUpsAlarmInverterOverVoltage, tlpAtsConfig=tlpAtsConfig, tlpUpsAlarmLoadOff09=tlpUpsAlarmLoadOff09, tlpCoolingAlarmStartupLinePressureImbalance=tlpCoolingAlarmStartupLinePressureImbalance, tlpAtsAlarmLoadOff26=tlpAtsAlarmLoadOff26, tlpDeviceIdentHardwareVersion=tlpDeviceIdentHardwareVersion, tlpAtsAlarmLoadOff10=tlpAtsAlarmLoadOff10, tlpAlarmTableRef=tlpAlarmTableRef, tlpUpsInputNominalVoltage=tlpUpsInputNominalVoltage, tlpUpsBatteryPackIdentFirmware=tlpUpsBatteryPackIdentFirmware, tlpAtsInputHighTransferVoltageLowerBound=tlpAtsInputHighTransferVoltageLowerBound, tlpAtsAlarmLoadOff30=tlpAtsAlarmLoadOff30, tlpUpsInputHighTransferVoltageUpperBound=tlpUpsInputHighTransferVoltageUpperBound, tlpUpsOutputLineIndex=tlpUpsOutputLineIndex, tlpUpsSecondsOnBattery=tlpUpsSecondsOnBattery, tlpAtsDeviceOutputPowerTotal=tlpAtsDeviceOutputPowerTotal, tlpUpsDeviceTemperatureC=tlpUpsDeviceTemperatureC, tlpUpsAlarmLoadLevelAboveThresholdPhase2=tlpUpsAlarmLoadLevelAboveThresholdPhase2, tlpAgentAttributesSupportsTelnetCLI=tlpAgentAttributesSupportsTelnetCLI, tlpUpsAlarmLoadOff40=tlpUpsAlarmLoadOff40, tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold, tlpUpsInputEntry=tlpUpsInputEntry, tlpPduInputPhaseCurrent=tlpPduInputPhaseCurrent, tlpUpsConfigOverLoadThreshold=tlpUpsConfigOverLoadThreshold, tlpAtsAlarmFrequency=tlpAtsAlarmFrequency, tlpAtsAlarmCircuitBreakerOpen03=tlpAtsAlarmCircuitBreakerOpen03, tlpUpsBypassLineTable=tlpUpsBypassLineTable, tlpPduDeviceTemperatureF=tlpPduDeviceTemperatureF, tlpAgentAttributesSupportsHTTPS=tlpAgentAttributesSupportsHTTPS, tlpAtsAlarmSource2Outage=tlpAtsAlarmSource2Outage, tlpUpsBatterySummaryEntry=tlpUpsBatterySummaryEntry, tlpEnvAlarms=tlpEnvAlarms, tlpEnvHumidityHighLimit=tlpEnvHumidityHighLimit, tlpUpsBypassLinePower=tlpUpsBypassLinePower, tlpAtsAlarmLoadOff34=tlpAtsAlarmLoadOff34, tlpUpsBatteryPackConfigBatteriesPerString=tlpUpsBatteryPackConfigBatteriesPerString, tlpKvmDetail=tlpKvmDetail, tlpAtsAlarmLoadOff04=tlpAtsAlarmLoadOff04, tlpCoolingAlarmEvaporatorFreezeUp=tlpCoolingAlarmEvaporatorFreezeUp, tlpUpsOutlet=tlpUpsOutlet, tlpDeviceName=tlpDeviceName, tlpEnvIdentNumEnvirosense=tlpEnvIdentNumEnvirosense, tlpUpsBatteryPackDetailNextReplaceDate=tlpUpsBatteryPackDetailNextReplaceDate, tlpPduOutputPhaseType=tlpPduOutputPhaseType, tlpAtsSupportsTable=tlpAtsSupportsTable, tlpPduAlarmLoadOff33=tlpPduAlarmLoadOff33, tlpAtsControlAtsOff=tlpAtsControlAtsOff, tlpPduDisplayAutoScroll=tlpPduDisplayAutoScroll, tlpPduAlarmCircuitBreakerOpen04=tlpPduAlarmCircuitBreakerOpen04, tlpPduHeatsink=tlpPduHeatsink, tlpAtsConfigSourceBrownoutSetMinimum=tlpAtsConfigSourceBrownoutSetMinimum, tlpUpsEstimatedChargeRemaining=tlpUpsEstimatedChargeRemaining, tlpUpsOutletIndex=tlpUpsOutletIndex, tlpCoolingOutput=tlpCoolingOutput, tlpAtsCircuitTotalPower=tlpAtsCircuitTotalPower, tlpEnvInputContactTable=tlpEnvInputContactTable, tlpAtsConfigVoltageRangeEntry=tlpAtsConfigVoltageRangeEntry, tlpUpsAlarmLoadOff38=tlpUpsAlarmLoadOff38, tlpUpsConfigBypassLowerLimitVoltage=tlpUpsConfigBypassLowerLimitVoltage, tlpAgentAttributesSupportsHTTP=tlpAgentAttributesSupportsHTTP, tlpEnvHumidityLowLimit=tlpEnvHumidityLowLimit, tlpAtsDevicePhaseImbalance=tlpAtsDevicePhaseImbalance, tlpUpsBypassLineVoltage=tlpUpsBypassLineVoltage, tlpUpsAlarmLoadOff08=tlpUpsAlarmLoadOff08, tlpUpsConfigInputFrequency=tlpUpsConfigInputFrequency, tlpUpsAlarmLoadOff16=tlpUpsAlarmLoadOff16, tlpUpsOutletName=tlpUpsOutletName, tlpPduControlShed=tlpPduControlShed, tlpPduAlarmCircuitBreakerOpen01=tlpPduAlarmCircuitBreakerOpen01, tlpNotifySystemUpdate=tlpNotifySystemUpdate, tlpAtsIdentNumPhases=tlpAtsIdentNumPhases, tlpPduHeatsinkIndex=tlpPduHeatsinkIndex, tlpAtsDetail=tlpAtsDetail, tlpAtsAlarmCircuitBreakerOpen02=tlpAtsAlarmCircuitBreakerOpen02, tlpDeviceTypes=tlpDeviceTypes, tlpDeviceIdentCommPortName=tlpDeviceIdentCommPortName, tlpAtsDisplayScheme=tlpAtsDisplayScheme, tlpUpsAlarmCurrentAboveThreshold=tlpUpsAlarmCurrentAboveThreshold, tlpEnvHumidityTable=tlpEnvHumidityTable, tlpAgentAttributesSupportsSSHCLI=tlpAgentAttributesSupportsSSHCLI, tlpUpsInputLowTransferVoltageLowerBound=tlpUpsInputLowTransferVoltageLowerBound, tlpAtsDeviceOutputCurrentPrecision=tlpAtsDeviceOutputCurrentPrecision, tlpPduOutputPhase=tlpPduOutputPhase, tlpAtsControlEntry=tlpAtsControlEntry, tlpAtsInputNominalVoltage=tlpAtsInputNominalVoltage, tlpUpsBatteryPackDetailAge=tlpUpsBatteryPackDetailAge, tlpUpsConfigAutoRestartOverTemperature=tlpUpsConfigAutoRestartOverTemperature, tlpAtsDevicePowerOnDelay=tlpAtsDevicePowerOnDelay, tlpAtsCircuitCurrentMax=tlpAtsCircuitCurrentMax, tlpPduAlarmLoadOff34=tlpPduAlarmLoadOff34, tlpPduDisplayEntry=tlpPduDisplayEntry, tlpUpsAlarmEPOActive=tlpUpsAlarmEPOActive, tlpPduConfigTable=tlpPduConfigTable, tlpAtsConfigLowVoltageReset=tlpAtsConfigLowVoltageReset, tlpUpsConfigAutoRestartInverterShutdown=tlpUpsConfigAutoRestartInverterShutdown, tlpUpsAlarmLoadOff21=tlpUpsAlarmLoadOff21, tlpAtsAlarmLoadOff37=tlpAtsAlarmLoadOff37, tlpPduAlarmLoadOff03=tlpPduAlarmLoadOff03, tlpUpsIdentNumBatteryPacks=tlpUpsIdentNumBatteryPacks, tlpDeviceEntry=tlpDeviceEntry, tlpUpsAlarmChargerFailed=tlpUpsAlarmChargerFailed, tlpUpsOutputFrequency=tlpUpsOutputFrequency, tlpAtsConfigVoltageRangeLimitsEntry=tlpAtsConfigVoltageRangeLimitsEntry, tlpEnvTemperatureTable=tlpEnvTemperatureTable, tlpUpsConfigAutoRestartAfterShutdown=tlpUpsConfigAutoRestartAfterShutdown, tlpPduAlarmLoadOff24=tlpPduAlarmLoadOff24, tlpAtsConfigSource1TransferReset=tlpAtsConfigSource1TransferReset, tlpUpsBatteryPackConfigDesignCapacity=tlpUpsBatteryPackConfigDesignCapacity, tlpProducts=tlpProducts, tlpUpsConfigAutoRestartTable=tlpUpsConfigAutoRestartTable, tlpUpsAlarmBypassFrequencyBad=tlpUpsAlarmBypassFrequencyBad, tlpAtsIdentEntry=tlpAtsIdentEntry, tlpAtsConfigOverTemperatureThreshold=tlpAtsConfigOverTemperatureThreshold, tlpUpsOutletCommand=tlpUpsOutletCommand, tlpAtsIdentNumBreakers=tlpAtsIdentNumBreakers, tlpUpsAlarmBypassBad=tlpUpsAlarmBypassBad, tlpAgentAttributesAutostartFTP=tlpAgentAttributesAutostartFTP, tlpPduDeviceOutputPowerTotal=tlpPduDeviceOutputPowerTotal, tlpUpsBatteryPackDetailCycleCount=tlpUpsBatteryPackDetailCycleCount, tlpPduDetail=tlpPduDetail, tlpPduOutputTable=tlpPduOutputTable, tlpUpsAlarmLoadOff27=tlpUpsAlarmLoadOff27, tlpUpsConfigBypassUpperLimitVoltage=tlpUpsConfigBypassUpperLimitVoltage, tlpPduInputPhaseIndex=tlpPduInputPhaseIndex, tlpPduSupportsEnergywise=tlpPduSupportsEnergywise, tlpPduCircuitEntry=tlpPduCircuitEntry, tlpPduOutputIndex=tlpPduOutputIndex, tlpUpsAlarmLoadOff36=tlpUpsAlarmLoadOff36, tlpAgentContacts=tlpAgentContacts, tlpCoolingIdent=tlpCoolingIdent, tlpAgentAttributesHTTPSPort=tlpAgentAttributesHTTPSPort, tlpUpsOutputLinePower=tlpUpsOutputLinePower, tlpCoolingControl=tlpCoolingControl, tlpPduInputLowTransferVoltageUpperBound=tlpPduInputLowTransferVoltageUpperBound, tlpUpsConfigBypassLowerLimitPercent=tlpUpsConfigBypassLowerLimitPercent, tlpAgentEmailContactRowStatus=tlpAgentEmailContactRowStatus, tlpDeviceRegion=tlpDeviceRegion, tlpDeviceIdentCommPortType=tlpDeviceIdentCommPortType, tlpAlarmUserDefined01=tlpAlarmUserDefined01, tlpPduInputHighTransferVoltageUpperBound=tlpPduInputHighTransferVoltageUpperBound, tlpAtsCircuitUtilization=tlpAtsCircuitUtilization, tlpAtsSupportsEntry=tlpAtsSupportsEntry, tlpUpsControlSelfTest=tlpUpsControlSelfTest, tlpAtsAlarmLoadOff29=tlpAtsAlarmLoadOff29, tlpUpsBatteryPackIdentModel=tlpUpsBatteryPackIdentModel, tlpUpsDeviceMainLoadControllable=tlpUpsDeviceMainLoadControllable, tlpAtsAlarmCurrentAboveThresholdB3=tlpAtsAlarmCurrentAboveThresholdB3, tlpAgentAttributesSupportsSSHMenu=tlpAgentAttributesSupportsSSHMenu, tlpUpsOutputLineTable=tlpUpsOutputLineTable, tlpUpsControlUpsReboot=tlpUpsControlUpsReboot, tlpUpsAlarmLoadOff18=tlpUpsAlarmLoadOff18, tlpPduOutletShedDelay=tlpPduOutletShedDelay, tlpUpsBatteryPackDetailTemperatureC=tlpUpsBatteryPackDetailTemperatureC, tlpUpsControlEntry=tlpUpsControlEntry, tlpUpsBatteryRunTimeRemaining=tlpUpsBatteryRunTimeRemaining, tlpUpsAlarmBatteryOverVoltage=tlpUpsAlarmBatteryOverVoltage, tlpAtsAlarmSource1OverVoltage=tlpAtsAlarmSource1OverVoltage, tlpAtsInputFairVoltageThreshold=tlpAtsInputFairVoltageThreshold, tlpUpsAlarmOverCharged=tlpUpsAlarmOverCharged, tlpAgentAttributesAutostartSNMP=tlpAgentAttributesAutostartSNMP, tlpUpsSupportsEnergywise=tlpUpsSupportsEnergywise, tlpPduOutletControllable=tlpPduOutletControllable, tlpAtsIdentTable=tlpAtsIdentTable, tlpUpsDeviceMainLoadCommand=tlpUpsDeviceMainLoadCommand, tlpUpsControlTable=tlpUpsControlTable, tlpPduOutletRampAction=tlpPduOutletRampAction, tlpDeviceTable=tlpDeviceTable, tlpAtsOutletDescription=tlpAtsOutletDescription, tlpDeviceIdentTable=tlpDeviceIdentTable, tlpAtsAlarmLoadOff14=tlpAtsAlarmLoadOff14, tlpDeviceIndex=tlpDeviceIndex, tlpUpsAlarmFuseFailure=tlpUpsAlarmFuseFailure, tlpAlarmId=tlpAlarmId, tlpPduOutletGroupState=tlpPduOutletGroupState, tlpAgentSnmpContactPrivPassword=tlpAgentSnmpContactPrivPassword, tlpUpsAlarmBatteryBad=tlpUpsAlarmBatteryBad, tlpAlarmUserDefined02=tlpAlarmUserDefined02, tlpUpsInputPhaseVoltageMin=tlpUpsInputPhaseVoltageMin, tlpPduCircuitUtilization=tlpPduCircuitUtilization, tlpRackTrackDevice=tlpRackTrackDevice, tlpPduSupportsRampShed=tlpPduSupportsRampShed, tlpUpsInputPhasePower=tlpUpsInputPhasePower, tlpPduDeviceAggregatePowerFactor=tlpPduDeviceAggregatePowerFactor, tlpUpsAlarmLoadLevelAboveThresholdPhase3=tlpUpsAlarmLoadLevelAboveThresholdPhase3, tlpUpsBatteryStatus=tlpUpsBatteryStatus, tlpAtsControlRamp=tlpAtsControlRamp, tlpAtsConfigHighVoltageTransfer=tlpAtsConfigHighVoltageTransfer, tlpUpsControlShed=tlpUpsControlShed, tlpPduAlarmLoadOff10=tlpPduAlarmLoadOff10, tlpAtsAlarmLoadOff36=tlpAtsAlarmLoadOff36)
|
# Raised when VT-100 can't be enabled
class VT100Error( Exception ):
def __init__( self ):
super().__init__( "Couldn't enable VT-100 terminal emulation" )
|
class Solution:
"""
@param pid: the process id
@param ppid: the parent process id
@param kill: a PID you want to kill
@return: a list of PIDs of processes that will be killed in the end
"""
def killProcess(self, pid, ppid, kill):
groupByPPID = {}
index = 0
while index < len(ppid) :
if ppid[index] in groupByPPID :
groupByPPID[ppid[index]].append(pid[index])
else :
groupByPPID[ppid[index]] = [pid[index]]
index += 1
stack = [kill]
result = []
while stack :
node = stack.pop()
result.append(node)
if node in groupByPPID :
for childNode in groupByPPID[node] :
stack.append(childNode)
return result
|
#Questão: Pares, Ímpares, Positivos e Negativos
a = []
for i in range(5):
n = int(input())
a.append(int(n))
l = 0
m = 0
o = 0
p = 0
for j in range(5):
if a[j] % 2 == 0:
l += 1
if a[j] % 2 == 1:
m += 1
if a[j] > 0:
o += 1
if a[j] < 0:
p += 1
print(l, "valor(es) par(es)")
print(m, "valor(es) impar(es)")
print(o, "valor(es) positivo(s)")
print(p, "valor(es) negativo(s)")
|
'''
На вход программе подается два натуральных числа a и b (a< b). Напишите программу,
которая находит натуральное число из отрезка [a;b] с максимальной суммой делителей.
Формат входных данных
На вход программе подаются два числа, каждое на отдельной строке.
Формат выходных данных
Программа должна вывести два числа на одной строке, разделенных пробелом:
число с максимальной суммой делителей и сумму его делителей.
Примечание. Если таких чисел несколько, то выведите наибольшее из них.
Sample Input 1:
1
10
Sample Output 1:
10 18
Sample Input 2:
1
100
Sample Output 2:
96 252
'''
a = int(input())
# a = 2
b = int(input())
# b = 6
count_max = 0
sum_max = 0
num_max = 0
for i in range(a, b + 1):
# print(f"num: {i}, ", end="")
count = 0
sum = 0
for j in range(1, b + 1):
if i >= j:
if i % j == 0:
count += 1
sum += j
if sum >= sum_max:
sum_max = sum
num_max = i
else:
continue
# print(f"num: {num_max}, ", end="")
# print(f"sum: {sum_max} ", end="")
print(f"{num_max} {sum_max}")
|
"""
spiel.data
Module for organizing input data to the SPieL system
"""
class ParseError(ValueError):
""" Raised by bad values for a new instance """
class Instance:
"""
Represents a single end-to-end training instance
"""
def __init__(self, shape, segments, labels):
"""
Initializes the instance
:param shape: The written shape of the instance
:type shape: str
:param segments: The segments that make up the shape
:type segments: list of str
:param labels: The labels for each segment
:type labels: list of str
"""
self.shape = shape
self.segments = segments
self.labels = labels
@staticmethod
def fit(lines, strict):
"""
Generates an Instance object from lines of text
:param lines: The lines to generate from
:type lines: list of str
:param strict: Whether the Instance must have segments and labels
:type strict: bool
:rtype: Instance
"""
try:
shape, segments, labels = lines
except ValueError:
if len(lines) > 3 or strict:
raise ParseError("Unexpected number of fields")
shape, segments, labels = lines[0], None, None
if (segments or labels) and not len(segments) == len(labels):
raise ParseError(f"Number of segments must match number of \
labels; got segments '{segments}' segments, but labels '{labels}'.")
return Instance(''.join(shape), segments, labels)
@property
def annotations(self):
"""
Returns the combination of the instance's segments and labels
:rtype: list of (str, str)
"""
return list(zip(self.segments, self.labels))
def annotation_string(self):
"""
Returns a string representation of the instance's segments and labels
"""
return '-'.join([f"{segment}/{label}"
for segment, label in self.annotations])
def __eq__(self, other):
return self.shape == other.shape and \
self.segments == other.segments and \
self.labels == other.labels
def load_file(file_name, strict=True):
"""
Loads a list of instances from a file
"""
with open(file_name) as instance_file:
return load(instance_file, strict)
def load(lines, strict=True):
"""
Loads a list of instances from a list of lines
Lines must be ordered as follows:
Line 1*n: Shape
Line 2*n: Segments
Line 3*n: Labels
Line 4*n: blank
:return: A list of training instances
:rtype: list of Instance
"""
instances = []
data = []
for line in lines:
line = line.strip()
if not line:
if data:
instances.append(Instance.fit(data, strict))
data = []
else:
data.append(line.split())
if data:
instances.append(Instance.fit(data, strict))
return instances
|
test1 = 6 # True
test2 = 11 # False
test3 = 25 # True
test4 = 330 # 165 33
dividers = [2, 3, 5]
def is_ugly(n):
result = n
i = 0
while result > 1:
i += 1
print(i)
divided = False
for divisor in (5, 3, 2):
quotent, reminder = divmod(result, divisor)
if reminder == 0:
result = quotent
divided = True
break
if divided:
continue
break
return result == 1
print(is_ugly(3300))
|
# here the assumption is the user will give "n"
# the function has to print all dice rolls possible for "n" dices
def collect_all_dice_rolls(n):
result_set = []
helper(n, [], result_set)
return result_set
def helper(n, roll_set, result_set):
if n == 0:
result_set.append(list(roll_set))
else:
for i in range(1,7):
roll_set.append(i)
helper(n - 1, roll_set, result_set)
roll_set.pop()
print(collect_all_dice_rolls(3))
|
"""
This sub-package holds the Scripts system. Scripts are database
entities that can store data both in connection to Objects and Accounts
or globally. They may also have a timer-component to execute various
timed effects.
"""
|
SAMPLE_YEAR = 1983
SAMPLE_YEAR_SHORT = 83
SAMPLE_MONTH = 1
SAMPLE_DAY = 2
SAMPLE_HOUR = 15
SAMPLE_UTC_HOUR = 20
SAMPLE_HOUR_12H = 3
SAMPLE_MINUTE = 4
SAMPLE_SECOND = 5
SAMPLE_PERIOD = 'PM'
SAMPLE_OFFSET = '-00'
SAMPLE_LONG_TZ = 'UTC'
def create_sample(template: str) -> str:
return (
template
.replace('YYYY', str(SAMPLE_YEAR))
.replace('YY', ('%02d' % SAMPLE_YEAR_SHORT))
.replace('MM', ('%02d' % SAMPLE_MONTH))
.replace('DD', ('%02d' % SAMPLE_DAY))
.replace('HH24', ('%02d' % SAMPLE_HOUR))
.replace('HH12', ('%02d' % SAMPLE_HOUR_12H))
.replace('HH', ('%02d' % SAMPLE_HOUR))
.replace('MI', ('%02d' % SAMPLE_MINUTE))
.replace('SS', ('%02d' % SAMPLE_SECOND))
.replace('OF', SAMPLE_OFFSET)
.replace('AM', SAMPLE_PERIOD)
)
DATE_CASES = [
'YYYY-MM-DD',
'MM-DD-YYYY',
'DD-MM-YYYY',
'MM/DD/YY',
'DD/MM/YY',
'DD-MM-YY',
]
TIMEONLY_CASES = [
"HH12:MI AM",
"HH:MI:SS",
"HH24:MI:SS",
]
DATETIMETZ_CASES = [
"YYYY-MM-DD HH:MI:SSOF",
"YYYY-MM-DD HH:MI:SS",
"YYYY-MM-DD HH24:MI:SSOF",
"MM/DD/YY HH24:MI",
]
DATETIME_CASES = [
"YYYY-MM-DD HH24:MI:SS",
"YYYY-MM-DD HH:MI:SS",
"YYYY-MM-DD HH12:MI AM",
"MM/DD/YY HH24:MI",
]
|
# https://leetcode.com/problems/largest-triangle-area/submissions/
# Time:26.45% Memory:100%
class Solution(object):
def largest_triangle_area(self, points):
max_area = 0
for i in range(len(points) - 2):
for j in range(i+1, len(points) - 1):
for k in range(j+1, len(points)):
three_points = [points[i], points[j], points[k]]
area = self.calculate_triangle_area(three_points)
if max_area < area:
max_area = area
return max_area
def calculate_triangle_area(self, points):
xs = [point[0] for point in points] + [points[0][0]]
ys = [point[1] for point in points] + [points[0][1]]
area = 0
for i in range(3):
area += xs[i] * ys[i + 1]
area -= ys[i] * xs[i + 1]
area = abs(area) / 2.0
return area
if __name__ == "__main__":
points = [[0,0],[0,1],[1,0],[0,2],[2,0]]
area = Solution().largest_triangle_area(points)
print(area)
|
# Faça um Programa que leia três números e mostre o maior e o menor deles.
num1 = int(input('Informe um numero: '))
num2 = int(input('Informe outro numero: '))
num3 = int(input('Informe mais um numero: '))
if num1 == num2 and num1 == num3:
print('Os numeros sao iguais')
else:
if num1 > num2 and num1 > num3:
print(f'O maior numero é: {num1}')
elif num2 > num3:
print(f'O maior numero é {num2}')
else:
print(f'O maior numero é {num3}')
if num1 < num2 and num1 < num3:
print(f'O menor numero é {num1}')
elif num2 < num3:
print(f'O menor numero é {num2}')
else:
print(f'O menor numero é {num3}')
|
# -*- coding: utf-8 -*-
BOT_NAME = 'p1_pipeline'
SPIDER_MODULES = ['p1_pipeline.spiders']
NEWSPIDER_MODULE = 'p1_pipeline.spiders'
ROBOTSTXT_OBEY = True
# Configure item pipelines
# See http://scrapy.readthedocs.org/en/latest/topics/item-pipeline.html
ITEM_PIPELINES = {
'p1_pipeline.pipelines.DropNoTagsPipeline': 300,
}
|
# blanyal, hiimbex :)
'''
The goal of binary ssearch is to divide the search space in half every iteration
Binary search also assumes you have a sorted list of integers and goes through every
time and determines if the item you are searching for is greater than or less than your
mid point and jumps to the respective side from there. If your item is found it returns
true, otherwise your item is either not in the list or the list was not sorted, etc.
'''
def binarysearch (list, item):
first = 0
last = len(list) - 1
found = False
while not found and first <= last:
mid = (first+last)//2
if list[mid] == item:
found = True
else:
if item < list[mid]:
last = mid - 1
else:
first = mid + 1
return found
if __name__ == "__main__":
inputList = [int(x) for x in input("Enter the input list: ").split()]
item = int(input("Enter the item to be found: "))
print (binarySearch(inputList, item))
|
class NoBranchSelected(Exception):
def __init__(self, message: str = ''):
self.message: str = message
def __str__(self):
return """
No git Branch Selected
{0!s}
""".format(self.message)
|
# gemato: Utility functions
# vim:fileencoding=utf-8
# (c) 2017-2020 Michał Górny
# Licensed under the terms of 2-clause BSD license
class MultiprocessingPoolWrapper:
"""
A portability wrapper for multiprocessing.Pool that supports
context manager API (and any future hacks we might need).
Note: the multiprocessing behavior has been temporarily removed
due to unresolved deadlocks. It will be restored once the cause
of the issues is found and fixed or worked around.
"""
__slots__ = []
def __init__(self, processes):
pass
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, exc_cb):
pass
def map(self, func, it, chunksize=None):
return map(func, it)
def imap_unordered(self, *args, **kwargs):
"""
Use imap_unordered() if available and safe to use. Fall back
to regular map() otherwise.
"""
return self.map(*args, **kwargs)
def path_starts_with(path, prefix):
"""
Returns True if the specified @path starts with the @prefix,
performing component-wide comparison. Otherwise returns False.
"""
return prefix == "" or (path + "/").startswith(prefix.rstrip("/") + "/")
def path_inside_dir(path, directory):
"""
Returns True if the specified @path is inside @directory,
performing component-wide comparison. Otherwise returns False.
"""
return ((directory == "" and path != "")
or path.rstrip("/").startswith(directory.rstrip("/") + "/"))
def throw_exception(e):
"""
Raise the given exception. Needed for onerror= argument
to os.walk(). Useful for other callbacks.
"""
raise e
|
{
"targets" : [
{
"target_name" : "leveled",
"sources" : ["src/leveled.cc", "src/batch.cc"],
"dependencies" : [
"deps/leveldb/binding.gyp:leveldb"
]
}
]
}
|
x = 20
# xが10以上30以下の場合に「xは10以上30以下です」と出力してください
if x >= 10 and x <= 30:
print ("xは10以上30以下です")
y = 60
# yが10未満または30より大きい場合に「yは10未満または30より大きいです」と出力してください
if y < 10 or y > 30:
print ("yは10未満または30より大きいです")
z = 55
# zが77ではない場合に「zは77ではありません」と出力してください
if not z == 77:
print ("zは77ではありません")
|
class Solution:
def makesquare(self, matchsticks: List[int]) -> bool:
"""
[1,1,2,2,2] total = 8, k = 4, subset = 2
subproblems:
Can I make 4 subsets with equal sum out of the given numbers?
Find all subsets, starting from 0 .... n-1
if can make 4 subsets and use all numbers -> answer true
else answer is false
find_subsets(k, i, sum) = find_subsets(k-1...0, i...n-1, sum...0)
base cases:
if k == 0:
return True
if sum == 0:
return find(subsets)
if sum < 0:
return False
answer -> if can make 4 subsets and use all numbers -> answer true
else answer is false
Compelexities:
Time O(2^N * N)
Space O(2^N)
"""
@lru_cache(None)
def find_subsets(mask, k, curr_sum):
if k == 0:
return True
if curr_sum == 0:
return find_subsets(mask, k-1, subset_sum)
if curr_sum < 0:
return False
for j in range(0, len(matchsticks)):
if mask & (1 << j) != 0:
continue
if find_subsets(mask ^ (1 << j), k, curr_sum - matchsticks[j]):
return True
return False
total_sum = sum(matchsticks)
subsets_count = 4
if total_sum % subsets_count != 0:
return False
subset_sum = total_sum // subsets_count
return find_subsets(0, subsets_count-1, subset_sum)
|
posts = [
{
"id": 1,
"title": "Pancake",
"content": "Lorem Ipsum ..."
}
]
users = []
|
class Solution:
def largestRectangleArea(self, heights: List[int]) -> int:
max_area = 0
stack = [] #(index, height)
for i, h in enumerate(heights):
start = i
while stack and stack[-1][1] > h:
index, height = stack.pop()
max_area = max(max_area, height * (i - index))
start = index
stack.append((start, h))
for i, h in stack:
max_area = max(max_area, h * (len(heights) - i))
return max_area
|
#!/usr/bin/python3
# Generators
def genFibonacci():
"""
Fibonacci generator
"""
yield 0
yield 1
cnt = 2
a = 0
b = 1
c = a + b
while cnt < 10:
c = a + b
yield c
a = b
b = c
cnt += 1
def genPrimes():
n = 1000
primes = [True]*(n+1)
primes[0] = False
primes[1] = False
i = 2
while i*i <= n:
if primes[i]:
yield i
for j in range(2*i, n+1, i):
primes[j] = False
i+=1
#for i in genFibonacci():
# print(i)
cnt = 1
for p in genPrimes():
if cnt==1:
print(p)
break
cnt+=1
|
## @package AssociateJoint Association joint that used by gait recorder
## The class that has all the information about associations
class AssociateJoint:
## Constructor
# @param self Object pointer
# @param module Module name string
# @param node Node index
# @param corr Bool, correaltion: True for positive; False for negtive
# @param ratio Correlation ratio
def __init__(self, module, node, corr, ratio):
## Module name string
self.ModuleName = module # name string
## Node index
self.Node = node
## Correlation boolean value
self.Correlation = corr # bool value
## Correlation ratio
self.Ratio = ratio
## Current object to string
# @param self Object pointer
def ToString(self):
return self.ModuleName+"::"+self.NodeToString(self.Node)+"::"+ \
self.CorrelationToStr(self.Correlation)+"::"+str(self.Ratio)
## Find node string name given node index
# @param self Object pointer
# @param node Integer, node indez
def NodeToString(self, node):
if node == 0:
return "Front Wheel"
if node == 1:
return "Lft Wheel"
if node == 2:
return "Rgt Wheel"
if node == 3:
return "Central Bending"
## Correlation boolean value to string
# @param self Object pointer
# @param corr Correlation boolean
def CorrelationToStr(self,corr):
if corr:
return "+"
else:
return "-"
|
"""1278. Palindrome Partitioning III
https://leetcode.com/problems/palindrome-partitioning-iii/
You are given a string s containing lowercase letters and an integer k.
You need to :
First, change some characters of s to other lowercase English letters.
Then divide s into k non-empty disjoint substrings such that each substring
is palindrome.
Return the minimal number of characters that you need to change to divide the
string.
Example 1:
Input: s = "abc", k = 2
Output: 1
Explanation: You can split the string into "ab" and "c", and change 1
character in "ab" to make it palindrome.
Example 2:
Input: s = "aabbc", k = 3
Output: 0
Explanation: You can split the string into "aa", "bb" and "c", all of them
are palindrome.
Example 3:
Input: s = "leetcode", k = 8
Output: 0
Constraints:
1 <= k <= s.length <= 100.
s only contains lowercase English letters.
"""
class Solution:
def palindrome_partition(self, s: str, k: int) -> int:
return 0
|
class Solution:
def generateMatrix(self, n):
"""
:type n: int
:rtype: List[List[int]]
"""
matrix = [[0 for _ in range(n)] for _ in range(n)]
lvl, c = 0, 1
while lvl <= n//2:
if c <= n*n:
for i in range(lvl, n-lvl):
matrix[lvl][i] = c
c += 1
if c <= n*n:
for i in range(lvl+1, n-lvl):
matrix[i][n-lvl-1] = c
c += 1
if c <= n*n:
for i in range(n-lvl-2, -1+lvl, -1):
matrix[n-lvl-1][i] = c
c += 1
if c <= n*n:
for i in range(n-lvl-2, lvl, -1):
matrix[i][lvl] = c
c += 1
lvl += 1
return matrix
if __name__ == "__main__":
for i in Solution().generateMatrix(9):
print(i)
|
def modify_input_for_multiple_files(hotel, image):
dict = {}
dict['hotel'] = hotel
dict['image'] = image
return dict
def modify_input_for_multiple_room_files(room, image):
dict = {}
dict['room'] = room
dict['image'] = image
return dict
def modify_input_for_multiple_package_files(package, image):
dict = {}
dict['package'] = package
dict['image'] = image
return dict
|
class Solution:
def judgeCircle(self, moves: str) -> bool:
x = y = 0
for m in moves:
if m == 'R':
x += 1
elif m == 'L':
x -= 1
elif m == 'U':
y -= 1
else:
y += 1
return x == 0 and y == 0
|
for _ in range(int(input())):
n = int(input())
l = list(map(int, input().split(" ")))
is_true = False
for i in range(1, n):
if l[i] >= l[i-1]:
is_true = True
break
if is_true:
print("YES")
else:
print("NO")
|
# stops the current iteration in a loop
class MinorException(Exception):
pass
# stops the bot
class CriticalException(Exception):
pass
|
measured_values = [None] * N
for i in range(N):
# Intercept qubits from Alice
qubit = conn.recvQubit()
# Measure all qubits in standard basis
measured_values[i] = qubit.measure(inplace=True)
# Forward qubits to Bob
conn.sendQubit(qubit, "Bob")
|
# Here list comprehension is used
# all() is used to make sure that the list
# goes through all the values of x and y
n = input()
print([x for x in range(2, int(n))
if all(x % y != 0 for y in range(2, int(x**0.5)+1))])
# These lines make sure the program doesn't close
# before you even see the output!
print("\n\n\n\n\nA program by Karthikeshwar\n\n")
input("Press enter to exit")
|
class IFrameworkInputElement(IInputElement):
""" Declares a namescope contract for framework elements. """
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
Name=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Gets or sets the name of an element.
Get: Name(self: IFrameworkInputElement) -> str
Set: Name(self: IFrameworkInputElement)=value
"""
|
#Jogadores de futebol exercicio 093/1 - Guanabara
inf = dict()
gols = list()
soma = 0
inf['nome'] = str (input ('Nome: '))
n = int (input (f'Quantas partidas {inf["nome"].upper()} jogou ? '))
print ()
for c in range (1,n + 1):
gols.append(int(input(f'Quantos gols na {c}º partida ? ')))
inf['marcou'] = gols
print ()
for x in inf['marcou']:
soma += x
inf['total'] = soma #poderia ter usado o sum(gols)...assim ele somaria a lista de gols
print ('-'*30)
print(inf)
print ('-'*30)
for key, values in inf.items():
print (f' >> {key}: {values}')
print('-' * 30)
for partida, i in enumerate(inf['marcou']):
print(f' > O jogador {inf["nome"]}, marcou {i} gols na {partida + 1}º partida.')
print (f'Obtendo um valor total de {inf["total"]} gols ')
|
names = ["Serena",
"Andrew",
"Bobbie",
"Cason",
"David",
"Farzana",
"Frank",
"Hannah",
"Ida",
"Irene",
"Jim",
"Jose",
"Keith",
"Laura",
"Lucy",
"Meredith",
"Nick",
"Ada",
"Yeeling",
"Yan"]
pre_nouns = ["an", "a", "the", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "much",
"every", "any", "each", "some", "more"]
question_words = ["What", "Which", "Where", "Who", "When", "Why", "How", "At what time"]
adverbs = ["very", "just", "before", "too", "well", "also", "such", "near", "still", "never", "between", "far",
"together", "often", "always", "once", "enough", "soon", "early", "slow", "fine"]
adjectives = ["hot", "other", "long", "first", "new", "round", "good", "great", "low", "same", "right", "old", "small",
"large", "even", "big", "high", "light", "kind", "own", "last", "hard", "late", "real", "next", "white",
"second", "main", "plain", "usual", "young", "ready", "red", "direct", "black", "short", "numeral",
"complete", "whole", "best", "better", "fast", "simple", "cold", "certain", "dark", "correct", "able",
"done", "final", "green", "quick", "warm", "free", "strong", "special", "clear", "full", "blue", "deep",
"busy", "common", "gold", "possible", "dry", "cool"]
articles = ["the", "a", "an"]
conjunctions = ["and", "or", "but", "if", "then", "than", "though"]
nouns = ["that", "color", "this", "there", "word", "time", "way", "these", "thing", "day", "number", "water", "people",
"side", "now", "part", "place", "man", "year", "name", "form", "line", "boy", "sentence", "end", "home",
"hand", "port", "land", "here", "men", "house", "picture", "animal", "point", "mother", "world", "self",
"earth", "father", "head", "page", "country", "school", "food", "sun", "eye", "door", "city", "tree", "cross",
"story", "sea", "left", "night", "life", "children", "example", "ease", "paper", "music", "book", "letter",
"mile", "river", "car", "feet", "group", "rain", "room", "friend", "idea", "fish", "mountain", "north", "base",
"horse", "face", "wood", "girl", "list", "bird", "body", "dog", "family", "song", "state", "product", "class",
"wind", "question", "ship", "area", "rock", "order", "fire", "south", "problem", "piece", "farm", "top",
"king", "size", "hour", "true", "step", "west", "ground", "table", "morning", "vowel", "war", "pattern",
"center", "love", "person", "money", "road", "map", "science", "notice", "voice", "power", "town", "unit",
"machine", "note", "plan", "figure", "star", "box", "noun", "field", "pound", "beauty", "front", "week",
"minute", "mind", "tail", "fact", "street", "inch", "nothing", "course", "wheel", "force", "object", "surface",
"moon", "island", "foot", "test", "boat", "plane", "age", "game", "shape", "heat", "snow", "bed", "east",
"weight", "language"]
numerals = ["one", "two", "three", "four", "hundred", "five", "six", "ten", "thousand"]
other = ["will", "dont", "while", "sure", "ever", "oh", "ago", "yes", "perhaps"]
possesive_pronouns = ["his", "your", "their", "her", "my", "our"]
prepositions = ["of", "to", "in", "for", "on", "with", "as", "at", "from", "by", "out", "up", "about", "so", "over",
"down", "after", "back", "under", "through", "off", "again", "since", "until", "above", "during",
"toward", "against", "behind", "yet", "among"]
pronouns = ["it", "you", "he", "I", "they", "we", "she", "them", "him", "me", "us", "those"]
quantities = ["some", "all", "each", "many", "more", "no", "most", "any", "little", "only", "every", "much", "few",
"both", "half", "less", "several", "lot"]
verbs = ["is", "was", "are", "be", "have", "had", "can", "were", "use", "said", "do", "would", "write", "like", "make",
"see", "has", "look", "could", "go", "come", "did", "sound", "know", "call", "may", "been", "find", "work",
"take", "get", "made", "live", "came", "show", "give", "think", "say", "help", "turn", "cause", "mean",
"differ", "move", "does", "tell", "set", "want", "air", "play", "put", "read", "spell", "add", "must",
"follow", "act", "ask", "change", "went", "need", "try", "build", "stand", "should", "found", "answer", "grow",
"study", "learn", "plant", "cover", "thought", "let", "keep", "start", "might", "saw", "draw", "run", "press",
"close", "stop", "open", "seem", "begin", "got", "walk", "mark", "care", "carry", "took", "eat", "began",
"hear", "cut", "watch", "feel", "talk", "pose", "leave", "measure", "happen", "told", "knew", "pass", "heard",
"am", "remember", "hold", "interest", "reach", "sing", "listen", "travel", "lay", "serve", "appear", "rule",
"govern", "pull", "fall", "fly", "lead", "cry", "wait", "rest", "drive", "stood", "contain", "teach", "gave",
"develop", "sleep", "produce", "stay", "decide", "record", "wonder", "laugh", "ran", "check", "miss",
"brought", "bring", "sit", "fill"]
versions_of_to_be = ["am", "is", "are", "was", "were"]
|
params = {
'model_name': 'NCP', # model name
'cluster_generator': "MFM", # or CRP
'maxK': 12, # max number of clusters to generate
# MFM
"poisson_lambda": 3 - 1, # K ~ Pk(k) = Poisson(lambda) + 1
"dirichlet_alpha": 1, # prior for cluster proportions
# CRP
'crp_alpha': .7, # dispersion parameter of CRP
# data shape
'n_timesteps': 32, # width of each spike
'n_channels': 7, # number of local channels/units
# ResNet encoder: parameters for spike_encoder.py
'resnet_blocks': [1,1,1,1],
'resnet_planes': 32,
# number of data points for training, N ~ unif(Nmin, Nmax)
'Nmin': 200,
'Nmax': 500,
# neural net architecture for NCP
'h_dim': 256,
'g_dim': 512,
'H_dim': 128,
}
|
VCF_CONFIG = {
"load_modules": ["samtools/1.4.1", "bcftools/1.4.1"],
"ref_genome": "/external/malaria_SciRep2018/ref_genomes/Plasmodium_falciparum_3D7.fasta",
"data_directory": "/external/malaria_SciRep2018/R7.3_fastq",
"save_directory": "/processed/variant_call_v1/",
}
|
# coding:utf-8
"""
Name : config.py
Author : blu
Time : 2022/3/7 16:19
Desc :
"""
Debug = False
filter_host = "http://192.168.9.166:5000"
class DatabaseConfig:
mongo_host = 'XXXX'
mongo_user = 'XXXX'
mongo_pwd = 'XXXXX'
mongo_database = 'XXXX'
|
"""Import Variants and some misconceptions
# module1.py
import math
is marth in sys.
"""
|
class Config:
DATABASE_USER = ''
DATABASE_PASSWORD = ''
DATABASE_DB = ''
DATABASE_HOST = ''
DATABASE_PORT = 3306
LOG_FILE = ''
|
#
def __init__(self):
super().__init__(abc)
#
|
class Solution:
def findDisappearedNumbers(self, nums: [int]) -> [int]:
return list(set(range(1, len(nums) + 1)) - set(nums))
s = Solution()
print(s.findDisappearedNumbers([1, 1]))
|
# By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
# What is the 10 001st prime number?
primes = [2]
next = 3
def isPrime(n):
for i in primes:
if n % i == 0:
return False
return True
while (len(primes) < 10001):
if isPrime(next):
primes.append(next)
next += 2
print(primes[10000])
|
def test_address_on_home_page(app):
address_from_home_page = app.contact.get_contact_list()[0]
address_from_edit_page = app.contact.get_contact_info_from_edit_page(0)
assert address_from_home_page.address == address_from_edit_page.address
|
class Dataset(object):
"""An abstract class representing a Dataset.
All other datasets should subclass it. All subclasses should override
``__len__``, that provides the size of the dataset, and ``__getitem__``,
supporting integer indexing in range from 0 to len(self) exclusive.
"""
def __getitem__(self, index):
raise NotImplementedError
def __len__(self):
raise NotImplementedError
class TensorDataset(Dataset):
"""Dataset wrapping data and target tensors.
Each sample will be retrieved by indexing both tensors along the first
dimension.
Arguments:
data_tensor (Tensor): contains sample data.
target_tensor (Tensor): contains sample targets (labels).
"""
def __init__(self, data_tensor, target_tensor):
assert data_tensor.size(0) == target_tensor.size(0)
self.data_tensor = data_tensor
self.target_tensor = target_tensor
def __getitem__(self, index):
return self.data_tensor[index], self.target_tensor[index]
def __len__(self):
return self.data_tensor.size(0)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.