content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
def foo():
'''
>>> from mod import GoodFile as bad
'''
pass
| def foo():
"""
>>> from mod import GoodFile as bad
"""
pass |
print('program1.py')
a = 100000000
for x in range(1,9):
if (x>=1 and x<=2):
b=a*0
print('laba bulanan ke-',x,':',b)
if (x>=3 and x<=4):
c=a*0.1
print('laba bulanan ke-',x,':',c)
if (x>=5 and x<=7) :
d=a*0.5
print('laba bulanan ke-',x,':',d)
if (x==8) :
e=a*0.2
print('laba bulanan ke-',x,':',e)
total = b+b+c+c+d+d+e
print('\nTotal : ', total) | print('program1.py')
a = 100000000
for x in range(1, 9):
if x >= 1 and x <= 2:
b = a * 0
print('laba bulanan ke-', x, ':', b)
if x >= 3 and x <= 4:
c = a * 0.1
print('laba bulanan ke-', x, ':', c)
if x >= 5 and x <= 7:
d = a * 0.5
print('laba bulanan ke-', x, ':', d)
if x == 8:
e = a * 0.2
print('laba bulanan ke-', x, ':', e)
total = b + b + c + c + d + d + e
print('\nTotal : ', total) |
def return_dict(list):
dict = {}
for plate in list:
if(plate in dict):
dict[plate] = dict[plate] + 1
else:
dict[plate] = 1
return dict
def isNumber(character):
return True if(character<='9' and character>='0') else False
def isLetter(character):
return True if((character<='z' and character>='a') or (character<='Z' and character>='A')) else False
def lookForIntersection(plate):
listIntersections = []
for i in range(len(plate)-1):
if(isNumber(plate[i]) and isLetter(plate[i+1])):
listIntersections.append(i)
return listIntersections
letter_to_number = {'z':'2', 's':'5', 'g':'6', 'i':'1','l':'1', 'a':'4', 't':'7', 'b':'8', 'o':'0'}
number_to_letter = {'2':'z', '5':'s', '6':'g', '1':'i', '4':'a', '7':'t', '8':'b', '0':'o'}
def change_letter_to_number(c):
return letter_to_number[c] if (c in letter_to_number) else c
def change_number_to_letter(c):
return number_to_letter[c] if (c in number_to_letter) else c
def replace(plate, flag, debug=False):
if (debug):
print(len(plate))
auxL = flag
auxR = flag+1
aux_numerical = ""
aux_letter = ""
while(auxL>-1):
if(isNumber(plate[auxL])):
aux_numerical += plate[auxL]
elif(isNumber(change_letter_to_number(plate[auxL]))):
aux_numerical += change_letter_to_number(plate[auxL])
auxL -= 1
aux_numerical = aux_numerical[::-1]
while(auxR<len(plate)):
if(isLetter(plate[auxR])):
aux_letter += plate[auxR]
elif(isLetter(change_number_to_letter(plate[auxR]))):
aux_letter += change_number_to_letter(plate[auxR])
auxR += 1
#print(aux_numerical, " and ", aux_letter)
res = aux_numerical+aux_letter
return res
def count_number_and_letters(plate, flag, debug=False):
#plate = replace(plate, flag)
if (debug):
print(len(plate))
auxL = flag
auxR = flag+1
numbers = 0
letters = 0
while(auxL>-1):
if (isNumber(plate[auxL])):
numbers += 1
if (debug):
print(auxL, " ", plate[auxL])
auxL -= 1
if debug:
print()
while(auxR<len(plate)):
if (debug):
print(auxR, " ", plate[auxR])
if(isLetter(plate[auxR])):
letters += 1
auxR += 1
return numbers, letters
def filter2(word, flag):
word = replace(word, flag)
flag = lookForIntersection(word)[0]
auxL = flag
auxR = flag + 1
number = ""
numbers = 0
letter = ""
letters = 0
while(auxL>-1):
if(isNumber(word[auxL]) and numbers < 4):
number += word[auxL]
numbers += 1
auxL -= 1
number = number[::-1]
while(auxR<len(word)):
if(isLetter(word[auxR]) and letters < 3):
letter += word[auxR]
letters += 1
auxR += 1
return number+letter if(numbers==4 and letters==3) else ""
def filter(test, debug=False):
answers = []
for plate in test:
aux = lookForIntersection(plate)
if (len(aux) >0):
#numbers, letters = count_number_and_letters(plate, aux[0], False)
#if(numbers == 4 and letters == 3):
# #print(plate)
# answers.append(plate)
#else:
value = filter2(plate, aux[0])
if(len(value)>0):
answers.append(value)
if(debug):
print("bo cumple")
return answers
def choose_the_best(car_id, debug = False):
try:
wordsFreqDict = return_dict(filter(car_id))
listofTuples = reversed(sorted(wordsFreqDict.items() , key=lambda x: x[1]))
# Iterate over the sorted sequence
cont_in_list = 0
for elem in listofTuples :
if(cont_in_list==0):
if (debug):
print(type(elem[0]) , " ::" , elem[1] )
return elem[0]
else:
break
cont_in_list += 1
except:
print("error")
return "placa no visible"
#####if is an old plate
def filter3_old(word, flag):
#word = replace(word, flag)
flag = lookForIntersection(word)[0]
auxL = flag
auxR = flag + 1
number = ""
numbers = 0
letter = ""
letters = 0
while(auxL>-1):
if(isNumber(word[auxL]) and numbers < 3):
number += word[auxL]
numbers += 1
auxL -= 1
number = number[::-1]
while(auxR<len(word)):
if(isLetter(word[auxR]) and letters < 3):
letter += word[auxR]
letters += 1
auxR += 1
return number+letter if(numbers==3 and letters==3) else ""
def find_old_plate(tres):
posible_answers = []
for old_plate in list(return_dict(tres).keys()):
intersections = lookForIntersection(old_plate)
for intersection in intersections:
#send value to the post processing part only if intersetcion is greater than 2
if(intersection >= 2):
filtered_old_plate = filter3_old(old_plate, intersection)
if (len(filtered_old_plate)>0):
posible_answers.append(filtered_old_plate)
#print(intersection, old_plate, sep= '; ')
old_plate_poss=return_dict(posible_answers)
ans = sorted(old_plate_poss)
return ans[-1]
| def return_dict(list):
dict = {}
for plate in list:
if plate in dict:
dict[plate] = dict[plate] + 1
else:
dict[plate] = 1
return dict
def is_number(character):
return True if character <= '9' and character >= '0' else False
def is_letter(character):
return True if character <= 'z' and character >= 'a' or (character <= 'Z' and character >= 'A') else False
def look_for_intersection(plate):
list_intersections = []
for i in range(len(plate) - 1):
if is_number(plate[i]) and is_letter(plate[i + 1]):
listIntersections.append(i)
return listIntersections
letter_to_number = {'z': '2', 's': '5', 'g': '6', 'i': '1', 'l': '1', 'a': '4', 't': '7', 'b': '8', 'o': '0'}
number_to_letter = {'2': 'z', '5': 's', '6': 'g', '1': 'i', '4': 'a', '7': 't', '8': 'b', '0': 'o'}
def change_letter_to_number(c):
return letter_to_number[c] if c in letter_to_number else c
def change_number_to_letter(c):
return number_to_letter[c] if c in number_to_letter else c
def replace(plate, flag, debug=False):
if debug:
print(len(plate))
aux_l = flag
aux_r = flag + 1
aux_numerical = ''
aux_letter = ''
while auxL > -1:
if is_number(plate[auxL]):
aux_numerical += plate[auxL]
elif is_number(change_letter_to_number(plate[auxL])):
aux_numerical += change_letter_to_number(plate[auxL])
aux_l -= 1
aux_numerical = aux_numerical[::-1]
while auxR < len(plate):
if is_letter(plate[auxR]):
aux_letter += plate[auxR]
elif is_letter(change_number_to_letter(plate[auxR])):
aux_letter += change_number_to_letter(plate[auxR])
aux_r += 1
res = aux_numerical + aux_letter
return res
def count_number_and_letters(plate, flag, debug=False):
if debug:
print(len(plate))
aux_l = flag
aux_r = flag + 1
numbers = 0
letters = 0
while auxL > -1:
if is_number(plate[auxL]):
numbers += 1
if debug:
print(auxL, ' ', plate[auxL])
aux_l -= 1
if debug:
print()
while auxR < len(plate):
if debug:
print(auxR, ' ', plate[auxR])
if is_letter(plate[auxR]):
letters += 1
aux_r += 1
return (numbers, letters)
def filter2(word, flag):
word = replace(word, flag)
flag = look_for_intersection(word)[0]
aux_l = flag
aux_r = flag + 1
number = ''
numbers = 0
letter = ''
letters = 0
while auxL > -1:
if is_number(word[auxL]) and numbers < 4:
number += word[auxL]
numbers += 1
aux_l -= 1
number = number[::-1]
while auxR < len(word):
if is_letter(word[auxR]) and letters < 3:
letter += word[auxR]
letters += 1
aux_r += 1
return number + letter if numbers == 4 and letters == 3 else ''
def filter(test, debug=False):
answers = []
for plate in test:
aux = look_for_intersection(plate)
if len(aux) > 0:
value = filter2(plate, aux[0])
if len(value) > 0:
answers.append(value)
if debug:
print('bo cumple')
return answers
def choose_the_best(car_id, debug=False):
try:
words_freq_dict = return_dict(filter(car_id))
listof_tuples = reversed(sorted(wordsFreqDict.items(), key=lambda x: x[1]))
cont_in_list = 0
for elem in listofTuples:
if cont_in_list == 0:
if debug:
print(type(elem[0]), ' ::', elem[1])
return elem[0]
else:
break
cont_in_list += 1
except:
print('error')
return 'placa no visible'
def filter3_old(word, flag):
flag = look_for_intersection(word)[0]
aux_l = flag
aux_r = flag + 1
number = ''
numbers = 0
letter = ''
letters = 0
while auxL > -1:
if is_number(word[auxL]) and numbers < 3:
number += word[auxL]
numbers += 1
aux_l -= 1
number = number[::-1]
while auxR < len(word):
if is_letter(word[auxR]) and letters < 3:
letter += word[auxR]
letters += 1
aux_r += 1
return number + letter if numbers == 3 and letters == 3 else ''
def find_old_plate(tres):
posible_answers = []
for old_plate in list(return_dict(tres).keys()):
intersections = look_for_intersection(old_plate)
for intersection in intersections:
if intersection >= 2:
filtered_old_plate = filter3_old(old_plate, intersection)
if len(filtered_old_plate) > 0:
posible_answers.append(filtered_old_plate)
old_plate_poss = return_dict(posible_answers)
ans = sorted(old_plate_poss)
return ans[-1] |
try:
a = 4 / 0
except Exception as ex:
print(str(ex))
finally:
print('Thats all Folks')
| try:
a = 4 / 0
except Exception as ex:
print(str(ex))
finally:
print('Thats all Folks') |
def bfs(graph, init):
visited = []
queue = [init]
while queue:
current = queue.pop(0)
if current not in visited:
visited.append(current)
adj = graph[current]
for neighbor in adj:
for k in neighbor.keys():
queue.append(k)
return visited | def bfs(graph, init):
visited = []
queue = [init]
while queue:
current = queue.pop(0)
if current not in visited:
visited.append(current)
adj = graph[current]
for neighbor in adj:
for k in neighbor.keys():
queue.append(k)
return visited |
del_items(0x80118770)
SetType(0x80118770, "int NumOfMonsterListLevels")
del_items(0x800A7554)
SetType(0x800A7554, "struct MonstLevel AllLevels[16]")
del_items(0x8011846C)
SetType(0x8011846C, "unsigned char NumsLEV1M1A[4]")
del_items(0x80118470)
SetType(0x80118470, "unsigned char NumsLEV1M1B[4]")
del_items(0x80118474)
SetType(0x80118474, "unsigned char NumsLEV1M1C[5]")
del_items(0x8011847C)
SetType(0x8011847C, "unsigned char NumsLEV2M2A[4]")
del_items(0x80118480)
SetType(0x80118480, "unsigned char NumsLEV2M2B[4]")
del_items(0x80118484)
SetType(0x80118484, "unsigned char NumsLEV2M2C[3]")
del_items(0x80118488)
SetType(0x80118488, "unsigned char NumsLEV2M2D[4]")
del_items(0x8011848C)
SetType(0x8011848C, "unsigned char NumsLEV2M2QA[4]")
del_items(0x80118490)
SetType(0x80118490, "unsigned char NumsLEV2M2QB[4]")
del_items(0x80118494)
SetType(0x80118494, "unsigned char NumsLEV3M3A[4]")
del_items(0x80118498)
SetType(0x80118498, "unsigned char NumsLEV3M3QA[3]")
del_items(0x8011849C)
SetType(0x8011849C, "unsigned char NumsLEV3M3B[4]")
del_items(0x801184A0)
SetType(0x801184A0, "unsigned char NumsLEV3M3C[4]")
del_items(0x801184A4)
SetType(0x801184A4, "unsigned char NumsLEV4M4A[4]")
del_items(0x801184A8)
SetType(0x801184A8, "unsigned char NumsLEV4M4QA[4]")
del_items(0x801184AC)
SetType(0x801184AC, "unsigned char NumsLEV4M4B[4]")
del_items(0x801184B0)
SetType(0x801184B0, "unsigned char NumsLEV4M4QB[5]")
del_items(0x801184B8)
SetType(0x801184B8, "unsigned char NumsLEV4M4C[4]")
del_items(0x801184BC)
SetType(0x801184BC, "unsigned char NumsLEV4M4QC[5]")
del_items(0x801184C4)
SetType(0x801184C4, "unsigned char NumsLEV4M4D[4]")
del_items(0x801184C8)
SetType(0x801184C8, "unsigned char NumsLEV5M5A[4]")
del_items(0x801184CC)
SetType(0x801184CC, "unsigned char NumsLEV5M5B[4]")
del_items(0x801184D0)
SetType(0x801184D0, "unsigned char NumsLEV5M5C[4]")
del_items(0x801184D4)
SetType(0x801184D4, "unsigned char NumsLEV5M5D[4]")
del_items(0x801184D8)
SetType(0x801184D8, "unsigned char NumsLEV5M5E[4]")
del_items(0x801184DC)
SetType(0x801184DC, "unsigned char NumsLEV5M5F[3]")
del_items(0x801184E0)
SetType(0x801184E0, "unsigned char NumsLEV5M5QA[4]")
del_items(0x801184E4)
SetType(0x801184E4, "unsigned char NumsLEV6M6A[5]")
del_items(0x801184EC)
SetType(0x801184EC, "unsigned char NumsLEV6M6B[3]")
del_items(0x801184F0)
SetType(0x801184F0, "unsigned char NumsLEV6M6C[4]")
del_items(0x801184F4)
SetType(0x801184F4, "unsigned char NumsLEV6M6D[3]")
del_items(0x801184F8)
SetType(0x801184F8, "unsigned char NumsLEV6M6E[3]")
del_items(0x801184FC)
SetType(0x801184FC, "unsigned char NumsLEV7M7A[4]")
del_items(0x80118500)
SetType(0x80118500, "unsigned char NumsLEV7M7B[4]")
del_items(0x80118504)
SetType(0x80118504, "unsigned char NumsLEV7M7C[3]")
del_items(0x80118508)
SetType(0x80118508, "unsigned char NumsLEV7M7D[2]")
del_items(0x8011850C)
SetType(0x8011850C, "unsigned char NumsLEV7M7E[2]")
del_items(0x80118510)
SetType(0x80118510, "unsigned char NumsLEV8M8QA[2]")
del_items(0x80118514)
SetType(0x80118514, "unsigned char NumsLEV8M8A[3]")
del_items(0x80118518)
SetType(0x80118518, "unsigned char NumsLEV8M8B[4]")
del_items(0x8011851C)
SetType(0x8011851C, "unsigned char NumsLEV8M8C[3]")
del_items(0x80118520)
SetType(0x80118520, "unsigned char NumsLEV8M8D[2]")
del_items(0x80118524)
SetType(0x80118524, "unsigned char NumsLEV8M8E[2]")
del_items(0x80118528)
SetType(0x80118528, "unsigned char NumsLEV9M9A[4]")
del_items(0x8011852C)
SetType(0x8011852C, "unsigned char NumsLEV9M9B[3]")
del_items(0x80118530)
SetType(0x80118530, "unsigned char NumsLEV9M9C[2]")
del_items(0x80118534)
SetType(0x80118534, "unsigned char NumsLEV9M9D[2]")
del_items(0x80118538)
SetType(0x80118538, "unsigned char NumsLEV10M10A[3]")
del_items(0x8011853C)
SetType(0x8011853C, "unsigned char NumsLEV10M10B[2]")
del_items(0x80118540)
SetType(0x80118540, "unsigned char NumsLEV10M10C[2]")
del_items(0x80118544)
SetType(0x80118544, "unsigned char NumsLEV10M10D[2]")
del_items(0x80118548)
SetType(0x80118548, "unsigned char NumsLEV10M10QA[3]")
del_items(0x8011854C)
SetType(0x8011854C, "unsigned char NumsLEV11M11A[3]")
del_items(0x80118550)
SetType(0x80118550, "unsigned char NumsLEV11M11B[3]")
del_items(0x80118554)
SetType(0x80118554, "unsigned char NumsLEV11M11C[3]")
del_items(0x80118558)
SetType(0x80118558, "unsigned char NumsLEV11M11D[3]")
del_items(0x8011855C)
SetType(0x8011855C, "unsigned char NumsLEV11M11E[2]")
del_items(0x80118560)
SetType(0x80118560, "unsigned char NumsLEV12M12A[3]")
del_items(0x80118564)
SetType(0x80118564, "unsigned char NumsLEV12M12B[3]")
del_items(0x80118568)
SetType(0x80118568, "unsigned char NumsLEV12M12C[3]")
del_items(0x8011856C)
SetType(0x8011856C, "unsigned char NumsLEV12M12D[3]")
del_items(0x80118570)
SetType(0x80118570, "unsigned char NumsLEV13M13A[3]")
del_items(0x80118574)
SetType(0x80118574, "unsigned char NumsLEV13M13B[2]")
del_items(0x80118578)
SetType(0x80118578, "unsigned char NumsLEV13M13QB[3]")
del_items(0x8011857C)
SetType(0x8011857C, "unsigned char NumsLEV13M13C[3]")
del_items(0x80118580)
SetType(0x80118580, "unsigned char NumsLEV13M13D[2]")
del_items(0x80118584)
SetType(0x80118584, "unsigned char NumsLEV14M14A[3]")
del_items(0x80118588)
SetType(0x80118588, "unsigned char NumsLEV14M14B[3]")
del_items(0x8011858C)
SetType(0x8011858C, "unsigned char NumsLEV14M14QB[3]")
del_items(0x80118590)
SetType(0x80118590, "unsigned char NumsLEV14M14C[3]")
del_items(0x80118594)
SetType(0x80118594, "unsigned char NumsLEV14M14D[3]")
del_items(0x80118598)
SetType(0x80118598, "unsigned char NumsLEV14M14E[2]")
del_items(0x8011859C)
SetType(0x8011859C, "unsigned char NumsLEV15M15A[3]")
del_items(0x801185A0)
SetType(0x801185A0, "unsigned char NumsLEV15M15B[3]")
del_items(0x801185A4)
SetType(0x801185A4, "unsigned char NumsLEV15M15C[2]")
del_items(0x801185A8)
SetType(0x801185A8, "unsigned char NumsLEV16M16D[3]")
del_items(0x800A7094)
SetType(0x800A7094, "struct MonstList ChoiceListLEV1[3]")
del_items(0x800A70C4)
SetType(0x800A70C4, "struct MonstList ChoiceListLEV2[6]")
del_items(0x800A7124)
SetType(0x800A7124, "struct MonstList ChoiceListLEV3[4]")
del_items(0x800A7164)
SetType(0x800A7164, "struct MonstList ChoiceListLEV4[7]")
del_items(0x800A71D4)
SetType(0x800A71D4, "struct MonstList ChoiceListLEV5[7]")
del_items(0x800A7244)
SetType(0x800A7244, "struct MonstList ChoiceListLEV6[5]")
del_items(0x800A7294)
SetType(0x800A7294, "struct MonstList ChoiceListLEV7[5]")
del_items(0x800A72E4)
SetType(0x800A72E4, "struct MonstList ChoiceListLEV8[6]")
del_items(0x800A7344)
SetType(0x800A7344, "struct MonstList ChoiceListLEV9[4]")
del_items(0x800A7384)
SetType(0x800A7384, "struct MonstList ChoiceListLEV10[5]")
del_items(0x800A73D4)
SetType(0x800A73D4, "struct MonstList ChoiceListLEV11[5]")
del_items(0x800A7424)
SetType(0x800A7424, "struct MonstList ChoiceListLEV12[4]")
del_items(0x800A7464)
SetType(0x800A7464, "struct MonstList ChoiceListLEV13[5]")
del_items(0x800A74B4)
SetType(0x800A74B4, "struct MonstList ChoiceListLEV14[6]")
del_items(0x800A7514)
SetType(0x800A7514, "struct MonstList ChoiceListLEV15[3]")
del_items(0x800A7544)
SetType(0x800A7544, "struct MonstList ChoiceListLEV16[1]")
del_items(0x8011A000)
SetType(0x8011A000, "struct TASK *GameTaskPtr")
del_items(0x800A75D4)
SetType(0x800A75D4, "struct LOAD_IMAGE_ARGS AllArgs[30]")
del_items(0x80118780)
SetType(0x80118780, "int ArgsSoFar")
del_items(0x80118784)
SetType(0x80118784, "unsigned long *ThisOt")
del_items(0x80118788)
SetType(0x80118788, "struct POLY_FT4 *ThisPrimAddr")
del_items(0x8011A004)
SetType(0x8011A004, "long hndPrimBuffers")
del_items(0x8011A008)
SetType(0x8011A008, "struct PRIM_BUFFER *PrimBuffers")
del_items(0x8011A00C)
SetType(0x8011A00C, "unsigned char BufferDepth")
del_items(0x8011A00D)
SetType(0x8011A00D, "unsigned char WorkRamId")
del_items(0x8011A00E)
SetType(0x8011A00E, "unsigned char ScrNum")
del_items(0x8011A010)
SetType(0x8011A010, "struct SCREEN_ENV *Screens")
del_items(0x8011A014)
SetType(0x8011A014, "struct PRIM_BUFFER *PbToClear")
del_items(0x8011A018)
SetType(0x8011A018, "unsigned char BufferNum")
del_items(0x8011878C)
SetType(0x8011878C, "struct POLY_FT4 *AddrToAvoid")
del_items(0x8011A019)
SetType(0x8011A019, "unsigned char LastBuffer")
del_items(0x8011A01C)
SetType(0x8011A01C, "struct DISPENV *DispEnvToPut")
del_items(0x8011A020)
SetType(0x8011A020, "int ThisOtSize")
del_items(0x80118790)
SetType(0x80118790, "struct RECT ScrRect")
del_items(0x8011A024)
SetType(0x8011A024, "int VidWait")
del_items(0x8011A470)
SetType(0x8011A470, "struct SCREEN_ENV screen[2]")
del_items(0x8011A028)
SetType(0x8011A028, "void (*VbFunc)()")
del_items(0x8011A02C)
SetType(0x8011A02C, "unsigned long VidTick")
del_items(0x8011A030)
SetType(0x8011A030, "int VXOff")
del_items(0x8011A034)
SetType(0x8011A034, "int VYOff")
del_items(0x801187A4)
SetType(0x801187A4, "struct LNK_OPTS *Gaz")
del_items(0x801187A8)
SetType(0x801187A8, "int LastFmem")
del_items(0x80118798)
SetType(0x80118798, "unsigned int GSYS_MemStart")
del_items(0x8011879C)
SetType(0x8011879C, "unsigned int GSYS_MemEnd")
del_items(0x800A791C)
SetType(0x800A791C, "struct MEM_INIT_INFO PsxMem")
del_items(0x800A7944)
SetType(0x800A7944, "struct MEM_INIT_INFO PsxFastMem")
del_items(0x801187A0)
SetType(0x801187A0, "int LowestFmem")
del_items(0x801187B8)
SetType(0x801187B8, "int FileSYS")
del_items(0x8011A038)
SetType(0x8011A038, "struct FileIO *FileSystem")
del_items(0x8011A03C)
SetType(0x8011A03C, "struct FileIO *OverlayFileSystem")
del_items(0x801187D2)
SetType(0x801187D2, "short DavesPad")
del_items(0x801187D4)
SetType(0x801187D4, "short DavesPadDeb")
del_items(0x800A796C)
SetType(0x800A796C, "char _6FileIO_FileToLoad[50]")
del_items(0x8011A550)
SetType(0x8011A550, "struct POLY_FT4 MyFT4")
del_items(0x800A8210)
SetType(0x800A8210, "struct TextDat *AllDats[285]")
del_items(0x80118824)
SetType(0x80118824, "int TpW")
del_items(0x80118828)
SetType(0x80118828, "int TpH")
del_items(0x8011882C)
SetType(0x8011882C, "int TpXDest")
del_items(0x80118830)
SetType(0x80118830, "int TpYDest")
del_items(0x80118834)
SetType(0x80118834, "struct RECT R")
del_items(0x800A8684)
SetType(0x800A8684, "struct POLY_GT4 MyGT4")
del_items(0x800A86B8)
SetType(0x800A86B8, "struct POLY_GT3 MyGT3")
del_items(0x800A79A0)
SetType(0x800A79A0, "struct TextDat DatPool[20]")
del_items(0x80118848)
SetType(0x80118848, "bool ChunkGot")
del_items(0x800A86E0)
SetType(0x800A86E0, "char STREAM_DIR[16]")
del_items(0x800A86F0)
SetType(0x800A86F0, "char STREAM_BIN[16]")
del_items(0x800A8700)
SetType(0x800A8700, "unsigned char EAC_DirectoryCache[300]")
del_items(0x80118860)
SetType(0x80118860, "unsigned long BL_NoLumpFiles")
del_items(0x80118864)
SetType(0x80118864, "unsigned long BL_NoStreamFiles")
del_items(0x80118868)
SetType(0x80118868, "struct STRHDR *LFileTab")
del_items(0x8011886C)
SetType(0x8011886C, "struct STRHDR *SFileTab")
del_items(0x80118870)
SetType(0x80118870, "unsigned char FileLoaded")
del_items(0x801188A0)
SetType(0x801188A0, "int NoTAllocs")
del_items(0x800A882C)
SetType(0x800A882C, "struct MEMSTRUCT MemBlock[50]")
del_items(0x8011A048)
SetType(0x8011A048, "bool CanPause")
del_items(0x8011A04C)
SetType(0x8011A04C, "bool Paused")
del_items(0x8011A578)
SetType(0x8011A578, "struct Dialog PBack")
del_items(0x800A8A94)
SetType(0x800A8A94, "unsigned char RawPadData0[34]")
del_items(0x800A8AB8)
SetType(0x800A8AB8, "unsigned char RawPadData1[34]")
del_items(0x800A8ADC)
SetType(0x800A8ADC, "unsigned char demo_buffer[1800]")
del_items(0x801188CC)
SetType(0x801188CC, "int demo_pad_time")
del_items(0x801188D0)
SetType(0x801188D0, "int demo_pad_count")
del_items(0x800A89BC)
SetType(0x800A89BC, "struct CPad Pad0")
del_items(0x800A8A28)
SetType(0x800A8A28, "struct CPad Pad1")
del_items(0x801188D4)
SetType(0x801188D4, "unsigned long demo_finish")
del_items(0x801188D8)
SetType(0x801188D8, "int cac_pad")
del_items(0x801188F4)
SetType(0x801188F4, "struct POLY_FT4 *CharFt4")
del_items(0x801188F8)
SetType(0x801188F8, "int CharFrm")
del_items(0x801188E5)
SetType(0x801188E5, "unsigned char WHITER")
del_items(0x801188E6)
SetType(0x801188E6, "unsigned char WHITEG")
del_items(0x801188E7)
SetType(0x801188E7, "unsigned char WHITEB")
del_items(0x801188E8)
SetType(0x801188E8, "unsigned char BLUER")
del_items(0x801188E9)
SetType(0x801188E9, "unsigned char BLUEG")
del_items(0x801188EA)
SetType(0x801188EA, "unsigned char BLUEB")
del_items(0x801188EB)
SetType(0x801188EB, "unsigned char REDR")
del_items(0x801188EC)
SetType(0x801188EC, "unsigned char REDG")
del_items(0x801188ED)
SetType(0x801188ED, "unsigned char REDB")
del_items(0x801188EE)
SetType(0x801188EE, "unsigned char GOLDR")
del_items(0x801188EF)
SetType(0x801188EF, "unsigned char GOLDG")
del_items(0x801188F0)
SetType(0x801188F0, "unsigned char GOLDB")
del_items(0x800A91E4)
SetType(0x800A91E4, "struct CFont MediumFont")
del_items(0x800A93FC)
SetType(0x800A93FC, "struct CFont LargeFont")
del_items(0x800A9614)
SetType(0x800A9614, "struct FontItem LFontTab[90]")
del_items(0x800A96C8)
SetType(0x800A96C8, "struct FontTab LFont")
del_items(0x800A96D8)
SetType(0x800A96D8, "struct FontItem MFontTab[155]")
del_items(0x800A9810)
SetType(0x800A9810, "struct FontTab MFont")
del_items(0x8011890D)
SetType(0x8011890D, "unsigned char DialogRed")
del_items(0x8011890E)
SetType(0x8011890E, "unsigned char DialogGreen")
del_items(0x8011890F)
SetType(0x8011890F, "unsigned char DialogBlue")
del_items(0x80118910)
SetType(0x80118910, "unsigned char DialogTRed")
del_items(0x80118911)
SetType(0x80118911, "unsigned char DialogTGreen")
del_items(0x80118912)
SetType(0x80118912, "unsigned char DialogTBlue")
del_items(0x80118914)
SetType(0x80118914, "struct TextDat *DialogTData")
del_items(0x80118918)
SetType(0x80118918, "int DialogBackGfx")
del_items(0x8011891C)
SetType(0x8011891C, "int DialogBackW")
del_items(0x80118920)
SetType(0x80118920, "int DialogBackH")
del_items(0x80118924)
SetType(0x80118924, "int DialogBorderGfx")
del_items(0x80118928)
SetType(0x80118928, "int DialogBorderTLW")
del_items(0x8011892C)
SetType(0x8011892C, "int DialogBorderTLH")
del_items(0x80118930)
SetType(0x80118930, "int DialogBorderTRW")
del_items(0x80118934)
SetType(0x80118934, "int DialogBorderTRH")
del_items(0x80118938)
SetType(0x80118938, "int DialogBorderBLW")
del_items(0x8011893C)
SetType(0x8011893C, "int DialogBorderBLH")
del_items(0x80118940)
SetType(0x80118940, "int DialogBorderBRW")
del_items(0x80118944)
SetType(0x80118944, "int DialogBorderBRH")
del_items(0x80118948)
SetType(0x80118948, "int DialogBorderTW")
del_items(0x8011894C)
SetType(0x8011894C, "int DialogBorderTH")
del_items(0x80118950)
SetType(0x80118950, "int DialogBorderBW")
del_items(0x80118954)
SetType(0x80118954, "int DialogBorderBH")
del_items(0x80118958)
SetType(0x80118958, "int DialogBorderLW")
del_items(0x8011895C)
SetType(0x8011895C, "int DialogBorderLH")
del_items(0x80118960)
SetType(0x80118960, "int DialogBorderRW")
del_items(0x80118964)
SetType(0x80118964, "int DialogBorderRH")
del_items(0x80118968)
SetType(0x80118968, "int DialogBevelGfx")
del_items(0x8011896C)
SetType(0x8011896C, "int DialogBevelCW")
del_items(0x80118970)
SetType(0x80118970, "int DialogBevelCH")
del_items(0x80118974)
SetType(0x80118974, "int DialogBevelLRW")
del_items(0x80118978)
SetType(0x80118978, "int DialogBevelLRH")
del_items(0x8011897C)
SetType(0x8011897C, "int DialogBevelUDW")
del_items(0x80118980)
SetType(0x80118980, "int DialogBevelUDH")
del_items(0x80118984)
SetType(0x80118984, "int MY_DialogOTpos")
del_items(0x8011A050)
SetType(0x8011A050, "unsigned char DialogGBack")
del_items(0x8011A051)
SetType(0x8011A051, "char GShadeX")
del_items(0x8011A052)
SetType(0x8011A052, "char GShadeY")
del_items(0x8011A058)
SetType(0x8011A058, "unsigned char RandBTab[8]")
del_items(0x800A9860)
SetType(0x800A9860, "int Cxy[28]")
del_items(0x80118907)
SetType(0x80118907, "unsigned char BORDERR")
del_items(0x80118908)
SetType(0x80118908, "unsigned char BORDERG")
del_items(0x80118909)
SetType(0x80118909, "unsigned char BORDERB")
del_items(0x8011890A)
SetType(0x8011890A, "unsigned char BACKR")
del_items(0x8011890B)
SetType(0x8011890B, "unsigned char BACKG")
del_items(0x8011890C)
SetType(0x8011890C, "unsigned char BACKB")
del_items(0x800A9820)
SetType(0x800A9820, "char GShadeTab[64]")
del_items(0x80118905)
SetType(0x80118905, "char GShadePX")
del_items(0x80118906)
SetType(0x80118906, "char GShadePY")
del_items(0x80118991)
SetType(0x80118991, "unsigned char PlayDemoFlag")
del_items(0x8011A588)
SetType(0x8011A588, "struct RGBPOLY rgbb")
del_items(0x8011A5B8)
SetType(0x8011A5B8, "struct RGBPOLY rgbt")
del_items(0x8011A060)
SetType(0x8011A060, "int blockr")
del_items(0x8011A064)
SetType(0x8011A064, "int blockg")
del_items(0x8011A068)
SetType(0x8011A068, "int blockb")
del_items(0x8011A06C)
SetType(0x8011A06C, "int InfraFlag")
del_items(0x8011A070)
SetType(0x8011A070, "unsigned char blank_bit")
del_items(0x801189A5)
SetType(0x801189A5, "unsigned char P1ObjSelCount")
del_items(0x801189A6)
SetType(0x801189A6, "unsigned char P2ObjSelCount")
del_items(0x801189A7)
SetType(0x801189A7, "unsigned char P12ObjSelCount")
del_items(0x801189A8)
SetType(0x801189A8, "unsigned char P1ItemSelCount")
del_items(0x801189A9)
SetType(0x801189A9, "unsigned char P2ItemSelCount")
del_items(0x801189AA)
SetType(0x801189AA, "unsigned char P12ItemSelCount")
del_items(0x801189AB)
SetType(0x801189AB, "unsigned char P1MonstSelCount")
del_items(0x801189AC)
SetType(0x801189AC, "unsigned char P2MonstSelCount")
del_items(0x801189AD)
SetType(0x801189AD, "unsigned char P12MonstSelCount")
del_items(0x801189AE)
SetType(0x801189AE, "unsigned short P1ObjSelCol")
del_items(0x801189B0)
SetType(0x801189B0, "unsigned short P2ObjSelCol")
del_items(0x801189B2)
SetType(0x801189B2, "unsigned short P12ObjSelCol")
del_items(0x801189B4)
SetType(0x801189B4, "unsigned short P1ItemSelCol")
del_items(0x801189B6)
SetType(0x801189B6, "unsigned short P2ItemSelCol")
del_items(0x801189B8)
SetType(0x801189B8, "unsigned short P12ItemSelCol")
del_items(0x801189BA)
SetType(0x801189BA, "unsigned short P1MonstSelCol")
del_items(0x801189BC)
SetType(0x801189BC, "unsigned short P2MonstSelCol")
del_items(0x801189BE)
SetType(0x801189BE, "unsigned short P12MonstSelCol")
del_items(0x801189C0)
SetType(0x801189C0, "struct CBlocks *CurrentBlocks")
del_items(0x8010E2B8)
SetType(0x8010E2B8, "short SinTab[32]")
del_items(0x800A98D0)
SetType(0x800A98D0, "struct TownToCreature TownConv[10]")
del_items(0x801189DC)
SetType(0x801189DC, "enum OVER_TYPE CurrentOverlay")
del_items(0x8010E358)
SetType(0x8010E358, "unsigned long HaltTab[3]")
del_items(0x8011A5E8)
SetType(0x8011A5E8, "struct Overlay FrontEndOver")
del_items(0x8011A5F8)
SetType(0x8011A5F8, "struct Overlay PregameOver")
del_items(0x8011A608)
SetType(0x8011A608, "struct Overlay GameOver")
del_items(0x8011A618)
SetType(0x8011A618, "struct Overlay FmvOver")
del_items(0x8011A074)
SetType(0x8011A074, "int OWorldX")
del_items(0x8011A078)
SetType(0x8011A078, "int OWorldY")
del_items(0x8011A07C)
SetType(0x8011A07C, "int WWorldX")
del_items(0x8011A080)
SetType(0x8011A080, "int WWorldY")
del_items(0x8010E3D4)
SetType(0x8010E3D4, "short TxyAdd[16]")
del_items(0x80118A00)
SetType(0x80118A00, "int GXAdj2")
del_items(0x8011A084)
SetType(0x8011A084, "int TimePerFrame")
del_items(0x8011A088)
SetType(0x8011A088, "int CpuStart")
del_items(0x8011A08C)
SetType(0x8011A08C, "int CpuTime")
del_items(0x8011A090)
SetType(0x8011A090, "int DrawTime")
del_items(0x8011A094)
SetType(0x8011A094, "int DrawStart")
del_items(0x8011A098)
SetType(0x8011A098, "int LastCpuTime")
del_items(0x8011A09C)
SetType(0x8011A09C, "int LastDrawTime")
del_items(0x8011A0A0)
SetType(0x8011A0A0, "int DrawArea")
del_items(0x80118A08)
SetType(0x80118A08, "bool ProfOn")
del_items(0x800A98E4)
SetType(0x800A98E4, "unsigned char LevPals[17]")
del_items(0x8010E53C)
SetType(0x8010E53C, "unsigned short Level2Bgdata[25]")
del_items(0x800A98F8)
SetType(0x800A98F8, "struct PanelXY DefP1PanelXY")
del_items(0x800A994C)
SetType(0x800A994C, "struct PanelXY DefP1PanelXY2")
del_items(0x800A99A0)
SetType(0x800A99A0, "struct PanelXY DefP2PanelXY")
del_items(0x800A99F4)
SetType(0x800A99F4, "struct PanelXY DefP2PanelXY2")
del_items(0x800A9A48)
SetType(0x800A9A48, "unsigned int SpeedBarGfxTable[50]")
del_items(0x80118A30)
SetType(0x80118A30, "int hof")
del_items(0x80118A34)
SetType(0x80118A34, "int mof")
del_items(0x800A9B10)
SetType(0x800A9B10, "struct SFXHDR SFXTab[2]")
del_items(0x80118A6C)
SetType(0x80118A6C, "unsigned long Time")
del_items(0x80118A70)
SetType(0x80118A70, "bool CDWAIT")
del_items(0x800A9C10)
SetType(0x800A9C10, "struct SpuVoiceAttr voice_attr")
del_items(0x80118A44)
SetType(0x80118A44, "unsigned long *STR_Buffer")
del_items(0x80118A48)
SetType(0x80118A48, "char NoActiveStreams")
del_items(0x80118A4C)
SetType(0x80118A4C, "bool STRInit")
del_items(0x80118A50)
SetType(0x80118A50, "unsigned char CDFlip")
del_items(0x80118A94)
SetType(0x80118A94, "char SFXNotPlayed")
del_items(0x80118A95)
SetType(0x80118A95, "char SFXNotInBank")
del_items(0x8011A628)
SetType(0x8011A628, "char spu_management[264]")
del_items(0x8011A738)
SetType(0x8011A738, "struct SpuReverbAttr rev_attr")
del_items(0x8011A0A8)
SetType(0x8011A0A8, "unsigned short NoSfx")
del_items(0x80118A80)
SetType(0x80118A80, "struct bank_entry *BankOffsets")
del_items(0x80118A84)
SetType(0x80118A84, "long OffsetHandle")
del_items(0x80118A88)
SetType(0x80118A88, "int BankBase")
del_items(0x80118A8C)
SetType(0x80118A8C, "unsigned char SPU_Done")
del_items(0x8010E8F8)
SetType(0x8010E8F8, "unsigned short SFXRemapTab[56]")
del_items(0x80118A90)
SetType(0x80118A90, "int NoSNDRemaps")
del_items(0x800A9C50)
SetType(0x800A9C50, "struct PalCollection ThePals")
del_items(0x8010E99C)
SetType(0x8010E99C, "struct InitPos InitialPositions[20]")
del_items(0x80118ADC)
SetType(0x80118ADC, "int demo_level")
del_items(0x8011A750)
SetType(0x8011A750, "int buff[8]")
del_items(0x80118AE0)
SetType(0x80118AE0, "int old_val")
del_items(0x80118AE4)
SetType(0x80118AE4, "struct TASK *DemoTask")
del_items(0x80118AE8)
SetType(0x80118AE8, "struct TASK *DemoGameTask")
del_items(0x80118AEC)
SetType(0x80118AEC, "struct TASK *tonys")
del_items(0x80118AC0)
SetType(0x80118AC0, "int demo_load")
del_items(0x80118AC4)
SetType(0x80118AC4, "int demo_record_load")
del_items(0x80118AC8)
SetType(0x80118AC8, "int level_record")
del_items(0x80118ACC)
SetType(0x80118ACC, "char demo_fade_finished")
del_items(0x80118ACD)
SetType(0x80118ACD, "unsigned char demo_which")
del_items(0x800A9E3C)
SetType(0x800A9E3C, "unsigned long demolevel[5]")
del_items(0x80118ABC)
SetType(0x80118ABC, "int moo_moo")
del_items(0x80118ACE)
SetType(0x80118ACE, "unsigned char demo_flash")
del_items(0x80118AD0)
SetType(0x80118AD0, "int tonys_Task")
del_items(0x80118C48)
SetType(0x80118C48, "bool DoShowPanel")
del_items(0x80118C4C)
SetType(0x80118C4C, "bool DoDrawBg")
del_items(0x8011A0AC)
SetType(0x8011A0AC, "bool GlueFinished")
del_items(0x8011A0B0)
SetType(0x8011A0B0, "bool DoHomingScroll")
del_items(0x8011A0B4)
SetType(0x8011A0B4, "struct TextDat *TownerGfx")
del_items(0x8011A0B8)
SetType(0x8011A0B8, "int CurrentMonsterList")
del_items(0x80118AF9)
SetType(0x80118AF9, "char started_grtask")
del_items(0x800A9E50)
SetType(0x800A9E50, "struct PInf PlayerInfo[81]")
del_items(0x80118C50)
SetType(0x80118C50, "char ArmourChar[4]")
del_items(0x8010EA90)
SetType(0x8010EA90, "char WepChar[10]")
del_items(0x80118C54)
SetType(0x80118C54, "char CharChar[4]")
del_items(0x8011A0BC)
SetType(0x8011A0BC, "char ctrl_select_line")
del_items(0x8011A0BD)
SetType(0x8011A0BD, "char ctrl_select_side")
del_items(0x8011A0BE)
SetType(0x8011A0BE, "char ckeyheld")
del_items(0x8011A0C4)
SetType(0x8011A0C4, "struct RECT CtrlRect")
del_items(0x80118C68)
SetType(0x80118C68, "unsigned char ctrlflag")
del_items(0x800AA180)
SetType(0x800AA180, "struct KEY_ASSIGNS txt_actions[19]")
del_items(0x800AA0D8)
SetType(0x800AA0D8, "struct pad_assigns pad_txt[14]")
del_items(0x80118C64)
SetType(0x80118C64, "int toppos")
del_items(0x8011A770)
SetType(0x8011A770, "struct Dialog CtrlBack")
del_items(0x800AA2B0)
SetType(0x800AA2B0, "int controller_defaults[2][19]")
del_items(0x80118CD8)
SetType(0x80118CD8, "int gr_scrxoff")
del_items(0x80118CDC)
SetType(0x80118CDC, "int gr_scryoff")
del_items(0x80118CE4)
SetType(0x80118CE4, "unsigned short water_clut")
del_items(0x80118CE8)
SetType(0x80118CE8, "char visible_level")
del_items(0x80118CD5)
SetType(0x80118CD5, "char last_type")
del_items(0x80118CEA)
SetType(0x80118CEA, "char daylight")
del_items(0x80118CE6)
SetType(0x80118CE6, "char cow_in_sight")
del_items(0x80118CE7)
SetType(0x80118CE7, "char inn_in_sight")
del_items(0x80118CE0)
SetType(0x80118CE0, "unsigned int water_count")
del_items(0x80118CE9)
SetType(0x80118CE9, "unsigned char lastrnd")
del_items(0x80118CEC)
SetType(0x80118CEC, "int call_clock")
del_items(0x80118CFC)
SetType(0x80118CFC, "int TitleAnimCount")
del_items(0x80118D00)
SetType(0x80118D00, "int flametick")
del_items(0x8010EB44)
SetType(0x8010EB44, "unsigned char light_tile[55]")
del_items(0x800AA368)
SetType(0x800AA368, "struct SPELLFX_DAT SpellFXDat[2]")
del_items(0x8011A780)
SetType(0x8011A780, "struct Particle PartArray[16]")
del_items(0x8011A0CC)
SetType(0x8011A0CC, "int partOtPos")
del_items(0x80118D1C)
SetType(0x80118D1C, "int SetParticle")
del_items(0x80118D20)
SetType(0x80118D20, "int p1partexecnum")
del_items(0x80118D24)
SetType(0x80118D24, "int p2partexecnum")
del_items(0x800AA348)
SetType(0x800AA348, "int JumpArray[8]")
del_items(0x80118D28)
SetType(0x80118D28, "int partjumpflag")
del_items(0x80118D2C)
SetType(0x80118D2C, "int partglowflag")
del_items(0x80118D30)
SetType(0x80118D30, "int partcolour")
del_items(0x800AA3F8)
SetType(0x800AA3F8, "struct Spell_Target SplTarget[2]")
del_items(0x80118D51)
SetType(0x80118D51, "unsigned char select_flag")
del_items(0x8011A0D0)
SetType(0x8011A0D0, "struct RECT SelectRect")
del_items(0x8011A0D8)
SetType(0x8011A0D8, "char item_select")
del_items(0x80118D54)
SetType(0x80118D54, "char QSpell[2]")
del_items(0x80118D58)
SetType(0x80118D58, "char _spltotype[2]")
del_items(0x80118D5C)
SetType(0x80118D5C, "bool force_attack[2]")
del_items(0x80118D44)
SetType(0x80118D44, "struct CPlayer *gplayer")
del_items(0x8011A9C0)
SetType(0x8011A9C0, "struct Dialog SelectBack")
del_items(0x80118D48)
SetType(0x80118D48, "char mana_order[4]")
del_items(0x80118D4C)
SetType(0x80118D4C, "char health_order[4]")
del_items(0x80118D50)
SetType(0x80118D50, "unsigned char birdcheck")
del_items(0x8011A9D0)
SetType(0x8011A9D0, "struct TextDat *DecRequestors[10]")
del_items(0x8011A0DC)
SetType(0x8011A0DC, "unsigned short progress")
del_items(0x8010EC58)
SetType(0x8010EC58, "unsigned short Level2CutScreen[21]")
del_items(0x80118D7C)
SetType(0x80118D7C, "char *CutString")
del_items(0x8011A9F8)
SetType(0x8011A9F8, "struct CScreen Scr")
del_items(0x80118D80)
SetType(0x80118D80, "struct TASK *CutScreenTSK")
del_items(0x80118D84)
SetType(0x80118D84, "bool GameLoading")
del_items(0x8011AA78)
SetType(0x8011AA78, "struct Dialog LBack")
del_items(0x80118D94)
SetType(0x80118D94, "unsigned int card_ev0")
del_items(0x80118D98)
SetType(0x80118D98, "unsigned int card_ev1")
del_items(0x80118D9C)
SetType(0x80118D9C, "unsigned int card_ev2")
del_items(0x80118DA0)
SetType(0x80118DA0, "unsigned int card_ev3")
del_items(0x80118DA4)
SetType(0x80118DA4, "unsigned int card_ev10")
del_items(0x80118DA8)
SetType(0x80118DA8, "unsigned int card_ev11")
del_items(0x80118DAC)
SetType(0x80118DAC, "unsigned int card_ev12")
del_items(0x80118DB0)
SetType(0x80118DB0, "unsigned int card_ev13")
del_items(0x80118DB4)
SetType(0x80118DB4, "int card_dirty[2]")
del_items(0x80118DBC)
SetType(0x80118DBC, "struct TASK *MemcardTask")
del_items(0x8011A0E0)
SetType(0x8011A0E0, "int card_event")
del_items(0x80118D90)
SetType(0x80118D90, "void (*mem_card_event_handler)()")
del_items(0x80118D88)
SetType(0x80118D88, "bool MemCardActive")
del_items(0x80118D8C)
SetType(0x80118D8C, "int never_hooked_events")
del_items(0x80118E00)
SetType(0x80118E00, "unsigned long MasterVol")
del_items(0x80118E04)
SetType(0x80118E04, "unsigned long MusicVol")
del_items(0x80118E08)
SetType(0x80118E08, "unsigned long SoundVol")
del_items(0x80118E0C)
SetType(0x80118E0C, "unsigned long VideoVol")
del_items(0x80118E10)
SetType(0x80118E10, "unsigned long SpeechVol")
del_items(0x8011A0E4)
SetType(0x8011A0E4, "struct TextDat *Slider")
del_items(0x8011A0E8)
SetType(0x8011A0E8, "int sw")
del_items(0x8011A0EC)
SetType(0x8011A0EC, "int sx")
del_items(0x8011A0F0)
SetType(0x8011A0F0, "int sy")
del_items(0x8011A0F4)
SetType(0x8011A0F4, "unsigned char Adjust")
del_items(0x8011A0F5)
SetType(0x8011A0F5, "unsigned char qspin")
del_items(0x8011A0F6)
SetType(0x8011A0F6, "unsigned char lqspin")
del_items(0x8011A0F8)
SetType(0x8011A0F8, "enum LANG_TYPE OrigLang")
del_items(0x8011A0FC)
SetType(0x8011A0FC, "enum LANG_TYPE OldLang")
del_items(0x8011A100)
SetType(0x8011A100, "enum LANG_TYPE NewLang")
del_items(0x80118E14)
SetType(0x80118E14, "int ReturnMenu")
del_items(0x8011A104)
SetType(0x8011A104, "struct RECT ORect")
del_items(0x8011A10C)
SetType(0x8011A10C, "char *McState[2]")
del_items(0x80118E18)
SetType(0x80118E18, "int they_pressed")
del_items(0x80118DE4)
SetType(0x80118DE4, "bool optionsflag")
del_items(0x80118DD8)
SetType(0x80118DD8, "int cmenu")
del_items(0x80118DEC)
SetType(0x80118DEC, "int options_pad")
del_items(0x80118DF8)
SetType(0x80118DF8, "char *PrevTxt")
del_items(0x80118DE0)
SetType(0x80118DE0, "bool allspellsflag")
del_items(0x800AAC60)
SetType(0x800AAC60, "short Circle[64]")
del_items(0x80118DCC)
SetType(0x80118DCC, "int Spacing")
del_items(0x80118DD0)
SetType(0x80118DD0, "int cs")
del_items(0x80118DD4)
SetType(0x80118DD4, "int lastcs")
del_items(0x80118DDC)
SetType(0x80118DDC, "bool MemcardOverlay")
del_items(0x80118DE8)
SetType(0x80118DE8, "int saveflag")
del_items(0x800AA440)
SetType(0x800AA440, "struct OMENUITEM MainMenu[7]")
del_items(0x800AA4E8)
SetType(0x800AA4E8, "struct OMENUITEM GameMenu[9]")
del_items(0x800AA5C0)
SetType(0x800AA5C0, "struct OMENUITEM SoundMenu[6]")
del_items(0x800AA650)
SetType(0x800AA650, "struct OMENUITEM CentreMenu[7]")
del_items(0x800AA6F8)
SetType(0x800AA6F8, "struct OMENUITEM LangMenu[7]")
del_items(0x800AA7A0)
SetType(0x800AA7A0, "struct OMENUITEM MemcardMenu[4]")
del_items(0x800AA800)
SetType(0x800AA800, "struct OMENUITEM MemcardGameMenu[6]")
del_items(0x800AA890)
SetType(0x800AA890, "struct OMENUITEM MemcardCharacterMenu[4]")
del_items(0x800AA8F0)
SetType(0x800AA8F0, "struct OMENUITEM MemcardSelectCard1[7]")
del_items(0x800AA998)
SetType(0x800AA998, "struct OMENUITEM MemcardSelectCard2[7]")
del_items(0x800AAA40)
SetType(0x800AAA40, "struct OMENUITEM MemcardFormatMenu[4]")
del_items(0x800AAAA0)
SetType(0x800AAAA0, "struct OMENUITEM CheatMenu[9]")
del_items(0x800AAB78)
SetType(0x800AAB78, "struct OMENUITEM InfoMenu[2]")
del_items(0x800AABA8)
SetType(0x800AABA8, "struct OMENUITEM MonstViewMenu[3]")
del_items(0x800AABF0)
SetType(0x800AABF0, "struct OMENULIST MenuList[14]")
del_items(0x80118DFC)
SetType(0x80118DFC, "bool debounce")
del_items(0x800AACE0)
SetType(0x800AACE0, "struct BIRDSTRUCT BirdList[16]")
del_items(0x80118E25)
SetType(0x80118E25, "char hop_height")
del_items(0x80118E28)
SetType(0x80118E28, "struct Perch perches[4]")
del_items(0x800AAE60)
SetType(0x800AAE60, "char *FmvTab[4]")
del_items(0x80118E3C)
SetType(0x80118E3C, "int CurMons")
del_items(0x80118E40)
SetType(0x80118E40, "int Frame")
del_items(0x80118E44)
SetType(0x80118E44, "int Action")
del_items(0x80118E48)
SetType(0x80118E48, "int Dir")
del_items(0x80118E8C)
SetType(0x80118E8C, "int indsize")
del_items(0x80118E90)
SetType(0x80118E90, "unsigned char *kanjbuff")
del_items(0x80118E94)
SetType(0x80118E94, "struct kindexS *kindex")
del_items(0x80118E98)
SetType(0x80118E98, "long hndKanjBuff")
del_items(0x80118E9C)
SetType(0x80118E9C, "long hndKanjIndex")
del_items(0x80118EF4)
SetType(0x80118EF4, "int FeBackX")
del_items(0x80118EF8)
SetType(0x80118EF8, "int FeBackY")
del_items(0x80118EFC)
SetType(0x80118EFC, "int FeBackW")
del_items(0x80118F00)
SetType(0x80118F00, "int FeBackH")
del_items(0x80118F04)
SetType(0x80118F04, "unsigned char FeFlag")
del_items(0x800AB9D0)
SetType(0x800AB9D0, "struct FeStruct FeBuffer[80]")
del_items(0x80118F08)
SetType(0x80118F08, "int FePlayerNo")
del_items(0x8011A114)
SetType(0x8011A114, "struct FE_CREATE *CStruct")
del_items(0x80118F0C)
SetType(0x80118F0C, "int FeBufferCount")
del_items(0x80118F10)
SetType(0x80118F10, "int FeNoOfPlayers")
del_items(0x80118F14)
SetType(0x80118F14, "int FeChrClass[2]")
del_items(0x800AC150)
SetType(0x800AC150, "char FePlayerName[11][2]")
del_items(0x80118F1C)
SetType(0x80118F1C, "struct FeTable *FeCurMenu")
del_items(0x80118F20)
SetType(0x80118F20, "unsigned char FePlayerNameFlag[2]")
del_items(0x80118F24)
SetType(0x80118F24, "unsigned long FeCount")
del_items(0x80118F28)
SetType(0x80118F28, "int fileselect")
del_items(0x80118F2C)
SetType(0x80118F2C, "int BookMenu")
del_items(0x80118F30)
SetType(0x80118F30, "int FeAttractMode")
del_items(0x80118F34)
SetType(0x80118F34, "int FMVPress")
del_items(0x80118EC4)
SetType(0x80118EC4, "struct TextDat *FeTData")
del_items(0x80118ECC)
SetType(0x80118ECC, "bool LoadedChar[2]")
del_items(0x80118EC8)
SetType(0x80118EC8, "struct TextDat *FlameTData")
del_items(0x80118ED4)
SetType(0x80118ED4, "unsigned char FeIsAVirgin")
del_items(0x80118ED8)
SetType(0x80118ED8, "int FeMenuDelay")
del_items(0x800AAE70)
SetType(0x800AAE70, "struct FeTable DummyMenu")
del_items(0x800AAE8C)
SetType(0x800AAE8C, "struct FeTable FeMainMenu")
del_items(0x800AAEA8)
SetType(0x800AAEA8, "struct FeTable FeNewGameMenu")
del_items(0x800AAEC4)
SetType(0x800AAEC4, "struct FeTable FeNewP1ClassMenu")
del_items(0x800AAEE0)
SetType(0x800AAEE0, "struct FeTable FeNewP1NameMenu")
del_items(0x800AAEFC)
SetType(0x800AAEFC, "struct FeTable FeNewP2ClassMenu")
del_items(0x800AAF18)
SetType(0x800AAF18, "struct FeTable FeNewP2NameMenu")
del_items(0x800AAF34)
SetType(0x800AAF34, "struct FeTable FeDifficultyMenu")
del_items(0x800AAF50)
SetType(0x800AAF50, "struct FeTable FeBackgroundMenu")
del_items(0x800AAF6C)
SetType(0x800AAF6C, "struct FeTable FeBook1Menu")
del_items(0x800AAF88)
SetType(0x800AAF88, "struct FeTable FeBook2Menu")
del_items(0x800AAFA4)
SetType(0x800AAFA4, "struct FeTable FeLoadCharMenu")
del_items(0x800AAFC0)
SetType(0x800AAFC0, "struct FeTable FeLoadChar1Menu")
del_items(0x800AAFDC)
SetType(0x800AAFDC, "struct FeTable FeLoadChar2Menu")
del_items(0x80118EDC)
SetType(0x80118EDC, "int fadeval")
del_items(0x800AAFF8)
SetType(0x800AAFF8, "struct FeMenuTable FeMainMenuTable[5]")
del_items(0x800AB070)
SetType(0x800AB070, "struct FeMenuTable FeNewGameMenuTable[3]")
del_items(0x800AB0B8)
SetType(0x800AB0B8, "struct FeMenuTable FePlayerClassMenuTable[5]")
del_items(0x800AB130)
SetType(0x800AB130, "struct FeMenuTable FeNameEngMenuTable[71]")
del_items(0x800AB7D8)
SetType(0x800AB7D8, "struct FeMenuTable FeMemcardMenuTable[3]")
del_items(0x800AB820)
SetType(0x800AB820, "struct FeMenuTable FeDifficultyMenuTable[4]")
del_items(0x800AB880)
SetType(0x800AB880, "struct FeMenuTable FeBackgroundMenuTable[4]")
del_items(0x800AB8E0)
SetType(0x800AB8E0, "struct FeMenuTable FeBook1MenuTable[5]")
del_items(0x800AB958)
SetType(0x800AB958, "struct FeMenuTable FeBook2MenuTable[5]")
del_items(0x80118EE8)
SetType(0x80118EE8, "unsigned long AttractTitleDelay")
del_items(0x80118EEC)
SetType(0x80118EEC, "unsigned long AttractMainDelay")
del_items(0x80118EF0)
SetType(0x80118EF0, "int FMVEndPad")
del_items(0x80118F68)
SetType(0x80118F68, "int InCredits")
del_items(0x80118F6C)
SetType(0x80118F6C, "int CreditTitleNo")
del_items(0x80118F70)
SetType(0x80118F70, "int CreditSubTitleNo")
del_items(0x80118F84)
SetType(0x80118F84, "int card_status[2]")
del_items(0x80118F8C)
SetType(0x80118F8C, "int card_usable[2]")
del_items(0x80118F94)
SetType(0x80118F94, "int card_files[2]")
del_items(0x80118F9C)
SetType(0x80118F9C, "int card_changed[2]")
del_items(0x80118FDC)
SetType(0x80118FDC, "int AlertTxt")
del_items(0x80118FE0)
SetType(0x80118FE0, "int current_card")
del_items(0x80118FE4)
SetType(0x80118FE4, "int LoadType")
del_items(0x80118FE8)
SetType(0x80118FE8, "int McMenuPos")
del_items(0x80118FEC)
SetType(0x80118FEC, "struct FeTable *McCurMenu")
del_items(0x80118FD8)
SetType(0x80118FD8, "bool fileinfoflag")
del_items(0x80118FB0)
SetType(0x80118FB0, "char *DiabloGameFile")
del_items(0x80118FD0)
SetType(0x80118FD0, "char *McState_addr_80118FD0[2]")
del_items(0x801190C0)
SetType(0x801190C0, "int mdec_audio_buffer[2]")
del_items(0x801190C8)
SetType(0x801190C8, "int mdec_audio_sec")
del_items(0x801190CC)
SetType(0x801190CC, "int mdec_audio_offs")
del_items(0x801190D0)
SetType(0x801190D0, "int mdec_audio_playing")
del_items(0x801190D4)
SetType(0x801190D4, "int mdec_audio_rate_shift")
del_items(0x801190D8)
SetType(0x801190D8, "char *vlcbuf[2]")
del_items(0x801190E0)
SetType(0x801190E0, "int slice_size")
del_items(0x801190E4)
SetType(0x801190E4, "struct RECT slice")
del_items(0x801190EC)
SetType(0x801190EC, "int slice_inc")
del_items(0x801190F0)
SetType(0x801190F0, "int area_pw")
del_items(0x801190F4)
SetType(0x801190F4, "int area_ph")
del_items(0x801190F8)
SetType(0x801190F8, "char tmdc_pol_dirty[2]")
del_items(0x801190FC)
SetType(0x801190FC, "int num_pol[2]")
del_items(0x80119104)
SetType(0x80119104, "int mdec_cx")
del_items(0x80119108)
SetType(0x80119108, "int mdec_cy")
del_items(0x8011910C)
SetType(0x8011910C, "int mdec_w")
del_items(0x80119110)
SetType(0x80119110, "int mdec_h")
del_items(0x80119114)
SetType(0x80119114, "int mdec_pw[2]")
del_items(0x8011911C)
SetType(0x8011911C, "int mdec_ph[2]")
del_items(0x80119124)
SetType(0x80119124, "int move_x")
del_items(0x80119128)
SetType(0x80119128, "int move_y")
del_items(0x8011912C)
SetType(0x8011912C, "int move_scale")
del_items(0x80119130)
SetType(0x80119130, "int stream_frames")
del_items(0x80119134)
SetType(0x80119134, "int last_stream_frame")
del_items(0x80119138)
SetType(0x80119138, "int mdec_framecount")
del_items(0x8011913C)
SetType(0x8011913C, "int mdec_speed")
del_items(0x80119140)
SetType(0x80119140, "int mdec_stream_starting")
del_items(0x80119144)
SetType(0x80119144, "int mdec_last_frame")
del_items(0x80119148)
SetType(0x80119148, "int mdec_sectors_per_frame")
del_items(0x8011914C)
SetType(0x8011914C, "unsigned short *vlctab")
del_items(0x80119150)
SetType(0x80119150, "unsigned char *mdc_buftop")
del_items(0x80119154)
SetType(0x80119154, "unsigned char *mdc_bufstart")
del_items(0x80119158)
SetType(0x80119158, "int mdc_bufleft")
del_items(0x8011915C)
SetType(0x8011915C, "int mdc_buftotal")
del_items(0x80119160)
SetType(0x80119160, "int ordertab_length")
del_items(0x80119164)
SetType(0x80119164, "int time_in_frames")
del_items(0x80119168)
SetType(0x80119168, "int stream_chunksize")
del_items(0x8011916C)
SetType(0x8011916C, "int stream_bufsize")
del_items(0x80119170)
SetType(0x80119170, "int stream_subsec")
del_items(0x80119174)
SetType(0x80119174, "int stream_secnum")
del_items(0x80119178)
SetType(0x80119178, "int stream_last_sector")
del_items(0x8011917C)
SetType(0x8011917C, "int stream_startsec")
del_items(0x80119180)
SetType(0x80119180, "int stream_opened")
del_items(0x80119184)
SetType(0x80119184, "int stream_last_chunk")
del_items(0x80119188)
SetType(0x80119188, "int stream_got_chunks")
del_items(0x8011918C)
SetType(0x8011918C, "int last_sector")
del_items(0x80119190)
SetType(0x80119190, "int cdstream_resetsec")
del_items(0x80119194)
SetType(0x80119194, "int last_handler_event")
del_items(0x80119064)
SetType(0x80119064, "bool user_start")
del_items(0x80118FFC)
SetType(0x80118FFC, "unsigned char *vlc_tab")
del_items(0x80119000)
SetType(0x80119000, "unsigned char *vlc_buf")
del_items(0x80119004)
SetType(0x80119004, "unsigned char *img_buf")
del_items(0x80119008)
SetType(0x80119008, "int vbuf")
del_items(0x8011900C)
SetType(0x8011900C, "int last_fn")
del_items(0x80119010)
SetType(0x80119010, "int last_mdc")
del_items(0x80119014)
SetType(0x80119014, "int slnum")
del_items(0x80119018)
SetType(0x80119018, "int slices_to_do")
del_items(0x8011901C)
SetType(0x8011901C, "int mbuf")
del_items(0x80119020)
SetType(0x80119020, "int mfn")
del_items(0x80119024)
SetType(0x80119024, "int last_move_mbuf")
del_items(0x80119028)
SetType(0x80119028, "int move_request")
del_items(0x8011902C)
SetType(0x8011902C, "int mdec_scale")
del_items(0x80119030)
SetType(0x80119030, "int do_brightness")
del_items(0x80119034)
SetType(0x80119034, "int frame_decoded")
del_items(0x80119038)
SetType(0x80119038, "int mdec_streaming")
del_items(0x8011903C)
SetType(0x8011903C, "int mdec_stream_size")
del_items(0x80119040)
SetType(0x80119040, "int first_stream_frame")
del_items(0x80119044)
SetType(0x80119044, "int stream_frames_played")
del_items(0x80119048)
SetType(0x80119048, "int num_mdcs")
del_items(0x8011904C)
SetType(0x8011904C, "int mdec_head")
del_items(0x80119050)
SetType(0x80119050, "int mdec_tail")
del_items(0x80119054)
SetType(0x80119054, "int mdec_waiting_tail")
del_items(0x80119058)
SetType(0x80119058, "int mdecs_queued")
del_items(0x8011905C)
SetType(0x8011905C, "int mdecs_waiting")
del_items(0x80119060)
SetType(0x80119060, "int sfx_volume")
del_items(0x80119068)
SetType(0x80119068, "int stream_chunks_in")
del_items(0x8011906C)
SetType(0x8011906C, "int stream_chunks_total")
del_items(0x80119070)
SetType(0x80119070, "int stream_in")
del_items(0x80119074)
SetType(0x80119074, "int stream_out")
del_items(0x80119078)
SetType(0x80119078, "int stream_stalled")
del_items(0x8011907C)
SetType(0x8011907C, "int stream_ending")
del_items(0x80119080)
SetType(0x80119080, "int stream_open")
del_items(0x80119084)
SetType(0x80119084, "int stream_handler_installed")
del_items(0x80119088)
SetType(0x80119088, "int stream_chunks_borrowed")
del_items(0x8011908C)
SetType(0x8011908C, "int _get_count")
del_items(0x80119090)
SetType(0x80119090, "int _discard_count")
del_items(0x80119094)
SetType(0x80119094, "struct TASK *CDTask")
del_items(0x80119098)
SetType(0x80119098, "struct cdstreamstruct *CDStream")
del_items(0x8011909C)
SetType(0x8011909C, "int cdready_calls")
del_items(0x801190A0)
SetType(0x801190A0, "int cdready_errors")
del_items(0x801190A4)
SetType(0x801190A4, "int cdready_out_of_sync")
del_items(0x801190A8)
SetType(0x801190A8, "int cdstream_resetting")
del_items(0x801190AC)
SetType(0x801190AC, "int sector_dma")
del_items(0x801190B0)
SetType(0x801190B0, "int sector_dma_in")
del_items(0x801190B4)
SetType(0x801190B4, "unsigned long *chkaddr")
del_items(0x801190B8)
SetType(0x801190B8, "struct chunkhdrstruct *chunk")
del_items(0x801190BC)
SetType(0x801190BC, "int first_handler_event")
del_items(0x80119234)
SetType(0x80119234, "unsigned char *pStatusPanel")
del_items(0x80119238)
SetType(0x80119238, "unsigned char *pGBoxBuff")
del_items(0x8011923C)
SetType(0x8011923C, "unsigned char dropGoldFlag")
del_items(0x80119240)
SetType(0x80119240, "unsigned char _pinfoflag[2]")
del_items(0x800AC748)
SetType(0x800AC748, "char _infostr[256][2]")
del_items(0x80119244)
SetType(0x80119244, "char _infoclr[2]")
del_items(0x800AC948)
SetType(0x800AC948, "char tempstr[256]")
del_items(0x80119246)
SetType(0x80119246, "unsigned char drawhpflag")
del_items(0x80119247)
SetType(0x80119247, "unsigned char drawmanaflag")
del_items(0x80119248)
SetType(0x80119248, "unsigned char chrflag")
del_items(0x80119249)
SetType(0x80119249, "unsigned char drawbtnflag")
del_items(0x8011924A)
SetType(0x8011924A, "unsigned char panbtndown")
del_items(0x8011924B)
SetType(0x8011924B, "unsigned char panelflag")
del_items(0x8011924C)
SetType(0x8011924C, "unsigned char chrbtndown")
del_items(0x8011924D)
SetType(0x8011924D, "unsigned char lvlbtndown")
del_items(0x8011924E)
SetType(0x8011924E, "unsigned char sbookflag")
del_items(0x8011924F)
SetType(0x8011924F, "unsigned char talkflag")
del_items(0x80119250)
SetType(0x80119250, "int dropGoldValue")
del_items(0x80119254)
SetType(0x80119254, "int initialDropGoldValue")
del_items(0x80119258)
SetType(0x80119258, "int initialDropGoldIndex")
del_items(0x8011925C)
SetType(0x8011925C, "unsigned char *pPanelButtons")
del_items(0x80119260)
SetType(0x80119260, "unsigned char *pPanelText")
del_items(0x80119264)
SetType(0x80119264, "unsigned char *pManaBuff")
del_items(0x80119268)
SetType(0x80119268, "unsigned char *pLifeBuff")
del_items(0x8011926C)
SetType(0x8011926C, "unsigned char *pChrPanel")
del_items(0x80119270)
SetType(0x80119270, "unsigned char *pChrButtons")
del_items(0x80119274)
SetType(0x80119274, "unsigned char *pSpellCels")
del_items(0x8011AAC8)
SetType(0x8011AAC8, "char _panelstr[64][8][2]")
del_items(0x8011AEC8)
SetType(0x8011AEC8, "int _pstrjust[8][2]")
del_items(0x8011A124)
SetType(0x8011A124, "int _pnumlines[2]")
del_items(0x80119278)
SetType(0x80119278, "struct RECT *InfoBoxRect")
del_items(0x8011927C)
SetType(0x8011927C, "struct RECT CSRect")
del_items(0x8011A134)
SetType(0x8011A134, "int _pSpell[2]")
del_items(0x8011A13C)
SetType(0x8011A13C, "int _pSplType[2]")
del_items(0x8011A144)
SetType(0x8011A144, "unsigned char panbtn[8]")
del_items(0x80119284)
SetType(0x80119284, "int numpanbtns")
del_items(0x80119288)
SetType(0x80119288, "unsigned char *pDurIcons")
del_items(0x8011928C)
SetType(0x8011928C, "unsigned char drawdurflag")
del_items(0x8011A14C)
SetType(0x8011A14C, "unsigned char chrbtn[4]")
del_items(0x8011928D)
SetType(0x8011928D, "unsigned char chrbtnactive")
del_items(0x80119290)
SetType(0x80119290, "unsigned char *pSpellBkCel")
del_items(0x80119294)
SetType(0x80119294, "unsigned char *pSBkBtnCel")
del_items(0x80119298)
SetType(0x80119298, "unsigned char *pSBkIconCels")
del_items(0x8011929C)
SetType(0x8011929C, "int sbooktab")
del_items(0x801192A0)
SetType(0x801192A0, "int cur_spel")
del_items(0x8011A150)
SetType(0x8011A150, "long talkofs")
del_items(0x8011AF18)
SetType(0x8011AF18, "char sgszTalkMsg[80]")
del_items(0x8011A154)
SetType(0x8011A154, "unsigned char sgbTalkSavePos")
del_items(0x8011A155)
SetType(0x8011A155, "unsigned char sgbNextTalkSave")
del_items(0x8011A156)
SetType(0x8011A156, "unsigned char sgbPlrTalkTbl[2]")
del_items(0x8011A158)
SetType(0x8011A158, "unsigned char *pTalkPanel")
del_items(0x8011A15C)
SetType(0x8011A15C, "unsigned char *pMultiBtns")
del_items(0x8011A160)
SetType(0x8011A160, "unsigned char *pTalkBtns")
del_items(0x8011A164)
SetType(0x8011A164, "unsigned char talkbtndown[3]")
del_items(0x8010F00C)
SetType(0x8010F00C, "unsigned char gbFontTransTbl[256]")
del_items(0x8010EF4C)
SetType(0x8010EF4C, "unsigned char fontkern[68]")
del_items(0x800AC17C)
SetType(0x800AC17C, "char SpellITbl[37]")
del_items(0x801191A1)
SetType(0x801191A1, "unsigned char DrawLevelUpFlag")
del_items(0x801191C8)
SetType(0x801191C8, "struct TASK *_spselflag[2]")
del_items(0x801191C4)
SetType(0x801191C4, "unsigned char spspelstate")
del_items(0x80119204)
SetType(0x80119204, "bool initchr")
del_items(0x801191A4)
SetType(0x801191A4, "int SPLICONNO")
del_items(0x801191A8)
SetType(0x801191A8, "int SPLICONY")
del_items(0x8011A12C)
SetType(0x8011A12C, "int SPLICONRIGHT")
del_items(0x801191AC)
SetType(0x801191AC, "int scx")
del_items(0x801191B0)
SetType(0x801191B0, "int scy")
del_items(0x801191B4)
SetType(0x801191B4, "int scx1")
del_items(0x801191B8)
SetType(0x801191B8, "int scy1")
del_items(0x801191BC)
SetType(0x801191BC, "int scx2")
del_items(0x801191C0)
SetType(0x801191C0, "int scy2")
del_items(0x801191D0)
SetType(0x801191D0, "char SpellCol")
del_items(0x800AC168)
SetType(0x800AC168, "unsigned char SpellColors[18]")
del_items(0x800AC1A4)
SetType(0x800AC1A4, "int PanBtnPos[5][8]")
del_items(0x800AC244)
SetType(0x800AC244, "char *PanBtnHotKey[8]")
del_items(0x800AC264)
SetType(0x800AC264, "unsigned long PanBtnStr[8]")
del_items(0x800AC284)
SetType(0x800AC284, "int SpellPages[5][5]")
del_items(0x801191F4)
SetType(0x801191F4, "int lus")
del_items(0x801191F8)
SetType(0x801191F8, "int CsNo")
del_items(0x801191FC)
SetType(0x801191FC, "char plusanim")
del_items(0x8011AF08)
SetType(0x8011AF08, "struct Dialog CSBack")
del_items(0x80119200)
SetType(0x80119200, "int CS_XOFF")
del_items(0x800AC2E8)
SetType(0x800AC2E8, "struct CSDATA CS_Tab[28]")
del_items(0x80119208)
SetType(0x80119208, "int NoCSEntries")
del_items(0x8011920C)
SetType(0x8011920C, "int SPALOFF")
del_items(0x80119210)
SetType(0x80119210, "int paloffset1")
del_items(0x80119214)
SetType(0x80119214, "int paloffset2")
del_items(0x80119218)
SetType(0x80119218, "int paloffset3")
del_items(0x8011921C)
SetType(0x8011921C, "int paloffset4")
del_items(0x80119220)
SetType(0x80119220, "int pinc1")
del_items(0x80119224)
SetType(0x80119224, "int pinc2")
del_items(0x80119228)
SetType(0x80119228, "int pinc3")
del_items(0x8011922C)
SetType(0x8011922C, "int pinc4")
del_items(0x801192B4)
SetType(0x801192B4, "int _pcurs[2]")
del_items(0x801192BC)
SetType(0x801192BC, "int cursW")
del_items(0x801192C0)
SetType(0x801192C0, "int cursH")
del_items(0x801192C4)
SetType(0x801192C4, "int icursW")
del_items(0x801192C8)
SetType(0x801192C8, "int icursH")
del_items(0x801192CC)
SetType(0x801192CC, "int icursW28")
del_items(0x801192D0)
SetType(0x801192D0, "int icursH28")
del_items(0x801192D4)
SetType(0x801192D4, "int cursmx")
del_items(0x801192D8)
SetType(0x801192D8, "int cursmy")
del_items(0x801192DC)
SetType(0x801192DC, "int _pcursmonst[2]")
del_items(0x801192E4)
SetType(0x801192E4, "char _pcursobj[2]")
del_items(0x801192E8)
SetType(0x801192E8, "char _pcursitem[2]")
del_items(0x801192EC)
SetType(0x801192EC, "char _pcursinvitem[2]")
del_items(0x801192F0)
SetType(0x801192F0, "char _pcursplr[2]")
del_items(0x801192B0)
SetType(0x801192B0, "int sel_data")
del_items(0x800ACA48)
SetType(0x800ACA48, "struct DeadStruct dead[31]")
del_items(0x801192F4)
SetType(0x801192F4, "int spurtndx")
del_items(0x801192F8)
SetType(0x801192F8, "int stonendx")
del_items(0x801192FC)
SetType(0x801192FC, "unsigned char *pSquareCel")
del_items(0x8011933C)
SetType(0x8011933C, "unsigned long ghInst")
del_items(0x80119340)
SetType(0x80119340, "unsigned char svgamode")
del_items(0x80119344)
SetType(0x80119344, "int MouseX")
del_items(0x80119348)
SetType(0x80119348, "int MouseY")
del_items(0x8011934C)
SetType(0x8011934C, "long gv1")
del_items(0x80119350)
SetType(0x80119350, "long gv2")
del_items(0x80119354)
SetType(0x80119354, "long gv3")
del_items(0x80119358)
SetType(0x80119358, "long gv4")
del_items(0x8011935C)
SetType(0x8011935C, "long gv5")
del_items(0x80119360)
SetType(0x80119360, "unsigned char gbProcessPlayers")
del_items(0x800ACBBC)
SetType(0x800ACBBC, "int DebugMonsters[10]")
del_items(0x800ACBE4)
SetType(0x800ACBE4, "unsigned long glSeedTbl[17]")
del_items(0x800ACC28)
SetType(0x800ACC28, "int gnLevelTypeTbl[17]")
del_items(0x80119361)
SetType(0x80119361, "unsigned char gbDoEnding")
del_items(0x80119362)
SetType(0x80119362, "unsigned char gbRunGame")
del_items(0x80119363)
SetType(0x80119363, "unsigned char gbRunGameResult")
del_items(0x80119364)
SetType(0x80119364, "unsigned char gbGameLoopStartup")
del_items(0x8011AF68)
SetType(0x8011AF68, "int glEndSeed[17]")
del_items(0x8011AFB8)
SetType(0x8011AFB8, "int glMid1Seed[17]")
del_items(0x8011B008)
SetType(0x8011B008, "int glMid2Seed[17]")
del_items(0x8011B058)
SetType(0x8011B058, "int glMid3Seed[17]")
del_items(0x8011A168)
SetType(0x8011A168, "long *sg_previousFilter")
del_items(0x800ACC6C)
SetType(0x800ACC6C, "int CreateEnv[12]")
del_items(0x80119368)
SetType(0x80119368, "int Passedlvldir")
del_items(0x8011936C)
SetType(0x8011936C, "unsigned char *TempStack")
del_items(0x8011930C)
SetType(0x8011930C, "unsigned long ghMainWnd")
del_items(0x80119310)
SetType(0x80119310, "unsigned char fullscreen")
del_items(0x80119314)
SetType(0x80119314, "int force_redraw")
del_items(0x80119328)
SetType(0x80119328, "unsigned char PauseMode")
del_items(0x80119329)
SetType(0x80119329, "unsigned char FriendlyMode")
del_items(0x80119319)
SetType(0x80119319, "unsigned char visiondebug")
del_items(0x8011931B)
SetType(0x8011931B, "unsigned char light4flag")
del_items(0x8011931C)
SetType(0x8011931C, "unsigned char leveldebug")
del_items(0x8011931D)
SetType(0x8011931D, "unsigned char monstdebug")
del_items(0x80119324)
SetType(0x80119324, "int debugmonsttypes")
del_items(0x80119318)
SetType(0x80119318, "unsigned char cineflag")
del_items(0x8011931A)
SetType(0x8011931A, "unsigned char scrollflag")
del_items(0x8011931E)
SetType(0x8011931E, "unsigned char trigdebug")
del_items(0x80119320)
SetType(0x80119320, "int setseed")
del_items(0x8011932C)
SetType(0x8011932C, "int sgnTimeoutCurs")
del_items(0x80119330)
SetType(0x80119330, "unsigned char sgbMouseDown")
del_items(0x800AD338)
SetType(0x800AD338, "struct TownerStruct towner[16]")
del_items(0x80119384)
SetType(0x80119384, "int numtowners")
del_items(0x80119388)
SetType(0x80119388, "unsigned char storeflag")
del_items(0x80119389)
SetType(0x80119389, "unsigned char boyloadflag")
del_items(0x8011938A)
SetType(0x8011938A, "unsigned char bannerflag")
del_items(0x8011938C)
SetType(0x8011938C, "unsigned char *pCowCels")
del_items(0x8011A16C)
SetType(0x8011A16C, "unsigned long sgdwCowClicks")
del_items(0x8011A170)
SetType(0x8011A170, "int sgnCowMsg")
del_items(0x800AD078)
SetType(0x800AD078, "int Qtalklist[16][11]")
del_items(0x8011937C)
SetType(0x8011937C, "unsigned long CowPlaying")
del_items(0x800ACC9C)
SetType(0x800ACC9C, "char AnimOrder[148][6]")
del_items(0x800AD014)
SetType(0x800AD014, "int TownCowX[3]")
del_items(0x800AD020)
SetType(0x800AD020, "int TownCowY[3]")
del_items(0x800AD02C)
SetType(0x800AD02C, "int TownCowDir[3]")
del_items(0x800AD038)
SetType(0x800AD038, "int cowoffx[8]")
del_items(0x800AD058)
SetType(0x800AD058, "int cowoffy[8]")
del_items(0x801193A4)
SetType(0x801193A4, "int sfxdelay")
del_items(0x801193A8)
SetType(0x801193A8, "int sfxdnum")
del_items(0x8011939C)
SetType(0x8011939C, "struct SFXHDR *sghStream")
del_items(0x800AE138)
SetType(0x800AE138, "struct TSFX sgSFX[980]")
del_items(0x801193A0)
SetType(0x801193A0, "struct TSFX *sgpStreamSFX")
del_items(0x801193AC)
SetType(0x801193AC, "long orgseed")
del_items(0x8011A174)
SetType(0x8011A174, "long sglGameSeed")
del_items(0x801193B0)
SetType(0x801193B0, "int SeedCount")
del_items(0x8011A178)
SetType(0x8011A178, "struct CCritSect sgMemCrit")
del_items(0x8011A17C)
SetType(0x8011A17C, "int sgnWidth")
del_items(0x801193BE)
SetType(0x801193BE, "char msgflag")
del_items(0x801193BF)
SetType(0x801193BF, "char msgdelay")
del_items(0x800AF138)
SetType(0x800AF138, "char msgtable[80]")
del_items(0x800AF088)
SetType(0x800AF088, "int MsgStrings[44]")
del_items(0x801193BD)
SetType(0x801193BD, "char msgcnt")
del_items(0x8011A180)
SetType(0x8011A180, "unsigned long sgdwProgress")
del_items(0x8011A184)
SetType(0x8011A184, "unsigned long sgdwXY")
del_items(0x800AF188)
SetType(0x800AF188, "unsigned char AllItemsUseable[157]")
del_items(0x8010F444)
SetType(0x8010F444, "struct ItemDataStruct AllItemsList[157]")
del_items(0x801107E4)
SetType(0x801107E4, "struct PLStruct PL_Prefix[84]")
del_items(0x80111504)
SetType(0x80111504, "struct PLStruct PL_Suffix[96]")
del_items(0x80112404)
SetType(0x80112404, "struct UItemStruct UniqueItemList[91]")
del_items(0x800AF39C)
SetType(0x800AF39C, "struct ItemStruct item[128]")
del_items(0x800B3F9C)
SetType(0x800B3F9C, "char itemactive[127]")
del_items(0x800B401C)
SetType(0x800B401C, "char itemavail[127]")
del_items(0x800B409C)
SetType(0x800B409C, "unsigned char UniqueItemFlag[128]")
del_items(0x801193F8)
SetType(0x801193F8, "unsigned char uitemflag")
del_items(0x8011A188)
SetType(0x8011A188, "int tem")
del_items(0x8011B0A0)
SetType(0x8011B0A0, "struct ItemStruct curruitem")
del_items(0x8011B140)
SetType(0x8011B140, "unsigned char itemhold[3][3]")
del_items(0x801193FC)
SetType(0x801193FC, "int ScrollType")
del_items(0x800B411C)
SetType(0x800B411C, "char ItemStr[64]")
del_items(0x800B415C)
SetType(0x800B415C, "char SufStr[64]")
del_items(0x801193D8)
SetType(0x801193D8, "long numitems")
del_items(0x801193DC)
SetType(0x801193DC, "int gnNumGetRecords")
del_items(0x800AF2F8)
SetType(0x800AF2F8, "int ItemInvSnds[35]")
del_items(0x800AF228)
SetType(0x800AF228, "unsigned char ItemCAnimTbl[169]")
del_items(0x80114248)
SetType(0x80114248, "short Item2Frm[35]")
del_items(0x800AF2D4)
SetType(0x800AF2D4, "unsigned char ItemAnimLs[35]")
del_items(0x801193E0)
SetType(0x801193E0, "int *ItemAnimSnds")
del_items(0x801193E4)
SetType(0x801193E4, "int idoppely")
del_items(0x801193E8)
SetType(0x801193E8, "int ScrollFlag")
del_items(0x800AF384)
SetType(0x800AF384, "int premiumlvladd[6]")
del_items(0x800B4F48)
SetType(0x800B4F48, "struct LightListStruct2 LightList[40]")
del_items(0x800B5088)
SetType(0x800B5088, "unsigned char lightactive[40]")
del_items(0x80119410)
SetType(0x80119410, "int numlights")
del_items(0x80119414)
SetType(0x80119414, "char lightmax")
del_items(0x800B50B0)
SetType(0x800B50B0, "struct LightListStruct VisionList[32]")
del_items(0x80119418)
SetType(0x80119418, "int numvision")
del_items(0x8011941C)
SetType(0x8011941C, "unsigned char dovision")
del_items(0x80119420)
SetType(0x80119420, "int visionid")
del_items(0x8011A18C)
SetType(0x8011A18C, "int disp_mask")
del_items(0x8011A190)
SetType(0x8011A190, "int weird")
del_items(0x8011A194)
SetType(0x8011A194, "int disp_tab_r")
del_items(0x8011A198)
SetType(0x8011A198, "int dispy_r")
del_items(0x8011A19C)
SetType(0x8011A19C, "int disp_tab_g")
del_items(0x8011A1A0)
SetType(0x8011A1A0, "int dispy_g")
del_items(0x8011A1A4)
SetType(0x8011A1A4, "int disp_tab_b")
del_items(0x8011A1A8)
SetType(0x8011A1A8, "int dispy_b")
del_items(0x8011A1AC)
SetType(0x8011A1AC, "int radius")
del_items(0x8011A1B0)
SetType(0x8011A1B0, "int bright")
del_items(0x8011B150)
SetType(0x8011B150, "unsigned char mult_tab[128]")
del_items(0x80119400)
SetType(0x80119400, "int lightflag")
del_items(0x800B4C5C)
SetType(0x800B4C5C, "unsigned char vCrawlTable[30][23]")
del_items(0x800B4F10)
SetType(0x800B4F10, "unsigned char RadiusAdj[23]")
del_items(0x800B419C)
SetType(0x800B419C, "char CrawlTable[2749]")
del_items(0x80119404)
SetType(0x80119404, "int restore_r")
del_items(0x80119408)
SetType(0x80119408, "int restore_g")
del_items(0x8011940C)
SetType(0x8011940C, "int restore_b")
del_items(0x800B4F28)
SetType(0x800B4F28, "char radius_tab[16]")
del_items(0x800B4F38)
SetType(0x800B4F38, "char bright_tab[16]")
del_items(0x80119441)
SetType(0x80119441, "unsigned char qtextflag")
del_items(0x80119444)
SetType(0x80119444, "int qtextSpd")
del_items(0x8011A1B4)
SetType(0x8011A1B4, "unsigned char *pMedTextCels")
del_items(0x8011A1B8)
SetType(0x8011A1B8, "unsigned char *pTextBoxCels")
del_items(0x8011A1BC)
SetType(0x8011A1BC, "char *qtextptr")
del_items(0x8011A1C0)
SetType(0x8011A1C0, "int qtexty")
del_items(0x8011A1C4)
SetType(0x8011A1C4, "unsigned long qtextDelay")
del_items(0x8011A1C8)
SetType(0x8011A1C8, "unsigned long sgLastScroll")
del_items(0x8011A1CC)
SetType(0x8011A1CC, "unsigned long scrolltexty")
del_items(0x8011A1D0)
SetType(0x8011A1D0, "long sglMusicVolumeSave")
del_items(0x80119430)
SetType(0x80119430, "bool qtbodge")
del_items(0x800B5270)
SetType(0x800B5270, "struct Dialog QBack")
del_items(0x800B5280)
SetType(0x800B5280, "struct MissileData missiledata[68]")
del_items(0x800B59F0)
SetType(0x800B59F0, "struct MisFileData misfiledata[47]")
del_items(0x800B58E0)
SetType(0x800B58E0, "void (*MissPrintRoutines[68])()")
del_items(0x800B5ADC)
SetType(0x800B5ADC, "struct DLevel sgLevels[21]")
del_items(0x800C9828)
SetType(0x800C9828, "struct LocalLevel sgLocals[21]")
del_items(0x8011B1D0)
SetType(0x8011B1D0, "struct DJunk sgJunk")
del_items(0x8011A1D5)
SetType(0x8011A1D5, "unsigned char sgbRecvCmd")
del_items(0x8011A1D8)
SetType(0x8011A1D8, "unsigned long sgdwRecvOffset")
del_items(0x8011A1DC)
SetType(0x8011A1DC, "unsigned char sgbDeltaChunks")
del_items(0x8011A1DD)
SetType(0x8011A1DD, "unsigned char sgbDeltaChanged")
del_items(0x8011A1E0)
SetType(0x8011A1E0, "unsigned long sgdwOwnerWait")
del_items(0x8011A1E4)
SetType(0x8011A1E4, "struct TMegaPkt *sgpMegaPkt")
del_items(0x8011A1E8)
SetType(0x8011A1E8, "struct TMegaPkt *sgpCurrPkt")
del_items(0x8011A1EC)
SetType(0x8011A1EC, "int sgnCurrMegaPlayer")
del_items(0x8011945D)
SetType(0x8011945D, "unsigned char deltaload")
del_items(0x8011945E)
SetType(0x8011945E, "unsigned char gbBufferMsgs")
del_items(0x80119460)
SetType(0x80119460, "unsigned long dwRecCount")
del_items(0x80119464)
SetType(0x80119464, "bool LevelOut")
del_items(0x8011947A)
SetType(0x8011947A, "unsigned char gbMaxPlayers")
del_items(0x8011947B)
SetType(0x8011947B, "unsigned char gbActivePlayers")
del_items(0x8011947C)
SetType(0x8011947C, "unsigned char gbGameDestroyed")
del_items(0x8011947D)
SetType(0x8011947D, "unsigned char gbDeltaSender")
del_items(0x8011947E)
SetType(0x8011947E, "unsigned char gbSelectProvider")
del_items(0x8011947F)
SetType(0x8011947F, "unsigned char gbSomebodyWonGameKludge")
del_items(0x8011A1F0)
SetType(0x8011A1F0, "unsigned char sgbSentThisCycle")
del_items(0x8011A1F4)
SetType(0x8011A1F4, "unsigned long sgdwGameLoops")
del_items(0x8011A1F8)
SetType(0x8011A1F8, "unsigned short sgwPackPlrOffsetTbl[2]")
del_items(0x8011A1FC)
SetType(0x8011A1FC, "unsigned char sgbPlayerLeftGameTbl[2]")
del_items(0x8011A200)
SetType(0x8011A200, "unsigned long sgdwPlayerLeftReasonTbl[2]")
del_items(0x8011A208)
SetType(0x8011A208, "unsigned char sgbSendDeltaTbl[2]")
del_items(0x8011A210)
SetType(0x8011A210, "struct _gamedata sgGameInitInfo")
del_items(0x8011A218)
SetType(0x8011A218, "unsigned char sgbTimeout")
del_items(0x8011A21C)
SetType(0x8011A21C, "long sglTimeoutStart")
del_items(0x80119474)
SetType(0x80119474, "char gszVersionNumber[5]")
del_items(0x80119479)
SetType(0x80119479, "unsigned char sgbNetInited")
del_items(0x800CA890)
SetType(0x800CA890, "int ObjTypeConv[113]")
del_items(0x800CAA54)
SetType(0x800CAA54, "struct ObjDataStruct AllObjects[99]")
del_items(0x80114910)
SetType(0x80114910, "struct OBJ_LOAD_INFO ObjMasterLoadList[56]")
del_items(0x800CB234)
SetType(0x800CB234, "struct ObjectStruct object[127]")
del_items(0x801194A0)
SetType(0x801194A0, "long numobjects")
del_items(0x800CC808)
SetType(0x800CC808, "char objectactive[127]")
del_items(0x800CC888)
SetType(0x800CC888, "char objectavail[127]")
del_items(0x801194A4)
SetType(0x801194A4, "unsigned char InitObjFlag")
del_items(0x801194A8)
SetType(0x801194A8, "int trapid")
del_items(0x800CC908)
SetType(0x800CC908, "char ObjFileList[40]")
del_items(0x801194AC)
SetType(0x801194AC, "int trapdir")
del_items(0x801194B0)
SetType(0x801194B0, "int leverid")
del_items(0x80119498)
SetType(0x80119498, "int numobjfiles")
del_items(0x800CB14C)
SetType(0x800CB14C, "int bxadd[8]")
del_items(0x800CB16C)
SetType(0x800CB16C, "int byadd[8]")
del_items(0x800CB1F4)
SetType(0x800CB1F4, "char shrineavail[26]")
del_items(0x800CB18C)
SetType(0x800CB18C, "int shrinestrs[26]")
del_items(0x800CB210)
SetType(0x800CB210, "int StoryBookName[9]")
del_items(0x8011949C)
SetType(0x8011949C, "int myscale")
del_items(0x801194C4)
SetType(0x801194C4, "unsigned char gbValidSaveFile")
del_items(0x801194C0)
SetType(0x801194C0, "bool DoLoadedChar")
del_items(0x800CCB28)
SetType(0x800CCB28, "struct PlayerStruct plr[2]")
del_items(0x801194E4)
SetType(0x801194E4, "int myplr")
del_items(0x801194E8)
SetType(0x801194E8, "int deathdelay")
del_items(0x801194EC)
SetType(0x801194EC, "unsigned char deathflag")
del_items(0x801194ED)
SetType(0x801194ED, "char light_rad")
del_items(0x801194DC)
SetType(0x801194DC, "char light_level[5]")
del_items(0x800CCA20)
SetType(0x800CCA20, "int MaxStats[4][3]")
del_items(0x801194D4)
SetType(0x801194D4, "int PlrStructSize")
del_items(0x801194D8)
SetType(0x801194D8, "int ItemStructSize")
del_items(0x800CC930)
SetType(0x800CC930, "int plrxoff[9]")
del_items(0x800CC954)
SetType(0x800CC954, "int plryoff[9]")
del_items(0x800CC978)
SetType(0x800CC978, "int plrxoff2[9]")
del_items(0x800CC99C)
SetType(0x800CC99C, "int plryoff2[9]")
del_items(0x800CC9C0)
SetType(0x800CC9C0, "char PlrGFXAnimLens[11][3]")
del_items(0x800CC9E4)
SetType(0x800CC9E4, "int StrengthTbl[3]")
del_items(0x800CC9F0)
SetType(0x800CC9F0, "int MagicTbl[3]")
del_items(0x800CC9FC)
SetType(0x800CC9FC, "int DexterityTbl[3]")
del_items(0x800CCA08)
SetType(0x800CCA08, "int VitalityTbl[3]")
del_items(0x800CCA14)
SetType(0x800CCA14, "int ToBlkTbl[3]")
del_items(0x800CCA50)
SetType(0x800CCA50, "long ExpLvlsTbl[51]")
del_items(0x800D13B0)
SetType(0x800D13B0, "struct QuestStruct quests[16]")
del_items(0x8011952C)
SetType(0x8011952C, "unsigned char *pQLogCel")
del_items(0x80119530)
SetType(0x80119530, "int ReturnLvlX")
del_items(0x80119534)
SetType(0x80119534, "int ReturnLvlY")
del_items(0x80119538)
SetType(0x80119538, "int ReturnLvl")
del_items(0x8011953C)
SetType(0x8011953C, "int ReturnLvlT")
del_items(0x80119540)
SetType(0x80119540, "unsigned char rporttest")
del_items(0x80119544)
SetType(0x80119544, "int qline")
del_items(0x80119548)
SetType(0x80119548, "int numqlines")
del_items(0x8011954C)
SetType(0x8011954C, "int qtopline")
del_items(0x8011B1E8)
SetType(0x8011B1E8, "int qlist[16]")
del_items(0x8011A220)
SetType(0x8011A220, "struct RECT QSRect")
del_items(0x801194F9)
SetType(0x801194F9, "unsigned char questlog")
del_items(0x800D1278)
SetType(0x800D1278, "struct QuestData questlist[16]")
del_items(0x801194FC)
SetType(0x801194FC, "int ALLQUESTS")
del_items(0x800D138C)
SetType(0x800D138C, "int QuestGroup1[3]")
del_items(0x800D1398)
SetType(0x800D1398, "int QuestGroup2[3]")
del_items(0x800D13A4)
SetType(0x800D13A4, "int QuestGroup3[3]")
del_items(0x80119510)
SetType(0x80119510, "int QuestGroup4[2]")
del_items(0x80119528)
SetType(0x80119528, "bool WaterDone")
del_items(0x80119500)
SetType(0x80119500, "char questxoff[7]")
del_items(0x80119508)
SetType(0x80119508, "char questyoff[7]")
del_items(0x800D1378)
SetType(0x800D1378, "int questtrigstr[5]")
del_items(0x80119518)
SetType(0x80119518, "int QS_PX")
del_items(0x8011951C)
SetType(0x8011951C, "int QS_PY")
del_items(0x80119520)
SetType(0x80119520, "int QS_PW")
del_items(0x80119524)
SetType(0x80119524, "int QS_PH")
del_items(0x8011B228)
SetType(0x8011B228, "struct Dialog QSBack")
del_items(0x800D14F0)
SetType(0x800D14F0, "struct SpellData spelldata[37]")
del_items(0x80119587)
SetType(0x80119587, "char stextflag")
del_items(0x800D1D98)
SetType(0x800D1D98, "struct ItemStruct smithitem[20]")
del_items(0x800D2978)
SetType(0x800D2978, "struct ItemStruct premiumitem[6]")
del_items(0x80119588)
SetType(0x80119588, "int numpremium")
del_items(0x8011958C)
SetType(0x8011958C, "int premiumlevel")
del_items(0x800D2D08)
SetType(0x800D2D08, "struct ItemStruct witchitem[20]")
del_items(0x800D38E8)
SetType(0x800D38E8, "struct ItemStruct boyitem")
del_items(0x80119590)
SetType(0x80119590, "int boylevel")
del_items(0x800D3980)
SetType(0x800D3980, "struct ItemStruct golditem")
del_items(0x800D3A18)
SetType(0x800D3A18, "struct ItemStruct healitem[20]")
del_items(0x80119594)
SetType(0x80119594, "char stextsize")
del_items(0x80119595)
SetType(0x80119595, "unsigned char stextscrl")
del_items(0x8011A228)
SetType(0x8011A228, "int stextsel")
del_items(0x8011A22C)
SetType(0x8011A22C, "int stextlhold")
del_items(0x8011A230)
SetType(0x8011A230, "int stextshold")
del_items(0x8011A234)
SetType(0x8011A234, "int stextvhold")
del_items(0x8011A238)
SetType(0x8011A238, "int stextsval")
del_items(0x8011A23C)
SetType(0x8011A23C, "int stextsmax")
del_items(0x8011A240)
SetType(0x8011A240, "int stextup")
del_items(0x8011A244)
SetType(0x8011A244, "int stextdown")
del_items(0x8011A248)
SetType(0x8011A248, "char stextscrlubtn")
del_items(0x8011A249)
SetType(0x8011A249, "char stextscrldbtn")
del_items(0x8011A24A)
SetType(0x8011A24A, "char SItemListFlag")
del_items(0x8011B238)
SetType(0x8011B238, "struct STextStruct stext[24]")
del_items(0x800D45F8)
SetType(0x800D45F8, "struct ItemStruct storehold[48]")
del_items(0x800D6278)
SetType(0x800D6278, "char storehidx[48]")
del_items(0x8011A24C)
SetType(0x8011A24C, "int storenumh")
del_items(0x8011A250)
SetType(0x8011A250, "int gossipstart")
del_items(0x8011A254)
SetType(0x8011A254, "int gossipend")
del_items(0x8011A258)
SetType(0x8011A258, "struct RECT StoreBackRect")
del_items(0x8011A260)
SetType(0x8011A260, "int talker")
del_items(0x80119574)
SetType(0x80119574, "unsigned char *pSTextBoxCels")
del_items(0x80119578)
SetType(0x80119578, "unsigned char *pSTextSlidCels")
del_items(0x8011957C)
SetType(0x8011957C, "int *SStringY")
del_items(0x800D1C74)
SetType(0x800D1C74, "struct Dialog SBack")
del_items(0x800D1C84)
SetType(0x800D1C84, "int SStringYNorm[20]")
del_items(0x800D1CD4)
SetType(0x800D1CD4, "int SStringYBuy0[20]")
del_items(0x800D1D24)
SetType(0x800D1D24, "int SStringYBuy1[20]")
del_items(0x800D1D74)
SetType(0x800D1D74, "int talkname[9]")
del_items(0x80119586)
SetType(0x80119586, "unsigned char InStoreFlag")
del_items(0x80115B64)
SetType(0x80115B64, "struct TextDataStruct alltext[269]")
del_items(0x801195A4)
SetType(0x801195A4, "unsigned long gdwAllTextEntries")
del_items(0x8011A264)
SetType(0x8011A264, "unsigned char *P3Tiles")
del_items(0x801195B4)
SetType(0x801195B4, "int tile")
del_items(0x801195C4)
SetType(0x801195C4, "unsigned char _trigflag[2]")
del_items(0x800D64E0)
SetType(0x800D64E0, "struct TriggerStruct trigs[5]")
del_items(0x801195C8)
SetType(0x801195C8, "int numtrigs")
del_items(0x801195CC)
SetType(0x801195CC, "unsigned char townwarps[3]")
del_items(0x801195D0)
SetType(0x801195D0, "int TWarpFrom")
del_items(0x800D62A8)
SetType(0x800D62A8, "int TownDownList[11]")
del_items(0x800D62D4)
SetType(0x800D62D4, "int TownWarp1List[13]")
del_items(0x800D6308)
SetType(0x800D6308, "int L1UpList[12]")
del_items(0x800D6338)
SetType(0x800D6338, "int L1DownList[10]")
del_items(0x800D6360)
SetType(0x800D6360, "int L2UpList[3]")
del_items(0x800D636C)
SetType(0x800D636C, "int L2DownList[5]")
del_items(0x800D6380)
SetType(0x800D6380, "int L2TWarpUpList[3]")
del_items(0x800D638C)
SetType(0x800D638C, "int L3UpList[15]")
del_items(0x800D63C8)
SetType(0x800D63C8, "int L3DownList[9]")
del_items(0x800D63EC)
SetType(0x800D63EC, "int L3TWarpUpList[14]")
del_items(0x800D6424)
SetType(0x800D6424, "int L4UpList[4]")
del_items(0x800D6434)
SetType(0x800D6434, "int L4DownList[6]")
del_items(0x800D644C)
SetType(0x800D644C, "int L4TWarpUpList[4]")
del_items(0x800D645C)
SetType(0x800D645C, "int L4PentaList[33]")
del_items(0x801168F4)
SetType(0x801168F4, "char cursoff[10]")
del_items(0x801195EA)
SetType(0x801195EA, "unsigned char gbMusicOn")
del_items(0x801195EB)
SetType(0x801195EB, "unsigned char gbSoundOn")
del_items(0x801195E9)
SetType(0x801195E9, "unsigned char gbSndInited")
del_items(0x801195F0)
SetType(0x801195F0, "long sglMasterVolume")
del_items(0x801195F4)
SetType(0x801195F4, "long sglMusicVolume")
del_items(0x801195F8)
SetType(0x801195F8, "long sglSoundVolume")
del_items(0x801195FC)
SetType(0x801195FC, "long sglSpeechVolume")
del_items(0x80119600)
SetType(0x80119600, "int sgnMusicTrack")
del_items(0x801195EC)
SetType(0x801195EC, "unsigned char gbDupSounds")
del_items(0x80119604)
SetType(0x80119604, "struct SFXHDR *sghMusic")
del_items(0x801169A0)
SetType(0x801169A0, "unsigned short sgszMusicTracks[6]")
del_items(0x80119628)
SetType(0x80119628, "int _pcurr_inv[2]")
del_items(0x800D6530)
SetType(0x800D6530, "struct found_objects _pfind_list[10][2]")
del_items(0x80119630)
SetType(0x80119630, "char _pfind_index[2]")
del_items(0x80119634)
SetType(0x80119634, "char _pfindx[2]")
del_items(0x80119638)
SetType(0x80119638, "char _pfindy[2]")
del_items(0x8011963A)
SetType(0x8011963A, "unsigned char automapmoved")
del_items(0x8011961C)
SetType(0x8011961C, "unsigned char flyflag")
del_items(0x80119614)
SetType(0x80119614, "char (*pad_styles[2])()")
del_items(0x8011961D)
SetType(0x8011961D, "char speed_type")
del_items(0x8011961E)
SetType(0x8011961E, "char sel_speed")
del_items(0x8011A268)
SetType(0x8011A268, "unsigned long (*CurrentProc)()")
del_items(0x80116B3C)
SetType(0x80116B3C, "struct MESSAGE_STR AllMsgs[12]")
del_items(0x80119674)
SetType(0x80119674, "int NumOfStrings")
del_items(0x80119648)
SetType(0x80119648, "enum LANG_TYPE LanguageType")
del_items(0x8011964C)
SetType(0x8011964C, "long hndText")
del_items(0x80119650)
SetType(0x80119650, "char **TextPtr")
del_items(0x80119654)
SetType(0x80119654, "enum LANG_DB_NO LangDbNo")
del_items(0x80119684)
SetType(0x80119684, "struct TextDat *MissDat")
del_items(0x80119688)
SetType(0x80119688, "int CharFade")
del_items(0x8011968C)
SetType(0x8011968C, "int rotateness")
del_items(0x80119690)
SetType(0x80119690, "int spiralling_shape")
del_items(0x80119694)
SetType(0x80119694, "int down")
del_items(0x800D6580)
SetType(0x800D6580, "char MlTab[16]")
del_items(0x800D6590)
SetType(0x800D6590, "char QlTab[16]")
del_items(0x800D65A0)
SetType(0x800D65A0, "struct POLY_FT4 *(*ObjPrintFuncs[98])()")
del_items(0x801196B0)
SetType(0x801196B0, "int MyXoff1")
del_items(0x801196B4)
SetType(0x801196B4, "int MyYoff1")
del_items(0x801196B8)
SetType(0x801196B8, "int MyXoff2")
del_items(0x801196BC)
SetType(0x801196BC, "int MyYoff2")
del_items(0x801196CC)
SetType(0x801196CC, "bool iscflag")
del_items(0x801196D9)
SetType(0x801196D9, "unsigned char sgbFadedIn")
del_items(0x801196DA)
SetType(0x801196DA, "unsigned char screenbright")
del_items(0x801196DC)
SetType(0x801196DC, "int faderate")
del_items(0x801196E0)
SetType(0x801196E0, "bool fading")
del_items(0x801196EC)
SetType(0x801196EC, "unsigned char FadeCoords[8]")
del_items(0x801196E4)
SetType(0x801196E4, "int st")
del_items(0x801196E8)
SetType(0x801196E8, "int mode")
del_items(0x800D6728)
SetType(0x800D6728, "struct PortalStruct portal[2]")
del_items(0x8011971E)
SetType(0x8011971E, "char portalindex")
del_items(0x80119718)
SetType(0x80119718, "char WarpDropX[2]")
del_items(0x8011971C)
SetType(0x8011971C, "char WarpDropY[2]")
del_items(0x800D6740)
SetType(0x800D6740, "char MyVerString[120]")
del_items(0x80119890)
SetType(0x80119890, "int Year")
del_items(0x80119894)
SetType(0x80119894, "int Day")
del_items(0x8011A26C)
SetType(0x8011A26C, "unsigned char *tbuff")
del_items(0x800D67B8)
SetType(0x800D67B8, "unsigned char IconBuffer[768]")
del_items(0x8011A270)
SetType(0x8011A270, "unsigned char HR1")
del_items(0x8011A271)
SetType(0x8011A271, "unsigned char HR2")
del_items(0x8011A272)
SetType(0x8011A272, "unsigned char HR3")
del_items(0x8011A273)
SetType(0x8011A273, "unsigned char VR1")
del_items(0x8011A274)
SetType(0x8011A274, "unsigned char VR2")
del_items(0x8011A275)
SetType(0x8011A275, "unsigned char VR3")
del_items(0x80119904)
SetType(0x80119904, "struct NODE *pHallList")
del_items(0x80119908)
SetType(0x80119908, "int nRoomCnt")
del_items(0x8011990C)
SetType(0x8011990C, "int nSx1")
del_items(0x80119910)
SetType(0x80119910, "int nSy1")
del_items(0x80119914)
SetType(0x80119914, "int nSx2")
del_items(0x80119918)
SetType(0x80119918, "int nSy2")
del_items(0x801198BC)
SetType(0x801198BC, "int Area_Min")
del_items(0x801198C0)
SetType(0x801198C0, "int Room_Max")
del_items(0x801198C4)
SetType(0x801198C4, "int Room_Min")
del_items(0x801198C8)
SetType(0x801198C8, "unsigned char BIG3[6]")
del_items(0x801198D0)
SetType(0x801198D0, "unsigned char BIG4[6]")
del_items(0x801198D8)
SetType(0x801198D8, "unsigned char BIG6[6]")
del_items(0x801198E0)
SetType(0x801198E0, "unsigned char BIG7[6]")
del_items(0x801198E8)
SetType(0x801198E8, "unsigned char RUINS1[4]")
del_items(0x801198EC)
SetType(0x801198EC, "unsigned char RUINS2[4]")
del_items(0x801198F0)
SetType(0x801198F0, "unsigned char RUINS3[4]")
del_items(0x801198F4)
SetType(0x801198F4, "unsigned char RUINS4[4]")
del_items(0x801198F8)
SetType(0x801198F8, "unsigned char RUINS5[4]")
del_items(0x801198FC)
SetType(0x801198FC, "unsigned char RUINS6[4]")
del_items(0x80119900)
SetType(0x80119900, "unsigned char RUINS7[4]")
del_items(0x8011A278)
SetType(0x8011A278, "int abyssx")
del_items(0x8011A27C)
SetType(0x8011A27C, "unsigned char lavapool")
del_items(0x801199A4)
SetType(0x801199A4, "int lockoutcnt")
del_items(0x80119928)
SetType(0x80119928, "unsigned char L3TITE12[6]")
del_items(0x80119930)
SetType(0x80119930, "unsigned char L3TITE13[6]")
del_items(0x80119938)
SetType(0x80119938, "unsigned char L3CREV1[6]")
del_items(0x80119940)
SetType(0x80119940, "unsigned char L3CREV2[6]")
del_items(0x80119948)
SetType(0x80119948, "unsigned char L3CREV3[6]")
del_items(0x80119950)
SetType(0x80119950, "unsigned char L3CREV4[6]")
del_items(0x80119958)
SetType(0x80119958, "unsigned char L3CREV5[6]")
del_items(0x80119960)
SetType(0x80119960, "unsigned char L3CREV6[6]")
del_items(0x80119968)
SetType(0x80119968, "unsigned char L3CREV7[6]")
del_items(0x80119970)
SetType(0x80119970, "unsigned char L3CREV8[6]")
del_items(0x80119978)
SetType(0x80119978, "unsigned char L3CREV9[6]")
del_items(0x80119980)
SetType(0x80119980, "unsigned char L3CREV10[6]")
del_items(0x80119988)
SetType(0x80119988, "unsigned char L3CREV11[6]")
del_items(0x80119990)
SetType(0x80119990, "unsigned char L3XTRA1[4]")
del_items(0x80119994)
SetType(0x80119994, "unsigned char L3XTRA2[4]")
del_items(0x80119998)
SetType(0x80119998, "unsigned char L3XTRA3[4]")
del_items(0x8011999C)
SetType(0x8011999C, "unsigned char L3XTRA4[4]")
del_items(0x801199A0)
SetType(0x801199A0, "unsigned char L3XTRA5[4]")
del_items(0x801199A8)
SetType(0x801199A8, "int diabquad1x")
del_items(0x801199AC)
SetType(0x801199AC, "int diabquad2x")
del_items(0x801199B0)
SetType(0x801199B0, "int diabquad3x")
del_items(0x801199B4)
SetType(0x801199B4, "int diabquad4x")
del_items(0x801199B8)
SetType(0x801199B8, "int diabquad1y")
del_items(0x801199BC)
SetType(0x801199BC, "int diabquad2y")
del_items(0x801199C0)
SetType(0x801199C0, "int diabquad3y")
del_items(0x801199C4)
SetType(0x801199C4, "int diabquad4y")
del_items(0x801199C8)
SetType(0x801199C8, "int SP4x1")
del_items(0x801199CC)
SetType(0x801199CC, "int SP4y1")
del_items(0x801199D0)
SetType(0x801199D0, "int SP4x2")
del_items(0x801199D4)
SetType(0x801199D4, "int SP4y2")
del_items(0x801199D8)
SetType(0x801199D8, "int l4holdx")
del_items(0x801199DC)
SetType(0x801199DC, "int l4holdy")
del_items(0x8011A280)
SetType(0x8011A280, "unsigned char *lpSetPiece1")
del_items(0x8011A284)
SetType(0x8011A284, "unsigned char *lpSetPiece2")
del_items(0x8011A288)
SetType(0x8011A288, "unsigned char *lpSetPiece3")
del_items(0x8011A28C)
SetType(0x8011A28C, "unsigned char *lpSetPiece4")
del_items(0x801199EC)
SetType(0x801199EC, "unsigned char SkelKingTrans1[8]")
del_items(0x801199F4)
SetType(0x801199F4, "unsigned char SkelKingTrans2[8]")
del_items(0x800D6AB8)
SetType(0x800D6AB8, "unsigned char SkelKingTrans3[20]")
del_items(0x800D6ACC)
SetType(0x800D6ACC, "unsigned char SkelKingTrans4[28]")
del_items(0x800D6AE8)
SetType(0x800D6AE8, "unsigned char SkelChamTrans1[20]")
del_items(0x801199FC)
SetType(0x801199FC, "unsigned char SkelChamTrans2[8]")
del_items(0x800D6AFC)
SetType(0x800D6AFC, "unsigned char SkelChamTrans3[36]")
del_items(0x80119AE8)
SetType(0x80119AE8, "bool DoUiForChooseMonster")
del_items(0x800D6B20)
SetType(0x800D6B20, "char *MgToText[34]")
del_items(0x800D6BA8)
SetType(0x800D6BA8, "int StoryText[3][3]")
del_items(0x800D6BCC)
SetType(0x800D6BCC, "unsigned short dungeon[48][48]")
del_items(0x800D7DCC)
SetType(0x800D7DCC, "unsigned char pdungeon[40][40]")
del_items(0x800D840C)
SetType(0x800D840C, "unsigned char dflags[40][40]")
del_items(0x80119B0C)
SetType(0x80119B0C, "int setpc_x")
del_items(0x80119B10)
SetType(0x80119B10, "int setpc_y")
del_items(0x80119B14)
SetType(0x80119B14, "int setpc_w")
del_items(0x80119B18)
SetType(0x80119B18, "int setpc_h")
del_items(0x80119B1C)
SetType(0x80119B1C, "unsigned char setloadflag")
del_items(0x80119B20)
SetType(0x80119B20, "unsigned char *pMegaTiles")
del_items(0x800D8A4C)
SetType(0x800D8A4C, "unsigned char nBlockTable[2049]")
del_items(0x800D9250)
SetType(0x800D9250, "unsigned char nSolidTable[2049]")
del_items(0x800D9A54)
SetType(0x800D9A54, "unsigned char nTransTable[2049]")
del_items(0x800DA258)
SetType(0x800DA258, "unsigned char nMissileTable[2049]")
del_items(0x800DAA5C)
SetType(0x800DAA5C, "unsigned char nTrapTable[2049]")
del_items(0x80119B24)
SetType(0x80119B24, "int dminx")
del_items(0x80119B28)
SetType(0x80119B28, "int dminy")
del_items(0x80119B2C)
SetType(0x80119B2C, "int dmaxx")
del_items(0x80119B30)
SetType(0x80119B30, "int dmaxy")
del_items(0x80119B34)
SetType(0x80119B34, "int gnDifficulty")
del_items(0x80119B38)
SetType(0x80119B38, "unsigned char currlevel")
del_items(0x80119B39)
SetType(0x80119B39, "unsigned char leveltype")
del_items(0x80119B3A)
SetType(0x80119B3A, "unsigned char setlevel")
del_items(0x80119B3B)
SetType(0x80119B3B, "unsigned char setlvlnum")
del_items(0x80119B3C)
SetType(0x80119B3C, "unsigned char setlvltype")
del_items(0x80119B40)
SetType(0x80119B40, "int ViewX")
del_items(0x80119B44)
SetType(0x80119B44, "int ViewY")
del_items(0x80119B48)
SetType(0x80119B48, "int ViewDX")
del_items(0x80119B4C)
SetType(0x80119B4C, "int ViewDY")
del_items(0x80119B50)
SetType(0x80119B50, "int ViewBX")
del_items(0x80119B54)
SetType(0x80119B54, "int ViewBY")
del_items(0x800DB260)
SetType(0x800DB260, "struct ScrollStruct ScrollInfo")
del_items(0x80119B58)
SetType(0x80119B58, "int LvlViewX")
del_items(0x80119B5C)
SetType(0x80119B5C, "int LvlViewY")
del_items(0x80119B60)
SetType(0x80119B60, "int btmbx")
del_items(0x80119B64)
SetType(0x80119B64, "int btmby")
del_items(0x80119B68)
SetType(0x80119B68, "int btmdx")
del_items(0x80119B6C)
SetType(0x80119B6C, "int btmdy")
del_items(0x80119B70)
SetType(0x80119B70, "int MicroTileLen")
del_items(0x80119B74)
SetType(0x80119B74, "char TransVal")
del_items(0x800DB274)
SetType(0x800DB274, "bool TransList[8]")
del_items(0x80119B78)
SetType(0x80119B78, "int themeCount")
del_items(0x800DB294)
SetType(0x800DB294, "struct map_info dung_map[108][108]")
del_items(0x800FD554)
SetType(0x800FD554, "unsigned char dung_map_r[54][54]")
del_items(0x800FE0B8)
SetType(0x800FE0B8, "unsigned char dung_map_g[54][54]")
del_items(0x800FEC1C)
SetType(0x800FEC1C, "unsigned char dung_map_b[54][54]")
del_items(0x800FF780)
SetType(0x800FF780, "struct MINIXY MinisetXY[17]")
del_items(0x80119B04)
SetType(0x80119B04, "unsigned char *pSetPiece")
del_items(0x80119B08)
SetType(0x80119B08, "int DungSize")
del_items(0x800FF94C)
SetType(0x800FF94C, "struct ThemeStruct theme[50]")
del_items(0x80119BB8)
SetType(0x80119BB8, "int numthemes")
del_items(0x80119BBC)
SetType(0x80119BBC, "int zharlib")
del_items(0x80119BC0)
SetType(0x80119BC0, "unsigned char armorFlag")
del_items(0x80119BC1)
SetType(0x80119BC1, "unsigned char bCrossFlag")
del_items(0x80119BC2)
SetType(0x80119BC2, "unsigned char weaponFlag")
del_items(0x80119BC4)
SetType(0x80119BC4, "int themex")
del_items(0x80119BC8)
SetType(0x80119BC8, "int themey")
del_items(0x80119BCC)
SetType(0x80119BCC, "int themeVar1")
del_items(0x80119BD0)
SetType(0x80119BD0, "unsigned char bFountainFlag")
del_items(0x80119BD1)
SetType(0x80119BD1, "unsigned char cauldronFlag")
del_items(0x80119BD2)
SetType(0x80119BD2, "unsigned char mFountainFlag")
del_items(0x80119BD3)
SetType(0x80119BD3, "unsigned char pFountainFlag")
del_items(0x80119BD4)
SetType(0x80119BD4, "unsigned char tFountainFlag")
del_items(0x80119BD5)
SetType(0x80119BD5, "unsigned char treasureFlag")
del_items(0x80119BD8)
SetType(0x80119BD8, "unsigned char ThemeGoodIn[4]")
del_items(0x800FF82C)
SetType(0x800FF82C, "int ThemeGood[4]")
del_items(0x800FF83C)
SetType(0x800FF83C, "int trm5x[25]")
del_items(0x800FF8A0)
SetType(0x800FF8A0, "int trm5y[25]")
del_items(0x800FF904)
SetType(0x800FF904, "int trm3x[9]")
del_items(0x800FF928)
SetType(0x800FF928, "int trm3y[9]")
del_items(0x80119C90)
SetType(0x80119C90, "int nummissiles")
del_items(0x800FFB64)
SetType(0x800FFB64, "int missileactive[125]")
del_items(0x800FFD58)
SetType(0x800FFD58, "int missileavail[125]")
del_items(0x80119C94)
SetType(0x80119C94, "unsigned char MissilePreFlag")
del_items(0x800FFF4C)
SetType(0x800FFF4C, "struct MissileStruct missile[125]")
del_items(0x80119C95)
SetType(0x80119C95, "unsigned char ManashieldFlag")
del_items(0x80119C96)
SetType(0x80119C96, "unsigned char ManashieldFlag2")
del_items(0x800FFADC)
SetType(0x800FFADC, "int XDirAdd[8]")
del_items(0x800FFAFC)
SetType(0x800FFAFC, "int YDirAdd[8]")
del_items(0x80119C7D)
SetType(0x80119C7D, "unsigned char fadetor")
del_items(0x80119C7E)
SetType(0x80119C7E, "unsigned char fadetog")
del_items(0x80119C7F)
SetType(0x80119C7F, "unsigned char fadetob")
del_items(0x800FFB1C)
SetType(0x800FFB1C, "unsigned char ValueTable[16]")
del_items(0x800FFB2C)
SetType(0x800FFB2C, "unsigned char StringTable[9][6]")
del_items(0x801027FC)
SetType(0x801027FC, "struct MonsterStruct monster[200]")
del_items(0x80119CF4)
SetType(0x80119CF4, "long nummonsters")
del_items(0x80107F7C)
SetType(0x80107F7C, "short monstactive[200]")
del_items(0x8010810C)
SetType(0x8010810C, "short monstkills[200]")
del_items(0x8010829C)
SetType(0x8010829C, "struct CMonster Monsters[16]")
del_items(0x80119CF8)
SetType(0x80119CF8, "long monstimgtot")
del_items(0x80119CFC)
SetType(0x80119CFC, "char totalmonsters")
del_items(0x80119D00)
SetType(0x80119D00, "int uniquetrans")
del_items(0x8011A290)
SetType(0x8011A290, "unsigned char sgbSaveSoundOn")
del_items(0x80119CC8)
SetType(0x80119CC8, "char offset_x[8]")
del_items(0x80119CD0)
SetType(0x80119CD0, "char offset_y[8]")
del_items(0x80119CB0)
SetType(0x80119CB0, "char left[8]")
del_items(0x80119CB8)
SetType(0x80119CB8, "char right[8]")
del_items(0x80119CC0)
SetType(0x80119CC0, "char opposite[8]")
del_items(0x80119CA4)
SetType(0x80119CA4, "int nummtypes")
del_items(0x80119CA8)
SetType(0x80119CA8, "char animletter[7]")
del_items(0x8010265C)
SetType(0x8010265C, "int MWVel[3][24]")
del_items(0x80119CD8)
SetType(0x80119CD8, "char rnd5[4]")
del_items(0x80119CDC)
SetType(0x80119CDC, "char rnd10[4]")
del_items(0x80119CE0)
SetType(0x80119CE0, "char rnd20[4]")
del_items(0x80119CE4)
SetType(0x80119CE4, "char rnd60[4]")
del_items(0x8010277C)
SetType(0x8010277C, "void (*AiProc[32])()")
del_items(0x80108774)
SetType(0x80108774, "struct MonsterData monsterdata[112]")
del_items(0x8010A1B4)
SetType(0x8010A1B4, "char MonstConvTbl[128]")
del_items(0x8010A234)
SetType(0x8010A234, "char MonstAvailTbl[112]")
del_items(0x8010A2A4)
SetType(0x8010A2A4, "struct UniqMonstStruct UniqMonst[98]")
del_items(0x8010855C)
SetType(0x8010855C, "int TransPals[134]")
del_items(0x8010845C)
SetType(0x8010845C, "struct STONEPAL StonePals[32]")
del_items(0x80119D30)
SetType(0x80119D30, "unsigned char invflag")
del_items(0x80119D31)
SetType(0x80119D31, "unsigned char drawsbarflag")
del_items(0x80119D34)
SetType(0x80119D34, "int InvBackY")
del_items(0x80119D38)
SetType(0x80119D38, "int InvCursPos")
del_items(0x8010B24C)
SetType(0x8010B24C, "unsigned char InvSlotTable[73]")
del_items(0x80119D3C)
SetType(0x80119D3C, "int InvBackAY")
del_items(0x80119D40)
SetType(0x80119D40, "int InvSel")
del_items(0x80119D44)
SetType(0x80119D44, "int ItemW")
del_items(0x80119D48)
SetType(0x80119D48, "int ItemH")
del_items(0x80119D4C)
SetType(0x80119D4C, "int ItemNo")
del_items(0x80119D50)
SetType(0x80119D50, "struct RECT BRect")
del_items(0x80119D20)
SetType(0x80119D20, "struct TextDat *InvPanelTData")
del_items(0x80119D24)
SetType(0x80119D24, "struct TextDat *InvGfxTData")
del_items(0x80119D1C)
SetType(0x80119D1C, "int InvPageNo")
del_items(0x8010ABD4)
SetType(0x8010ABD4, "int AP2x2Tbl[10]")
del_items(0x8010ABFC)
SetType(0x8010ABFC, "struct InvXY InvRect[73]")
del_items(0x8010AE44)
SetType(0x8010AE44, "int InvGfxTable[168]")
del_items(0x8010B0E4)
SetType(0x8010B0E4, "unsigned char InvItemWidth[180]")
del_items(0x8010B198)
SetType(0x8010B198, "unsigned char InvItemHeight[180]")
del_items(0x80119D28)
SetType(0x80119D28, "bool InvOn")
del_items(0x80119D2C)
SetType(0x80119D2C, "unsigned long sgdwLastTime")
del_items(0x80119D7A)
SetType(0x80119D7A, "unsigned char automapflag")
del_items(0x8010B298)
SetType(0x8010B298, "unsigned char automapview[40][5]")
del_items(0x8010B360)
SetType(0x8010B360, "unsigned short automaptype[512]")
del_items(0x80119D7B)
SetType(0x80119D7B, "unsigned char AMLWallFlag")
del_items(0x80119D7C)
SetType(0x80119D7C, "unsigned char AMRWallFlag")
del_items(0x80119D7D)
SetType(0x80119D7D, "unsigned char AMLLWallFlag")
del_items(0x80119D7E)
SetType(0x80119D7E, "unsigned char AMLRWallFlag")
del_items(0x80119D7F)
SetType(0x80119D7F, "unsigned char AMDirtFlag")
del_items(0x80119D80)
SetType(0x80119D80, "unsigned char AMColumnFlag")
del_items(0x80119D81)
SetType(0x80119D81, "unsigned char AMStairFlag")
del_items(0x80119D82)
SetType(0x80119D82, "unsigned char AMLDoorFlag")
del_items(0x80119D83)
SetType(0x80119D83, "unsigned char AMLGrateFlag")
del_items(0x80119D84)
SetType(0x80119D84, "unsigned char AMLArchFlag")
del_items(0x80119D85)
SetType(0x80119D85, "unsigned char AMRDoorFlag")
del_items(0x80119D86)
SetType(0x80119D86, "unsigned char AMRGrateFlag")
del_items(0x80119D87)
SetType(0x80119D87, "unsigned char AMRArchFlag")
del_items(0x80119D88)
SetType(0x80119D88, "int AutoMapX")
del_items(0x80119D8C)
SetType(0x80119D8C, "int AutoMapY")
del_items(0x80119D90)
SetType(0x80119D90, "int AutoMapXOfs")
del_items(0x80119D94)
SetType(0x80119D94, "int AutoMapYOfs")
del_items(0x80119D98)
SetType(0x80119D98, "int AMPlayerX")
del_items(0x80119D9C)
SetType(0x80119D9C, "int AMPlayerY")
del_items(0x80119D64)
SetType(0x80119D64, "int AutoMapScale")
del_items(0x80119D68)
SetType(0x80119D68, "unsigned char AutoMapPlayerR")
del_items(0x80119D69)
SetType(0x80119D69, "unsigned char AutoMapPlayerG")
del_items(0x80119D6A)
SetType(0x80119D6A, "unsigned char AutoMapPlayerB")
del_items(0x80119D6B)
SetType(0x80119D6B, "unsigned char AutoMapWallR")
del_items(0x80119D6C)
SetType(0x80119D6C, "unsigned char AutoMapWallG")
del_items(0x80119D6D)
SetType(0x80119D6D, "unsigned char AutoMapWallB")
del_items(0x80119D6E)
SetType(0x80119D6E, "unsigned char AutoMapDoorR")
del_items(0x80119D6F)
SetType(0x80119D6F, "unsigned char AutoMapDoorG")
del_items(0x80119D70)
SetType(0x80119D70, "unsigned char AutoMapDoorB")
del_items(0x80119D71)
SetType(0x80119D71, "unsigned char AutoMapColumnR")
del_items(0x80119D72)
SetType(0x80119D72, "unsigned char AutoMapColumnG")
del_items(0x80119D73)
SetType(0x80119D73, "unsigned char AutoMapColumnB")
del_items(0x80119D74)
SetType(0x80119D74, "unsigned char AutoMapArchR")
del_items(0x80119D75)
SetType(0x80119D75, "unsigned char AutoMapArchG")
del_items(0x80119D76)
SetType(0x80119D76, "unsigned char AutoMapArchB")
del_items(0x80119D77)
SetType(0x80119D77, "unsigned char AutoMapStairR")
del_items(0x80119D78)
SetType(0x80119D78, "unsigned char AutoMapStairG")
del_items(0x80119D79)
SetType(0x80119D79, "unsigned char AutoMapStairB")
del_items(0x8011A3EC)
SetType(0x8011A3EC, "unsigned long GazTick")
del_items(0x80120D28)
SetType(0x80120D28, "unsigned long RndTabs[6]")
del_items(0x800A6368)
SetType(0x800A6368, "unsigned long DefaultRnd[6]")
del_items(0x8011A414)
SetType(0x8011A414, "void (*PollFunc)()")
del_items(0x8011A3F8)
SetType(0x8011A3F8, "void (*MsgFunc)()")
del_items(0x8011A444)
SetType(0x8011A444, "void (*ErrorFunc)()")
del_items(0x8011A318)
SetType(0x8011A318, "struct TASK *ActiveTasks")
del_items(0x8011A31C)
SetType(0x8011A31C, "struct TASK *CurrentTask")
del_items(0x8011A320)
SetType(0x8011A320, "struct TASK *T")
del_items(0x8011A324)
SetType(0x8011A324, "unsigned long MemTypeForTasker")
del_items(0x8011E558)
SetType(0x8011E558, "int SchEnv[12]")
del_items(0x8011A328)
SetType(0x8011A328, "unsigned long ExecId")
del_items(0x8011A32C)
SetType(0x8011A32C, "unsigned long ExecMask")
del_items(0x8011A330)
SetType(0x8011A330, "int TasksActive")
del_items(0x8011A334)
SetType(0x8011A334, "void (*EpiFunc)()")
del_items(0x8011A338)
SetType(0x8011A338, "void (*ProFunc)()")
del_items(0x8011A33C)
SetType(0x8011A33C, "unsigned long EpiProId")
del_items(0x8011A340)
SetType(0x8011A340, "unsigned long EpiProMask")
del_items(0x8011A344)
SetType(0x8011A344, "void (*DoTasksPrologue)()")
del_items(0x8011A348)
SetType(0x8011A348, "void (*DoTasksEpilogue)()")
del_items(0x8011A34C)
SetType(0x8011A34C, "void (*StackFloodCallback)()")
del_items(0x8011A350)
SetType(0x8011A350, "unsigned char ExtraStackProtection")
del_items(0x8011A354)
SetType(0x8011A354, "int ExtraStackSizeLongs")
del_items(0x8011A400)
SetType(0x8011A400, "void *LastPtr")
del_items(0x800A63A0)
SetType(0x800A63A0, "struct MEM_INFO WorkMemInfo")
del_items(0x8011A358)
SetType(0x8011A358, "struct MEM_INIT_INFO *MemInitBlocks")
del_items(0x8011E588)
SetType(0x8011E588, "struct MEM_HDR MemHdrBlocks[140]")
del_items(0x8011A35C)
SetType(0x8011A35C, "struct MEM_HDR *FreeBlocks")
del_items(0x8011A360)
SetType(0x8011A360, "enum GAL_ERROR_CODE LastError")
del_items(0x8011A364)
SetType(0x8011A364, "int TimeStamp")
del_items(0x8011A368)
SetType(0x8011A368, "unsigned char FullErrorChecking")
del_items(0x8011A36C)
SetType(0x8011A36C, "unsigned long LastAttemptedAlloc")
del_items(0x8011A370)
SetType(0x8011A370, "unsigned long LastDeallocedBlock")
del_items(0x8011A374)
SetType(0x8011A374, "enum GAL_VERB_LEV VerbLev")
del_items(0x8011A378)
SetType(0x8011A378, "int NumOfFreeHdrs")
del_items(0x8011A37C)
SetType(0x8011A37C, "unsigned long LastTypeAlloced")
del_items(0x8011A380)
SetType(0x8011A380, "void (*AllocFilter)()")
del_items(0x800A63A8)
SetType(0x800A63A8, "char *GalErrors[10]")
del_items(0x800A63D0)
SetType(0x800A63D0, "struct MEM_INIT_INFO PhantomMem")
del_items(0x8011F708)
SetType(0x8011F708, "char buf[4992]")
del_items(0x800A63F8)
SetType(0x800A63F8, "char NULL_REP[7]")
| del_items(2148632432)
set_type(2148632432, 'int NumOfMonsterListLevels')
del_items(2148169044)
set_type(2148169044, 'struct MonstLevel AllLevels[16]')
del_items(2148631660)
set_type(2148631660, 'unsigned char NumsLEV1M1A[4]')
del_items(2148631664)
set_type(2148631664, 'unsigned char NumsLEV1M1B[4]')
del_items(2148631668)
set_type(2148631668, 'unsigned char NumsLEV1M1C[5]')
del_items(2148631676)
set_type(2148631676, 'unsigned char NumsLEV2M2A[4]')
del_items(2148631680)
set_type(2148631680, 'unsigned char NumsLEV2M2B[4]')
del_items(2148631684)
set_type(2148631684, 'unsigned char NumsLEV2M2C[3]')
del_items(2148631688)
set_type(2148631688, 'unsigned char NumsLEV2M2D[4]')
del_items(2148631692)
set_type(2148631692, 'unsigned char NumsLEV2M2QA[4]')
del_items(2148631696)
set_type(2148631696, 'unsigned char NumsLEV2M2QB[4]')
del_items(2148631700)
set_type(2148631700, 'unsigned char NumsLEV3M3A[4]')
del_items(2148631704)
set_type(2148631704, 'unsigned char NumsLEV3M3QA[3]')
del_items(2148631708)
set_type(2148631708, 'unsigned char NumsLEV3M3B[4]')
del_items(2148631712)
set_type(2148631712, 'unsigned char NumsLEV3M3C[4]')
del_items(2148631716)
set_type(2148631716, 'unsigned char NumsLEV4M4A[4]')
del_items(2148631720)
set_type(2148631720, 'unsigned char NumsLEV4M4QA[4]')
del_items(2148631724)
set_type(2148631724, 'unsigned char NumsLEV4M4B[4]')
del_items(2148631728)
set_type(2148631728, 'unsigned char NumsLEV4M4QB[5]')
del_items(2148631736)
set_type(2148631736, 'unsigned char NumsLEV4M4C[4]')
del_items(2148631740)
set_type(2148631740, 'unsigned char NumsLEV4M4QC[5]')
del_items(2148631748)
set_type(2148631748, 'unsigned char NumsLEV4M4D[4]')
del_items(2148631752)
set_type(2148631752, 'unsigned char NumsLEV5M5A[4]')
del_items(2148631756)
set_type(2148631756, 'unsigned char NumsLEV5M5B[4]')
del_items(2148631760)
set_type(2148631760, 'unsigned char NumsLEV5M5C[4]')
del_items(2148631764)
set_type(2148631764, 'unsigned char NumsLEV5M5D[4]')
del_items(2148631768)
set_type(2148631768, 'unsigned char NumsLEV5M5E[4]')
del_items(2148631772)
set_type(2148631772, 'unsigned char NumsLEV5M5F[3]')
del_items(2148631776)
set_type(2148631776, 'unsigned char NumsLEV5M5QA[4]')
del_items(2148631780)
set_type(2148631780, 'unsigned char NumsLEV6M6A[5]')
del_items(2148631788)
set_type(2148631788, 'unsigned char NumsLEV6M6B[3]')
del_items(2148631792)
set_type(2148631792, 'unsigned char NumsLEV6M6C[4]')
del_items(2148631796)
set_type(2148631796, 'unsigned char NumsLEV6M6D[3]')
del_items(2148631800)
set_type(2148631800, 'unsigned char NumsLEV6M6E[3]')
del_items(2148631804)
set_type(2148631804, 'unsigned char NumsLEV7M7A[4]')
del_items(2148631808)
set_type(2148631808, 'unsigned char NumsLEV7M7B[4]')
del_items(2148631812)
set_type(2148631812, 'unsigned char NumsLEV7M7C[3]')
del_items(2148631816)
set_type(2148631816, 'unsigned char NumsLEV7M7D[2]')
del_items(2148631820)
set_type(2148631820, 'unsigned char NumsLEV7M7E[2]')
del_items(2148631824)
set_type(2148631824, 'unsigned char NumsLEV8M8QA[2]')
del_items(2148631828)
set_type(2148631828, 'unsigned char NumsLEV8M8A[3]')
del_items(2148631832)
set_type(2148631832, 'unsigned char NumsLEV8M8B[4]')
del_items(2148631836)
set_type(2148631836, 'unsigned char NumsLEV8M8C[3]')
del_items(2148631840)
set_type(2148631840, 'unsigned char NumsLEV8M8D[2]')
del_items(2148631844)
set_type(2148631844, 'unsigned char NumsLEV8M8E[2]')
del_items(2148631848)
set_type(2148631848, 'unsigned char NumsLEV9M9A[4]')
del_items(2148631852)
set_type(2148631852, 'unsigned char NumsLEV9M9B[3]')
del_items(2148631856)
set_type(2148631856, 'unsigned char NumsLEV9M9C[2]')
del_items(2148631860)
set_type(2148631860, 'unsigned char NumsLEV9M9D[2]')
del_items(2148631864)
set_type(2148631864, 'unsigned char NumsLEV10M10A[3]')
del_items(2148631868)
set_type(2148631868, 'unsigned char NumsLEV10M10B[2]')
del_items(2148631872)
set_type(2148631872, 'unsigned char NumsLEV10M10C[2]')
del_items(2148631876)
set_type(2148631876, 'unsigned char NumsLEV10M10D[2]')
del_items(2148631880)
set_type(2148631880, 'unsigned char NumsLEV10M10QA[3]')
del_items(2148631884)
set_type(2148631884, 'unsigned char NumsLEV11M11A[3]')
del_items(2148631888)
set_type(2148631888, 'unsigned char NumsLEV11M11B[3]')
del_items(2148631892)
set_type(2148631892, 'unsigned char NumsLEV11M11C[3]')
del_items(2148631896)
set_type(2148631896, 'unsigned char NumsLEV11M11D[3]')
del_items(2148631900)
set_type(2148631900, 'unsigned char NumsLEV11M11E[2]')
del_items(2148631904)
set_type(2148631904, 'unsigned char NumsLEV12M12A[3]')
del_items(2148631908)
set_type(2148631908, 'unsigned char NumsLEV12M12B[3]')
del_items(2148631912)
set_type(2148631912, 'unsigned char NumsLEV12M12C[3]')
del_items(2148631916)
set_type(2148631916, 'unsigned char NumsLEV12M12D[3]')
del_items(2148631920)
set_type(2148631920, 'unsigned char NumsLEV13M13A[3]')
del_items(2148631924)
set_type(2148631924, 'unsigned char NumsLEV13M13B[2]')
del_items(2148631928)
set_type(2148631928, 'unsigned char NumsLEV13M13QB[3]')
del_items(2148631932)
set_type(2148631932, 'unsigned char NumsLEV13M13C[3]')
del_items(2148631936)
set_type(2148631936, 'unsigned char NumsLEV13M13D[2]')
del_items(2148631940)
set_type(2148631940, 'unsigned char NumsLEV14M14A[3]')
del_items(2148631944)
set_type(2148631944, 'unsigned char NumsLEV14M14B[3]')
del_items(2148631948)
set_type(2148631948, 'unsigned char NumsLEV14M14QB[3]')
del_items(2148631952)
set_type(2148631952, 'unsigned char NumsLEV14M14C[3]')
del_items(2148631956)
set_type(2148631956, 'unsigned char NumsLEV14M14D[3]')
del_items(2148631960)
set_type(2148631960, 'unsigned char NumsLEV14M14E[2]')
del_items(2148631964)
set_type(2148631964, 'unsigned char NumsLEV15M15A[3]')
del_items(2148631968)
set_type(2148631968, 'unsigned char NumsLEV15M15B[3]')
del_items(2148631972)
set_type(2148631972, 'unsigned char NumsLEV15M15C[2]')
del_items(2148631976)
set_type(2148631976, 'unsigned char NumsLEV16M16D[3]')
del_items(2148167828)
set_type(2148167828, 'struct MonstList ChoiceListLEV1[3]')
del_items(2148167876)
set_type(2148167876, 'struct MonstList ChoiceListLEV2[6]')
del_items(2148167972)
set_type(2148167972, 'struct MonstList ChoiceListLEV3[4]')
del_items(2148168036)
set_type(2148168036, 'struct MonstList ChoiceListLEV4[7]')
del_items(2148168148)
set_type(2148168148, 'struct MonstList ChoiceListLEV5[7]')
del_items(2148168260)
set_type(2148168260, 'struct MonstList ChoiceListLEV6[5]')
del_items(2148168340)
set_type(2148168340, 'struct MonstList ChoiceListLEV7[5]')
del_items(2148168420)
set_type(2148168420, 'struct MonstList ChoiceListLEV8[6]')
del_items(2148168516)
set_type(2148168516, 'struct MonstList ChoiceListLEV9[4]')
del_items(2148168580)
set_type(2148168580, 'struct MonstList ChoiceListLEV10[5]')
del_items(2148168660)
set_type(2148168660, 'struct MonstList ChoiceListLEV11[5]')
del_items(2148168740)
set_type(2148168740, 'struct MonstList ChoiceListLEV12[4]')
del_items(2148168804)
set_type(2148168804, 'struct MonstList ChoiceListLEV13[5]')
del_items(2148168884)
set_type(2148168884, 'struct MonstList ChoiceListLEV14[6]')
del_items(2148168980)
set_type(2148168980, 'struct MonstList ChoiceListLEV15[3]')
del_items(2148169028)
set_type(2148169028, 'struct MonstList ChoiceListLEV16[1]')
del_items(2148638720)
set_type(2148638720, 'struct TASK *GameTaskPtr')
del_items(2148169172)
set_type(2148169172, 'struct LOAD_IMAGE_ARGS AllArgs[30]')
del_items(2148632448)
set_type(2148632448, 'int ArgsSoFar')
del_items(2148632452)
set_type(2148632452, 'unsigned long *ThisOt')
del_items(2148632456)
set_type(2148632456, 'struct POLY_FT4 *ThisPrimAddr')
del_items(2148638724)
set_type(2148638724, 'long hndPrimBuffers')
del_items(2148638728)
set_type(2148638728, 'struct PRIM_BUFFER *PrimBuffers')
del_items(2148638732)
set_type(2148638732, 'unsigned char BufferDepth')
del_items(2148638733)
set_type(2148638733, 'unsigned char WorkRamId')
del_items(2148638734)
set_type(2148638734, 'unsigned char ScrNum')
del_items(2148638736)
set_type(2148638736, 'struct SCREEN_ENV *Screens')
del_items(2148638740)
set_type(2148638740, 'struct PRIM_BUFFER *PbToClear')
del_items(2148638744)
set_type(2148638744, 'unsigned char BufferNum')
del_items(2148632460)
set_type(2148632460, 'struct POLY_FT4 *AddrToAvoid')
del_items(2148638745)
set_type(2148638745, 'unsigned char LastBuffer')
del_items(2148638748)
set_type(2148638748, 'struct DISPENV *DispEnvToPut')
del_items(2148638752)
set_type(2148638752, 'int ThisOtSize')
del_items(2148632464)
set_type(2148632464, 'struct RECT ScrRect')
del_items(2148638756)
set_type(2148638756, 'int VidWait')
del_items(2148639856)
set_type(2148639856, 'struct SCREEN_ENV screen[2]')
del_items(2148638760)
set_type(2148638760, 'void (*VbFunc)()')
del_items(2148638764)
set_type(2148638764, 'unsigned long VidTick')
del_items(2148638768)
set_type(2148638768, 'int VXOff')
del_items(2148638772)
set_type(2148638772, 'int VYOff')
del_items(2148632484)
set_type(2148632484, 'struct LNK_OPTS *Gaz')
del_items(2148632488)
set_type(2148632488, 'int LastFmem')
del_items(2148632472)
set_type(2148632472, 'unsigned int GSYS_MemStart')
del_items(2148632476)
set_type(2148632476, 'unsigned int GSYS_MemEnd')
del_items(2148170012)
set_type(2148170012, 'struct MEM_INIT_INFO PsxMem')
del_items(2148170052)
set_type(2148170052, 'struct MEM_INIT_INFO PsxFastMem')
del_items(2148632480)
set_type(2148632480, 'int LowestFmem')
del_items(2148632504)
set_type(2148632504, 'int FileSYS')
del_items(2148638776)
set_type(2148638776, 'struct FileIO *FileSystem')
del_items(2148638780)
set_type(2148638780, 'struct FileIO *OverlayFileSystem')
del_items(2148632530)
set_type(2148632530, 'short DavesPad')
del_items(2148632532)
set_type(2148632532, 'short DavesPadDeb')
del_items(2148170092)
set_type(2148170092, 'char _6FileIO_FileToLoad[50]')
del_items(2148640080)
set_type(2148640080, 'struct POLY_FT4 MyFT4')
del_items(2148172304)
set_type(2148172304, 'struct TextDat *AllDats[285]')
del_items(2148632612)
set_type(2148632612, 'int TpW')
del_items(2148632616)
set_type(2148632616, 'int TpH')
del_items(2148632620)
set_type(2148632620, 'int TpXDest')
del_items(2148632624)
set_type(2148632624, 'int TpYDest')
del_items(2148632628)
set_type(2148632628, 'struct RECT R')
del_items(2148173444)
set_type(2148173444, 'struct POLY_GT4 MyGT4')
del_items(2148173496)
set_type(2148173496, 'struct POLY_GT3 MyGT3')
del_items(2148170144)
set_type(2148170144, 'struct TextDat DatPool[20]')
del_items(2148632648)
set_type(2148632648, 'bool ChunkGot')
del_items(2148173536)
set_type(2148173536, 'char STREAM_DIR[16]')
del_items(2148173552)
set_type(2148173552, 'char STREAM_BIN[16]')
del_items(2148173568)
set_type(2148173568, 'unsigned char EAC_DirectoryCache[300]')
del_items(2148632672)
set_type(2148632672, 'unsigned long BL_NoLumpFiles')
del_items(2148632676)
set_type(2148632676, 'unsigned long BL_NoStreamFiles')
del_items(2148632680)
set_type(2148632680, 'struct STRHDR *LFileTab')
del_items(2148632684)
set_type(2148632684, 'struct STRHDR *SFileTab')
del_items(2148632688)
set_type(2148632688, 'unsigned char FileLoaded')
del_items(2148632736)
set_type(2148632736, 'int NoTAllocs')
del_items(2148173868)
set_type(2148173868, 'struct MEMSTRUCT MemBlock[50]')
del_items(2148638792)
set_type(2148638792, 'bool CanPause')
del_items(2148638796)
set_type(2148638796, 'bool Paused')
del_items(2148640120)
set_type(2148640120, 'struct Dialog PBack')
del_items(2148174484)
set_type(2148174484, 'unsigned char RawPadData0[34]')
del_items(2148174520)
set_type(2148174520, 'unsigned char RawPadData1[34]')
del_items(2148174556)
set_type(2148174556, 'unsigned char demo_buffer[1800]')
del_items(2148632780)
set_type(2148632780, 'int demo_pad_time')
del_items(2148632784)
set_type(2148632784, 'int demo_pad_count')
del_items(2148174268)
set_type(2148174268, 'struct CPad Pad0')
del_items(2148174376)
set_type(2148174376, 'struct CPad Pad1')
del_items(2148632788)
set_type(2148632788, 'unsigned long demo_finish')
del_items(2148632792)
set_type(2148632792, 'int cac_pad')
del_items(2148632820)
set_type(2148632820, 'struct POLY_FT4 *CharFt4')
del_items(2148632824)
set_type(2148632824, 'int CharFrm')
del_items(2148632805)
set_type(2148632805, 'unsigned char WHITER')
del_items(2148632806)
set_type(2148632806, 'unsigned char WHITEG')
del_items(2148632807)
set_type(2148632807, 'unsigned char WHITEB')
del_items(2148632808)
set_type(2148632808, 'unsigned char BLUER')
del_items(2148632809)
set_type(2148632809, 'unsigned char BLUEG')
del_items(2148632810)
set_type(2148632810, 'unsigned char BLUEB')
del_items(2148632811)
set_type(2148632811, 'unsigned char REDR')
del_items(2148632812)
set_type(2148632812, 'unsigned char REDG')
del_items(2148632813)
set_type(2148632813, 'unsigned char REDB')
del_items(2148632814)
set_type(2148632814, 'unsigned char GOLDR')
del_items(2148632815)
set_type(2148632815, 'unsigned char GOLDG')
del_items(2148632816)
set_type(2148632816, 'unsigned char GOLDB')
del_items(2148176356)
set_type(2148176356, 'struct CFont MediumFont')
del_items(2148176892)
set_type(2148176892, 'struct CFont LargeFont')
del_items(2148177428)
set_type(2148177428, 'struct FontItem LFontTab[90]')
del_items(2148177608)
set_type(2148177608, 'struct FontTab LFont')
del_items(2148177624)
set_type(2148177624, 'struct FontItem MFontTab[155]')
del_items(2148177936)
set_type(2148177936, 'struct FontTab MFont')
del_items(2148632845)
set_type(2148632845, 'unsigned char DialogRed')
del_items(2148632846)
set_type(2148632846, 'unsigned char DialogGreen')
del_items(2148632847)
set_type(2148632847, 'unsigned char DialogBlue')
del_items(2148632848)
set_type(2148632848, 'unsigned char DialogTRed')
del_items(2148632849)
set_type(2148632849, 'unsigned char DialogTGreen')
del_items(2148632850)
set_type(2148632850, 'unsigned char DialogTBlue')
del_items(2148632852)
set_type(2148632852, 'struct TextDat *DialogTData')
del_items(2148632856)
set_type(2148632856, 'int DialogBackGfx')
del_items(2148632860)
set_type(2148632860, 'int DialogBackW')
del_items(2148632864)
set_type(2148632864, 'int DialogBackH')
del_items(2148632868)
set_type(2148632868, 'int DialogBorderGfx')
del_items(2148632872)
set_type(2148632872, 'int DialogBorderTLW')
del_items(2148632876)
set_type(2148632876, 'int DialogBorderTLH')
del_items(2148632880)
set_type(2148632880, 'int DialogBorderTRW')
del_items(2148632884)
set_type(2148632884, 'int DialogBorderTRH')
del_items(2148632888)
set_type(2148632888, 'int DialogBorderBLW')
del_items(2148632892)
set_type(2148632892, 'int DialogBorderBLH')
del_items(2148632896)
set_type(2148632896, 'int DialogBorderBRW')
del_items(2148632900)
set_type(2148632900, 'int DialogBorderBRH')
del_items(2148632904)
set_type(2148632904, 'int DialogBorderTW')
del_items(2148632908)
set_type(2148632908, 'int DialogBorderTH')
del_items(2148632912)
set_type(2148632912, 'int DialogBorderBW')
del_items(2148632916)
set_type(2148632916, 'int DialogBorderBH')
del_items(2148632920)
set_type(2148632920, 'int DialogBorderLW')
del_items(2148632924)
set_type(2148632924, 'int DialogBorderLH')
del_items(2148632928)
set_type(2148632928, 'int DialogBorderRW')
del_items(2148632932)
set_type(2148632932, 'int DialogBorderRH')
del_items(2148632936)
set_type(2148632936, 'int DialogBevelGfx')
del_items(2148632940)
set_type(2148632940, 'int DialogBevelCW')
del_items(2148632944)
set_type(2148632944, 'int DialogBevelCH')
del_items(2148632948)
set_type(2148632948, 'int DialogBevelLRW')
del_items(2148632952)
set_type(2148632952, 'int DialogBevelLRH')
del_items(2148632956)
set_type(2148632956, 'int DialogBevelUDW')
del_items(2148632960)
set_type(2148632960, 'int DialogBevelUDH')
del_items(2148632964)
set_type(2148632964, 'int MY_DialogOTpos')
del_items(2148638800)
set_type(2148638800, 'unsigned char DialogGBack')
del_items(2148638801)
set_type(2148638801, 'char GShadeX')
del_items(2148638802)
set_type(2148638802, 'char GShadeY')
del_items(2148638808)
set_type(2148638808, 'unsigned char RandBTab[8]')
del_items(2148178016)
set_type(2148178016, 'int Cxy[28]')
del_items(2148632839)
set_type(2148632839, 'unsigned char BORDERR')
del_items(2148632840)
set_type(2148632840, 'unsigned char BORDERG')
del_items(2148632841)
set_type(2148632841, 'unsigned char BORDERB')
del_items(2148632842)
set_type(2148632842, 'unsigned char BACKR')
del_items(2148632843)
set_type(2148632843, 'unsigned char BACKG')
del_items(2148632844)
set_type(2148632844, 'unsigned char BACKB')
del_items(2148177952)
set_type(2148177952, 'char GShadeTab[64]')
del_items(2148632837)
set_type(2148632837, 'char GShadePX')
del_items(2148632838)
set_type(2148632838, 'char GShadePY')
del_items(2148632977)
set_type(2148632977, 'unsigned char PlayDemoFlag')
del_items(2148640136)
set_type(2148640136, 'struct RGBPOLY rgbb')
del_items(2148640184)
set_type(2148640184, 'struct RGBPOLY rgbt')
del_items(2148638816)
set_type(2148638816, 'int blockr')
del_items(2148638820)
set_type(2148638820, 'int blockg')
del_items(2148638824)
set_type(2148638824, 'int blockb')
del_items(2148638828)
set_type(2148638828, 'int InfraFlag')
del_items(2148638832)
set_type(2148638832, 'unsigned char blank_bit')
del_items(2148632997)
set_type(2148632997, 'unsigned char P1ObjSelCount')
del_items(2148632998)
set_type(2148632998, 'unsigned char P2ObjSelCount')
del_items(2148632999)
set_type(2148632999, 'unsigned char P12ObjSelCount')
del_items(2148633000)
set_type(2148633000, 'unsigned char P1ItemSelCount')
del_items(2148633001)
set_type(2148633001, 'unsigned char P2ItemSelCount')
del_items(2148633002)
set_type(2148633002, 'unsigned char P12ItemSelCount')
del_items(2148633003)
set_type(2148633003, 'unsigned char P1MonstSelCount')
del_items(2148633004)
set_type(2148633004, 'unsigned char P2MonstSelCount')
del_items(2148633005)
set_type(2148633005, 'unsigned char P12MonstSelCount')
del_items(2148633006)
set_type(2148633006, 'unsigned short P1ObjSelCol')
del_items(2148633008)
set_type(2148633008, 'unsigned short P2ObjSelCol')
del_items(2148633010)
set_type(2148633010, 'unsigned short P12ObjSelCol')
del_items(2148633012)
set_type(2148633012, 'unsigned short P1ItemSelCol')
del_items(2148633014)
set_type(2148633014, 'unsigned short P2ItemSelCol')
del_items(2148633016)
set_type(2148633016, 'unsigned short P12ItemSelCol')
del_items(2148633018)
set_type(2148633018, 'unsigned short P1MonstSelCol')
del_items(2148633020)
set_type(2148633020, 'unsigned short P2MonstSelCol')
del_items(2148633022)
set_type(2148633022, 'unsigned short P12MonstSelCol')
del_items(2148633024)
set_type(2148633024, 'struct CBlocks *CurrentBlocks')
del_items(2148590264)
set_type(2148590264, 'short SinTab[32]')
del_items(2148178128)
set_type(2148178128, 'struct TownToCreature TownConv[10]')
del_items(2148633052)
set_type(2148633052, 'enum OVER_TYPE CurrentOverlay')
del_items(2148590424)
set_type(2148590424, 'unsigned long HaltTab[3]')
del_items(2148640232)
set_type(2148640232, 'struct Overlay FrontEndOver')
del_items(2148640248)
set_type(2148640248, 'struct Overlay PregameOver')
del_items(2148640264)
set_type(2148640264, 'struct Overlay GameOver')
del_items(2148640280)
set_type(2148640280, 'struct Overlay FmvOver')
del_items(2148638836)
set_type(2148638836, 'int OWorldX')
del_items(2148638840)
set_type(2148638840, 'int OWorldY')
del_items(2148638844)
set_type(2148638844, 'int WWorldX')
del_items(2148638848)
set_type(2148638848, 'int WWorldY')
del_items(2148590548)
set_type(2148590548, 'short TxyAdd[16]')
del_items(2148633088)
set_type(2148633088, 'int GXAdj2')
del_items(2148638852)
set_type(2148638852, 'int TimePerFrame')
del_items(2148638856)
set_type(2148638856, 'int CpuStart')
del_items(2148638860)
set_type(2148638860, 'int CpuTime')
del_items(2148638864)
set_type(2148638864, 'int DrawTime')
del_items(2148638868)
set_type(2148638868, 'int DrawStart')
del_items(2148638872)
set_type(2148638872, 'int LastCpuTime')
del_items(2148638876)
set_type(2148638876, 'int LastDrawTime')
del_items(2148638880)
set_type(2148638880, 'int DrawArea')
del_items(2148633096)
set_type(2148633096, 'bool ProfOn')
del_items(2148178148)
set_type(2148178148, 'unsigned char LevPals[17]')
del_items(2148590908)
set_type(2148590908, 'unsigned short Level2Bgdata[25]')
del_items(2148178168)
set_type(2148178168, 'struct PanelXY DefP1PanelXY')
del_items(2148178252)
set_type(2148178252, 'struct PanelXY DefP1PanelXY2')
del_items(2148178336)
set_type(2148178336, 'struct PanelXY DefP2PanelXY')
del_items(2148178420)
set_type(2148178420, 'struct PanelXY DefP2PanelXY2')
del_items(2148178504)
set_type(2148178504, 'unsigned int SpeedBarGfxTable[50]')
del_items(2148633136)
set_type(2148633136, 'int hof')
del_items(2148633140)
set_type(2148633140, 'int mof')
del_items(2148178704)
set_type(2148178704, 'struct SFXHDR SFXTab[2]')
del_items(2148633196)
set_type(2148633196, 'unsigned long Time')
del_items(2148633200)
set_type(2148633200, 'bool CDWAIT')
del_items(2148178960)
set_type(2148178960, 'struct SpuVoiceAttr voice_attr')
del_items(2148633156)
set_type(2148633156, 'unsigned long *STR_Buffer')
del_items(2148633160)
set_type(2148633160, 'char NoActiveStreams')
del_items(2148633164)
set_type(2148633164, 'bool STRInit')
del_items(2148633168)
set_type(2148633168, 'unsigned char CDFlip')
del_items(2148633236)
set_type(2148633236, 'char SFXNotPlayed')
del_items(2148633237)
set_type(2148633237, 'char SFXNotInBank')
del_items(2148640296)
set_type(2148640296, 'char spu_management[264]')
del_items(2148640568)
set_type(2148640568, 'struct SpuReverbAttr rev_attr')
del_items(2148638888)
set_type(2148638888, 'unsigned short NoSfx')
del_items(2148633216)
set_type(2148633216, 'struct bank_entry *BankOffsets')
del_items(2148633220)
set_type(2148633220, 'long OffsetHandle')
del_items(2148633224)
set_type(2148633224, 'int BankBase')
del_items(2148633228)
set_type(2148633228, 'unsigned char SPU_Done')
del_items(2148591864)
set_type(2148591864, 'unsigned short SFXRemapTab[56]')
del_items(2148633232)
set_type(2148633232, 'int NoSNDRemaps')
del_items(2148179024)
set_type(2148179024, 'struct PalCollection ThePals')
del_items(2148592028)
set_type(2148592028, 'struct InitPos InitialPositions[20]')
del_items(2148633308)
set_type(2148633308, 'int demo_level')
del_items(2148640592)
set_type(2148640592, 'int buff[8]')
del_items(2148633312)
set_type(2148633312, 'int old_val')
del_items(2148633316)
set_type(2148633316, 'struct TASK *DemoTask')
del_items(2148633320)
set_type(2148633320, 'struct TASK *DemoGameTask')
del_items(2148633324)
set_type(2148633324, 'struct TASK *tonys')
del_items(2148633280)
set_type(2148633280, 'int demo_load')
del_items(2148633284)
set_type(2148633284, 'int demo_record_load')
del_items(2148633288)
set_type(2148633288, 'int level_record')
del_items(2148633292)
set_type(2148633292, 'char demo_fade_finished')
del_items(2148633293)
set_type(2148633293, 'unsigned char demo_which')
del_items(2148179516)
set_type(2148179516, 'unsigned long demolevel[5]')
del_items(2148633276)
set_type(2148633276, 'int moo_moo')
del_items(2148633294)
set_type(2148633294, 'unsigned char demo_flash')
del_items(2148633296)
set_type(2148633296, 'int tonys_Task')
del_items(2148633672)
set_type(2148633672, 'bool DoShowPanel')
del_items(2148633676)
set_type(2148633676, 'bool DoDrawBg')
del_items(2148638892)
set_type(2148638892, 'bool GlueFinished')
del_items(2148638896)
set_type(2148638896, 'bool DoHomingScroll')
del_items(2148638900)
set_type(2148638900, 'struct TextDat *TownerGfx')
del_items(2148638904)
set_type(2148638904, 'int CurrentMonsterList')
del_items(2148633337)
set_type(2148633337, 'char started_grtask')
del_items(2148179536)
set_type(2148179536, 'struct PInf PlayerInfo[81]')
del_items(2148633680)
set_type(2148633680, 'char ArmourChar[4]')
del_items(2148592272)
set_type(2148592272, 'char WepChar[10]')
del_items(2148633684)
set_type(2148633684, 'char CharChar[4]')
del_items(2148638908)
set_type(2148638908, 'char ctrl_select_line')
del_items(2148638909)
set_type(2148638909, 'char ctrl_select_side')
del_items(2148638910)
set_type(2148638910, 'char ckeyheld')
del_items(2148638916)
set_type(2148638916, 'struct RECT CtrlRect')
del_items(2148633704)
set_type(2148633704, 'unsigned char ctrlflag')
del_items(2148180352)
set_type(2148180352, 'struct KEY_ASSIGNS txt_actions[19]')
del_items(2148180184)
set_type(2148180184, 'struct pad_assigns pad_txt[14]')
del_items(2148633700)
set_type(2148633700, 'int toppos')
del_items(2148640624)
set_type(2148640624, 'struct Dialog CtrlBack')
del_items(2148180656)
set_type(2148180656, 'int controller_defaults[2][19]')
del_items(2148633816)
set_type(2148633816, 'int gr_scrxoff')
del_items(2148633820)
set_type(2148633820, 'int gr_scryoff')
del_items(2148633828)
set_type(2148633828, 'unsigned short water_clut')
del_items(2148633832)
set_type(2148633832, 'char visible_level')
del_items(2148633813)
set_type(2148633813, 'char last_type')
del_items(2148633834)
set_type(2148633834, 'char daylight')
del_items(2148633830)
set_type(2148633830, 'char cow_in_sight')
del_items(2148633831)
set_type(2148633831, 'char inn_in_sight')
del_items(2148633824)
set_type(2148633824, 'unsigned int water_count')
del_items(2148633833)
set_type(2148633833, 'unsigned char lastrnd')
del_items(2148633836)
set_type(2148633836, 'int call_clock')
del_items(2148633852)
set_type(2148633852, 'int TitleAnimCount')
del_items(2148633856)
set_type(2148633856, 'int flametick')
del_items(2148592452)
set_type(2148592452, 'unsigned char light_tile[55]')
del_items(2148180840)
set_type(2148180840, 'struct SPELLFX_DAT SpellFXDat[2]')
del_items(2148640640)
set_type(2148640640, 'struct Particle PartArray[16]')
del_items(2148638924)
set_type(2148638924, 'int partOtPos')
del_items(2148633884)
set_type(2148633884, 'int SetParticle')
del_items(2148633888)
set_type(2148633888, 'int p1partexecnum')
del_items(2148633892)
set_type(2148633892, 'int p2partexecnum')
del_items(2148180808)
set_type(2148180808, 'int JumpArray[8]')
del_items(2148633896)
set_type(2148633896, 'int partjumpflag')
del_items(2148633900)
set_type(2148633900, 'int partglowflag')
del_items(2148633904)
set_type(2148633904, 'int partcolour')
del_items(2148180984)
set_type(2148180984, 'struct Spell_Target SplTarget[2]')
del_items(2148633937)
set_type(2148633937, 'unsigned char select_flag')
del_items(2148638928)
set_type(2148638928, 'struct RECT SelectRect')
del_items(2148638936)
set_type(2148638936, 'char item_select')
del_items(2148633940)
set_type(2148633940, 'char QSpell[2]')
del_items(2148633944)
set_type(2148633944, 'char _spltotype[2]')
del_items(2148633948)
set_type(2148633948, 'bool force_attack[2]')
del_items(2148633924)
set_type(2148633924, 'struct CPlayer *gplayer')
del_items(2148641216)
set_type(2148641216, 'struct Dialog SelectBack')
del_items(2148633928)
set_type(2148633928, 'char mana_order[4]')
del_items(2148633932)
set_type(2148633932, 'char health_order[4]')
del_items(2148633936)
set_type(2148633936, 'unsigned char birdcheck')
del_items(2148641232)
set_type(2148641232, 'struct TextDat *DecRequestors[10]')
del_items(2148638940)
set_type(2148638940, 'unsigned short progress')
del_items(2148592728)
set_type(2148592728, 'unsigned short Level2CutScreen[21]')
del_items(2148633980)
set_type(2148633980, 'char *CutString')
del_items(2148641272)
set_type(2148641272, 'struct CScreen Scr')
del_items(2148633984)
set_type(2148633984, 'struct TASK *CutScreenTSK')
del_items(2148633988)
set_type(2148633988, 'bool GameLoading')
del_items(2148641400)
set_type(2148641400, 'struct Dialog LBack')
del_items(2148634004)
set_type(2148634004, 'unsigned int card_ev0')
del_items(2148634008)
set_type(2148634008, 'unsigned int card_ev1')
del_items(2148634012)
set_type(2148634012, 'unsigned int card_ev2')
del_items(2148634016)
set_type(2148634016, 'unsigned int card_ev3')
del_items(2148634020)
set_type(2148634020, 'unsigned int card_ev10')
del_items(2148634024)
set_type(2148634024, 'unsigned int card_ev11')
del_items(2148634028)
set_type(2148634028, 'unsigned int card_ev12')
del_items(2148634032)
set_type(2148634032, 'unsigned int card_ev13')
del_items(2148634036)
set_type(2148634036, 'int card_dirty[2]')
del_items(2148634044)
set_type(2148634044, 'struct TASK *MemcardTask')
del_items(2148638944)
set_type(2148638944, 'int card_event')
del_items(2148634000)
set_type(2148634000, 'void (*mem_card_event_handler)()')
del_items(2148633992)
set_type(2148633992, 'bool MemCardActive')
del_items(2148633996)
set_type(2148633996, 'int never_hooked_events')
del_items(2148634112)
set_type(2148634112, 'unsigned long MasterVol')
del_items(2148634116)
set_type(2148634116, 'unsigned long MusicVol')
del_items(2148634120)
set_type(2148634120, 'unsigned long SoundVol')
del_items(2148634124)
set_type(2148634124, 'unsigned long VideoVol')
del_items(2148634128)
set_type(2148634128, 'unsigned long SpeechVol')
del_items(2148638948)
set_type(2148638948, 'struct TextDat *Slider')
del_items(2148638952)
set_type(2148638952, 'int sw')
del_items(2148638956)
set_type(2148638956, 'int sx')
del_items(2148638960)
set_type(2148638960, 'int sy')
del_items(2148638964)
set_type(2148638964, 'unsigned char Adjust')
del_items(2148638965)
set_type(2148638965, 'unsigned char qspin')
del_items(2148638966)
set_type(2148638966, 'unsigned char lqspin')
del_items(2148638968)
set_type(2148638968, 'enum LANG_TYPE OrigLang')
del_items(2148638972)
set_type(2148638972, 'enum LANG_TYPE OldLang')
del_items(2148638976)
set_type(2148638976, 'enum LANG_TYPE NewLang')
del_items(2148634132)
set_type(2148634132, 'int ReturnMenu')
del_items(2148638980)
set_type(2148638980, 'struct RECT ORect')
del_items(2148638988)
set_type(2148638988, 'char *McState[2]')
del_items(2148634136)
set_type(2148634136, 'int they_pressed')
del_items(2148634084)
set_type(2148634084, 'bool optionsflag')
del_items(2148634072)
set_type(2148634072, 'int cmenu')
del_items(2148634092)
set_type(2148634092, 'int options_pad')
del_items(2148634104)
set_type(2148634104, 'char *PrevTxt')
del_items(2148634080)
set_type(2148634080, 'bool allspellsflag')
del_items(2148183136)
set_type(2148183136, 'short Circle[64]')
del_items(2148634060)
set_type(2148634060, 'int Spacing')
del_items(2148634064)
set_type(2148634064, 'int cs')
del_items(2148634068)
set_type(2148634068, 'int lastcs')
del_items(2148634076)
set_type(2148634076, 'bool MemcardOverlay')
del_items(2148634088)
set_type(2148634088, 'int saveflag')
del_items(2148181056)
set_type(2148181056, 'struct OMENUITEM MainMenu[7]')
del_items(2148181224)
set_type(2148181224, 'struct OMENUITEM GameMenu[9]')
del_items(2148181440)
set_type(2148181440, 'struct OMENUITEM SoundMenu[6]')
del_items(2148181584)
set_type(2148181584, 'struct OMENUITEM CentreMenu[7]')
del_items(2148181752)
set_type(2148181752, 'struct OMENUITEM LangMenu[7]')
del_items(2148181920)
set_type(2148181920, 'struct OMENUITEM MemcardMenu[4]')
del_items(2148182016)
set_type(2148182016, 'struct OMENUITEM MemcardGameMenu[6]')
del_items(2148182160)
set_type(2148182160, 'struct OMENUITEM MemcardCharacterMenu[4]')
del_items(2148182256)
set_type(2148182256, 'struct OMENUITEM MemcardSelectCard1[7]')
del_items(2148182424)
set_type(2148182424, 'struct OMENUITEM MemcardSelectCard2[7]')
del_items(2148182592)
set_type(2148182592, 'struct OMENUITEM MemcardFormatMenu[4]')
del_items(2148182688)
set_type(2148182688, 'struct OMENUITEM CheatMenu[9]')
del_items(2148182904)
set_type(2148182904, 'struct OMENUITEM InfoMenu[2]')
del_items(2148182952)
set_type(2148182952, 'struct OMENUITEM MonstViewMenu[3]')
del_items(2148183024)
set_type(2148183024, 'struct OMENULIST MenuList[14]')
del_items(2148634108)
set_type(2148634108, 'bool debounce')
del_items(2148183264)
set_type(2148183264, 'struct BIRDSTRUCT BirdList[16]')
del_items(2148634149)
set_type(2148634149, 'char hop_height')
del_items(2148634152)
set_type(2148634152, 'struct Perch perches[4]')
del_items(2148183648)
set_type(2148183648, 'char *FmvTab[4]')
del_items(2148634172)
set_type(2148634172, 'int CurMons')
del_items(2148634176)
set_type(2148634176, 'int Frame')
del_items(2148634180)
set_type(2148634180, 'int Action')
del_items(2148634184)
set_type(2148634184, 'int Dir')
del_items(2148634252)
set_type(2148634252, 'int indsize')
del_items(2148634256)
set_type(2148634256, 'unsigned char *kanjbuff')
del_items(2148634260)
set_type(2148634260, 'struct kindexS *kindex')
del_items(2148634264)
set_type(2148634264, 'long hndKanjBuff')
del_items(2148634268)
set_type(2148634268, 'long hndKanjIndex')
del_items(2148634356)
set_type(2148634356, 'int FeBackX')
del_items(2148634360)
set_type(2148634360, 'int FeBackY')
del_items(2148634364)
set_type(2148634364, 'int FeBackW')
del_items(2148634368)
set_type(2148634368, 'int FeBackH')
del_items(2148634372)
set_type(2148634372, 'unsigned char FeFlag')
del_items(2148186576)
set_type(2148186576, 'struct FeStruct FeBuffer[80]')
del_items(2148634376)
set_type(2148634376, 'int FePlayerNo')
del_items(2148638996)
set_type(2148638996, 'struct FE_CREATE *CStruct')
del_items(2148634380)
set_type(2148634380, 'int FeBufferCount')
del_items(2148634384)
set_type(2148634384, 'int FeNoOfPlayers')
del_items(2148634388)
set_type(2148634388, 'int FeChrClass[2]')
del_items(2148188496)
set_type(2148188496, 'char FePlayerName[11][2]')
del_items(2148634396)
set_type(2148634396, 'struct FeTable *FeCurMenu')
del_items(2148634400)
set_type(2148634400, 'unsigned char FePlayerNameFlag[2]')
del_items(2148634404)
set_type(2148634404, 'unsigned long FeCount')
del_items(2148634408)
set_type(2148634408, 'int fileselect')
del_items(2148634412)
set_type(2148634412, 'int BookMenu')
del_items(2148634416)
set_type(2148634416, 'int FeAttractMode')
del_items(2148634420)
set_type(2148634420, 'int FMVPress')
del_items(2148634308)
set_type(2148634308, 'struct TextDat *FeTData')
del_items(2148634316)
set_type(2148634316, 'bool LoadedChar[2]')
del_items(2148634312)
set_type(2148634312, 'struct TextDat *FlameTData')
del_items(2148634324)
set_type(2148634324, 'unsigned char FeIsAVirgin')
del_items(2148634328)
set_type(2148634328, 'int FeMenuDelay')
del_items(2148183664)
set_type(2148183664, 'struct FeTable DummyMenu')
del_items(2148183692)
set_type(2148183692, 'struct FeTable FeMainMenu')
del_items(2148183720)
set_type(2148183720, 'struct FeTable FeNewGameMenu')
del_items(2148183748)
set_type(2148183748, 'struct FeTable FeNewP1ClassMenu')
del_items(2148183776)
set_type(2148183776, 'struct FeTable FeNewP1NameMenu')
del_items(2148183804)
set_type(2148183804, 'struct FeTable FeNewP2ClassMenu')
del_items(2148183832)
set_type(2148183832, 'struct FeTable FeNewP2NameMenu')
del_items(2148183860)
set_type(2148183860, 'struct FeTable FeDifficultyMenu')
del_items(2148183888)
set_type(2148183888, 'struct FeTable FeBackgroundMenu')
del_items(2148183916)
set_type(2148183916, 'struct FeTable FeBook1Menu')
del_items(2148183944)
set_type(2148183944, 'struct FeTable FeBook2Menu')
del_items(2148183972)
set_type(2148183972, 'struct FeTable FeLoadCharMenu')
del_items(2148184000)
set_type(2148184000, 'struct FeTable FeLoadChar1Menu')
del_items(2148184028)
set_type(2148184028, 'struct FeTable FeLoadChar2Menu')
del_items(2148634332)
set_type(2148634332, 'int fadeval')
del_items(2148184056)
set_type(2148184056, 'struct FeMenuTable FeMainMenuTable[5]')
del_items(2148184176)
set_type(2148184176, 'struct FeMenuTable FeNewGameMenuTable[3]')
del_items(2148184248)
set_type(2148184248, 'struct FeMenuTable FePlayerClassMenuTable[5]')
del_items(2148184368)
set_type(2148184368, 'struct FeMenuTable FeNameEngMenuTable[71]')
del_items(2148186072)
set_type(2148186072, 'struct FeMenuTable FeMemcardMenuTable[3]')
del_items(2148186144)
set_type(2148186144, 'struct FeMenuTable FeDifficultyMenuTable[4]')
del_items(2148186240)
set_type(2148186240, 'struct FeMenuTable FeBackgroundMenuTable[4]')
del_items(2148186336)
set_type(2148186336, 'struct FeMenuTable FeBook1MenuTable[5]')
del_items(2148186456)
set_type(2148186456, 'struct FeMenuTable FeBook2MenuTable[5]')
del_items(2148634344)
set_type(2148634344, 'unsigned long AttractTitleDelay')
del_items(2148634348)
set_type(2148634348, 'unsigned long AttractMainDelay')
del_items(2148634352)
set_type(2148634352, 'int FMVEndPad')
del_items(2148634472)
set_type(2148634472, 'int InCredits')
del_items(2148634476)
set_type(2148634476, 'int CreditTitleNo')
del_items(2148634480)
set_type(2148634480, 'int CreditSubTitleNo')
del_items(2148634500)
set_type(2148634500, 'int card_status[2]')
del_items(2148634508)
set_type(2148634508, 'int card_usable[2]')
del_items(2148634516)
set_type(2148634516, 'int card_files[2]')
del_items(2148634524)
set_type(2148634524, 'int card_changed[2]')
del_items(2148634588)
set_type(2148634588, 'int AlertTxt')
del_items(2148634592)
set_type(2148634592, 'int current_card')
del_items(2148634596)
set_type(2148634596, 'int LoadType')
del_items(2148634600)
set_type(2148634600, 'int McMenuPos')
del_items(2148634604)
set_type(2148634604, 'struct FeTable *McCurMenu')
del_items(2148634584)
set_type(2148634584, 'bool fileinfoflag')
del_items(2148634544)
set_type(2148634544, 'char *DiabloGameFile')
del_items(2148634576)
set_type(2148634576, 'char *McState_addr_80118FD0[2]')
del_items(2148634816)
set_type(2148634816, 'int mdec_audio_buffer[2]')
del_items(2148634824)
set_type(2148634824, 'int mdec_audio_sec')
del_items(2148634828)
set_type(2148634828, 'int mdec_audio_offs')
del_items(2148634832)
set_type(2148634832, 'int mdec_audio_playing')
del_items(2148634836)
set_type(2148634836, 'int mdec_audio_rate_shift')
del_items(2148634840)
set_type(2148634840, 'char *vlcbuf[2]')
del_items(2148634848)
set_type(2148634848, 'int slice_size')
del_items(2148634852)
set_type(2148634852, 'struct RECT slice')
del_items(2148634860)
set_type(2148634860, 'int slice_inc')
del_items(2148634864)
set_type(2148634864, 'int area_pw')
del_items(2148634868)
set_type(2148634868, 'int area_ph')
del_items(2148634872)
set_type(2148634872, 'char tmdc_pol_dirty[2]')
del_items(2148634876)
set_type(2148634876, 'int num_pol[2]')
del_items(2148634884)
set_type(2148634884, 'int mdec_cx')
del_items(2148634888)
set_type(2148634888, 'int mdec_cy')
del_items(2148634892)
set_type(2148634892, 'int mdec_w')
del_items(2148634896)
set_type(2148634896, 'int mdec_h')
del_items(2148634900)
set_type(2148634900, 'int mdec_pw[2]')
del_items(2148634908)
set_type(2148634908, 'int mdec_ph[2]')
del_items(2148634916)
set_type(2148634916, 'int move_x')
del_items(2148634920)
set_type(2148634920, 'int move_y')
del_items(2148634924)
set_type(2148634924, 'int move_scale')
del_items(2148634928)
set_type(2148634928, 'int stream_frames')
del_items(2148634932)
set_type(2148634932, 'int last_stream_frame')
del_items(2148634936)
set_type(2148634936, 'int mdec_framecount')
del_items(2148634940)
set_type(2148634940, 'int mdec_speed')
del_items(2148634944)
set_type(2148634944, 'int mdec_stream_starting')
del_items(2148634948)
set_type(2148634948, 'int mdec_last_frame')
del_items(2148634952)
set_type(2148634952, 'int mdec_sectors_per_frame')
del_items(2148634956)
set_type(2148634956, 'unsigned short *vlctab')
del_items(2148634960)
set_type(2148634960, 'unsigned char *mdc_buftop')
del_items(2148634964)
set_type(2148634964, 'unsigned char *mdc_bufstart')
del_items(2148634968)
set_type(2148634968, 'int mdc_bufleft')
del_items(2148634972)
set_type(2148634972, 'int mdc_buftotal')
del_items(2148634976)
set_type(2148634976, 'int ordertab_length')
del_items(2148634980)
set_type(2148634980, 'int time_in_frames')
del_items(2148634984)
set_type(2148634984, 'int stream_chunksize')
del_items(2148634988)
set_type(2148634988, 'int stream_bufsize')
del_items(2148634992)
set_type(2148634992, 'int stream_subsec')
del_items(2148634996)
set_type(2148634996, 'int stream_secnum')
del_items(2148635000)
set_type(2148635000, 'int stream_last_sector')
del_items(2148635004)
set_type(2148635004, 'int stream_startsec')
del_items(2148635008)
set_type(2148635008, 'int stream_opened')
del_items(2148635012)
set_type(2148635012, 'int stream_last_chunk')
del_items(2148635016)
set_type(2148635016, 'int stream_got_chunks')
del_items(2148635020)
set_type(2148635020, 'int last_sector')
del_items(2148635024)
set_type(2148635024, 'int cdstream_resetsec')
del_items(2148635028)
set_type(2148635028, 'int last_handler_event')
del_items(2148634724)
set_type(2148634724, 'bool user_start')
del_items(2148634620)
set_type(2148634620, 'unsigned char *vlc_tab')
del_items(2148634624)
set_type(2148634624, 'unsigned char *vlc_buf')
del_items(2148634628)
set_type(2148634628, 'unsigned char *img_buf')
del_items(2148634632)
set_type(2148634632, 'int vbuf')
del_items(2148634636)
set_type(2148634636, 'int last_fn')
del_items(2148634640)
set_type(2148634640, 'int last_mdc')
del_items(2148634644)
set_type(2148634644, 'int slnum')
del_items(2148634648)
set_type(2148634648, 'int slices_to_do')
del_items(2148634652)
set_type(2148634652, 'int mbuf')
del_items(2148634656)
set_type(2148634656, 'int mfn')
del_items(2148634660)
set_type(2148634660, 'int last_move_mbuf')
del_items(2148634664)
set_type(2148634664, 'int move_request')
del_items(2148634668)
set_type(2148634668, 'int mdec_scale')
del_items(2148634672)
set_type(2148634672, 'int do_brightness')
del_items(2148634676)
set_type(2148634676, 'int frame_decoded')
del_items(2148634680)
set_type(2148634680, 'int mdec_streaming')
del_items(2148634684)
set_type(2148634684, 'int mdec_stream_size')
del_items(2148634688)
set_type(2148634688, 'int first_stream_frame')
del_items(2148634692)
set_type(2148634692, 'int stream_frames_played')
del_items(2148634696)
set_type(2148634696, 'int num_mdcs')
del_items(2148634700)
set_type(2148634700, 'int mdec_head')
del_items(2148634704)
set_type(2148634704, 'int mdec_tail')
del_items(2148634708)
set_type(2148634708, 'int mdec_waiting_tail')
del_items(2148634712)
set_type(2148634712, 'int mdecs_queued')
del_items(2148634716)
set_type(2148634716, 'int mdecs_waiting')
del_items(2148634720)
set_type(2148634720, 'int sfx_volume')
del_items(2148634728)
set_type(2148634728, 'int stream_chunks_in')
del_items(2148634732)
set_type(2148634732, 'int stream_chunks_total')
del_items(2148634736)
set_type(2148634736, 'int stream_in')
del_items(2148634740)
set_type(2148634740, 'int stream_out')
del_items(2148634744)
set_type(2148634744, 'int stream_stalled')
del_items(2148634748)
set_type(2148634748, 'int stream_ending')
del_items(2148634752)
set_type(2148634752, 'int stream_open')
del_items(2148634756)
set_type(2148634756, 'int stream_handler_installed')
del_items(2148634760)
set_type(2148634760, 'int stream_chunks_borrowed')
del_items(2148634764)
set_type(2148634764, 'int _get_count')
del_items(2148634768)
set_type(2148634768, 'int _discard_count')
del_items(2148634772)
set_type(2148634772, 'struct TASK *CDTask')
del_items(2148634776)
set_type(2148634776, 'struct cdstreamstruct *CDStream')
del_items(2148634780)
set_type(2148634780, 'int cdready_calls')
del_items(2148634784)
set_type(2148634784, 'int cdready_errors')
del_items(2148634788)
set_type(2148634788, 'int cdready_out_of_sync')
del_items(2148634792)
set_type(2148634792, 'int cdstream_resetting')
del_items(2148634796)
set_type(2148634796, 'int sector_dma')
del_items(2148634800)
set_type(2148634800, 'int sector_dma_in')
del_items(2148634804)
set_type(2148634804, 'unsigned long *chkaddr')
del_items(2148634808)
set_type(2148634808, 'struct chunkhdrstruct *chunk')
del_items(2148634812)
set_type(2148634812, 'int first_handler_event')
del_items(2148635188)
set_type(2148635188, 'unsigned char *pStatusPanel')
del_items(2148635192)
set_type(2148635192, 'unsigned char *pGBoxBuff')
del_items(2148635196)
set_type(2148635196, 'unsigned char dropGoldFlag')
del_items(2148635200)
set_type(2148635200, 'unsigned char _pinfoflag[2]')
del_items(2148190024)
set_type(2148190024, 'char _infostr[256][2]')
del_items(2148635204)
set_type(2148635204, 'char _infoclr[2]')
del_items(2148190536)
set_type(2148190536, 'char tempstr[256]')
del_items(2148635206)
set_type(2148635206, 'unsigned char drawhpflag')
del_items(2148635207)
set_type(2148635207, 'unsigned char drawmanaflag')
del_items(2148635208)
set_type(2148635208, 'unsigned char chrflag')
del_items(2148635209)
set_type(2148635209, 'unsigned char drawbtnflag')
del_items(2148635210)
set_type(2148635210, 'unsigned char panbtndown')
del_items(2148635211)
set_type(2148635211, 'unsigned char panelflag')
del_items(2148635212)
set_type(2148635212, 'unsigned char chrbtndown')
del_items(2148635213)
set_type(2148635213, 'unsigned char lvlbtndown')
del_items(2148635214)
set_type(2148635214, 'unsigned char sbookflag')
del_items(2148635215)
set_type(2148635215, 'unsigned char talkflag')
del_items(2148635216)
set_type(2148635216, 'int dropGoldValue')
del_items(2148635220)
set_type(2148635220, 'int initialDropGoldValue')
del_items(2148635224)
set_type(2148635224, 'int initialDropGoldIndex')
del_items(2148635228)
set_type(2148635228, 'unsigned char *pPanelButtons')
del_items(2148635232)
set_type(2148635232, 'unsigned char *pPanelText')
del_items(2148635236)
set_type(2148635236, 'unsigned char *pManaBuff')
del_items(2148635240)
set_type(2148635240, 'unsigned char *pLifeBuff')
del_items(2148635244)
set_type(2148635244, 'unsigned char *pChrPanel')
del_items(2148635248)
set_type(2148635248, 'unsigned char *pChrButtons')
del_items(2148635252)
set_type(2148635252, 'unsigned char *pSpellCels')
del_items(2148641480)
set_type(2148641480, 'char _panelstr[64][8][2]')
del_items(2148642504)
set_type(2148642504, 'int _pstrjust[8][2]')
del_items(2148639012)
set_type(2148639012, 'int _pnumlines[2]')
del_items(2148635256)
set_type(2148635256, 'struct RECT *InfoBoxRect')
del_items(2148635260)
set_type(2148635260, 'struct RECT CSRect')
del_items(2148639028)
set_type(2148639028, 'int _pSpell[2]')
del_items(2148639036)
set_type(2148639036, 'int _pSplType[2]')
del_items(2148639044)
set_type(2148639044, 'unsigned char panbtn[8]')
del_items(2148635268)
set_type(2148635268, 'int numpanbtns')
del_items(2148635272)
set_type(2148635272, 'unsigned char *pDurIcons')
del_items(2148635276)
set_type(2148635276, 'unsigned char drawdurflag')
del_items(2148639052)
set_type(2148639052, 'unsigned char chrbtn[4]')
del_items(2148635277)
set_type(2148635277, 'unsigned char chrbtnactive')
del_items(2148635280)
set_type(2148635280, 'unsigned char *pSpellBkCel')
del_items(2148635284)
set_type(2148635284, 'unsigned char *pSBkBtnCel')
del_items(2148635288)
set_type(2148635288, 'unsigned char *pSBkIconCels')
del_items(2148635292)
set_type(2148635292, 'int sbooktab')
del_items(2148635296)
set_type(2148635296, 'int cur_spel')
del_items(2148639056)
set_type(2148639056, 'long talkofs')
del_items(2148642584)
set_type(2148642584, 'char sgszTalkMsg[80]')
del_items(2148639060)
set_type(2148639060, 'unsigned char sgbTalkSavePos')
del_items(2148639061)
set_type(2148639061, 'unsigned char sgbNextTalkSave')
del_items(2148639062)
set_type(2148639062, 'unsigned char sgbPlrTalkTbl[2]')
del_items(2148639064)
set_type(2148639064, 'unsigned char *pTalkPanel')
del_items(2148639068)
set_type(2148639068, 'unsigned char *pMultiBtns')
del_items(2148639072)
set_type(2148639072, 'unsigned char *pTalkBtns')
del_items(2148639076)
set_type(2148639076, 'unsigned char talkbtndown[3]')
del_items(2148593676)
set_type(2148593676, 'unsigned char gbFontTransTbl[256]')
del_items(2148593484)
set_type(2148593484, 'unsigned char fontkern[68]')
del_items(2148188540)
set_type(2148188540, 'char SpellITbl[37]')
del_items(2148635041)
set_type(2148635041, 'unsigned char DrawLevelUpFlag')
del_items(2148635080)
set_type(2148635080, 'struct TASK *_spselflag[2]')
del_items(2148635076)
set_type(2148635076, 'unsigned char spspelstate')
del_items(2148635140)
set_type(2148635140, 'bool initchr')
del_items(2148635044)
set_type(2148635044, 'int SPLICONNO')
del_items(2148635048)
set_type(2148635048, 'int SPLICONY')
del_items(2148639020)
set_type(2148639020, 'int SPLICONRIGHT')
del_items(2148635052)
set_type(2148635052, 'int scx')
del_items(2148635056)
set_type(2148635056, 'int scy')
del_items(2148635060)
set_type(2148635060, 'int scx1')
del_items(2148635064)
set_type(2148635064, 'int scy1')
del_items(2148635068)
set_type(2148635068, 'int scx2')
del_items(2148635072)
set_type(2148635072, 'int scy2')
del_items(2148635088)
set_type(2148635088, 'char SpellCol')
del_items(2148188520)
set_type(2148188520, 'unsigned char SpellColors[18]')
del_items(2148188580)
set_type(2148188580, 'int PanBtnPos[5][8]')
del_items(2148188740)
set_type(2148188740, 'char *PanBtnHotKey[8]')
del_items(2148188772)
set_type(2148188772, 'unsigned long PanBtnStr[8]')
del_items(2148188804)
set_type(2148188804, 'int SpellPages[5][5]')
del_items(2148635124)
set_type(2148635124, 'int lus')
del_items(2148635128)
set_type(2148635128, 'int CsNo')
del_items(2148635132)
set_type(2148635132, 'char plusanim')
del_items(2148642568)
set_type(2148642568, 'struct Dialog CSBack')
del_items(2148635136)
set_type(2148635136, 'int CS_XOFF')
del_items(2148188904)
set_type(2148188904, 'struct CSDATA CS_Tab[28]')
del_items(2148635144)
set_type(2148635144, 'int NoCSEntries')
del_items(2148635148)
set_type(2148635148, 'int SPALOFF')
del_items(2148635152)
set_type(2148635152, 'int paloffset1')
del_items(2148635156)
set_type(2148635156, 'int paloffset2')
del_items(2148635160)
set_type(2148635160, 'int paloffset3')
del_items(2148635164)
set_type(2148635164, 'int paloffset4')
del_items(2148635168)
set_type(2148635168, 'int pinc1')
del_items(2148635172)
set_type(2148635172, 'int pinc2')
del_items(2148635176)
set_type(2148635176, 'int pinc3')
del_items(2148635180)
set_type(2148635180, 'int pinc4')
del_items(2148635316)
set_type(2148635316, 'int _pcurs[2]')
del_items(2148635324)
set_type(2148635324, 'int cursW')
del_items(2148635328)
set_type(2148635328, 'int cursH')
del_items(2148635332)
set_type(2148635332, 'int icursW')
del_items(2148635336)
set_type(2148635336, 'int icursH')
del_items(2148635340)
set_type(2148635340, 'int icursW28')
del_items(2148635344)
set_type(2148635344, 'int icursH28')
del_items(2148635348)
set_type(2148635348, 'int cursmx')
del_items(2148635352)
set_type(2148635352, 'int cursmy')
del_items(2148635356)
set_type(2148635356, 'int _pcursmonst[2]')
del_items(2148635364)
set_type(2148635364, 'char _pcursobj[2]')
del_items(2148635368)
set_type(2148635368, 'char _pcursitem[2]')
del_items(2148635372)
set_type(2148635372, 'char _pcursinvitem[2]')
del_items(2148635376)
set_type(2148635376, 'char _pcursplr[2]')
del_items(2148635312)
set_type(2148635312, 'int sel_data')
del_items(2148190792)
set_type(2148190792, 'struct DeadStruct dead[31]')
del_items(2148635380)
set_type(2148635380, 'int spurtndx')
del_items(2148635384)
set_type(2148635384, 'int stonendx')
del_items(2148635388)
set_type(2148635388, 'unsigned char *pSquareCel')
del_items(2148635452)
set_type(2148635452, 'unsigned long ghInst')
del_items(2148635456)
set_type(2148635456, 'unsigned char svgamode')
del_items(2148635460)
set_type(2148635460, 'int MouseX')
del_items(2148635464)
set_type(2148635464, 'int MouseY')
del_items(2148635468)
set_type(2148635468, 'long gv1')
del_items(2148635472)
set_type(2148635472, 'long gv2')
del_items(2148635476)
set_type(2148635476, 'long gv3')
del_items(2148635480)
set_type(2148635480, 'long gv4')
del_items(2148635484)
set_type(2148635484, 'long gv5')
del_items(2148635488)
set_type(2148635488, 'unsigned char gbProcessPlayers')
del_items(2148191164)
set_type(2148191164, 'int DebugMonsters[10]')
del_items(2148191204)
set_type(2148191204, 'unsigned long glSeedTbl[17]')
del_items(2148191272)
set_type(2148191272, 'int gnLevelTypeTbl[17]')
del_items(2148635489)
set_type(2148635489, 'unsigned char gbDoEnding')
del_items(2148635490)
set_type(2148635490, 'unsigned char gbRunGame')
del_items(2148635491)
set_type(2148635491, 'unsigned char gbRunGameResult')
del_items(2148635492)
set_type(2148635492, 'unsigned char gbGameLoopStartup')
del_items(2148642664)
set_type(2148642664, 'int glEndSeed[17]')
del_items(2148642744)
set_type(2148642744, 'int glMid1Seed[17]')
del_items(2148642824)
set_type(2148642824, 'int glMid2Seed[17]')
del_items(2148642904)
set_type(2148642904, 'int glMid3Seed[17]')
del_items(2148639080)
set_type(2148639080, 'long *sg_previousFilter')
del_items(2148191340)
set_type(2148191340, 'int CreateEnv[12]')
del_items(2148635496)
set_type(2148635496, 'int Passedlvldir')
del_items(2148635500)
set_type(2148635500, 'unsigned char *TempStack')
del_items(2148635404)
set_type(2148635404, 'unsigned long ghMainWnd')
del_items(2148635408)
set_type(2148635408, 'unsigned char fullscreen')
del_items(2148635412)
set_type(2148635412, 'int force_redraw')
del_items(2148635432)
set_type(2148635432, 'unsigned char PauseMode')
del_items(2148635433)
set_type(2148635433, 'unsigned char FriendlyMode')
del_items(2148635417)
set_type(2148635417, 'unsigned char visiondebug')
del_items(2148635419)
set_type(2148635419, 'unsigned char light4flag')
del_items(2148635420)
set_type(2148635420, 'unsigned char leveldebug')
del_items(2148635421)
set_type(2148635421, 'unsigned char monstdebug')
del_items(2148635428)
set_type(2148635428, 'int debugmonsttypes')
del_items(2148635416)
set_type(2148635416, 'unsigned char cineflag')
del_items(2148635418)
set_type(2148635418, 'unsigned char scrollflag')
del_items(2148635422)
set_type(2148635422, 'unsigned char trigdebug')
del_items(2148635424)
set_type(2148635424, 'int setseed')
del_items(2148635436)
set_type(2148635436, 'int sgnTimeoutCurs')
del_items(2148635440)
set_type(2148635440, 'unsigned char sgbMouseDown')
del_items(2148193080)
set_type(2148193080, 'struct TownerStruct towner[16]')
del_items(2148635524)
set_type(2148635524, 'int numtowners')
del_items(2148635528)
set_type(2148635528, 'unsigned char storeflag')
del_items(2148635529)
set_type(2148635529, 'unsigned char boyloadflag')
del_items(2148635530)
set_type(2148635530, 'unsigned char bannerflag')
del_items(2148635532)
set_type(2148635532, 'unsigned char *pCowCels')
del_items(2148639084)
set_type(2148639084, 'unsigned long sgdwCowClicks')
del_items(2148639088)
set_type(2148639088, 'int sgnCowMsg')
del_items(2148192376)
set_type(2148192376, 'int Qtalklist[16][11]')
del_items(2148635516)
set_type(2148635516, 'unsigned long CowPlaying')
del_items(2148191388)
set_type(2148191388, 'char AnimOrder[148][6]')
del_items(2148192276)
set_type(2148192276, 'int TownCowX[3]')
del_items(2148192288)
set_type(2148192288, 'int TownCowY[3]')
del_items(2148192300)
set_type(2148192300, 'int TownCowDir[3]')
del_items(2148192312)
set_type(2148192312, 'int cowoffx[8]')
del_items(2148192344)
set_type(2148192344, 'int cowoffy[8]')
del_items(2148635556)
set_type(2148635556, 'int sfxdelay')
del_items(2148635560)
set_type(2148635560, 'int sfxdnum')
del_items(2148635548)
set_type(2148635548, 'struct SFXHDR *sghStream')
del_items(2148196664)
set_type(2148196664, 'struct TSFX sgSFX[980]')
del_items(2148635552)
set_type(2148635552, 'struct TSFX *sgpStreamSFX')
del_items(2148635564)
set_type(2148635564, 'long orgseed')
del_items(2148639092)
set_type(2148639092, 'long sglGameSeed')
del_items(2148635568)
set_type(2148635568, 'int SeedCount')
del_items(2148639096)
set_type(2148639096, 'struct CCritSect sgMemCrit')
del_items(2148639100)
set_type(2148639100, 'int sgnWidth')
del_items(2148635582)
set_type(2148635582, 'char msgflag')
del_items(2148635583)
set_type(2148635583, 'char msgdelay')
del_items(2148200760)
set_type(2148200760, 'char msgtable[80]')
del_items(2148200584)
set_type(2148200584, 'int MsgStrings[44]')
del_items(2148635581)
set_type(2148635581, 'char msgcnt')
del_items(2148639104)
set_type(2148639104, 'unsigned long sgdwProgress')
del_items(2148639108)
set_type(2148639108, 'unsigned long sgdwXY')
del_items(2148200840)
set_type(2148200840, 'unsigned char AllItemsUseable[157]')
del_items(2148594756)
set_type(2148594756, 'struct ItemDataStruct AllItemsList[157]')
del_items(2148599780)
set_type(2148599780, 'struct PLStruct PL_Prefix[84]')
del_items(2148603140)
set_type(2148603140, 'struct PLStruct PL_Suffix[96]')
del_items(2148606980)
set_type(2148606980, 'struct UItemStruct UniqueItemList[91]')
del_items(2148201372)
set_type(2148201372, 'struct ItemStruct item[128]')
del_items(2148220828)
set_type(2148220828, 'char itemactive[127]')
del_items(2148220956)
set_type(2148220956, 'char itemavail[127]')
del_items(2148221084)
set_type(2148221084, 'unsigned char UniqueItemFlag[128]')
del_items(2148635640)
set_type(2148635640, 'unsigned char uitemflag')
del_items(2148639112)
set_type(2148639112, 'int tem')
del_items(2148642976)
set_type(2148642976, 'struct ItemStruct curruitem')
del_items(2148643136)
set_type(2148643136, 'unsigned char itemhold[3][3]')
del_items(2148635644)
set_type(2148635644, 'int ScrollType')
del_items(2148221212)
set_type(2148221212, 'char ItemStr[64]')
del_items(2148221276)
set_type(2148221276, 'char SufStr[64]')
del_items(2148635608)
set_type(2148635608, 'long numitems')
del_items(2148635612)
set_type(2148635612, 'int gnNumGetRecords')
del_items(2148201208)
set_type(2148201208, 'int ItemInvSnds[35]')
del_items(2148201000)
set_type(2148201000, 'unsigned char ItemCAnimTbl[169]')
del_items(2148614728)
set_type(2148614728, 'short Item2Frm[35]')
del_items(2148201172)
set_type(2148201172, 'unsigned char ItemAnimLs[35]')
del_items(2148635616)
set_type(2148635616, 'int *ItemAnimSnds')
del_items(2148635620)
set_type(2148635620, 'int idoppely')
del_items(2148635624)
set_type(2148635624, 'int ScrollFlag')
del_items(2148201348)
set_type(2148201348, 'int premiumlvladd[6]')
del_items(2148224840)
set_type(2148224840, 'struct LightListStruct2 LightList[40]')
del_items(2148225160)
set_type(2148225160, 'unsigned char lightactive[40]')
del_items(2148635664)
set_type(2148635664, 'int numlights')
del_items(2148635668)
set_type(2148635668, 'char lightmax')
del_items(2148225200)
set_type(2148225200, 'struct LightListStruct VisionList[32]')
del_items(2148635672)
set_type(2148635672, 'int numvision')
del_items(2148635676)
set_type(2148635676, 'unsigned char dovision')
del_items(2148635680)
set_type(2148635680, 'int visionid')
del_items(2148639116)
set_type(2148639116, 'int disp_mask')
del_items(2148639120)
set_type(2148639120, 'int weird')
del_items(2148639124)
set_type(2148639124, 'int disp_tab_r')
del_items(2148639128)
set_type(2148639128, 'int dispy_r')
del_items(2148639132)
set_type(2148639132, 'int disp_tab_g')
del_items(2148639136)
set_type(2148639136, 'int dispy_g')
del_items(2148639140)
set_type(2148639140, 'int disp_tab_b')
del_items(2148639144)
set_type(2148639144, 'int dispy_b')
del_items(2148639148)
set_type(2148639148, 'int radius')
del_items(2148639152)
set_type(2148639152, 'int bright')
del_items(2148643152)
set_type(2148643152, 'unsigned char mult_tab[128]')
del_items(2148635648)
set_type(2148635648, 'int lightflag')
del_items(2148224092)
set_type(2148224092, 'unsigned char vCrawlTable[30][23]')
del_items(2148224784)
set_type(2148224784, 'unsigned char RadiusAdj[23]')
del_items(2148221340)
set_type(2148221340, 'char CrawlTable[2749]')
del_items(2148635652)
set_type(2148635652, 'int restore_r')
del_items(2148635656)
set_type(2148635656, 'int restore_g')
del_items(2148635660)
set_type(2148635660, 'int restore_b')
del_items(2148224808)
set_type(2148224808, 'char radius_tab[16]')
del_items(2148224824)
set_type(2148224824, 'char bright_tab[16]')
del_items(2148635713)
set_type(2148635713, 'unsigned char qtextflag')
del_items(2148635716)
set_type(2148635716, 'int qtextSpd')
del_items(2148639156)
set_type(2148639156, 'unsigned char *pMedTextCels')
del_items(2148639160)
set_type(2148639160, 'unsigned char *pTextBoxCels')
del_items(2148639164)
set_type(2148639164, 'char *qtextptr')
del_items(2148639168)
set_type(2148639168, 'int qtexty')
del_items(2148639172)
set_type(2148639172, 'unsigned long qtextDelay')
del_items(2148639176)
set_type(2148639176, 'unsigned long sgLastScroll')
del_items(2148639180)
set_type(2148639180, 'unsigned long scrolltexty')
del_items(2148639184)
set_type(2148639184, 'long sglMusicVolumeSave')
del_items(2148635696)
set_type(2148635696, 'bool qtbodge')
del_items(2148225648)
set_type(2148225648, 'struct Dialog QBack')
del_items(2148225664)
set_type(2148225664, 'struct MissileData missiledata[68]')
del_items(2148227568)
set_type(2148227568, 'struct MisFileData misfiledata[47]')
del_items(2148227296)
set_type(2148227296, 'void (*MissPrintRoutines[68])()')
del_items(2148227804)
set_type(2148227804, 'struct DLevel sgLevels[21]')
del_items(2148309032)
set_type(2148309032, 'struct LocalLevel sgLocals[21]')
del_items(2148643280)
set_type(2148643280, 'struct DJunk sgJunk')
del_items(2148639189)
set_type(2148639189, 'unsigned char sgbRecvCmd')
del_items(2148639192)
set_type(2148639192, 'unsigned long sgdwRecvOffset')
del_items(2148639196)
set_type(2148639196, 'unsigned char sgbDeltaChunks')
del_items(2148639197)
set_type(2148639197, 'unsigned char sgbDeltaChanged')
del_items(2148639200)
set_type(2148639200, 'unsigned long sgdwOwnerWait')
del_items(2148639204)
set_type(2148639204, 'struct TMegaPkt *sgpMegaPkt')
del_items(2148639208)
set_type(2148639208, 'struct TMegaPkt *sgpCurrPkt')
del_items(2148639212)
set_type(2148639212, 'int sgnCurrMegaPlayer')
del_items(2148635741)
set_type(2148635741, 'unsigned char deltaload')
del_items(2148635742)
set_type(2148635742, 'unsigned char gbBufferMsgs')
del_items(2148635744)
set_type(2148635744, 'unsigned long dwRecCount')
del_items(2148635748)
set_type(2148635748, 'bool LevelOut')
del_items(2148635770)
set_type(2148635770, 'unsigned char gbMaxPlayers')
del_items(2148635771)
set_type(2148635771, 'unsigned char gbActivePlayers')
del_items(2148635772)
set_type(2148635772, 'unsigned char gbGameDestroyed')
del_items(2148635773)
set_type(2148635773, 'unsigned char gbDeltaSender')
del_items(2148635774)
set_type(2148635774, 'unsigned char gbSelectProvider')
del_items(2148635775)
set_type(2148635775, 'unsigned char gbSomebodyWonGameKludge')
del_items(2148639216)
set_type(2148639216, 'unsigned char sgbSentThisCycle')
del_items(2148639220)
set_type(2148639220, 'unsigned long sgdwGameLoops')
del_items(2148639224)
set_type(2148639224, 'unsigned short sgwPackPlrOffsetTbl[2]')
del_items(2148639228)
set_type(2148639228, 'unsigned char sgbPlayerLeftGameTbl[2]')
del_items(2148639232)
set_type(2148639232, 'unsigned long sgdwPlayerLeftReasonTbl[2]')
del_items(2148639240)
set_type(2148639240, 'unsigned char sgbSendDeltaTbl[2]')
del_items(2148639248)
set_type(2148639248, 'struct _gamedata sgGameInitInfo')
del_items(2148639256)
set_type(2148639256, 'unsigned char sgbTimeout')
del_items(2148639260)
set_type(2148639260, 'long sglTimeoutStart')
del_items(2148635764)
set_type(2148635764, 'char gszVersionNumber[5]')
del_items(2148635769)
set_type(2148635769, 'unsigned char sgbNetInited')
del_items(2148313232)
set_type(2148313232, 'int ObjTypeConv[113]')
del_items(2148313684)
set_type(2148313684, 'struct ObjDataStruct AllObjects[99]')
del_items(2148616464)
set_type(2148616464, 'struct OBJ_LOAD_INFO ObjMasterLoadList[56]')
del_items(2148315700)
set_type(2148315700, 'struct ObjectStruct object[127]')
del_items(2148635808)
set_type(2148635808, 'long numobjects')
del_items(2148321288)
set_type(2148321288, 'char objectactive[127]')
del_items(2148321416)
set_type(2148321416, 'char objectavail[127]')
del_items(2148635812)
set_type(2148635812, 'unsigned char InitObjFlag')
del_items(2148635816)
set_type(2148635816, 'int trapid')
del_items(2148321544)
set_type(2148321544, 'char ObjFileList[40]')
del_items(2148635820)
set_type(2148635820, 'int trapdir')
del_items(2148635824)
set_type(2148635824, 'int leverid')
del_items(2148635800)
set_type(2148635800, 'int numobjfiles')
del_items(2148315468)
set_type(2148315468, 'int bxadd[8]')
del_items(2148315500)
set_type(2148315500, 'int byadd[8]')
del_items(2148315636)
set_type(2148315636, 'char shrineavail[26]')
del_items(2148315532)
set_type(2148315532, 'int shrinestrs[26]')
del_items(2148315664)
set_type(2148315664, 'int StoryBookName[9]')
del_items(2148635804)
set_type(2148635804, 'int myscale')
del_items(2148635844)
set_type(2148635844, 'unsigned char gbValidSaveFile')
del_items(2148635840)
set_type(2148635840, 'bool DoLoadedChar')
del_items(2148322088)
set_type(2148322088, 'struct PlayerStruct plr[2]')
del_items(2148635876)
set_type(2148635876, 'int myplr')
del_items(2148635880)
set_type(2148635880, 'int deathdelay')
del_items(2148635884)
set_type(2148635884, 'unsigned char deathflag')
del_items(2148635885)
set_type(2148635885, 'char light_rad')
del_items(2148635868)
set_type(2148635868, 'char light_level[5]')
del_items(2148321824)
set_type(2148321824, 'int MaxStats[4][3]')
del_items(2148635860)
set_type(2148635860, 'int PlrStructSize')
del_items(2148635864)
set_type(2148635864, 'int ItemStructSize')
del_items(2148321584)
set_type(2148321584, 'int plrxoff[9]')
del_items(2148321620)
set_type(2148321620, 'int plryoff[9]')
del_items(2148321656)
set_type(2148321656, 'int plrxoff2[9]')
del_items(2148321692)
set_type(2148321692, 'int plryoff2[9]')
del_items(2148321728)
set_type(2148321728, 'char PlrGFXAnimLens[11][3]')
del_items(2148321764)
set_type(2148321764, 'int StrengthTbl[3]')
del_items(2148321776)
set_type(2148321776, 'int MagicTbl[3]')
del_items(2148321788)
set_type(2148321788, 'int DexterityTbl[3]')
del_items(2148321800)
set_type(2148321800, 'int VitalityTbl[3]')
del_items(2148321812)
set_type(2148321812, 'int ToBlkTbl[3]')
del_items(2148321872)
set_type(2148321872, 'long ExpLvlsTbl[51]')
del_items(2148340656)
set_type(2148340656, 'struct QuestStruct quests[16]')
del_items(2148635948)
set_type(2148635948, 'unsigned char *pQLogCel')
del_items(2148635952)
set_type(2148635952, 'int ReturnLvlX')
del_items(2148635956)
set_type(2148635956, 'int ReturnLvlY')
del_items(2148635960)
set_type(2148635960, 'int ReturnLvl')
del_items(2148635964)
set_type(2148635964, 'int ReturnLvlT')
del_items(2148635968)
set_type(2148635968, 'unsigned char rporttest')
del_items(2148635972)
set_type(2148635972, 'int qline')
del_items(2148635976)
set_type(2148635976, 'int numqlines')
del_items(2148635980)
set_type(2148635980, 'int qtopline')
del_items(2148643304)
set_type(2148643304, 'int qlist[16]')
del_items(2148639264)
set_type(2148639264, 'struct RECT QSRect')
del_items(2148635897)
set_type(2148635897, 'unsigned char questlog')
del_items(2148340344)
set_type(2148340344, 'struct QuestData questlist[16]')
del_items(2148635900)
set_type(2148635900, 'int ALLQUESTS')
del_items(2148340620)
set_type(2148340620, 'int QuestGroup1[3]')
del_items(2148340632)
set_type(2148340632, 'int QuestGroup2[3]')
del_items(2148340644)
set_type(2148340644, 'int QuestGroup3[3]')
del_items(2148635920)
set_type(2148635920, 'int QuestGroup4[2]')
del_items(2148635944)
set_type(2148635944, 'bool WaterDone')
del_items(2148635904)
set_type(2148635904, 'char questxoff[7]')
del_items(2148635912)
set_type(2148635912, 'char questyoff[7]')
del_items(2148340600)
set_type(2148340600, 'int questtrigstr[5]')
del_items(2148635928)
set_type(2148635928, 'int QS_PX')
del_items(2148635932)
set_type(2148635932, 'int QS_PY')
del_items(2148635936)
set_type(2148635936, 'int QS_PW')
del_items(2148635940)
set_type(2148635940, 'int QS_PH')
del_items(2148643368)
set_type(2148643368, 'struct Dialog QSBack')
del_items(2148340976)
set_type(2148340976, 'struct SpellData spelldata[37]')
del_items(2148636039)
set_type(2148636039, 'char stextflag')
del_items(2148343192)
set_type(2148343192, 'struct ItemStruct smithitem[20]')
del_items(2148346232)
set_type(2148346232, 'struct ItemStruct premiumitem[6]')
del_items(2148636040)
set_type(2148636040, 'int numpremium')
del_items(2148636044)
set_type(2148636044, 'int premiumlevel')
del_items(2148347144)
set_type(2148347144, 'struct ItemStruct witchitem[20]')
del_items(2148350184)
set_type(2148350184, 'struct ItemStruct boyitem')
del_items(2148636048)
set_type(2148636048, 'int boylevel')
del_items(2148350336)
set_type(2148350336, 'struct ItemStruct golditem')
del_items(2148350488)
set_type(2148350488, 'struct ItemStruct healitem[20]')
del_items(2148636052)
set_type(2148636052, 'char stextsize')
del_items(2148636053)
set_type(2148636053, 'unsigned char stextscrl')
del_items(2148639272)
set_type(2148639272, 'int stextsel')
del_items(2148639276)
set_type(2148639276, 'int stextlhold')
del_items(2148639280)
set_type(2148639280, 'int stextshold')
del_items(2148639284)
set_type(2148639284, 'int stextvhold')
del_items(2148639288)
set_type(2148639288, 'int stextsval')
del_items(2148639292)
set_type(2148639292, 'int stextsmax')
del_items(2148639296)
set_type(2148639296, 'int stextup')
del_items(2148639300)
set_type(2148639300, 'int stextdown')
del_items(2148639304)
set_type(2148639304, 'char stextscrlubtn')
del_items(2148639305)
set_type(2148639305, 'char stextscrldbtn')
del_items(2148639306)
set_type(2148639306, 'char SItemListFlag')
del_items(2148643384)
set_type(2148643384, 'struct STextStruct stext[24]')
del_items(2148353528)
set_type(2148353528, 'struct ItemStruct storehold[48]')
del_items(2148360824)
set_type(2148360824, 'char storehidx[48]')
del_items(2148639308)
set_type(2148639308, 'int storenumh')
del_items(2148639312)
set_type(2148639312, 'int gossipstart')
del_items(2148639316)
set_type(2148639316, 'int gossipend')
del_items(2148639320)
set_type(2148639320, 'struct RECT StoreBackRect')
del_items(2148639328)
set_type(2148639328, 'int talker')
del_items(2148636020)
set_type(2148636020, 'unsigned char *pSTextBoxCels')
del_items(2148636024)
set_type(2148636024, 'unsigned char *pSTextSlidCels')
del_items(2148636028)
set_type(2148636028, 'int *SStringY')
del_items(2148342900)
set_type(2148342900, 'struct Dialog SBack')
del_items(2148342916)
set_type(2148342916, 'int SStringYNorm[20]')
del_items(2148342996)
set_type(2148342996, 'int SStringYBuy0[20]')
del_items(2148343076)
set_type(2148343076, 'int SStringYBuy1[20]')
del_items(2148343156)
set_type(2148343156, 'int talkname[9]')
del_items(2148636038)
set_type(2148636038, 'unsigned char InStoreFlag')
del_items(2148621156)
set_type(2148621156, 'struct TextDataStruct alltext[269]')
del_items(2148636068)
set_type(2148636068, 'unsigned long gdwAllTextEntries')
del_items(2148639332)
set_type(2148639332, 'unsigned char *P3Tiles')
del_items(2148636084)
set_type(2148636084, 'int tile')
del_items(2148636100)
set_type(2148636100, 'unsigned char _trigflag[2]')
del_items(2148361440)
set_type(2148361440, 'struct TriggerStruct trigs[5]')
del_items(2148636104)
set_type(2148636104, 'int numtrigs')
del_items(2148636108)
set_type(2148636108, 'unsigned char townwarps[3]')
del_items(2148636112)
set_type(2148636112, 'int TWarpFrom')
del_items(2148360872)
set_type(2148360872, 'int TownDownList[11]')
del_items(2148360916)
set_type(2148360916, 'int TownWarp1List[13]')
del_items(2148360968)
set_type(2148360968, 'int L1UpList[12]')
del_items(2148361016)
set_type(2148361016, 'int L1DownList[10]')
del_items(2148361056)
set_type(2148361056, 'int L2UpList[3]')
del_items(2148361068)
set_type(2148361068, 'int L2DownList[5]')
del_items(2148361088)
set_type(2148361088, 'int L2TWarpUpList[3]')
del_items(2148361100)
set_type(2148361100, 'int L3UpList[15]')
del_items(2148361160)
set_type(2148361160, 'int L3DownList[9]')
del_items(2148361196)
set_type(2148361196, 'int L3TWarpUpList[14]')
del_items(2148361252)
set_type(2148361252, 'int L4UpList[4]')
del_items(2148361268)
set_type(2148361268, 'int L4DownList[6]')
del_items(2148361292)
set_type(2148361292, 'int L4TWarpUpList[4]')
del_items(2148361308)
set_type(2148361308, 'int L4PentaList[33]')
del_items(2148624628)
set_type(2148624628, 'char cursoff[10]')
del_items(2148636138)
set_type(2148636138, 'unsigned char gbMusicOn')
del_items(2148636139)
set_type(2148636139, 'unsigned char gbSoundOn')
del_items(2148636137)
set_type(2148636137, 'unsigned char gbSndInited')
del_items(2148636144)
set_type(2148636144, 'long sglMasterVolume')
del_items(2148636148)
set_type(2148636148, 'long sglMusicVolume')
del_items(2148636152)
set_type(2148636152, 'long sglSoundVolume')
del_items(2148636156)
set_type(2148636156, 'long sglSpeechVolume')
del_items(2148636160)
set_type(2148636160, 'int sgnMusicTrack')
del_items(2148636140)
set_type(2148636140, 'unsigned char gbDupSounds')
del_items(2148636164)
set_type(2148636164, 'struct SFXHDR *sghMusic')
del_items(2148624800)
set_type(2148624800, 'unsigned short sgszMusicTracks[6]')
del_items(2148636200)
set_type(2148636200, 'int _pcurr_inv[2]')
del_items(2148361520)
set_type(2148361520, 'struct found_objects _pfind_list[10][2]')
del_items(2148636208)
set_type(2148636208, 'char _pfind_index[2]')
del_items(2148636212)
set_type(2148636212, 'char _pfindx[2]')
del_items(2148636216)
set_type(2148636216, 'char _pfindy[2]')
del_items(2148636218)
set_type(2148636218, 'unsigned char automapmoved')
del_items(2148636188)
set_type(2148636188, 'unsigned char flyflag')
del_items(2148636180)
set_type(2148636180, 'char (*pad_styles[2])()')
del_items(2148636189)
set_type(2148636189, 'char speed_type')
del_items(2148636190)
set_type(2148636190, 'char sel_speed')
del_items(2148639336)
set_type(2148639336, 'unsigned long (*CurrentProc)()')
del_items(2148625212)
set_type(2148625212, 'struct MESSAGE_STR AllMsgs[12]')
del_items(2148636276)
set_type(2148636276, 'int NumOfStrings')
del_items(2148636232)
set_type(2148636232, 'enum LANG_TYPE LanguageType')
del_items(2148636236)
set_type(2148636236, 'long hndText')
del_items(2148636240)
set_type(2148636240, 'char **TextPtr')
del_items(2148636244)
set_type(2148636244, 'enum LANG_DB_NO LangDbNo')
del_items(2148636292)
set_type(2148636292, 'struct TextDat *MissDat')
del_items(2148636296)
set_type(2148636296, 'int CharFade')
del_items(2148636300)
set_type(2148636300, 'int rotateness')
del_items(2148636304)
set_type(2148636304, 'int spiralling_shape')
del_items(2148636308)
set_type(2148636308, 'int down')
del_items(2148361600)
set_type(2148361600, 'char MlTab[16]')
del_items(2148361616)
set_type(2148361616, 'char QlTab[16]')
del_items(2148361632)
set_type(2148361632, 'struct POLY_FT4 *(*ObjPrintFuncs[98])()')
del_items(2148636336)
set_type(2148636336, 'int MyXoff1')
del_items(2148636340)
set_type(2148636340, 'int MyYoff1')
del_items(2148636344)
set_type(2148636344, 'int MyXoff2')
del_items(2148636348)
set_type(2148636348, 'int MyYoff2')
del_items(2148636364)
set_type(2148636364, 'bool iscflag')
del_items(2148636377)
set_type(2148636377, 'unsigned char sgbFadedIn')
del_items(2148636378)
set_type(2148636378, 'unsigned char screenbright')
del_items(2148636380)
set_type(2148636380, 'int faderate')
del_items(2148636384)
set_type(2148636384, 'bool fading')
del_items(2148636396)
set_type(2148636396, 'unsigned char FadeCoords[8]')
del_items(2148636388)
set_type(2148636388, 'int st')
del_items(2148636392)
set_type(2148636392, 'int mode')
del_items(2148362024)
set_type(2148362024, 'struct PortalStruct portal[2]')
del_items(2148636446)
set_type(2148636446, 'char portalindex')
del_items(2148636440)
set_type(2148636440, 'char WarpDropX[2]')
del_items(2148636444)
set_type(2148636444, 'char WarpDropY[2]')
del_items(2148362048)
set_type(2148362048, 'char MyVerString[120]')
del_items(2148636816)
set_type(2148636816, 'int Year')
del_items(2148636820)
set_type(2148636820, 'int Day')
del_items(2148639340)
set_type(2148639340, 'unsigned char *tbuff')
del_items(2148362168)
set_type(2148362168, 'unsigned char IconBuffer[768]')
del_items(2148639344)
set_type(2148639344, 'unsigned char HR1')
del_items(2148639345)
set_type(2148639345, 'unsigned char HR2')
del_items(2148639346)
set_type(2148639346, 'unsigned char HR3')
del_items(2148639347)
set_type(2148639347, 'unsigned char VR1')
del_items(2148639348)
set_type(2148639348, 'unsigned char VR2')
del_items(2148639349)
set_type(2148639349, 'unsigned char VR3')
del_items(2148636932)
set_type(2148636932, 'struct NODE *pHallList')
del_items(2148636936)
set_type(2148636936, 'int nRoomCnt')
del_items(2148636940)
set_type(2148636940, 'int nSx1')
del_items(2148636944)
set_type(2148636944, 'int nSy1')
del_items(2148636948)
set_type(2148636948, 'int nSx2')
del_items(2148636952)
set_type(2148636952, 'int nSy2')
del_items(2148636860)
set_type(2148636860, 'int Area_Min')
del_items(2148636864)
set_type(2148636864, 'int Room_Max')
del_items(2148636868)
set_type(2148636868, 'int Room_Min')
del_items(2148636872)
set_type(2148636872, 'unsigned char BIG3[6]')
del_items(2148636880)
set_type(2148636880, 'unsigned char BIG4[6]')
del_items(2148636888)
set_type(2148636888, 'unsigned char BIG6[6]')
del_items(2148636896)
set_type(2148636896, 'unsigned char BIG7[6]')
del_items(2148636904)
set_type(2148636904, 'unsigned char RUINS1[4]')
del_items(2148636908)
set_type(2148636908, 'unsigned char RUINS2[4]')
del_items(2148636912)
set_type(2148636912, 'unsigned char RUINS3[4]')
del_items(2148636916)
set_type(2148636916, 'unsigned char RUINS4[4]')
del_items(2148636920)
set_type(2148636920, 'unsigned char RUINS5[4]')
del_items(2148636924)
set_type(2148636924, 'unsigned char RUINS6[4]')
del_items(2148636928)
set_type(2148636928, 'unsigned char RUINS7[4]')
del_items(2148639352)
set_type(2148639352, 'int abyssx')
del_items(2148639356)
set_type(2148639356, 'unsigned char lavapool')
del_items(2148637092)
set_type(2148637092, 'int lockoutcnt')
del_items(2148636968)
set_type(2148636968, 'unsigned char L3TITE12[6]')
del_items(2148636976)
set_type(2148636976, 'unsigned char L3TITE13[6]')
del_items(2148636984)
set_type(2148636984, 'unsigned char L3CREV1[6]')
del_items(2148636992)
set_type(2148636992, 'unsigned char L3CREV2[6]')
del_items(2148637000)
set_type(2148637000, 'unsigned char L3CREV3[6]')
del_items(2148637008)
set_type(2148637008, 'unsigned char L3CREV4[6]')
del_items(2148637016)
set_type(2148637016, 'unsigned char L3CREV5[6]')
del_items(2148637024)
set_type(2148637024, 'unsigned char L3CREV6[6]')
del_items(2148637032)
set_type(2148637032, 'unsigned char L3CREV7[6]')
del_items(2148637040)
set_type(2148637040, 'unsigned char L3CREV8[6]')
del_items(2148637048)
set_type(2148637048, 'unsigned char L3CREV9[6]')
del_items(2148637056)
set_type(2148637056, 'unsigned char L3CREV10[6]')
del_items(2148637064)
set_type(2148637064, 'unsigned char L3CREV11[6]')
del_items(2148637072)
set_type(2148637072, 'unsigned char L3XTRA1[4]')
del_items(2148637076)
set_type(2148637076, 'unsigned char L3XTRA2[4]')
del_items(2148637080)
set_type(2148637080, 'unsigned char L3XTRA3[4]')
del_items(2148637084)
set_type(2148637084, 'unsigned char L3XTRA4[4]')
del_items(2148637088)
set_type(2148637088, 'unsigned char L3XTRA5[4]')
del_items(2148637096)
set_type(2148637096, 'int diabquad1x')
del_items(2148637100)
set_type(2148637100, 'int diabquad2x')
del_items(2148637104)
set_type(2148637104, 'int diabquad3x')
del_items(2148637108)
set_type(2148637108, 'int diabquad4x')
del_items(2148637112)
set_type(2148637112, 'int diabquad1y')
del_items(2148637116)
set_type(2148637116, 'int diabquad2y')
del_items(2148637120)
set_type(2148637120, 'int diabquad3y')
del_items(2148637124)
set_type(2148637124, 'int diabquad4y')
del_items(2148637128)
set_type(2148637128, 'int SP4x1')
del_items(2148637132)
set_type(2148637132, 'int SP4y1')
del_items(2148637136)
set_type(2148637136, 'int SP4x2')
del_items(2148637140)
set_type(2148637140, 'int SP4y2')
del_items(2148637144)
set_type(2148637144, 'int l4holdx')
del_items(2148637148)
set_type(2148637148, 'int l4holdy')
del_items(2148639360)
set_type(2148639360, 'unsigned char *lpSetPiece1')
del_items(2148639364)
set_type(2148639364, 'unsigned char *lpSetPiece2')
del_items(2148639368)
set_type(2148639368, 'unsigned char *lpSetPiece3')
del_items(2148639372)
set_type(2148639372, 'unsigned char *lpSetPiece4')
del_items(2148637164)
set_type(2148637164, 'unsigned char SkelKingTrans1[8]')
del_items(2148637172)
set_type(2148637172, 'unsigned char SkelKingTrans2[8]')
del_items(2148362936)
set_type(2148362936, 'unsigned char SkelKingTrans3[20]')
del_items(2148362956)
set_type(2148362956, 'unsigned char SkelKingTrans4[28]')
del_items(2148362984)
set_type(2148362984, 'unsigned char SkelChamTrans1[20]')
del_items(2148637180)
set_type(2148637180, 'unsigned char SkelChamTrans2[8]')
del_items(2148363004)
set_type(2148363004, 'unsigned char SkelChamTrans3[36]')
del_items(2148637416)
set_type(2148637416, 'bool DoUiForChooseMonster')
del_items(2148363040)
set_type(2148363040, 'char *MgToText[34]')
del_items(2148363176)
set_type(2148363176, 'int StoryText[3][3]')
del_items(2148363212)
set_type(2148363212, 'unsigned short dungeon[48][48]')
del_items(2148367820)
set_type(2148367820, 'unsigned char pdungeon[40][40]')
del_items(2148369420)
set_type(2148369420, 'unsigned char dflags[40][40]')
del_items(2148637452)
set_type(2148637452, 'int setpc_x')
del_items(2148637456)
set_type(2148637456, 'int setpc_y')
del_items(2148637460)
set_type(2148637460, 'int setpc_w')
del_items(2148637464)
set_type(2148637464, 'int setpc_h')
del_items(2148637468)
set_type(2148637468, 'unsigned char setloadflag')
del_items(2148637472)
set_type(2148637472, 'unsigned char *pMegaTiles')
del_items(2148371020)
set_type(2148371020, 'unsigned char nBlockTable[2049]')
del_items(2148373072)
set_type(2148373072, 'unsigned char nSolidTable[2049]')
del_items(2148375124)
set_type(2148375124, 'unsigned char nTransTable[2049]')
del_items(2148377176)
set_type(2148377176, 'unsigned char nMissileTable[2049]')
del_items(2148379228)
set_type(2148379228, 'unsigned char nTrapTable[2049]')
del_items(2148637476)
set_type(2148637476, 'int dminx')
del_items(2148637480)
set_type(2148637480, 'int dminy')
del_items(2148637484)
set_type(2148637484, 'int dmaxx')
del_items(2148637488)
set_type(2148637488, 'int dmaxy')
del_items(2148637492)
set_type(2148637492, 'int gnDifficulty')
del_items(2148637496)
set_type(2148637496, 'unsigned char currlevel')
del_items(2148637497)
set_type(2148637497, 'unsigned char leveltype')
del_items(2148637498)
set_type(2148637498, 'unsigned char setlevel')
del_items(2148637499)
set_type(2148637499, 'unsigned char setlvlnum')
del_items(2148637500)
set_type(2148637500, 'unsigned char setlvltype')
del_items(2148637504)
set_type(2148637504, 'int ViewX')
del_items(2148637508)
set_type(2148637508, 'int ViewY')
del_items(2148637512)
set_type(2148637512, 'int ViewDX')
del_items(2148637516)
set_type(2148637516, 'int ViewDY')
del_items(2148637520)
set_type(2148637520, 'int ViewBX')
del_items(2148637524)
set_type(2148637524, 'int ViewBY')
del_items(2148381280)
set_type(2148381280, 'struct ScrollStruct ScrollInfo')
del_items(2148637528)
set_type(2148637528, 'int LvlViewX')
del_items(2148637532)
set_type(2148637532, 'int LvlViewY')
del_items(2148637536)
set_type(2148637536, 'int btmbx')
del_items(2148637540)
set_type(2148637540, 'int btmby')
del_items(2148637544)
set_type(2148637544, 'int btmdx')
del_items(2148637548)
set_type(2148637548, 'int btmdy')
del_items(2148637552)
set_type(2148637552, 'int MicroTileLen')
del_items(2148637556)
set_type(2148637556, 'char TransVal')
del_items(2148381300)
set_type(2148381300, 'bool TransList[8]')
del_items(2148637560)
set_type(2148637560, 'int themeCount')
del_items(2148381332)
set_type(2148381332, 'struct map_info dung_map[108][108]')
del_items(2148521300)
set_type(2148521300, 'unsigned char dung_map_r[54][54]')
del_items(2148524216)
set_type(2148524216, 'unsigned char dung_map_g[54][54]')
del_items(2148527132)
set_type(2148527132, 'unsigned char dung_map_b[54][54]')
del_items(2148530048)
set_type(2148530048, 'struct MINIXY MinisetXY[17]')
del_items(2148637444)
set_type(2148637444, 'unsigned char *pSetPiece')
del_items(2148637448)
set_type(2148637448, 'int DungSize')
del_items(2148530508)
set_type(2148530508, 'struct ThemeStruct theme[50]')
del_items(2148637624)
set_type(2148637624, 'int numthemes')
del_items(2148637628)
set_type(2148637628, 'int zharlib')
del_items(2148637632)
set_type(2148637632, 'unsigned char armorFlag')
del_items(2148637633)
set_type(2148637633, 'unsigned char bCrossFlag')
del_items(2148637634)
set_type(2148637634, 'unsigned char weaponFlag')
del_items(2148637636)
set_type(2148637636, 'int themex')
del_items(2148637640)
set_type(2148637640, 'int themey')
del_items(2148637644)
set_type(2148637644, 'int themeVar1')
del_items(2148637648)
set_type(2148637648, 'unsigned char bFountainFlag')
del_items(2148637649)
set_type(2148637649, 'unsigned char cauldronFlag')
del_items(2148637650)
set_type(2148637650, 'unsigned char mFountainFlag')
del_items(2148637651)
set_type(2148637651, 'unsigned char pFountainFlag')
del_items(2148637652)
set_type(2148637652, 'unsigned char tFountainFlag')
del_items(2148637653)
set_type(2148637653, 'unsigned char treasureFlag')
del_items(2148637656)
set_type(2148637656, 'unsigned char ThemeGoodIn[4]')
del_items(2148530220)
set_type(2148530220, 'int ThemeGood[4]')
del_items(2148530236)
set_type(2148530236, 'int trm5x[25]')
del_items(2148530336)
set_type(2148530336, 'int trm5y[25]')
del_items(2148530436)
set_type(2148530436, 'int trm3x[9]')
del_items(2148530472)
set_type(2148530472, 'int trm3y[9]')
del_items(2148637840)
set_type(2148637840, 'int nummissiles')
del_items(2148531044)
set_type(2148531044, 'int missileactive[125]')
del_items(2148531544)
set_type(2148531544, 'int missileavail[125]')
del_items(2148637844)
set_type(2148637844, 'unsigned char MissilePreFlag')
del_items(2148532044)
set_type(2148532044, 'struct MissileStruct missile[125]')
del_items(2148637845)
set_type(2148637845, 'unsigned char ManashieldFlag')
del_items(2148637846)
set_type(2148637846, 'unsigned char ManashieldFlag2')
del_items(2148530908)
set_type(2148530908, 'int XDirAdd[8]')
del_items(2148530940)
set_type(2148530940, 'int YDirAdd[8]')
del_items(2148637821)
set_type(2148637821, 'unsigned char fadetor')
del_items(2148637822)
set_type(2148637822, 'unsigned char fadetog')
del_items(2148637823)
set_type(2148637823, 'unsigned char fadetob')
del_items(2148530972)
set_type(2148530972, 'unsigned char ValueTable[16]')
del_items(2148530988)
set_type(2148530988, 'unsigned char StringTable[9][6]')
del_items(2148542460)
set_type(2148542460, 'struct MonsterStruct monster[200]')
del_items(2148637940)
set_type(2148637940, 'long nummonsters')
del_items(2148564860)
set_type(2148564860, 'short monstactive[200]')
del_items(2148565260)
set_type(2148565260, 'short monstkills[200]')
del_items(2148565660)
set_type(2148565660, 'struct CMonster Monsters[16]')
del_items(2148637944)
set_type(2148637944, 'long monstimgtot')
del_items(2148637948)
set_type(2148637948, 'char totalmonsters')
del_items(2148637952)
set_type(2148637952, 'int uniquetrans')
del_items(2148639376)
set_type(2148639376, 'unsigned char sgbSaveSoundOn')
del_items(2148637896)
set_type(2148637896, 'char offset_x[8]')
del_items(2148637904)
set_type(2148637904, 'char offset_y[8]')
del_items(2148637872)
set_type(2148637872, 'char left[8]')
del_items(2148637880)
set_type(2148637880, 'char right[8]')
del_items(2148637888)
set_type(2148637888, 'char opposite[8]')
del_items(2148637860)
set_type(2148637860, 'int nummtypes')
del_items(2148637864)
set_type(2148637864, 'char animletter[7]')
del_items(2148542044)
set_type(2148542044, 'int MWVel[3][24]')
del_items(2148637912)
set_type(2148637912, 'char rnd5[4]')
del_items(2148637916)
set_type(2148637916, 'char rnd10[4]')
del_items(2148637920)
set_type(2148637920, 'char rnd20[4]')
del_items(2148637924)
set_type(2148637924, 'char rnd60[4]')
del_items(2148542332)
set_type(2148542332, 'void (*AiProc[32])()')
del_items(2148566900)
set_type(2148566900, 'struct MonsterData monsterdata[112]')
del_items(2148573620)
set_type(2148573620, 'char MonstConvTbl[128]')
del_items(2148573748)
set_type(2148573748, 'char MonstAvailTbl[112]')
del_items(2148573860)
set_type(2148573860, 'struct UniqMonstStruct UniqMonst[98]')
del_items(2148566364)
set_type(2148566364, 'int TransPals[134]')
del_items(2148566108)
set_type(2148566108, 'struct STONEPAL StonePals[32]')
del_items(2148638000)
set_type(2148638000, 'unsigned char invflag')
del_items(2148638001)
set_type(2148638001, 'unsigned char drawsbarflag')
del_items(2148638004)
set_type(2148638004, 'int InvBackY')
del_items(2148638008)
set_type(2148638008, 'int InvCursPos')
del_items(2148577868)
set_type(2148577868, 'unsigned char InvSlotTable[73]')
del_items(2148638012)
set_type(2148638012, 'int InvBackAY')
del_items(2148638016)
set_type(2148638016, 'int InvSel')
del_items(2148638020)
set_type(2148638020, 'int ItemW')
del_items(2148638024)
set_type(2148638024, 'int ItemH')
del_items(2148638028)
set_type(2148638028, 'int ItemNo')
del_items(2148638032)
set_type(2148638032, 'struct RECT BRect')
del_items(2148637984)
set_type(2148637984, 'struct TextDat *InvPanelTData')
del_items(2148637988)
set_type(2148637988, 'struct TextDat *InvGfxTData')
del_items(2148637980)
set_type(2148637980, 'int InvPageNo')
del_items(2148576212)
set_type(2148576212, 'int AP2x2Tbl[10]')
del_items(2148576252)
set_type(2148576252, 'struct InvXY InvRect[73]')
del_items(2148576836)
set_type(2148576836, 'int InvGfxTable[168]')
del_items(2148577508)
set_type(2148577508, 'unsigned char InvItemWidth[180]')
del_items(2148577688)
set_type(2148577688, 'unsigned char InvItemHeight[180]')
del_items(2148637992)
set_type(2148637992, 'bool InvOn')
del_items(2148637996)
set_type(2148637996, 'unsigned long sgdwLastTime')
del_items(2148638074)
set_type(2148638074, 'unsigned char automapflag')
del_items(2148577944)
set_type(2148577944, 'unsigned char automapview[40][5]')
del_items(2148578144)
set_type(2148578144, 'unsigned short automaptype[512]')
del_items(2148638075)
set_type(2148638075, 'unsigned char AMLWallFlag')
del_items(2148638076)
set_type(2148638076, 'unsigned char AMRWallFlag')
del_items(2148638077)
set_type(2148638077, 'unsigned char AMLLWallFlag')
del_items(2148638078)
set_type(2148638078, 'unsigned char AMLRWallFlag')
del_items(2148638079)
set_type(2148638079, 'unsigned char AMDirtFlag')
del_items(2148638080)
set_type(2148638080, 'unsigned char AMColumnFlag')
del_items(2148638081)
set_type(2148638081, 'unsigned char AMStairFlag')
del_items(2148638082)
set_type(2148638082, 'unsigned char AMLDoorFlag')
del_items(2148638083)
set_type(2148638083, 'unsigned char AMLGrateFlag')
del_items(2148638084)
set_type(2148638084, 'unsigned char AMLArchFlag')
del_items(2148638085)
set_type(2148638085, 'unsigned char AMRDoorFlag')
del_items(2148638086)
set_type(2148638086, 'unsigned char AMRGrateFlag')
del_items(2148638087)
set_type(2148638087, 'unsigned char AMRArchFlag')
del_items(2148638088)
set_type(2148638088, 'int AutoMapX')
del_items(2148638092)
set_type(2148638092, 'int AutoMapY')
del_items(2148638096)
set_type(2148638096, 'int AutoMapXOfs')
del_items(2148638100)
set_type(2148638100, 'int AutoMapYOfs')
del_items(2148638104)
set_type(2148638104, 'int AMPlayerX')
del_items(2148638108)
set_type(2148638108, 'int AMPlayerY')
del_items(2148638052)
set_type(2148638052, 'int AutoMapScale')
del_items(2148638056)
set_type(2148638056, 'unsigned char AutoMapPlayerR')
del_items(2148638057)
set_type(2148638057, 'unsigned char AutoMapPlayerG')
del_items(2148638058)
set_type(2148638058, 'unsigned char AutoMapPlayerB')
del_items(2148638059)
set_type(2148638059, 'unsigned char AutoMapWallR')
del_items(2148638060)
set_type(2148638060, 'unsigned char AutoMapWallG')
del_items(2148638061)
set_type(2148638061, 'unsigned char AutoMapWallB')
del_items(2148638062)
set_type(2148638062, 'unsigned char AutoMapDoorR')
del_items(2148638063)
set_type(2148638063, 'unsigned char AutoMapDoorG')
del_items(2148638064)
set_type(2148638064, 'unsigned char AutoMapDoorB')
del_items(2148638065)
set_type(2148638065, 'unsigned char AutoMapColumnR')
del_items(2148638066)
set_type(2148638066, 'unsigned char AutoMapColumnG')
del_items(2148638067)
set_type(2148638067, 'unsigned char AutoMapColumnB')
del_items(2148638068)
set_type(2148638068, 'unsigned char AutoMapArchR')
del_items(2148638069)
set_type(2148638069, 'unsigned char AutoMapArchG')
del_items(2148638070)
set_type(2148638070, 'unsigned char AutoMapArchB')
del_items(2148638071)
set_type(2148638071, 'unsigned char AutoMapStairR')
del_items(2148638072)
set_type(2148638072, 'unsigned char AutoMapStairG')
del_items(2148638073)
set_type(2148638073, 'unsigned char AutoMapStairB')
del_items(2148639724)
set_type(2148639724, 'unsigned long GazTick')
del_items(2148666664)
set_type(2148666664, 'unsigned long RndTabs[6]')
del_items(2148164456)
set_type(2148164456, 'unsigned long DefaultRnd[6]')
del_items(2148639764)
set_type(2148639764, 'void (*PollFunc)()')
del_items(2148639736)
set_type(2148639736, 'void (*MsgFunc)()')
del_items(2148639812)
set_type(2148639812, 'void (*ErrorFunc)()')
del_items(2148639512)
set_type(2148639512, 'struct TASK *ActiveTasks')
del_items(2148639516)
set_type(2148639516, 'struct TASK *CurrentTask')
del_items(2148639520)
set_type(2148639520, 'struct TASK *T')
del_items(2148639524)
set_type(2148639524, 'unsigned long MemTypeForTasker')
del_items(2148656472)
set_type(2148656472, 'int SchEnv[12]')
del_items(2148639528)
set_type(2148639528, 'unsigned long ExecId')
del_items(2148639532)
set_type(2148639532, 'unsigned long ExecMask')
del_items(2148639536)
set_type(2148639536, 'int TasksActive')
del_items(2148639540)
set_type(2148639540, 'void (*EpiFunc)()')
del_items(2148639544)
set_type(2148639544, 'void (*ProFunc)()')
del_items(2148639548)
set_type(2148639548, 'unsigned long EpiProId')
del_items(2148639552)
set_type(2148639552, 'unsigned long EpiProMask')
del_items(2148639556)
set_type(2148639556, 'void (*DoTasksPrologue)()')
del_items(2148639560)
set_type(2148639560, 'void (*DoTasksEpilogue)()')
del_items(2148639564)
set_type(2148639564, 'void (*StackFloodCallback)()')
del_items(2148639568)
set_type(2148639568, 'unsigned char ExtraStackProtection')
del_items(2148639572)
set_type(2148639572, 'int ExtraStackSizeLongs')
del_items(2148639744)
set_type(2148639744, 'void *LastPtr')
del_items(2148164512)
set_type(2148164512, 'struct MEM_INFO WorkMemInfo')
del_items(2148639576)
set_type(2148639576, 'struct MEM_INIT_INFO *MemInitBlocks')
del_items(2148656520)
set_type(2148656520, 'struct MEM_HDR MemHdrBlocks[140]')
del_items(2148639580)
set_type(2148639580, 'struct MEM_HDR *FreeBlocks')
del_items(2148639584)
set_type(2148639584, 'enum GAL_ERROR_CODE LastError')
del_items(2148639588)
set_type(2148639588, 'int TimeStamp')
del_items(2148639592)
set_type(2148639592, 'unsigned char FullErrorChecking')
del_items(2148639596)
set_type(2148639596, 'unsigned long LastAttemptedAlloc')
del_items(2148639600)
set_type(2148639600, 'unsigned long LastDeallocedBlock')
del_items(2148639604)
set_type(2148639604, 'enum GAL_VERB_LEV VerbLev')
del_items(2148639608)
set_type(2148639608, 'int NumOfFreeHdrs')
del_items(2148639612)
set_type(2148639612, 'unsigned long LastTypeAlloced')
del_items(2148639616)
set_type(2148639616, 'void (*AllocFilter)()')
del_items(2148164520)
set_type(2148164520, 'char *GalErrors[10]')
del_items(2148164560)
set_type(2148164560, 'struct MEM_INIT_INFO PhantomMem')
del_items(2148661000)
set_type(2148661000, 'char buf[4992]')
del_items(2148164600)
set_type(2148164600, 'char NULL_REP[7]') |
ls = []
with open('input.txt') as fh:
for line in fh.readlines():
if not line.strip():
continue
ls.append(int(line))
for i in range(len(ls)):
for j in range(i+1, len(ls)):
if ls[i] + ls[j] == 2020:
print("part1:")
print(ls[i], ls[j])
print(ls[i] * ls[j])
for k in range(j + 1, len(ls)):
if ls[i]+ls[j]+ls[k]==2020:
print("\npart2:")
print(ls[i], ls[j], ls[k])
print(ls[i]*ls[j]*ls[k])
| ls = []
with open('input.txt') as fh:
for line in fh.readlines():
if not line.strip():
continue
ls.append(int(line))
for i in range(len(ls)):
for j in range(i + 1, len(ls)):
if ls[i] + ls[j] == 2020:
print('part1:')
print(ls[i], ls[j])
print(ls[i] * ls[j])
for k in range(j + 1, len(ls)):
if ls[i] + ls[j] + ls[k] == 2020:
print('\npart2:')
print(ls[i], ls[j], ls[k])
print(ls[i] * ls[j] * ls[k]) |
# test practice of the the collatz sequence(the simplest impossible maths problem
def collatz(number):
while number != 1:
if number % 2 == 0:
number = number/2;
print(int(number))
else:
number = (number*3) + 1
print(int(number))
def main():
print("Enter number: ")
number = int(input())
collatz(number)
main()
| def collatz(number):
while number != 1:
if number % 2 == 0:
number = number / 2
print(int(number))
else:
number = number * 3 + 1
print(int(number))
def main():
print('Enter number: ')
number = int(input())
collatz(number)
main() |
class Solution:
def countAndSay__iterative(self, n: int) -> str:
if n <= 0: return "" # EMPTY
if n == 1: return "1"
say_prev = "1"
for i in range(2, n + 1): # n included
say_curr = self.convert(say_prev)
say_prev = say_curr
return say_prev
# Recursion1 tree is skewed, takes O(n) time for recursion, where n is the number
# for each recursion it convert part, which is O(string_len), and string_len in worst case would be n
# So total Time : O(n2)
# Takes O(n) space due to recursion, as solving for n, n-1, n-2 ..... n=1
# and at each level, we will be having a string to create which will keep on increase with n,
# this string is data is destroyed as well after that perticular method
# so space : (n + str_len)
# interesting is how this str_len grows
def countAndSay__recursive(self, n: int) -> str:
if n <= 0: return "" # EMPTY
if n == 1: return "1"
prev_say = self.countAndSay__recursive(n - 1)
# convert into different_string
my_say = self.convert(prev_say)
return my_say
# Time : O(string_len)
# Space : O(string_size) at each recursion level it is, being created and destroyed
@staticmethod
def convert(say):
characters = []
prev_char = say[0]
count = 0
for curr_char in say:
if prev_char != curr_char:
characters.append(str(count))
characters.append(prev_char)
prev_char = curr_char
count = 1
else:
count += 1
# handle last element
characters.append(str(count))
characters.append(prev_char)
return ''.join(characters)
if __name__ == "__main__":
sol = Solution()
for i in range(10):
print(sol.countAndSay__recursive(i))
for i in range(10):
print(sol.countAndSay__iterative(i))
# print(sol.convert("111221"))
| class Solution:
def count_and_say__iterative(self, n: int) -> str:
if n <= 0:
return ''
if n == 1:
return '1'
say_prev = '1'
for i in range(2, n + 1):
say_curr = self.convert(say_prev)
say_prev = say_curr
return say_prev
def count_and_say__recursive(self, n: int) -> str:
if n <= 0:
return ''
if n == 1:
return '1'
prev_say = self.countAndSay__recursive(n - 1)
my_say = self.convert(prev_say)
return my_say
@staticmethod
def convert(say):
characters = []
prev_char = say[0]
count = 0
for curr_char in say:
if prev_char != curr_char:
characters.append(str(count))
characters.append(prev_char)
prev_char = curr_char
count = 1
else:
count += 1
characters.append(str(count))
characters.append(prev_char)
return ''.join(characters)
if __name__ == '__main__':
sol = solution()
for i in range(10):
print(sol.countAndSay__recursive(i))
for i in range(10):
print(sol.countAndSay__iterative(i)) |
count = 10
print("Hello!")
while count > 0:
print(count)
count -= 2 | count = 10
print('Hello!')
while count > 0:
print(count)
count -= 2 |
'''
Gui
___
Contains the Qt views and controllers.
:copyright: (c) 2015 The Regents of the University of California.
:license: GNU GPL, see licenses/GNU GPLv3.txt for more details.
'''
| """
Gui
___
Contains the Qt views and controllers.
:copyright: (c) 2015 The Regents of the University of California.
:license: GNU GPL, see licenses/GNU GPLv3.txt for more details.
""" |
numCasoTeste = int(input())
membros = ['Rolien', 'Naej', 'Elehcim', 'Odranoel']
for casoTeste in range(numCasoTeste):
numInput = int(input())
for _ in range(numInput):
recebido = int(input())
print(membros[recebido - 1]) | num_caso_teste = int(input())
membros = ['Rolien', 'Naej', 'Elehcim', 'Odranoel']
for caso_teste in range(numCasoTeste):
num_input = int(input())
for _ in range(numInput):
recebido = int(input())
print(membros[recebido - 1]) |
#
# PySNMP MIB module HP-SN-SW-L4-SWITCH-GROUP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HP-SN-MIBS
# Produced by pysmi-0.3.4 at Mon Apr 29 19:23:53 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint")
snL4, = mibBuilder.importSymbols("HP-SN-ROOT-MIB", "snL4")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
IpAddress, Integer32, Counter32, Counter64, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, TimeTicks, NotificationType, Gauge32, Unsigned32, ObjectIdentity, MibIdentifier, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Integer32", "Counter32", "Counter64", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "TimeTicks", "NotificationType", "Gauge32", "Unsigned32", "ObjectIdentity", "MibIdentifier", "ModuleIdentity")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
class L4RowSts(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("other", 1), ("valid", 2), ("delete", 3), ("create", 4), ("modify", 5))
class L4Status(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1))
namedValues = NamedValues(("disabled", 0), ("enabled", 1))
class L4ServerName(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(1, 32)
class L4Flag(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1))
namedValues = NamedValues(("false", 0), ("true", 1))
class L4DeleteState(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2))
namedValues = NamedValues(("done", 0), ("waitunbind", 1), ("waitdelete", 2))
class WebCacheState(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("disabled", 0), ("enabled", 1), ("failed", 2), ("testing", 3), ("suspect", 4), ("shutdown", 5), ("active", 6))
class PhysAddress(OctetString):
pass
class DisplayString(OctetString):
pass
snL4Gen = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1))
snL4VirtualServer = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2))
snL4RealServer = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3))
snL4VirtualServerPort = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4))
snL4RealServerPort = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5))
snL4Bind = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6))
snL4VirtualServerStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7))
snL4RealServerStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8))
snL4VirtualServerPortStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9))
snL4RealServerPortStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10))
snL4Policy = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11))
snL4PolicyPortAccess = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12))
snL4Trap = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13))
snL4WebCache = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14))
snL4WebCacheGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15))
snL4WebCacheTrafficStats = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16))
snL4WebUncachedTrafficStats = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17))
snL4WebCachePort = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18))
snL4RealServerCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19))
snL4RealServerPortCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20))
snL4VirtualServerCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21))
snL4VirtualServerPortCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22))
snL4RealServerStatistic = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23))
snL4RealServerPortStatistic = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24))
snL4VirtualServerStatistic = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25))
snL4VirtualServerPortStatistic = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26))
snL4GslbSiteRemoteServerIrons = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27))
snL4History = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28))
snL4MaxSessionLimit = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4MaxSessionLimit.setStatus('mandatory')
snL4TcpSynLimit = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4TcpSynLimit.setStatus('mandatory')
snL4slbGlobalSDAType = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("leastconnection", 1), ("roundrobin", 2), ("weighted", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4slbGlobalSDAType.setStatus('mandatory')
snL4slbTotalConnections = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbTotalConnections.setStatus('mandatory')
snL4slbLimitExceeds = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbLimitExceeds.setStatus('mandatory')
snL4slbForwardTraffic = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbForwardTraffic.setStatus('mandatory')
snL4slbReverseTraffic = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbReverseTraffic.setStatus('mandatory')
snL4slbDrops = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbDrops.setStatus('mandatory')
snL4slbDangling = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbDangling.setStatus('mandatory')
snL4slbDisableCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbDisableCount.setStatus('mandatory')
snL4slbAged = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbAged.setStatus('mandatory')
snL4slbFinished = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4slbFinished.setStatus('mandatory')
snL4FreeSessionCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4FreeSessionCount.setStatus('mandatory')
snL4BackupInterface = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 26))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BackupInterface.setStatus('mandatory')
snL4BackupMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 15), PhysAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BackupMacAddr.setStatus('mandatory')
snL4Active = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 16), L4Flag()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4Active.setStatus('mandatory')
snL4Redundancy = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4Redundancy.setStatus('mandatory')
snL4Backup = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 18), L4Flag()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4Backup.setStatus('mandatory')
snL4BecomeActive = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 19), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4BecomeActive.setStatus('mandatory')
snL4BecomeStandBy = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4BecomeStandBy.setStatus('mandatory')
snL4BackupState = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("slbSyncComplete", 0), ("slbSyncReqMap", 1), ("slbSyncreqMac", 2), ("slbSyncreqServers", 3), ("slbSyncReqL4", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4BackupState.setStatus('mandatory')
snL4NoPDUSent = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 22), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4NoPDUSent.setStatus('mandatory')
snL4NoPDUCount = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 23), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4NoPDUCount.setStatus('mandatory')
snL4NoPortMap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 24), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4NoPortMap.setStatus('mandatory')
snL4unsuccessfulConn = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 25), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4unsuccessfulConn.setStatus('mandatory')
snL4PingInterval = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PingInterval.setStatus('mandatory')
snL4PingRetry = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 10)).clone(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PingRetry.setStatus('mandatory')
snL4TcpAge = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 60)).clone(30)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4TcpAge.setStatus('mandatory')
snL4UdpAge = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 60)).clone(5)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4UdpAge.setStatus('mandatory')
snL4EnableMaxSessionLimitReachedTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableMaxSessionLimitReachedTrap.setStatus('mandatory')
snL4EnableTcpSynLimitReachedTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableTcpSynLimitReachedTrap.setStatus('mandatory')
snL4EnableRealServerUpTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableRealServerUpTrap.setStatus('mandatory')
snL4EnableRealServerDownTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableRealServerDownTrap.setStatus('mandatory')
snL4EnableRealServerPortUpTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableRealServerPortUpTrap.setStatus('mandatory')
snL4EnableRealServerPortDownTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableRealServerPortDownTrap.setStatus('mandatory')
snL4EnableRealServerMaxConnLimitReachedTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableRealServerMaxConnLimitReachedTrap.setStatus('mandatory')
snL4EnableBecomeStandbyTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableBecomeStandbyTrap.setStatus('mandatory')
snL4EnableBecomeActiveTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableBecomeActiveTrap.setStatus('mandatory')
snL4slbRouterInterfacePortMask = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 39), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4slbRouterInterfacePortMask.setStatus('deprecated')
snL4MaxNumWebCacheGroup = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 40), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4MaxNumWebCacheGroup.setStatus('mandatory')
snL4MaxNumWebCachePerGroup = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 41), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4MaxNumWebCachePerGroup.setStatus('mandatory')
snL4WebCacheStateful = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 42), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheStateful.setStatus('mandatory')
snL4EnableGslbHealthCheckIpUpTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbHealthCheckIpUpTrap.setStatus('mandatory')
snL4EnableGslbHealthCheckIpDownTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbHealthCheckIpDownTrap.setStatus('mandatory')
snL4EnableGslbHealthCheckIpPortUpTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbHealthCheckIpPortUpTrap.setStatus('mandatory')
snL4EnableGslbHealthCheckIpPortDownTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbHealthCheckIpPortDownTrap.setStatus('mandatory')
snL4EnableGslbRemoteGslbSiDownTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbRemoteGslbSiDownTrap.setStatus('mandatory')
snL4EnableGslbRemoteGslbSiUpTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbRemoteGslbSiUpTrap.setStatus('mandatory')
snL4EnableGslbRemoteSiDownTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbRemoteSiDownTrap.setStatus('mandatory')
snL4EnableGslbRemoteSiUpTrap = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4EnableGslbRemoteSiUpTrap.setStatus('mandatory')
snL4slbRouterInterfacePortList = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 51), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4slbRouterInterfacePortList.setStatus('mandatory')
snL4VirtualServerTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1), )
if mibBuilder.loadTexts: snL4VirtualServerTable.setStatus('mandatory')
snL4VirtualServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerIndex"))
if mibBuilder.loadTexts: snL4VirtualServerEntry.setStatus('mandatory')
snL4VirtualServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerIndex.setStatus('mandatory')
snL4VirtualServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerName.setStatus('mandatory')
snL4VirtualServerVirtualIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerVirtualIP.setStatus('mandatory')
snL4VirtualServerAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 4), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerAdminStatus.setStatus('mandatory')
snL4VirtualServerSDAType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("default", 0), ("leastconnection", 1), ("roundrobin", 2), ("weighted", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerSDAType.setStatus('mandatory')
snL4VirtualServerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 6), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerRowStatus.setStatus('mandatory')
snL4VirtualServerDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 7), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerDeleteState.setStatus('mandatory')
snL4RealServerTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1), )
if mibBuilder.loadTexts: snL4RealServerTable.setStatus('mandatory')
snL4RealServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerIndex"))
if mibBuilder.loadTexts: snL4RealServerEntry.setStatus('mandatory')
snL4RealServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerIndex.setStatus('mandatory')
snL4RealServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerName.setStatus('mandatory')
snL4RealServerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerIP.setStatus('mandatory')
snL4RealServerAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 4), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerAdminStatus.setStatus('mandatory')
snL4RealServerMaxConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerMaxConnections.setStatus('mandatory')
snL4RealServerWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerWeight.setStatus('mandatory')
snL4RealServerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 7), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerRowStatus.setStatus('mandatory')
snL4RealServerDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 8), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerDeleteState.setStatus('mandatory')
snL4VirtualServerPortTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1), )
if mibBuilder.loadTexts: snL4VirtualServerPortTable.setStatus('mandatory')
snL4VirtualServerPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortIndex"))
if mibBuilder.loadTexts: snL4VirtualServerPortEntry.setStatus('mandatory')
snL4VirtualServerPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortIndex.setStatus('mandatory')
snL4VirtualServerPortServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortServerName.setStatus('mandatory')
snL4VirtualServerPortPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortPort.setStatus('mandatory')
snL4VirtualServerPortAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 4), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortAdminStatus.setStatus('mandatory')
snL4VirtualServerPortSticky = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortSticky.setStatus('mandatory')
snL4VirtualServerPortConcurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortConcurrent.setStatus('mandatory')
snL4VirtualServerPortRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 7), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortRowStatus.setStatus('mandatory')
snL4VirtualServerPortDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 8), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortDeleteState.setStatus('mandatory')
snL4RealServerPortTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1), )
if mibBuilder.loadTexts: snL4RealServerPortTable.setStatus('mandatory')
snL4RealServerPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortIndex"))
if mibBuilder.loadTexts: snL4RealServerPortEntry.setStatus('mandatory')
snL4RealServerPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortIndex.setStatus('mandatory')
snL4RealServerPortServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortServerName.setStatus('mandatory')
snL4RealServerPortPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortPort.setStatus('mandatory')
snL4RealServerPortAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 4), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortAdminStatus.setStatus('mandatory')
snL4RealServerPortRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 5), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortRowStatus.setStatus('mandatory')
snL4RealServerPortDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 6), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortDeleteState.setStatus('mandatory')
snL4BindTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1), )
if mibBuilder.loadTexts: snL4BindTable.setStatus('mandatory')
snL4BindEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4BindIndex"))
if mibBuilder.loadTexts: snL4BindEntry.setStatus('mandatory')
snL4BindIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4BindIndex.setStatus('mandatory')
snL4BindVirtualServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BindVirtualServerName.setStatus('mandatory')
snL4BindVirtualPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BindVirtualPortNumber.setStatus('mandatory')
snL4BindRealServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 4), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BindRealServerName.setStatus('mandatory')
snL4BindRealPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BindRealPortNumber.setStatus('mandatory')
snL4BindRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("valid", 2), ("delete", 3), ("create", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4BindRowStatus.setStatus('mandatory')
snL4VirtualServerStatusTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1), )
if mibBuilder.loadTexts: snL4VirtualServerStatusTable.setStatus('mandatory')
snL4VirtualServerStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerStatusIndex"))
if mibBuilder.loadTexts: snL4VirtualServerStatusEntry.setStatus('mandatory')
snL4VirtualServerStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatusIndex.setStatus('mandatory')
snL4VirtualServerStatusName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 2), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatusName.setStatus('mandatory')
snL4VirtualServerStatusReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatusReceivePkts.setStatus('mandatory')
snL4VirtualServerStatusTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatusTransmitPkts.setStatus('mandatory')
snL4VirtualServerStatusTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatusTotalConnections.setStatus('mandatory')
snL4RealServerStatusTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1), )
if mibBuilder.loadTexts: snL4RealServerStatusTable.setStatus('mandatory')
snL4RealServerStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerStatusIndex"))
if mibBuilder.loadTexts: snL4RealServerStatusEntry.setStatus('mandatory')
snL4RealServerStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusIndex.setStatus('mandatory')
snL4RealServerStatusName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 2), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusName.setStatus('mandatory')
snL4RealServerStatusRealIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusRealIP.setStatus('mandatory')
snL4RealServerStatusReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusReceivePkts.setStatus('mandatory')
snL4RealServerStatusTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusTransmitPkts.setStatus('mandatory')
snL4RealServerStatusCurConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusCurConnections.setStatus('mandatory')
snL4RealServerStatusTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusTotalConnections.setStatus('mandatory')
snL4RealServerStatusAge = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusAge.setStatus('mandatory')
snL4RealServerStatusState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("serverdisabled", 0), ("serverenabled", 1), ("serverfailed", 2), ("servertesting", 3), ("serversuspect", 4), ("servershutdown", 5), ("serveractive", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusState.setStatus('mandatory')
snL4RealServerStatusReassignments = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusReassignments.setStatus('mandatory')
snL4RealServerStatusReassignmentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusReassignmentLimit.setStatus('mandatory')
snL4RealServerStatusFailedPortExists = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusFailedPortExists.setStatus('mandatory')
snL4RealServerStatusFailTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusFailTime.setStatus('mandatory')
snL4RealServerStatusPeakConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatusPeakConnections.setStatus('mandatory')
snL4VirtualServerPortStatusTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1), )
if mibBuilder.loadTexts: snL4VirtualServerPortStatusTable.setStatus('mandatory')
snL4VirtualServerPortStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortStatusIndex"))
if mibBuilder.loadTexts: snL4VirtualServerPortStatusEntry.setStatus('mandatory')
snL4VirtualServerPortStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatusIndex.setStatus('mandatory')
snL4VirtualServerPortStatusPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatusPort.setStatus('mandatory')
snL4VirtualServerPortStatusServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 3), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatusServerName.setStatus('mandatory')
snL4VirtualServerPortStatusCurrentConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatusCurrentConnection.setStatus('mandatory')
snL4VirtualServerPortStatusTotalConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatusTotalConnection.setStatus('mandatory')
snL4VirtualServerPortStatusPeakConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatusPeakConnection.setStatus('mandatory')
snL4RealServerPortStatusTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1), )
if mibBuilder.loadTexts: snL4RealServerPortStatusTable.setStatus('mandatory')
snL4RealServerPortStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortStatusIndex"))
if mibBuilder.loadTexts: snL4RealServerPortStatusEntry.setStatus('mandatory')
snL4RealServerPortStatusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusIndex.setStatus('mandatory')
snL4RealServerPortStatusPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusPort.setStatus('mandatory')
snL4RealServerPortStatusServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 3), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusServerName.setStatus('mandatory')
snL4RealServerPortStatusReassignCount = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusReassignCount.setStatus('mandatory')
snL4RealServerPortStatusState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1), ("failed", 2), ("testing", 3), ("suspect", 4), ("shutdown", 5), ("active", 6), ("unbound", 7), ("awaitUnbind", 8), ("awaitDelete", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusState.setStatus('mandatory')
snL4RealServerPortStatusFailTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusFailTime.setStatus('mandatory')
snL4RealServerPortStatusCurrentConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusCurrentConnection.setStatus('mandatory')
snL4RealServerPortStatusTotalConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusTotalConnection.setStatus('mandatory')
snL4RealServerPortStatusRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusRxPkts.setStatus('mandatory')
snL4RealServerPortStatusTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusTxPkts.setStatus('mandatory')
snL4RealServerPortStatusRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusRxBytes.setStatus('mandatory')
snL4RealServerPortStatusTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusTxBytes.setStatus('mandatory')
snL4RealServerPortStatusPeakConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatusPeakConnection.setStatus('mandatory')
snL4PolicyTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1), )
if mibBuilder.loadTexts: snL4PolicyTable.setStatus('mandatory')
snL4PolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4PolicyId"))
if mibBuilder.loadTexts: snL4PolicyEntry.setStatus('mandatory')
snL4PolicyId = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4PolicyId.setStatus('mandatory')
snL4PolicyPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("level0", 0), ("level1", 1), ("level2", 2), ("level3", 3), ("level4", 4), ("level5", 5), ("level6", 6), ("level7", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyPriority.setStatus('mandatory')
snL4PolicyScope = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("global", 0), ("local", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyScope.setStatus('mandatory')
snL4PolicyProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("udp", 0), ("tcp", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyProtocol.setStatus('mandatory')
snL4PolicyPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyPort.setStatus('mandatory')
snL4PolicyRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("invalid", 1), ("valid", 2), ("delete", 3), ("create", 4), ("modify", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyRowStatus.setStatus('mandatory')
snL4PolicyPortAccessTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1), )
if mibBuilder.loadTexts: snL4PolicyPortAccessTable.setStatus('mandatory')
snL4PolicyPortAccessEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4PolicyPortAccessPort"))
if mibBuilder.loadTexts: snL4PolicyPortAccessEntry.setStatus('mandatory')
snL4PolicyPortAccessPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4PolicyPortAccessPort.setStatus('mandatory')
snL4PolicyPortAccessList = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyPortAccessList.setStatus('mandatory')
snL4PolicyPortAccessRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("invalid", 1), ("valid", 2), ("delete", 3), ("create", 4), ("modify", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4PolicyPortAccessRowStatus.setStatus('mandatory')
snL4TrapRealServerIP = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 1), IpAddress())
if mibBuilder.loadTexts: snL4TrapRealServerIP.setStatus('mandatory')
snL4TrapRealServerName = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 2), L4ServerName())
if mibBuilder.loadTexts: snL4TrapRealServerName.setStatus('mandatory')
snL4TrapRealServerPort = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 3), Integer32())
if mibBuilder.loadTexts: snL4TrapRealServerPort.setStatus('mandatory')
snL4TrapRealServerCurConnections = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 4), Integer32())
if mibBuilder.loadTexts: snL4TrapRealServerCurConnections.setStatus('mandatory')
snL4WebCacheTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1), )
if mibBuilder.loadTexts: snL4WebCacheTable.setStatus('mandatory')
snL4WebCacheEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebCacheIP"))
if mibBuilder.loadTexts: snL4WebCacheEntry.setStatus('mandatory')
snL4WebCacheIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheIP.setStatus('mandatory')
snL4WebCacheName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheName.setStatus('mandatory')
snL4WebCacheAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 3), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheAdminStatus.setStatus('mandatory')
snL4WebCacheMaxConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheMaxConnections.setStatus('mandatory')
snL4WebCacheWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheWeight.setStatus('mandatory')
snL4WebCacheRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 6), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheRowStatus.setStatus('mandatory')
snL4WebCacheDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 7), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheDeleteState.setStatus('mandatory')
snL4WebCacheGroupTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1), )
if mibBuilder.loadTexts: snL4WebCacheGroupTable.setStatus('mandatory')
snL4WebCacheGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebCacheGroupId"))
if mibBuilder.loadTexts: snL4WebCacheGroupEntry.setStatus('mandatory')
snL4WebCacheGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheGroupId.setStatus('mandatory')
snL4WebCacheGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheGroupName.setStatus('mandatory')
snL4WebCacheGroupWebCacheIpList = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheGroupWebCacheIpList.setStatus('mandatory')
snL4WebCacheGroupDestMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheGroupDestMask.setStatus('mandatory')
snL4WebCacheGroupSrcMask = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheGroupSrcMask.setStatus('mandatory')
snL4WebCacheGroupAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheGroupAdminStatus.setStatus('mandatory')
snL4WebCacheGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 7), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCacheGroupRowStatus.setStatus('mandatory')
snL4WebCacheTrafficStatsTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1), )
if mibBuilder.loadTexts: snL4WebCacheTrafficStatsTable.setStatus('mandatory')
snL4WebCacheTrafficStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebCacheTrafficIp"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebCacheTrafficPort"))
if mibBuilder.loadTexts: snL4WebCacheTrafficStatsEntry.setStatus('mandatory')
snL4WebCacheTrafficIp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheTrafficIp.setStatus('mandatory')
snL4WebCacheTrafficPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheTrafficPort.setStatus('mandatory')
snL4WebCacheCurrConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheCurrConnections.setStatus('mandatory')
snL4WebCacheTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheTotalConnections.setStatus('mandatory')
snL4WebCacheTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheTxPkts.setStatus('mandatory')
snL4WebCacheRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheRxPkts.setStatus('mandatory')
snL4WebCacheTxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheTxOctets.setStatus('mandatory')
snL4WebCacheRxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCacheRxOctets.setStatus('mandatory')
snL4WebCachePortState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 9), WebCacheState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCachePortState.setStatus('mandatory')
snL4WebUncachedTrafficStatsTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1), )
if mibBuilder.loadTexts: snL4WebUncachedTrafficStatsTable.setStatus('mandatory')
snL4WebUncachedTrafficStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebServerPort"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebClientPort"))
if mibBuilder.loadTexts: snL4WebUncachedTrafficStatsEntry.setStatus('mandatory')
snL4WebServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebServerPort.setStatus('mandatory')
snL4WebClientPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebClientPort.setStatus('mandatory')
snL4WebUncachedTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebUncachedTxPkts.setStatus('mandatory')
snL4WebUncachedRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebUncachedRxPkts.setStatus('mandatory')
snL4WebUncachedTxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebUncachedTxOctets.setStatus('mandatory')
snL4WebUncachedRxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebUncachedRxOctets.setStatus('mandatory')
snL4WebServerPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebServerPortName.setStatus('mandatory')
snL4WebClientPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebClientPortName.setStatus('mandatory')
snL4WebCachePortTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1), )
if mibBuilder.loadTexts: snL4WebCachePortTable.setStatus('mandatory')
snL4WebCachePortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebCachePortServerIp"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4WebCachePortPort"))
if mibBuilder.loadTexts: snL4WebCachePortEntry.setStatus('mandatory')
snL4WebCachePortServerIp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCachePortServerIp.setStatus('mandatory')
snL4WebCachePortPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCachePortPort.setStatus('mandatory')
snL4WebCachePortAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 3), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCachePortAdminStatus.setStatus('mandatory')
snL4WebCachePortRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 4), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4WebCachePortRowStatus.setStatus('mandatory')
snL4WebCachePortDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 5), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4WebCachePortDeleteState.setStatus('mandatory')
snL4RealServerCfgTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1), )
if mibBuilder.loadTexts: snL4RealServerCfgTable.setStatus('mandatory')
snL4RealServerCfgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerCfgIP"))
if mibBuilder.loadTexts: snL4RealServerCfgEntry.setStatus('mandatory')
snL4RealServerCfgIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerCfgIP.setStatus('mandatory')
snL4RealServerCfgName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerCfgName.setStatus('mandatory')
snL4RealServerCfgAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 3), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerCfgAdminStatus.setStatus('mandatory')
snL4RealServerCfgMaxConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerCfgMaxConnections.setStatus('mandatory')
snL4RealServerCfgWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerCfgWeight.setStatus('mandatory')
snL4RealServerCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 6), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerCfgRowStatus.setStatus('mandatory')
snL4RealServerCfgDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 7), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerCfgDeleteState.setStatus('mandatory')
snL4RealServerPortCfgTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1), )
if mibBuilder.loadTexts: snL4RealServerPortCfgTable.setStatus('mandatory')
snL4RealServerPortCfgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortCfgIP"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortCfgPort"))
if mibBuilder.loadTexts: snL4RealServerPortCfgEntry.setStatus('mandatory')
snL4RealServerPortCfgIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortCfgIP.setStatus('mandatory')
snL4RealServerPortCfgPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortCfgPort.setStatus('mandatory')
snL4RealServerPortCfgServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 2), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortCfgServerName.setStatus('mandatory')
snL4RealServerPortCfgAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 4), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortCfgAdminStatus.setStatus('mandatory')
snL4RealServerPortCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 5), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortCfgRowStatus.setStatus('mandatory')
snL4RealServerPortCfgDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 6), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortCfgDeleteState.setStatus('mandatory')
snL4VirtualServerCfgTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1), )
if mibBuilder.loadTexts: snL4VirtualServerCfgTable.setStatus('mandatory')
snL4VirtualServerCfgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerCfgVirtualIP"))
if mibBuilder.loadTexts: snL4VirtualServerCfgEntry.setStatus('mandatory')
snL4VirtualServerCfgVirtualIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerCfgVirtualIP.setStatus('mandatory')
snL4VirtualServerCfgName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 2), L4ServerName()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerCfgName.setStatus('mandatory')
snL4VirtualServerCfgAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 3), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerCfgAdminStatus.setStatus('mandatory')
snL4VirtualServerCfgSDAType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("default", 0), ("leastconnection", 1), ("roundrobin", 2), ("weighted", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerCfgSDAType.setStatus('mandatory')
snL4VirtualServerCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 5), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerCfgRowStatus.setStatus('mandatory')
snL4VirtualServerCfgDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 6), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerCfgDeleteState.setStatus('mandatory')
snL4VirtualServerPortCfgTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1), )
if mibBuilder.loadTexts: snL4VirtualServerPortCfgTable.setStatus('mandatory')
snL4VirtualServerPortCfgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortCfgIP"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortCfgPort"))
if mibBuilder.loadTexts: snL4VirtualServerPortCfgEntry.setStatus('mandatory')
snL4VirtualServerPortCfgIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgIP.setStatus('mandatory')
snL4VirtualServerPortCfgPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgPort.setStatus('mandatory')
snL4VirtualServerPortCfgServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 3), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgServerName.setStatus('mandatory')
snL4VirtualServerPortCfgAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 4), L4Status()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgAdminStatus.setStatus('mandatory')
snL4VirtualServerPortCfgSticky = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgSticky.setStatus('mandatory')
snL4VirtualServerPortCfgConcurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgConcurrent.setStatus('mandatory')
snL4VirtualServerPortCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 7), L4RowSts()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgRowStatus.setStatus('mandatory')
snL4VirtualServerPortCfgDeleteState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 8), L4DeleteState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortCfgDeleteState.setStatus('mandatory')
snL4VirtualServerStatisticTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1), )
if mibBuilder.loadTexts: snL4VirtualServerStatisticTable.setStatus('mandatory')
snL4VirtualServerStatisticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerStatisticIP"))
if mibBuilder.loadTexts: snL4VirtualServerStatisticEntry.setStatus('mandatory')
snL4VirtualServerStatisticIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticIP.setStatus('mandatory')
snL4VirtualServerStatisticName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 2), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticName.setStatus('mandatory')
snL4VirtualServerStatisticReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticReceivePkts.setStatus('mandatory')
snL4VirtualServerStatisticTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticTransmitPkts.setStatus('mandatory')
snL4VirtualServerStatisticTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticTotalConnections.setStatus('mandatory')
snL4VirtualServerStatisticReceiveBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticReceiveBytes.setStatus('mandatory')
snL4VirtualServerStatisticTransmitBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticTransmitBytes.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricState.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricPriority.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricKeep = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricKeep.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricActivates = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricActivates.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricInactives = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricInactives.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricBestStandbyMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 13), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricBestStandbyMacAddr.setStatus('mandatory')
snL4VirtualServerStatisticSymmetricActiveMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 14), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerStatisticSymmetricActiveMacAddr.setStatus('mandatory')
snL4RealServerStatisticTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1), )
if mibBuilder.loadTexts: snL4RealServerStatisticTable.setStatus('mandatory')
snL4RealServerStatisticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerStatisticRealIP"))
if mibBuilder.loadTexts: snL4RealServerStatisticEntry.setStatus('mandatory')
snL4RealServerStatisticRealIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticRealIP.setStatus('mandatory')
snL4RealServerStatisticName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 2), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticName.setStatus('mandatory')
snL4RealServerStatisticReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticReceivePkts.setStatus('mandatory')
snL4RealServerStatisticTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticTransmitPkts.setStatus('mandatory')
snL4RealServerStatisticCurConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticCurConnections.setStatus('mandatory')
snL4RealServerStatisticTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticTotalConnections.setStatus('mandatory')
snL4RealServerStatisticAge = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticAge.setStatus('mandatory')
snL4RealServerStatisticState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("serverdisabled", 0), ("serverenabled", 1), ("serverfailed", 2), ("servertesting", 3), ("serversuspect", 4), ("servershutdown", 5), ("serveractive", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticState.setStatus('mandatory')
snL4RealServerStatisticReassignments = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticReassignments.setStatus('mandatory')
snL4RealServerStatisticReassignmentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticReassignmentLimit.setStatus('mandatory')
snL4RealServerStatisticFailedPortExists = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticFailedPortExists.setStatus('mandatory')
snL4RealServerStatisticFailTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticFailTime.setStatus('mandatory')
snL4RealServerStatisticPeakConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerStatisticPeakConnections.setStatus('mandatory')
snL4VirtualServerPortStatisticTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1), )
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticTable.setStatus('mandatory')
snL4VirtualServerPortStatisticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortStatisticIP"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortStatisticPort"))
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticEntry.setStatus('mandatory')
snL4VirtualServerPortStatisticIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticIP.setStatus('mandatory')
snL4VirtualServerPortStatisticPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticPort.setStatus('mandatory')
snL4VirtualServerPortStatisticServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 3), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticServerName.setStatus('mandatory')
snL4VirtualServerPortStatisticCurrentConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticCurrentConnection.setStatus('mandatory')
snL4VirtualServerPortStatisticTotalConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticTotalConnection.setStatus('mandatory')
snL4VirtualServerPortStatisticPeakConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortStatisticPeakConnection.setStatus('mandatory')
snL4RealServerPortStatisticTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1), )
if mibBuilder.loadTexts: snL4RealServerPortStatisticTable.setStatus('mandatory')
snL4RealServerPortStatisticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortStatisticIP"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortStatisticPort"))
if mibBuilder.loadTexts: snL4RealServerPortStatisticEntry.setStatus('mandatory')
snL4RealServerPortStatisticIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticIP.setStatus('mandatory')
snL4RealServerPortStatisticPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticPort.setStatus('mandatory')
snL4RealServerPortStatisticServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 3), L4ServerName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticServerName.setStatus('mandatory')
snL4RealServerPortStatisticReassignCount = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticReassignCount.setStatus('mandatory')
snL4RealServerPortStatisticState = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1), ("failed", 2), ("testing", 3), ("suspect", 4), ("shutdown", 5), ("active", 6), ("unbound", 7), ("awaitUnbind", 8), ("awaitDelete", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticState.setStatus('mandatory')
snL4RealServerPortStatisticFailTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticFailTime.setStatus('mandatory')
snL4RealServerPortStatisticCurrentConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticCurrentConnection.setStatus('mandatory')
snL4RealServerPortStatisticTotalConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticTotalConnection.setStatus('mandatory')
snL4RealServerPortStatisticRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticRxPkts.setStatus('mandatory')
snL4RealServerPortStatisticTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticTxPkts.setStatus('mandatory')
snL4RealServerPortStatisticRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticRxBytes.setStatus('mandatory')
snL4RealServerPortStatisticTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticTxBytes.setStatus('mandatory')
snL4RealServerPortStatisticPeakConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortStatisticPeakConnection.setStatus('mandatory')
snL4GslbSiteRemoteServerIronTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1), )
if mibBuilder.loadTexts: snL4GslbSiteRemoteServerIronTable.setStatus('mandatory')
snL4GslbSiteRemoteServerIronEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4GslbSiteRemoteServerIronIP"))
if mibBuilder.loadTexts: snL4GslbSiteRemoteServerIronEntry.setStatus('mandatory')
snL4GslbSiteRemoteServerIronIP = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4GslbSiteRemoteServerIronIP.setStatus('mandatory')
snL4GslbSiteRemoteServerIronPreference = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4GslbSiteRemoteServerIronPreference.setStatus('mandatory')
snL4RealServerHistoryControlTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1), )
if mibBuilder.loadTexts: snL4RealServerHistoryControlTable.setStatus('mandatory')
snL4RealServerHistoryControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerHistoryControlIndex"))
if mibBuilder.loadTexts: snL4RealServerHistoryControlEntry.setStatus('mandatory')
snL4RealServerHistoryControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryControlIndex.setStatus('mandatory')
snL4RealServerHistoryControlDataSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerHistoryControlDataSource.setStatus('mandatory')
snL4RealServerHistoryControlBucketsRequested = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(50)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerHistoryControlBucketsRequested.setStatus('mandatory')
snL4RealServerHistoryControlBucketsGranted = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryControlBucketsGranted.setStatus('mandatory')
snL4RealServerHistoryControlInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(1800)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerHistoryControlInterval.setStatus('mandatory')
snL4RealServerHistoryControlOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerHistoryControlOwner.setStatus('mandatory')
snL4RealServerHistoryControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("valid", 1), ("createRequest", 2), ("underCreation", 3), ("invalid", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerHistoryControlStatus.setStatus('mandatory')
snL4RealServerHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2), )
if mibBuilder.loadTexts: snL4RealServerHistoryTable.setStatus('mandatory')
snL4RealServerHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerHistoryIndex"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerHistorySampleIndex"))
if mibBuilder.loadTexts: snL4RealServerHistoryEntry.setStatus('mandatory')
snL4RealServerHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryIndex.setStatus('mandatory')
snL4RealServerHistorySampleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistorySampleIndex.setStatus('mandatory')
snL4RealServerHistoryIntervalStart = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 3), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryIntervalStart.setStatus('mandatory')
snL4RealServerHistoryReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryReceivePkts.setStatus('mandatory')
snL4RealServerHistoryTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryTransmitPkts.setStatus('mandatory')
snL4RealServerHistoryTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryTotalConnections.setStatus('mandatory')
snL4RealServerHistoryCurConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryCurConnections.setStatus('mandatory')
snL4RealServerHistoryPeakConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryPeakConnections.setStatus('mandatory')
snL4RealServerHistoryReassignments = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerHistoryReassignments.setStatus('mandatory')
snL4RealServerPortHistoryControlTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3), )
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlTable.setStatus('mandatory')
snL4RealServerPortHistoryControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortHistoryControlIndex"))
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlEntry.setStatus('mandatory')
snL4RealServerPortHistoryControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlIndex.setStatus('mandatory')
snL4RealServerPortHistoryControlDataSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlDataSource.setStatus('mandatory')
snL4RealServerPortHistoryControlBucketsRequested = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(50)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlBucketsRequested.setStatus('mandatory')
snL4RealServerPortHistoryControlBucketsGranted = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlBucketsGranted.setStatus('mandatory')
snL4RealServerPortHistoryControlInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(1800)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlInterval.setStatus('mandatory')
snL4RealServerPortHistoryControlOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlOwner.setStatus('mandatory')
snL4RealServerPortHistoryControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("valid", 1), ("createRequest", 2), ("underCreation", 3), ("invalid", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4RealServerPortHistoryControlStatus.setStatus('mandatory')
snL4RealServerPortHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4), )
if mibBuilder.loadTexts: snL4RealServerPortHistoryTable.setStatus('mandatory')
snL4RealServerPortHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortHistoryIndex"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4RealServerPortHistorySampleIndex"))
if mibBuilder.loadTexts: snL4RealServerPortHistoryEntry.setStatus('mandatory')
snL4RealServerPortHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryIndex.setStatus('mandatory')
snL4RealServerPortHistorySampleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistorySampleIndex.setStatus('mandatory')
snL4RealServerPortHistoryIntervalStart = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 3), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryIntervalStart.setStatus('mandatory')
snL4RealServerPortHistoryReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryReceivePkts.setStatus('mandatory')
snL4RealServerPortHistoryTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryTransmitPkts.setStatus('mandatory')
snL4RealServerPortHistoryTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryTotalConnections.setStatus('mandatory')
snL4RealServerPortHistoryCurConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryCurConnections.setStatus('mandatory')
snL4RealServerPortHistoryPeakConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryPeakConnections.setStatus('mandatory')
snL4RealServerPortHistoryResponseTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4RealServerPortHistoryResponseTime.setStatus('mandatory')
snL4VirtualServerHistoryControlTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5), )
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlTable.setStatus('mandatory')
snL4VirtualServerHistoryControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerHistoryControlIndex"))
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlEntry.setStatus('mandatory')
snL4VirtualServerHistoryControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlIndex.setStatus('mandatory')
snL4VirtualServerHistoryControlDataSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlDataSource.setStatus('mandatory')
snL4VirtualServerHistoryControlBucketsRequested = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(50)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlBucketsRequested.setStatus('mandatory')
snL4VirtualServerHistoryControlBucketsGranted = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlBucketsGranted.setStatus('mandatory')
snL4VirtualServerHistoryControlInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(1800)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlInterval.setStatus('mandatory')
snL4VirtualServerHistoryControlOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlOwner.setStatus('mandatory')
snL4VirtualServerHistoryControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("valid", 1), ("createRequest", 2), ("underCreation", 3), ("invalid", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerHistoryControlStatus.setStatus('mandatory')
snL4VirtualServerHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6), )
if mibBuilder.loadTexts: snL4VirtualServerHistoryTable.setStatus('mandatory')
snL4VirtualServerHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerHistoryIndex"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerHistorySampleIndex"))
if mibBuilder.loadTexts: snL4VirtualServerHistoryEntry.setStatus('mandatory')
snL4VirtualServerHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryIndex.setStatus('mandatory')
snL4VirtualServerHistorySampleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistorySampleIndex.setStatus('mandatory')
snL4VirtualServerHistoryIntervalStart = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 3), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryIntervalStart.setStatus('mandatory')
snL4VirtualServerHistoryReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryReceivePkts.setStatus('mandatory')
snL4VirtualServerHistoryTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryTransmitPkts.setStatus('mandatory')
snL4VirtualServerHistoryTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryTotalConnections.setStatus('mandatory')
snL4VirtualServerHistoryCurConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryCurConnections.setStatus('mandatory')
snL4VirtualServerHistoryPeakConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerHistoryPeakConnections.setStatus('mandatory')
snL4VirtualServerPortHistoryControlTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7), )
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlTable.setStatus('mandatory')
snL4VirtualServerPortHistoryControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortHistoryControlIndex"))
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlEntry.setStatus('mandatory')
snL4VirtualServerPortHistoryControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlIndex.setStatus('mandatory')
snL4VirtualServerPortHistoryControlDataSource = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlDataSource.setStatus('mandatory')
snL4VirtualServerPortHistoryControlBucketsRequested = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(50)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlBucketsRequested.setStatus('mandatory')
snL4VirtualServerPortHistoryControlBucketsGranted = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlBucketsGranted.setStatus('mandatory')
snL4VirtualServerPortHistoryControlInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(1800)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlInterval.setStatus('mandatory')
snL4VirtualServerPortHistoryControlOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlOwner.setStatus('mandatory')
snL4VirtualServerPortHistoryControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("valid", 1), ("createRequest", 2), ("underCreation", 3), ("invalid", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryControlStatus.setStatus('mandatory')
snL4VirtualServerPortHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8), )
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryTable.setStatus('mandatory')
snL4VirtualServerPortHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1), ).setIndexNames((0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortHistoryIndex"), (0, "HP-SN-SW-L4-SWITCH-GROUP-MIB", "snL4VirtualServerPortHistorySampleIndex"))
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryEntry.setStatus('mandatory')
snL4VirtualServerPortHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryIndex.setStatus('mandatory')
snL4VirtualServerPortHistorySampleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistorySampleIndex.setStatus('mandatory')
snL4VirtualServerPortHistoryIntervalStart = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 3), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryIntervalStart.setStatus('mandatory')
snL4VirtualServerPortHistoryReceivePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryReceivePkts.setStatus('mandatory')
snL4VirtualServerPortHistoryTransmitPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryTransmitPkts.setStatus('mandatory')
snL4VirtualServerPortHistoryTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryTotalConnections.setStatus('mandatory')
snL4VirtualServerPortHistoryCurConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryCurConnections.setStatus('mandatory')
snL4VirtualServerPortHistoryPeakConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: snL4VirtualServerPortHistoryPeakConnections.setStatus('mandatory')
mibBuilder.exportSymbols("HP-SN-SW-L4-SWITCH-GROUP-MIB", snL4RealServerPortStatisticState=snL4RealServerPortStatisticState, snL4EnableRealServerDownTrap=snL4EnableRealServerDownTrap, snL4VirtualServerPortStatisticPort=snL4VirtualServerPortStatisticPort, snL4BindTable=snL4BindTable, snL4BackupMacAddr=snL4BackupMacAddr, snL4EnableGslbHealthCheckIpPortDownTrap=snL4EnableGslbHealthCheckIpPortDownTrap, snL4VirtualServerPortHistoryTransmitPkts=snL4VirtualServerPortHistoryTransmitPkts, snL4UdpAge=snL4UdpAge, L4Status=L4Status, snL4RealServerPortCfgServerName=snL4RealServerPortCfgServerName, snL4RealServerCfgMaxConnections=snL4RealServerCfgMaxConnections, snL4VirtualServerPort=snL4VirtualServerPort, snL4VirtualServerHistoryControlInterval=snL4VirtualServerHistoryControlInterval, snL4RealServerHistoryEntry=snL4RealServerHistoryEntry, snL4VirtualServerStatisticSymmetricInactives=snL4VirtualServerStatisticSymmetricInactives, snL4VirtualServerPortCfgRowStatus=snL4VirtualServerPortCfgRowStatus, snL4VirtualServerStatisticSymmetricBestStandbyMacAddr=snL4VirtualServerStatisticSymmetricBestStandbyMacAddr, snL4WebCacheTrafficStatsEntry=snL4WebCacheTrafficStatsEntry, snL4VirtualServerPortCfgEntry=snL4VirtualServerPortCfgEntry, snL4VirtualServerPortStatisticTable=snL4VirtualServerPortStatisticTable, snL4RealServerPortHistoryTotalConnections=snL4RealServerPortHistoryTotalConnections, snL4VirtualServerHistoryReceivePkts=snL4VirtualServerHistoryReceivePkts, snL4RealServerPortStatisticRxPkts=snL4RealServerPortStatisticRxPkts, PhysAddress=PhysAddress, snL4RealServerPortTable=snL4RealServerPortTable, snL4WebCacheGroup=snL4WebCacheGroup, snL4WebCachePortPort=snL4WebCachePortPort, snL4EnableGslbRemoteGslbSiUpTrap=snL4EnableGslbRemoteGslbSiUpTrap, snL4VirtualServerPortCfgPort=snL4VirtualServerPortCfgPort, snL4RealServerPortHistoryControlBucketsRequested=snL4RealServerPortHistoryControlBucketsRequested, snL4PolicyPortAccessTable=snL4PolicyPortAccessTable, snL4RealServerHistoryReassignments=snL4RealServerHistoryReassignments, snL4RealServerStatusFailTime=snL4RealServerStatusFailTime, snL4RealServerRowStatus=snL4RealServerRowStatus, snL4RealServerPortStatusRxPkts=snL4RealServerPortStatusRxPkts, snL4PolicyPriority=snL4PolicyPriority, snL4RealServerPortHistoryControlStatus=snL4RealServerPortHistoryControlStatus, L4DeleteState=L4DeleteState, snL4History=snL4History, snL4BecomeStandBy=snL4BecomeStandBy, snL4Gen=snL4Gen, snL4WebCachePortState=snL4WebCachePortState, snL4slbGlobalSDAType=snL4slbGlobalSDAType, snL4RealServerPortStatusTotalConnection=snL4RealServerPortStatusTotalConnection, snL4VirtualServerEntry=snL4VirtualServerEntry, snL4slbRouterInterfacePortMask=snL4slbRouterInterfacePortMask, snL4VirtualServerPortCfg=snL4VirtualServerPortCfg, snL4RealServerCfgDeleteState=snL4RealServerCfgDeleteState, snL4VirtualServerHistoryPeakConnections=snL4VirtualServerHistoryPeakConnections, snL4PolicyPort=snL4PolicyPort, snL4VirtualServerHistoryControlDataSource=snL4VirtualServerHistoryControlDataSource, snL4RealServerStatisticTotalConnections=snL4RealServerStatisticTotalConnections, snL4RealServerHistoryControlTable=snL4RealServerHistoryControlTable, snL4RealServerPortHistoryEntry=snL4RealServerPortHistoryEntry, snL4unsuccessfulConn=snL4unsuccessfulConn, snL4EnableRealServerMaxConnLimitReachedTrap=snL4EnableRealServerMaxConnLimitReachedTrap, snL4RealServerCfgWeight=snL4RealServerCfgWeight, snL4RealServerPortHistoryPeakConnections=snL4RealServerPortHistoryPeakConnections, snL4VirtualServerPortCfgIP=snL4VirtualServerPortCfgIP, snL4VirtualServerPortSticky=snL4VirtualServerPortSticky, snL4slbDrops=snL4slbDrops, L4Flag=L4Flag, snL4WebCacheRowStatus=snL4WebCacheRowStatus, snL4RealServerPortStatisticTable=snL4RealServerPortStatisticTable, snL4RealServerPortHistoryCurConnections=snL4RealServerPortHistoryCurConnections, snL4EnableGslbRemoteSiDownTrap=snL4EnableGslbRemoteSiDownTrap, snL4VirtualServerPortServerName=snL4VirtualServerPortServerName, snL4TrapRealServerPort=snL4TrapRealServerPort, snL4VirtualServerStatisticName=snL4VirtualServerStatisticName, snL4EnableBecomeActiveTrap=snL4EnableBecomeActiveTrap, snL4BindRealPortNumber=snL4BindRealPortNumber, snL4RealServerPortStatusPort=snL4RealServerPortStatusPort, snL4VirtualServerHistoryCurConnections=snL4VirtualServerHistoryCurConnections, snL4RealServerPortStatisticEntry=snL4RealServerPortStatisticEntry, snL4RealServerPortHistoryReceivePkts=snL4RealServerPortHistoryReceivePkts, snL4RealServerHistoryControlEntry=snL4RealServerHistoryControlEntry, snL4RealServerPort=snL4RealServerPort, snL4WebCacheGroupAdminStatus=snL4WebCacheGroupAdminStatus, snL4RealServerPortStatisticServerName=snL4RealServerPortStatisticServerName, snL4RealServerPortStatisticReassignCount=snL4RealServerPortStatisticReassignCount, snL4RealServerTable=snL4RealServerTable, snL4VirtualServerStatisticSymmetricActiveMacAddr=snL4VirtualServerStatisticSymmetricActiveMacAddr, snL4TrapRealServerIP=snL4TrapRealServerIP, snL4VirtualServerPortTable=snL4VirtualServerPortTable, snL4RealServerStatusState=snL4RealServerStatusState, snL4RealServerEntry=snL4RealServerEntry, snL4WebCacheTxPkts=snL4WebCacheTxPkts, snL4RealServerPortCfgAdminStatus=snL4RealServerPortCfgAdminStatus, snL4RealServerPortCfgTable=snL4RealServerPortCfgTable, snL4VirtualServerPortConcurrent=snL4VirtualServerPortConcurrent, snL4TrapRealServerName=snL4TrapRealServerName, snL4RealServerPortStatisticCurrentConnection=snL4RealServerPortStatisticCurrentConnection, snL4EnableBecomeStandbyTrap=snL4EnableBecomeStandbyTrap, snL4NoPDUSent=snL4NoPDUSent, snL4RealServerStatisticTable=snL4RealServerStatisticTable, snL4RealServerPortStatusState=snL4RealServerPortStatusState, snL4RealServerIndex=snL4RealServerIndex, snL4VirtualServerPortPort=snL4VirtualServerPortPort, snL4RealServerMaxConnections=snL4RealServerMaxConnections, snL4VirtualServerStatisticSymmetricKeep=snL4VirtualServerStatisticSymmetricKeep, snL4VirtualServerPortStatusServerName=snL4VirtualServerPortStatusServerName, snL4VirtualServerHistoryEntry=snL4VirtualServerHistoryEntry, snL4VirtualServerHistoryIndex=snL4VirtualServerHistoryIndex, snL4RealServerStatisticReceivePkts=snL4RealServerStatisticReceivePkts, snL4WebCacheTrafficIp=snL4WebCacheTrafficIp, snL4RealServerPortCfgDeleteState=snL4RealServerPortCfgDeleteState, snL4WebUncachedTrafficStatsEntry=snL4WebUncachedTrafficStatsEntry, snL4VirtualServerPortIndex=snL4VirtualServerPortIndex, snL4VirtualServerStatisticTransmitPkts=snL4VirtualServerStatisticTransmitPkts, snL4VirtualServerPortStatusTotalConnection=snL4VirtualServerPortStatusTotalConnection, snL4Backup=snL4Backup, snL4RealServerStatusCurConnections=snL4RealServerStatusCurConnections, snL4PolicyPortAccessEntry=snL4PolicyPortAccessEntry, snL4VirtualServerPortStatisticIP=snL4VirtualServerPortStatisticIP, snL4VirtualServerPortAdminStatus=snL4VirtualServerPortAdminStatus, snL4PolicyTable=snL4PolicyTable, snL4WebCacheGroupWebCacheIpList=snL4WebCacheGroupWebCacheIpList, snL4RealServerPortHistoryControlDataSource=snL4RealServerPortHistoryControlDataSource, snL4slbRouterInterfacePortList=snL4slbRouterInterfacePortList, snL4VirtualServerStatisticTotalConnections=snL4VirtualServerStatisticTotalConnections, snL4RealServerStatisticTransmitPkts=snL4RealServerStatisticTransmitPkts, snL4VirtualServerCfgTable=snL4VirtualServerCfgTable, snL4VirtualServerHistoryControlOwner=snL4VirtualServerHistoryControlOwner, snL4VirtualServerPortHistoryCurConnections=snL4VirtualServerPortHistoryCurConnections, snL4RealServerPortHistoryControlBucketsGranted=snL4RealServerPortHistoryControlBucketsGranted, snL4RealServerStatisticCurConnections=snL4RealServerStatisticCurConnections, snL4VirtualServerStatisticTransmitBytes=snL4VirtualServerStatisticTransmitBytes, snL4slbTotalConnections=snL4slbTotalConnections, snL4RealServerPortStatistic=snL4RealServerPortStatistic, snL4VirtualServerStatisticTable=snL4VirtualServerStatisticTable, snL4VirtualServerCfgDeleteState=snL4VirtualServerCfgDeleteState, snL4RealServerStatusTransmitPkts=snL4RealServerStatusTransmitPkts, snL4WebCacheTotalConnections=snL4WebCacheTotalConnections, snL4VirtualServerStatusIndex=snL4VirtualServerStatusIndex, snL4VirtualServerPortHistoryControlDataSource=snL4VirtualServerPortHistoryControlDataSource, snL4VirtualServerPortCfgSticky=snL4VirtualServerPortCfgSticky, snL4RealServerStatistic=snL4RealServerStatistic, snL4WebCacheGroupName=snL4WebCacheGroupName, snL4EnableGslbHealthCheckIpDownTrap=snL4EnableGslbHealthCheckIpDownTrap, snL4GslbSiteRemoteServerIronPreference=snL4GslbSiteRemoteServerIronPreference, snL4MaxNumWebCacheGroup=snL4MaxNumWebCacheGroup, snL4slbLimitExceeds=snL4slbLimitExceeds, snL4RealServerPortStatusTable=snL4RealServerPortStatusTable, snL4slbDangling=snL4slbDangling, snL4RealServerPortStatisticIP=snL4RealServerPortStatisticIP, snL4RealServerCfgTable=snL4RealServerCfgTable, snL4VirtualServerStatisticEntry=snL4VirtualServerStatisticEntry, snL4RealServerCfgEntry=snL4RealServerCfgEntry, snL4RealServerPortStatusFailTime=snL4RealServerPortStatusFailTime, snL4RealServerIP=snL4RealServerIP, snL4VirtualServerTable=snL4VirtualServerTable, snL4WebCacheMaxConnections=snL4WebCacheMaxConnections, snL4BindIndex=snL4BindIndex, snL4WebCacheGroupRowStatus=snL4WebCacheGroupRowStatus, snL4slbFinished=snL4slbFinished, snL4VirtualServerHistoryControlStatus=snL4VirtualServerHistoryControlStatus, snL4EnableRealServerPortDownTrap=snL4EnableRealServerPortDownTrap, snL4RealServerPortHistoryIntervalStart=snL4RealServerPortHistoryIntervalStart, snL4WebCacheEntry=snL4WebCacheEntry, snL4RealServerHistoryControlOwner=snL4RealServerHistoryControlOwner, snL4VirtualServerHistoryControlTable=snL4VirtualServerHistoryControlTable, snL4WebUncachedTrafficStatsTable=snL4WebUncachedTrafficStatsTable, snL4RealServerHistoryTotalConnections=snL4RealServerHistoryTotalConnections, snL4WebCacheStateful=snL4WebCacheStateful, snL4VirtualServerHistoryControlBucketsRequested=snL4VirtualServerHistoryControlBucketsRequested, snL4EnableGslbHealthCheckIpPortUpTrap=snL4EnableGslbHealthCheckIpPortUpTrap, snL4RealServerPortHistoryControlOwner=snL4RealServerPortHistoryControlOwner, snL4WebCacheAdminStatus=snL4WebCacheAdminStatus, snL4RealServerHistoryPeakConnections=snL4RealServerHistoryPeakConnections, snL4WebCachePortEntry=snL4WebCachePortEntry, snL4RealServerStatusReassignmentLimit=snL4RealServerStatusReassignmentLimit, snL4RealServerStatisticName=snL4RealServerStatisticName, snL4NoPDUCount=snL4NoPDUCount, snL4VirtualServerPortCfgAdminStatus=snL4VirtualServerPortCfgAdminStatus, snL4PingRetry=snL4PingRetry, snL4VirtualServerStatisticSymmetricState=snL4VirtualServerStatisticSymmetricState, snL4Bind=snL4Bind, snL4VirtualServerStatusTransmitPkts=snL4VirtualServerStatusTransmitPkts, snL4VirtualServerPortStatusEntry=snL4VirtualServerPortStatusEntry, snL4VirtualServerHistoryControlBucketsGranted=snL4VirtualServerHistoryControlBucketsGranted, snL4WebCacheGroupEntry=snL4WebCacheGroupEntry, snL4VirtualServerPortCfgDeleteState=snL4VirtualServerPortCfgDeleteState, snL4RealServerPortStatisticTotalConnection=snL4RealServerPortStatisticTotalConnection, snL4RealServerPortHistoryControlInterval=snL4RealServerPortHistoryControlInterval, snL4VirtualServerCfgName=snL4VirtualServerCfgName, snL4WebCachePortAdminStatus=snL4WebCachePortAdminStatus, snL4VirtualServerCfgVirtualIP=snL4VirtualServerCfgVirtualIP, snL4RealServerPortHistoryTable=snL4RealServerPortHistoryTable, snL4VirtualServerPortHistoryControlInterval=snL4VirtualServerPortHistoryControlInterval, snL4RealServerStatisticReassignmentLimit=snL4RealServerStatisticReassignmentLimit, snL4RealServerAdminStatus=snL4RealServerAdminStatus, snL4RealServerStatusReassignments=snL4RealServerStatusReassignments, snL4WebServerPort=snL4WebServerPort, snL4WebCacheTable=snL4WebCacheTable, snL4VirtualServerStatusEntry=snL4VirtualServerStatusEntry, snL4PolicyRowStatus=snL4PolicyRowStatus, snL4RealServerHistorySampleIndex=snL4RealServerHistorySampleIndex, snL4MaxNumWebCachePerGroup=snL4MaxNumWebCachePerGroup, snL4VirtualServerPortHistoryIntervalStart=snL4VirtualServerPortHistoryIntervalStart, snL4VirtualServerPortStatisticCurrentConnection=snL4VirtualServerPortStatisticCurrentConnection, snL4VirtualServerStatistic=snL4VirtualServerStatistic, snL4WebCacheCurrConnections=snL4WebCacheCurrConnections, snL4VirtualServerStatisticIP=snL4VirtualServerStatisticIP, snL4VirtualServerRowStatus=snL4VirtualServerRowStatus, snL4RealServerCfgRowStatus=snL4RealServerCfgRowStatus, snL4TcpAge=snL4TcpAge, snL4slbReverseTraffic=snL4slbReverseTraffic, snL4RealServerPortStatisticFailTime=snL4RealServerPortStatisticFailTime, snL4RealServerStatisticReassignments=snL4RealServerStatisticReassignments, snL4RealServerHistoryIndex=snL4RealServerHistoryIndex, snL4VirtualServerHistoryControlEntry=snL4VirtualServerHistoryControlEntry, snL4RealServerPortStatusRxBytes=snL4RealServerPortStatusRxBytes, snL4VirtualServerStatusName=snL4VirtualServerStatusName, snL4WebCacheIP=snL4WebCacheIP, snL4VirtualServerPortStatisticTotalConnection=snL4VirtualServerPortStatisticTotalConnection, snL4WebCacheTrafficPort=snL4WebCacheTrafficPort, snL4PolicyPortAccessPort=snL4PolicyPortAccessPort, snL4VirtualServerStatisticSymmetricPriority=snL4VirtualServerStatisticSymmetricPriority, snL4WebCacheRxOctets=snL4WebCacheRxOctets, snL4Active=snL4Active, snL4FreeSessionCount=snL4FreeSessionCount, snL4VirtualServerCfgSDAType=snL4VirtualServerCfgSDAType, snL4RealServerDeleteState=snL4RealServerDeleteState, snL4VirtualServerStatisticReceivePkts=snL4VirtualServerStatisticReceivePkts, snL4RealServerPortServerName=snL4RealServerPortServerName, snL4NoPortMap=snL4NoPortMap, snL4RealServerPortStatusReassignCount=snL4RealServerPortStatusReassignCount, snL4RealServerHistoryControlBucketsRequested=snL4RealServerHistoryControlBucketsRequested, snL4WebCacheGroupId=snL4WebCacheGroupId, snL4RealServerHistoryCurConnections=snL4RealServerHistoryCurConnections, snL4WebCachePortTable=snL4WebCachePortTable, snL4PolicyId=snL4PolicyId, snL4WebCacheTxOctets=snL4WebCacheTxOctets, WebCacheState=WebCacheState, snL4VirtualServerStatusTotalConnections=snL4VirtualServerStatusTotalConnections, snL4VirtualServerPortStatus=snL4VirtualServerPortStatus, snL4VirtualServerPortHistoryIndex=snL4VirtualServerPortHistoryIndex, snL4RealServerHistoryTable=snL4RealServerHistoryTable, snL4VirtualServerPortStatusCurrentConnection=snL4VirtualServerPortStatusCurrentConnection, snL4RealServerPortStatus=snL4RealServerPortStatus, snL4VirtualServerPortDeleteState=snL4VirtualServerPortDeleteState, snL4RealServerCfgAdminStatus=snL4RealServerCfgAdminStatus, snL4WebCacheTrafficStats=snL4WebCacheTrafficStats, snL4RealServerStatusFailedPortExists=snL4RealServerStatusFailedPortExists, snL4VirtualServerPortHistoryPeakConnections=snL4VirtualServerPortHistoryPeakConnections, snL4VirtualServerPortHistoryEntry=snL4VirtualServerPortHistoryEntry, snL4VirtualServerPortStatusTable=snL4VirtualServerPortStatusTable, snL4VirtualServerPortCfgConcurrent=snL4VirtualServerPortCfgConcurrent, snL4VirtualServerHistoryTotalConnections=snL4VirtualServerHistoryTotalConnections, snL4VirtualServerAdminStatus=snL4VirtualServerAdminStatus, snL4VirtualServerSDAType=snL4VirtualServerSDAType, snL4WebClientPortName=snL4WebClientPortName, snL4RealServerPortEntry=snL4RealServerPortEntry, snL4RealServerPortHistoryControlIndex=snL4RealServerPortHistoryControlIndex)
mibBuilder.exportSymbols("HP-SN-SW-L4-SWITCH-GROUP-MIB", snL4WebCachePort=snL4WebCachePort, snL4RealServerPortStatisticPort=snL4RealServerPortStatisticPort, snL4VirtualServerPortStatisticServerName=snL4VirtualServerPortStatisticServerName, snL4VirtualServerPortStatusPort=snL4VirtualServerPortStatusPort, snL4WebCacheGroupDestMask=snL4WebCacheGroupDestMask, snL4RealServerPortStatusIndex=snL4RealServerPortStatusIndex, snL4RealServerPortStatisticTxBytes=snL4RealServerPortStatisticTxBytes, snL4MaxSessionLimit=snL4MaxSessionLimit, snL4RealServerStatusTable=snL4RealServerStatusTable, snL4WebCacheWeight=snL4WebCacheWeight, snL4GslbSiteRemoteServerIrons=snL4GslbSiteRemoteServerIrons, snL4WebCachePortServerIp=snL4WebCachePortServerIp, snL4RealServerPortStatisticTxPkts=snL4RealServerPortStatisticTxPkts, snL4WebUncachedRxPkts=snL4WebUncachedRxPkts, snL4RealServerPortHistoryIndex=snL4RealServerPortHistoryIndex, snL4RealServerPortStatusServerName=snL4RealServerPortStatusServerName, snL4RealServerPortCfgEntry=snL4RealServerPortCfgEntry, snL4VirtualServerPortHistoryControlStatus=snL4VirtualServerPortHistoryControlStatus, snL4VirtualServerCfgEntry=snL4VirtualServerCfgEntry, snL4RealServerPortStatisticPeakConnection=snL4RealServerPortStatisticPeakConnection, snL4RealServerHistoryTransmitPkts=snL4RealServerHistoryTransmitPkts, snL4RealServerStatusName=snL4RealServerStatusName, snL4RealServerPortStatusTxPkts=snL4RealServerPortStatusTxPkts, snL4RealServerPortPort=snL4RealServerPortPort, snL4RealServerPortStatusTxBytes=snL4RealServerPortStatusTxBytes, snL4Redundancy=snL4Redundancy, L4RowSts=L4RowSts, snL4PolicyScope=snL4PolicyScope, snL4RealServerStatusRealIP=snL4RealServerStatusRealIP, snL4EnableGslbRemoteGslbSiDownTrap=snL4EnableGslbRemoteGslbSiDownTrap, snL4VirtualServerCfgRowStatus=snL4VirtualServerCfgRowStatus, snL4RealServerPortHistoryControlEntry=snL4RealServerPortHistoryControlEntry, snL4BackupInterface=snL4BackupInterface, snL4WebUncachedTxPkts=snL4WebUncachedTxPkts, snL4VirtualServerHistoryTable=snL4VirtualServerHistoryTable, snL4RealServerStatus=snL4RealServerStatus, snL4VirtualServerPortHistoryReceivePkts=snL4VirtualServerPortHistoryReceivePkts, snL4GslbSiteRemoteServerIronEntry=snL4GslbSiteRemoteServerIronEntry, snL4PolicyEntry=snL4PolicyEntry, snL4RealServerPortCfgRowStatus=snL4RealServerPortCfgRowStatus, snL4VirtualServerPortHistoryControlEntry=snL4VirtualServerPortHistoryControlEntry, snL4EnableRealServerPortUpTrap=snL4EnableRealServerPortUpTrap, snL4VirtualServerVirtualIP=snL4VirtualServerVirtualIP, snL4BindEntry=snL4BindEntry, snL4RealServerStatisticFailedPortExists=snL4RealServerStatisticFailedPortExists, snL4RealServerStatisticAge=snL4RealServerStatisticAge, snL4VirtualServerPortStatisticPeakConnection=snL4VirtualServerPortStatisticPeakConnection, snL4VirtualServerPortCfgTable=snL4VirtualServerPortCfgTable, snL4WebUncachedTxOctets=snL4WebUncachedTxOctets, snL4WebUncachedRxOctets=snL4WebUncachedRxOctets, snL4WebCacheName=snL4WebCacheName, snL4EnableRealServerUpTrap=snL4EnableRealServerUpTrap, snL4RealServerPortCfgIP=snL4RealServerPortCfgIP, snL4VirtualServer=snL4VirtualServer, snL4VirtualServerStatusReceivePkts=snL4VirtualServerStatusReceivePkts, snL4VirtualServerCfgAdminStatus=snL4VirtualServerCfgAdminStatus, snL4RealServerPortHistoryTransmitPkts=snL4RealServerPortHistoryTransmitPkts, snL4RealServerPortDeleteState=snL4RealServerPortDeleteState, snL4VirtualServerHistoryControlIndex=snL4VirtualServerHistoryControlIndex, snL4slbForwardTraffic=snL4slbForwardTraffic, snL4RealServerStatisticRealIP=snL4RealServerStatisticRealIP, snL4TrapRealServerCurConnections=snL4TrapRealServerCurConnections, snL4VirtualServerPortHistoryTable=snL4VirtualServerPortHistoryTable, snL4Trap=snL4Trap, snL4RealServerPortHistoryControlTable=snL4RealServerPortHistoryControlTable, snL4VirtualServerDeleteState=snL4VirtualServerDeleteState, snL4VirtualServerStatisticSymmetricActivates=snL4VirtualServerStatisticSymmetricActivates, snL4WebCacheRxPkts=snL4WebCacheRxPkts, snL4VirtualServerPortEntry=snL4VirtualServerPortEntry, snL4PingInterval=snL4PingInterval, snL4BindVirtualServerName=snL4BindVirtualServerName, snL4WebCacheDeleteState=snL4WebCacheDeleteState, snL4RealServerPortStatisticRxBytes=snL4RealServerPortStatisticRxBytes, snL4WebCachePortDeleteState=snL4WebCachePortDeleteState, snL4VirtualServerHistorySampleIndex=snL4VirtualServerHistorySampleIndex, snL4RealServerPortStatusPeakConnection=snL4RealServerPortStatusPeakConnection, snL4RealServerPortHistorySampleIndex=snL4RealServerPortHistorySampleIndex, snL4RealServerHistoryControlBucketsGranted=snL4RealServerHistoryControlBucketsGranted, snL4VirtualServerPortStatisticEntry=snL4VirtualServerPortStatisticEntry, snL4RealServerStatisticState=snL4RealServerStatisticState, snL4VirtualServerPortHistorySampleIndex=snL4VirtualServerPortHistorySampleIndex, snL4RealServerStatusReceivePkts=snL4RealServerStatusReceivePkts, snL4BecomeActive=snL4BecomeActive, snL4RealServerPortRowStatus=snL4RealServerPortRowStatus, snL4WebClientPort=snL4WebClientPort, snL4WebCacheGroupTable=snL4WebCacheGroupTable, snL4RealServerPortIndex=snL4RealServerPortIndex, snL4Policy=snL4Policy, snL4BindRealServerName=snL4BindRealServerName, snL4BindVirtualPortNumber=snL4BindVirtualPortNumber, snL4WebServerPortName=snL4WebServerPortName, snL4EnableMaxSessionLimitReachedTrap=snL4EnableMaxSessionLimitReachedTrap, snL4WebCacheGroupSrcMask=snL4WebCacheGroupSrcMask, snL4RealServerStatisticEntry=snL4RealServerStatisticEntry, snL4GslbSiteRemoteServerIronTable=snL4GslbSiteRemoteServerIronTable, snL4VirtualServerHistoryIntervalStart=snL4VirtualServerHistoryIntervalStart, snL4EnableGslbHealthCheckIpUpTrap=snL4EnableGslbHealthCheckIpUpTrap, snL4VirtualServerStatusTable=snL4VirtualServerStatusTable, snL4RealServerStatusTotalConnections=snL4RealServerStatusTotalConnections, snL4VirtualServerPortHistoryControlBucketsGranted=snL4VirtualServerPortHistoryControlBucketsGranted, snL4EnableGslbRemoteSiUpTrap=snL4EnableGslbRemoteSiUpTrap, snL4VirtualServerStatus=snL4VirtualServerStatus, snL4RealServerCfgIP=snL4RealServerCfgIP, snL4VirtualServerPortStatusPeakConnection=snL4VirtualServerPortStatusPeakConnection, snL4RealServerStatusPeakConnections=snL4RealServerStatusPeakConnections, snL4RealServerPortHistoryResponseTime=snL4RealServerPortHistoryResponseTime, DisplayString=DisplayString, snL4slbDisableCount=snL4slbDisableCount, snL4VirtualServerPortHistoryTotalConnections=snL4VirtualServerPortHistoryTotalConnections, snL4VirtualServerStatisticReceiveBytes=snL4VirtualServerStatisticReceiveBytes, snL4RealServerPortCfg=snL4RealServerPortCfg, snL4RealServerHistoryControlStatus=snL4RealServerHistoryControlStatus, snL4VirtualServerHistoryTransmitPkts=snL4VirtualServerHistoryTransmitPkts, snL4RealServerCfg=snL4RealServerCfg, snL4RealServerStatisticFailTime=snL4RealServerStatisticFailTime, snL4BackupState=snL4BackupState, snL4WebCachePortRowStatus=snL4WebCachePortRowStatus, snL4VirtualServerCfg=snL4VirtualServerCfg, snL4WebCacheTrafficStatsTable=snL4WebCacheTrafficStatsTable, snL4PolicyProtocol=snL4PolicyProtocol, snL4RealServer=snL4RealServer, snL4VirtualServerIndex=snL4VirtualServerIndex, snL4TcpSynLimit=snL4TcpSynLimit, snL4RealServerWeight=snL4RealServerWeight, snL4RealServerHistoryControlDataSource=snL4RealServerHistoryControlDataSource, snL4BindRowStatus=snL4BindRowStatus, snL4PolicyPortAccessRowStatus=snL4PolicyPortAccessRowStatus, snL4RealServerHistoryControlInterval=snL4RealServerHistoryControlInterval, snL4VirtualServerPortHistoryControlOwner=snL4VirtualServerPortHistoryControlOwner, snL4RealServerPortCfgPort=snL4RealServerPortCfgPort, snL4RealServerPortStatusEntry=snL4RealServerPortStatusEntry, snL4VirtualServerPortRowStatus=snL4VirtualServerPortRowStatus, snL4RealServerStatusEntry=snL4RealServerStatusEntry, L4ServerName=L4ServerName, snL4VirtualServerPortHistoryControlTable=snL4VirtualServerPortHistoryControlTable, snL4VirtualServerPortHistoryControlBucketsRequested=snL4VirtualServerPortHistoryControlBucketsRequested, snL4VirtualServerPortHistoryControlIndex=snL4VirtualServerPortHistoryControlIndex, snL4RealServerPortStatusCurrentConnection=snL4RealServerPortStatusCurrentConnection, snL4PolicyPortAccessList=snL4PolicyPortAccessList, snL4RealServerCfgName=snL4RealServerCfgName, snL4WebUncachedTrafficStats=snL4WebUncachedTrafficStats, snL4VirtualServerName=snL4VirtualServerName, snL4RealServerPortAdminStatus=snL4RealServerPortAdminStatus, snL4VirtualServerPortStatusIndex=snL4VirtualServerPortStatusIndex, snL4RealServerName=snL4RealServerName, snL4RealServerHistoryIntervalStart=snL4RealServerHistoryIntervalStart, snL4RealServerStatusAge=snL4RealServerStatusAge, snL4VirtualServerPortStatistic=snL4VirtualServerPortStatistic, snL4RealServerHistoryControlIndex=snL4RealServerHistoryControlIndex, snL4slbAged=snL4slbAged, snL4RealServerStatusIndex=snL4RealServerStatusIndex, snL4WebCache=snL4WebCache, snL4RealServerHistoryReceivePkts=snL4RealServerHistoryReceivePkts, snL4PolicyPortAccess=snL4PolicyPortAccess, snL4RealServerStatisticPeakConnections=snL4RealServerStatisticPeakConnections, snL4EnableTcpSynLimitReachedTrap=snL4EnableTcpSynLimitReachedTrap, snL4GslbSiteRemoteServerIronIP=snL4GslbSiteRemoteServerIronIP, snL4VirtualServerPortCfgServerName=snL4VirtualServerPortCfgServerName)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, constraints_union, single_value_constraint, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint')
(sn_l4,) = mibBuilder.importSymbols('HP-SN-ROOT-MIB', 'snL4')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(ip_address, integer32, counter32, counter64, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, time_ticks, notification_type, gauge32, unsigned32, object_identity, mib_identifier, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Integer32', 'Counter32', 'Counter64', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'TimeTicks', 'NotificationType', 'Gauge32', 'Unsigned32', 'ObjectIdentity', 'MibIdentifier', 'ModuleIdentity')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
class L4Rowsts(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('other', 1), ('valid', 2), ('delete', 3), ('create', 4), ('modify', 5))
class L4Status(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1))
named_values = named_values(('disabled', 0), ('enabled', 1))
class L4Servername(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(1, 32)
class L4Flag(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1))
named_values = named_values(('false', 0), ('true', 1))
class L4Deletestate(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2))
named_values = named_values(('done', 0), ('waitunbind', 1), ('waitdelete', 2))
class Webcachestate(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))
named_values = named_values(('disabled', 0), ('enabled', 1), ('failed', 2), ('testing', 3), ('suspect', 4), ('shutdown', 5), ('active', 6))
class Physaddress(OctetString):
pass
class Displaystring(OctetString):
pass
sn_l4_gen = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1))
sn_l4_virtual_server = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2))
sn_l4_real_server = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3))
sn_l4_virtual_server_port = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4))
sn_l4_real_server_port = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5))
sn_l4_bind = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6))
sn_l4_virtual_server_status = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7))
sn_l4_real_server_status = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8))
sn_l4_virtual_server_port_status = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9))
sn_l4_real_server_port_status = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10))
sn_l4_policy = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11))
sn_l4_policy_port_access = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12))
sn_l4_trap = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13))
sn_l4_web_cache = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14))
sn_l4_web_cache_group = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15))
sn_l4_web_cache_traffic_stats = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16))
sn_l4_web_uncached_traffic_stats = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17))
sn_l4_web_cache_port = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18))
sn_l4_real_server_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19))
sn_l4_real_server_port_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20))
sn_l4_virtual_server_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21))
sn_l4_virtual_server_port_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22))
sn_l4_real_server_statistic = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23))
sn_l4_real_server_port_statistic = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24))
sn_l4_virtual_server_statistic = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25))
sn_l4_virtual_server_port_statistic = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26))
sn_l4_gslb_site_remote_server_irons = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27))
sn_l4_history = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28))
sn_l4_max_session_limit = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4MaxSessionLimit.setStatus('mandatory')
sn_l4_tcp_syn_limit = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4TcpSynLimit.setStatus('mandatory')
sn_l4slb_global_sda_type = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('leastconnection', 1), ('roundrobin', 2), ('weighted', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4slbGlobalSDAType.setStatus('mandatory')
sn_l4slb_total_connections = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbTotalConnections.setStatus('mandatory')
sn_l4slb_limit_exceeds = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbLimitExceeds.setStatus('mandatory')
sn_l4slb_forward_traffic = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbForwardTraffic.setStatus('mandatory')
sn_l4slb_reverse_traffic = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbReverseTraffic.setStatus('mandatory')
sn_l4slb_drops = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbDrops.setStatus('mandatory')
sn_l4slb_dangling = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbDangling.setStatus('mandatory')
sn_l4slb_disable_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbDisableCount.setStatus('mandatory')
sn_l4slb_aged = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbAged.setStatus('mandatory')
sn_l4slb_finished = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4slbFinished.setStatus('mandatory')
sn_l4_free_session_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4FreeSessionCount.setStatus('mandatory')
sn_l4_backup_interface = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 26))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BackupInterface.setStatus('mandatory')
sn_l4_backup_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 15), phys_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BackupMacAddr.setStatus('mandatory')
sn_l4_active = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 16), l4_flag()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4Active.setStatus('mandatory')
sn_l4_redundancy = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4Redundancy.setStatus('mandatory')
sn_l4_backup = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 18), l4_flag()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4Backup.setStatus('mandatory')
sn_l4_become_active = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 19), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4BecomeActive.setStatus('mandatory')
sn_l4_become_stand_by = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4BecomeStandBy.setStatus('mandatory')
sn_l4_backup_state = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('slbSyncComplete', 0), ('slbSyncReqMap', 1), ('slbSyncreqMac', 2), ('slbSyncreqServers', 3), ('slbSyncReqL4', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4BackupState.setStatus('mandatory')
sn_l4_no_pdu_sent = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 22), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4NoPDUSent.setStatus('mandatory')
sn_l4_no_pdu_count = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 23), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4NoPDUCount.setStatus('mandatory')
sn_l4_no_port_map = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 24), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4NoPortMap.setStatus('mandatory')
sn_l4unsuccessful_conn = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 25), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4unsuccessfulConn.setStatus('mandatory')
sn_l4_ping_interval = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PingInterval.setStatus('mandatory')
sn_l4_ping_retry = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(2, 10)).clone(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PingRetry.setStatus('mandatory')
sn_l4_tcp_age = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(2, 60)).clone(30)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4TcpAge.setStatus('mandatory')
sn_l4_udp_age = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(2, 60)).clone(5)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4UdpAge.setStatus('mandatory')
sn_l4_enable_max_session_limit_reached_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableMaxSessionLimitReachedTrap.setStatus('mandatory')
sn_l4_enable_tcp_syn_limit_reached_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableTcpSynLimitReachedTrap.setStatus('mandatory')
sn_l4_enable_real_server_up_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableRealServerUpTrap.setStatus('mandatory')
sn_l4_enable_real_server_down_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableRealServerDownTrap.setStatus('mandatory')
sn_l4_enable_real_server_port_up_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableRealServerPortUpTrap.setStatus('mandatory')
sn_l4_enable_real_server_port_down_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableRealServerPortDownTrap.setStatus('mandatory')
sn_l4_enable_real_server_max_conn_limit_reached_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableRealServerMaxConnLimitReachedTrap.setStatus('mandatory')
sn_l4_enable_become_standby_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableBecomeStandbyTrap.setStatus('mandatory')
sn_l4_enable_become_active_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableBecomeActiveTrap.setStatus('mandatory')
sn_l4slb_router_interface_port_mask = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 39), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4slbRouterInterfacePortMask.setStatus('deprecated')
sn_l4_max_num_web_cache_group = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 40), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4MaxNumWebCacheGroup.setStatus('mandatory')
sn_l4_max_num_web_cache_per_group = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 41), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4MaxNumWebCachePerGroup.setStatus('mandatory')
sn_l4_web_cache_stateful = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 42), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheStateful.setStatus('mandatory')
sn_l4_enable_gslb_health_check_ip_up_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbHealthCheckIpUpTrap.setStatus('mandatory')
sn_l4_enable_gslb_health_check_ip_down_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbHealthCheckIpDownTrap.setStatus('mandatory')
sn_l4_enable_gslb_health_check_ip_port_up_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbHealthCheckIpPortUpTrap.setStatus('mandatory')
sn_l4_enable_gslb_health_check_ip_port_down_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbHealthCheckIpPortDownTrap.setStatus('mandatory')
sn_l4_enable_gslb_remote_gslb_si_down_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbRemoteGslbSiDownTrap.setStatus('mandatory')
sn_l4_enable_gslb_remote_gslb_si_up_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbRemoteGslbSiUpTrap.setStatus('mandatory')
sn_l4_enable_gslb_remote_si_down_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbRemoteSiDownTrap.setStatus('mandatory')
sn_l4_enable_gslb_remote_si_up_trap = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4EnableGslbRemoteSiUpTrap.setStatus('mandatory')
sn_l4slb_router_interface_port_list = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 1, 51), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4slbRouterInterfacePortList.setStatus('mandatory')
sn_l4_virtual_server_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1))
if mibBuilder.loadTexts:
snL4VirtualServerTable.setStatus('mandatory')
sn_l4_virtual_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerEntry.setStatus('mandatory')
sn_l4_virtual_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerIndex.setStatus('mandatory')
sn_l4_virtual_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerName.setStatus('mandatory')
sn_l4_virtual_server_virtual_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerVirtualIP.setStatus('mandatory')
sn_l4_virtual_server_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 4), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerAdminStatus.setStatus('mandatory')
sn_l4_virtual_server_sda_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('default', 0), ('leastconnection', 1), ('roundrobin', 2), ('weighted', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerSDAType.setStatus('mandatory')
sn_l4_virtual_server_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 6), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerRowStatus.setStatus('mandatory')
sn_l4_virtual_server_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 2, 1, 1, 7), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerDeleteState.setStatus('mandatory')
sn_l4_real_server_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1))
if mibBuilder.loadTexts:
snL4RealServerTable.setStatus('mandatory')
sn_l4_real_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerIndex'))
if mibBuilder.loadTexts:
snL4RealServerEntry.setStatus('mandatory')
sn_l4_real_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerIndex.setStatus('mandatory')
sn_l4_real_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerName.setStatus('mandatory')
sn_l4_real_server_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerIP.setStatus('mandatory')
sn_l4_real_server_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 4), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerAdminStatus.setStatus('mandatory')
sn_l4_real_server_max_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerMaxConnections.setStatus('mandatory')
sn_l4_real_server_weight = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 65000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerWeight.setStatus('mandatory')
sn_l4_real_server_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 7), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerRowStatus.setStatus('mandatory')
sn_l4_real_server_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 3, 1, 1, 8), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerDeleteState.setStatus('mandatory')
sn_l4_virtual_server_port_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1))
if mibBuilder.loadTexts:
snL4VirtualServerPortTable.setStatus('mandatory')
sn_l4_virtual_server_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerPortEntry.setStatus('mandatory')
sn_l4_virtual_server_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortIndex.setStatus('mandatory')
sn_l4_virtual_server_port_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortServerName.setStatus('mandatory')
sn_l4_virtual_server_port_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortPort.setStatus('mandatory')
sn_l4_virtual_server_port_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 4), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortAdminStatus.setStatus('mandatory')
sn_l4_virtual_server_port_sticky = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortSticky.setStatus('mandatory')
sn_l4_virtual_server_port_concurrent = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortConcurrent.setStatus('mandatory')
sn_l4_virtual_server_port_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 7), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortRowStatus.setStatus('mandatory')
sn_l4_virtual_server_port_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 4, 1, 1, 8), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortDeleteState.setStatus('mandatory')
sn_l4_real_server_port_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1))
if mibBuilder.loadTexts:
snL4RealServerPortTable.setStatus('mandatory')
sn_l4_real_server_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortIndex'))
if mibBuilder.loadTexts:
snL4RealServerPortEntry.setStatus('mandatory')
sn_l4_real_server_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortIndex.setStatus('mandatory')
sn_l4_real_server_port_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortServerName.setStatus('mandatory')
sn_l4_real_server_port_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortPort.setStatus('mandatory')
sn_l4_real_server_port_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 4), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortAdminStatus.setStatus('mandatory')
sn_l4_real_server_port_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 5), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortRowStatus.setStatus('mandatory')
sn_l4_real_server_port_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 5, 1, 1, 6), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortDeleteState.setStatus('mandatory')
sn_l4_bind_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1))
if mibBuilder.loadTexts:
snL4BindTable.setStatus('mandatory')
sn_l4_bind_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4BindIndex'))
if mibBuilder.loadTexts:
snL4BindEntry.setStatus('mandatory')
sn_l4_bind_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4BindIndex.setStatus('mandatory')
sn_l4_bind_virtual_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BindVirtualServerName.setStatus('mandatory')
sn_l4_bind_virtual_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BindVirtualPortNumber.setStatus('mandatory')
sn_l4_bind_real_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 4), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BindRealServerName.setStatus('mandatory')
sn_l4_bind_real_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BindRealPortNumber.setStatus('mandatory')
sn_l4_bind_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 6, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('valid', 2), ('delete', 3), ('create', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4BindRowStatus.setStatus('mandatory')
sn_l4_virtual_server_status_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1))
if mibBuilder.loadTexts:
snL4VirtualServerStatusTable.setStatus('mandatory')
sn_l4_virtual_server_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerStatusIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerStatusEntry.setStatus('mandatory')
sn_l4_virtual_server_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatusIndex.setStatus('mandatory')
sn_l4_virtual_server_status_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 2), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatusName.setStatus('mandatory')
sn_l4_virtual_server_status_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatusReceivePkts.setStatus('mandatory')
sn_l4_virtual_server_status_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatusTransmitPkts.setStatus('mandatory')
sn_l4_virtual_server_status_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 7, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatusTotalConnections.setStatus('mandatory')
sn_l4_real_server_status_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1))
if mibBuilder.loadTexts:
snL4RealServerStatusTable.setStatus('mandatory')
sn_l4_real_server_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerStatusIndex'))
if mibBuilder.loadTexts:
snL4RealServerStatusEntry.setStatus('mandatory')
sn_l4_real_server_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusIndex.setStatus('mandatory')
sn_l4_real_server_status_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 2), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusName.setStatus('mandatory')
sn_l4_real_server_status_real_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusRealIP.setStatus('mandatory')
sn_l4_real_server_status_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusReceivePkts.setStatus('mandatory')
sn_l4_real_server_status_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusTransmitPkts.setStatus('mandatory')
sn_l4_real_server_status_cur_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusCurConnections.setStatus('mandatory')
sn_l4_real_server_status_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusTotalConnections.setStatus('mandatory')
sn_l4_real_server_status_age = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusAge.setStatus('mandatory')
sn_l4_real_server_status_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('serverdisabled', 0), ('serverenabled', 1), ('serverfailed', 2), ('servertesting', 3), ('serversuspect', 4), ('servershutdown', 5), ('serveractive', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusState.setStatus('mandatory')
sn_l4_real_server_status_reassignments = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusReassignments.setStatus('mandatory')
sn_l4_real_server_status_reassignment_limit = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusReassignmentLimit.setStatus('mandatory')
sn_l4_real_server_status_failed_port_exists = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusFailedPortExists.setStatus('mandatory')
sn_l4_real_server_status_fail_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusFailTime.setStatus('mandatory')
sn_l4_real_server_status_peak_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 8, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatusPeakConnections.setStatus('mandatory')
sn_l4_virtual_server_port_status_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1))
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusTable.setStatus('mandatory')
sn_l4_virtual_server_port_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortStatusIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusEntry.setStatus('mandatory')
sn_l4_virtual_server_port_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusIndex.setStatus('mandatory')
sn_l4_virtual_server_port_status_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusPort.setStatus('mandatory')
sn_l4_virtual_server_port_status_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 3), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusServerName.setStatus('mandatory')
sn_l4_virtual_server_port_status_current_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusCurrentConnection.setStatus('mandatory')
sn_l4_virtual_server_port_status_total_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusTotalConnection.setStatus('mandatory')
sn_l4_virtual_server_port_status_peak_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 9, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatusPeakConnection.setStatus('mandatory')
sn_l4_real_server_port_status_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1))
if mibBuilder.loadTexts:
snL4RealServerPortStatusTable.setStatus('mandatory')
sn_l4_real_server_port_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortStatusIndex'))
if mibBuilder.loadTexts:
snL4RealServerPortStatusEntry.setStatus('mandatory')
sn_l4_real_server_port_status_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusIndex.setStatus('mandatory')
sn_l4_real_server_port_status_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusPort.setStatus('mandatory')
sn_l4_real_server_port_status_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 3), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusServerName.setStatus('mandatory')
sn_l4_real_server_port_status_reassign_count = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusReassignCount.setStatus('mandatory')
sn_l4_real_server_port_status_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1), ('failed', 2), ('testing', 3), ('suspect', 4), ('shutdown', 5), ('active', 6), ('unbound', 7), ('awaitUnbind', 8), ('awaitDelete', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusState.setStatus('mandatory')
sn_l4_real_server_port_status_fail_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusFailTime.setStatus('mandatory')
sn_l4_real_server_port_status_current_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusCurrentConnection.setStatus('mandatory')
sn_l4_real_server_port_status_total_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusTotalConnection.setStatus('mandatory')
sn_l4_real_server_port_status_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusRxPkts.setStatus('mandatory')
sn_l4_real_server_port_status_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusTxPkts.setStatus('mandatory')
sn_l4_real_server_port_status_rx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusRxBytes.setStatus('mandatory')
sn_l4_real_server_port_status_tx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusTxBytes.setStatus('mandatory')
sn_l4_real_server_port_status_peak_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 10, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatusPeakConnection.setStatus('mandatory')
sn_l4_policy_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1))
if mibBuilder.loadTexts:
snL4PolicyTable.setStatus('mandatory')
sn_l4_policy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4PolicyId'))
if mibBuilder.loadTexts:
snL4PolicyEntry.setStatus('mandatory')
sn_l4_policy_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4PolicyId.setStatus('mandatory')
sn_l4_policy_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('level0', 0), ('level1', 1), ('level2', 2), ('level3', 3), ('level4', 4), ('level5', 5), ('level6', 6), ('level7', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyPriority.setStatus('mandatory')
sn_l4_policy_scope = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('global', 0), ('local', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyScope.setStatus('mandatory')
sn_l4_policy_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('udp', 0), ('tcp', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyProtocol.setStatus('mandatory')
sn_l4_policy_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyPort.setStatus('mandatory')
sn_l4_policy_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 11, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('invalid', 1), ('valid', 2), ('delete', 3), ('create', 4), ('modify', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyRowStatus.setStatus('mandatory')
sn_l4_policy_port_access_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1))
if mibBuilder.loadTexts:
snL4PolicyPortAccessTable.setStatus('mandatory')
sn_l4_policy_port_access_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4PolicyPortAccessPort'))
if mibBuilder.loadTexts:
snL4PolicyPortAccessEntry.setStatus('mandatory')
sn_l4_policy_port_access_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4PolicyPortAccessPort.setStatus('mandatory')
sn_l4_policy_port_access_list = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyPortAccessList.setStatus('mandatory')
sn_l4_policy_port_access_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 12, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('invalid', 1), ('valid', 2), ('delete', 3), ('create', 4), ('modify', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4PolicyPortAccessRowStatus.setStatus('mandatory')
sn_l4_trap_real_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 1), ip_address())
if mibBuilder.loadTexts:
snL4TrapRealServerIP.setStatus('mandatory')
sn_l4_trap_real_server_name = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 2), l4_server_name())
if mibBuilder.loadTexts:
snL4TrapRealServerName.setStatus('mandatory')
sn_l4_trap_real_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 3), integer32())
if mibBuilder.loadTexts:
snL4TrapRealServerPort.setStatus('mandatory')
sn_l4_trap_real_server_cur_connections = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 13, 4), integer32())
if mibBuilder.loadTexts:
snL4TrapRealServerCurConnections.setStatus('mandatory')
sn_l4_web_cache_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1))
if mibBuilder.loadTexts:
snL4WebCacheTable.setStatus('mandatory')
sn_l4_web_cache_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebCacheIP'))
if mibBuilder.loadTexts:
snL4WebCacheEntry.setStatus('mandatory')
sn_l4_web_cache_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheIP.setStatus('mandatory')
sn_l4_web_cache_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheName.setStatus('mandatory')
sn_l4_web_cache_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 3), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheAdminStatus.setStatus('mandatory')
sn_l4_web_cache_max_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheMaxConnections.setStatus('mandatory')
sn_l4_web_cache_weight = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheWeight.setStatus('mandatory')
sn_l4_web_cache_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 6), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheRowStatus.setStatus('mandatory')
sn_l4_web_cache_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 14, 1, 1, 7), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheDeleteState.setStatus('mandatory')
sn_l4_web_cache_group_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1))
if mibBuilder.loadTexts:
snL4WebCacheGroupTable.setStatus('mandatory')
sn_l4_web_cache_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebCacheGroupId'))
if mibBuilder.loadTexts:
snL4WebCacheGroupEntry.setStatus('mandatory')
sn_l4_web_cache_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheGroupId.setStatus('mandatory')
sn_l4_web_cache_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheGroupName.setStatus('mandatory')
sn_l4_web_cache_group_web_cache_ip_list = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheGroupWebCacheIpList.setStatus('mandatory')
sn_l4_web_cache_group_dest_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheGroupDestMask.setStatus('mandatory')
sn_l4_web_cache_group_src_mask = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheGroupSrcMask.setStatus('mandatory')
sn_l4_web_cache_group_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheGroupAdminStatus.setStatus('mandatory')
sn_l4_web_cache_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 15, 1, 1, 7), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCacheGroupRowStatus.setStatus('mandatory')
sn_l4_web_cache_traffic_stats_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1))
if mibBuilder.loadTexts:
snL4WebCacheTrafficStatsTable.setStatus('mandatory')
sn_l4_web_cache_traffic_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebCacheTrafficIp'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebCacheTrafficPort'))
if mibBuilder.loadTexts:
snL4WebCacheTrafficStatsEntry.setStatus('mandatory')
sn_l4_web_cache_traffic_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheTrafficIp.setStatus('mandatory')
sn_l4_web_cache_traffic_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheTrafficPort.setStatus('mandatory')
sn_l4_web_cache_curr_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheCurrConnections.setStatus('mandatory')
sn_l4_web_cache_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheTotalConnections.setStatus('mandatory')
sn_l4_web_cache_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheTxPkts.setStatus('mandatory')
sn_l4_web_cache_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheRxPkts.setStatus('mandatory')
sn_l4_web_cache_tx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheTxOctets.setStatus('mandatory')
sn_l4_web_cache_rx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCacheRxOctets.setStatus('mandatory')
sn_l4_web_cache_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 16, 1, 1, 9), web_cache_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCachePortState.setStatus('mandatory')
sn_l4_web_uncached_traffic_stats_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1))
if mibBuilder.loadTexts:
snL4WebUncachedTrafficStatsTable.setStatus('mandatory')
sn_l4_web_uncached_traffic_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebServerPort'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebClientPort'))
if mibBuilder.loadTexts:
snL4WebUncachedTrafficStatsEntry.setStatus('mandatory')
sn_l4_web_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebServerPort.setStatus('mandatory')
sn_l4_web_client_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebClientPort.setStatus('mandatory')
sn_l4_web_uncached_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebUncachedTxPkts.setStatus('mandatory')
sn_l4_web_uncached_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebUncachedRxPkts.setStatus('mandatory')
sn_l4_web_uncached_tx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebUncachedTxOctets.setStatus('mandatory')
sn_l4_web_uncached_rx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebUncachedRxOctets.setStatus('mandatory')
sn_l4_web_server_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebServerPortName.setStatus('mandatory')
sn_l4_web_client_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 17, 1, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebClientPortName.setStatus('mandatory')
sn_l4_web_cache_port_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1))
if mibBuilder.loadTexts:
snL4WebCachePortTable.setStatus('mandatory')
sn_l4_web_cache_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebCachePortServerIp'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4WebCachePortPort'))
if mibBuilder.loadTexts:
snL4WebCachePortEntry.setStatus('mandatory')
sn_l4_web_cache_port_server_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCachePortServerIp.setStatus('mandatory')
sn_l4_web_cache_port_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCachePortPort.setStatus('mandatory')
sn_l4_web_cache_port_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 3), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCachePortAdminStatus.setStatus('mandatory')
sn_l4_web_cache_port_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 4), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4WebCachePortRowStatus.setStatus('mandatory')
sn_l4_web_cache_port_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 18, 1, 1, 5), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4WebCachePortDeleteState.setStatus('mandatory')
sn_l4_real_server_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1))
if mibBuilder.loadTexts:
snL4RealServerCfgTable.setStatus('mandatory')
sn_l4_real_server_cfg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerCfgIP'))
if mibBuilder.loadTexts:
snL4RealServerCfgEntry.setStatus('mandatory')
sn_l4_real_server_cfg_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerCfgIP.setStatus('mandatory')
sn_l4_real_server_cfg_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerCfgName.setStatus('mandatory')
sn_l4_real_server_cfg_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 3), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerCfgAdminStatus.setStatus('mandatory')
sn_l4_real_server_cfg_max_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerCfgMaxConnections.setStatus('mandatory')
sn_l4_real_server_cfg_weight = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerCfgWeight.setStatus('mandatory')
sn_l4_real_server_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 6), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerCfgRowStatus.setStatus('mandatory')
sn_l4_real_server_cfg_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 19, 1, 1, 7), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerCfgDeleteState.setStatus('mandatory')
sn_l4_real_server_port_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1))
if mibBuilder.loadTexts:
snL4RealServerPortCfgTable.setStatus('mandatory')
sn_l4_real_server_port_cfg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortCfgIP'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortCfgPort'))
if mibBuilder.loadTexts:
snL4RealServerPortCfgEntry.setStatus('mandatory')
sn_l4_real_server_port_cfg_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortCfgIP.setStatus('mandatory')
sn_l4_real_server_port_cfg_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortCfgPort.setStatus('mandatory')
sn_l4_real_server_port_cfg_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 2), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortCfgServerName.setStatus('mandatory')
sn_l4_real_server_port_cfg_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 4), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortCfgAdminStatus.setStatus('mandatory')
sn_l4_real_server_port_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 5), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortCfgRowStatus.setStatus('mandatory')
sn_l4_real_server_port_cfg_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 20, 1, 1, 6), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortCfgDeleteState.setStatus('mandatory')
sn_l4_virtual_server_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1))
if mibBuilder.loadTexts:
snL4VirtualServerCfgTable.setStatus('mandatory')
sn_l4_virtual_server_cfg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerCfgVirtualIP'))
if mibBuilder.loadTexts:
snL4VirtualServerCfgEntry.setStatus('mandatory')
sn_l4_virtual_server_cfg_virtual_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerCfgVirtualIP.setStatus('mandatory')
sn_l4_virtual_server_cfg_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 2), l4_server_name()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerCfgName.setStatus('mandatory')
sn_l4_virtual_server_cfg_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 3), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerCfgAdminStatus.setStatus('mandatory')
sn_l4_virtual_server_cfg_sda_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('default', 0), ('leastconnection', 1), ('roundrobin', 2), ('weighted', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerCfgSDAType.setStatus('mandatory')
sn_l4_virtual_server_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 5), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerCfgRowStatus.setStatus('mandatory')
sn_l4_virtual_server_cfg_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 21, 1, 1, 6), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerCfgDeleteState.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1))
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgTable.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortCfgIP'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortCfgPort'))
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgEntry.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgIP.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgPort.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 3), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgServerName.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 4), l4_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgAdminStatus.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_sticky = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgSticky.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_concurrent = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgConcurrent.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 7), l4_row_sts()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgRowStatus.setStatus('mandatory')
sn_l4_virtual_server_port_cfg_delete_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 22, 1, 1, 8), l4_delete_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortCfgDeleteState.setStatus('mandatory')
sn_l4_virtual_server_statistic_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1))
if mibBuilder.loadTexts:
snL4VirtualServerStatisticTable.setStatus('mandatory')
sn_l4_virtual_server_statistic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerStatisticIP'))
if mibBuilder.loadTexts:
snL4VirtualServerStatisticEntry.setStatus('mandatory')
sn_l4_virtual_server_statistic_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticIP.setStatus('mandatory')
sn_l4_virtual_server_statistic_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 2), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticName.setStatus('mandatory')
sn_l4_virtual_server_statistic_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticReceivePkts.setStatus('mandatory')
sn_l4_virtual_server_statistic_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticTransmitPkts.setStatus('mandatory')
sn_l4_virtual_server_statistic_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticTotalConnections.setStatus('mandatory')
sn_l4_virtual_server_statistic_receive_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticReceiveBytes.setStatus('mandatory')
sn_l4_virtual_server_statistic_transmit_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticTransmitBytes.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricState.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_priority = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricPriority.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_keep = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricKeep.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_activates = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricActivates.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_inactives = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricInactives.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_best_standby_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 13), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricBestStandbyMacAddr.setStatus('mandatory')
sn_l4_virtual_server_statistic_symmetric_active_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 25, 1, 1, 14), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerStatisticSymmetricActiveMacAddr.setStatus('mandatory')
sn_l4_real_server_statistic_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1))
if mibBuilder.loadTexts:
snL4RealServerStatisticTable.setStatus('mandatory')
sn_l4_real_server_statistic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerStatisticRealIP'))
if mibBuilder.loadTexts:
snL4RealServerStatisticEntry.setStatus('mandatory')
sn_l4_real_server_statistic_real_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticRealIP.setStatus('mandatory')
sn_l4_real_server_statistic_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 2), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticName.setStatus('mandatory')
sn_l4_real_server_statistic_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticReceivePkts.setStatus('mandatory')
sn_l4_real_server_statistic_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticTransmitPkts.setStatus('mandatory')
sn_l4_real_server_statistic_cur_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticCurConnections.setStatus('mandatory')
sn_l4_real_server_statistic_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticTotalConnections.setStatus('mandatory')
sn_l4_real_server_statistic_age = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticAge.setStatus('mandatory')
sn_l4_real_server_statistic_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('serverdisabled', 0), ('serverenabled', 1), ('serverfailed', 2), ('servertesting', 3), ('serversuspect', 4), ('servershutdown', 5), ('serveractive', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticState.setStatus('mandatory')
sn_l4_real_server_statistic_reassignments = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticReassignments.setStatus('mandatory')
sn_l4_real_server_statistic_reassignment_limit = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticReassignmentLimit.setStatus('mandatory')
sn_l4_real_server_statistic_failed_port_exists = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticFailedPortExists.setStatus('mandatory')
sn_l4_real_server_statistic_fail_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticFailTime.setStatus('mandatory')
sn_l4_real_server_statistic_peak_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 23, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerStatisticPeakConnections.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1))
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticTable.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortStatisticIP'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortStatisticPort'))
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticEntry.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticIP.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticPort.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 3), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticServerName.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_current_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticCurrentConnection.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_total_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticTotalConnection.setStatus('mandatory')
sn_l4_virtual_server_port_statistic_peak_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 26, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortStatisticPeakConnection.setStatus('mandatory')
sn_l4_real_server_port_statistic_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1))
if mibBuilder.loadTexts:
snL4RealServerPortStatisticTable.setStatus('mandatory')
sn_l4_real_server_port_statistic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortStatisticIP'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortStatisticPort'))
if mibBuilder.loadTexts:
snL4RealServerPortStatisticEntry.setStatus('mandatory')
sn_l4_real_server_port_statistic_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticIP.setStatus('mandatory')
sn_l4_real_server_port_statistic_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticPort.setStatus('mandatory')
sn_l4_real_server_port_statistic_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 3), l4_server_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticServerName.setStatus('mandatory')
sn_l4_real_server_port_statistic_reassign_count = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticReassignCount.setStatus('mandatory')
sn_l4_real_server_port_statistic_state = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1), ('failed', 2), ('testing', 3), ('suspect', 4), ('shutdown', 5), ('active', 6), ('unbound', 7), ('awaitUnbind', 8), ('awaitDelete', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticState.setStatus('mandatory')
sn_l4_real_server_port_statistic_fail_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticFailTime.setStatus('mandatory')
sn_l4_real_server_port_statistic_current_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticCurrentConnection.setStatus('mandatory')
sn_l4_real_server_port_statistic_total_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticTotalConnection.setStatus('mandatory')
sn_l4_real_server_port_statistic_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticRxPkts.setStatus('mandatory')
sn_l4_real_server_port_statistic_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticTxPkts.setStatus('mandatory')
sn_l4_real_server_port_statistic_rx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticRxBytes.setStatus('mandatory')
sn_l4_real_server_port_statistic_tx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticTxBytes.setStatus('mandatory')
sn_l4_real_server_port_statistic_peak_connection = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 24, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortStatisticPeakConnection.setStatus('mandatory')
sn_l4_gslb_site_remote_server_iron_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1))
if mibBuilder.loadTexts:
snL4GslbSiteRemoteServerIronTable.setStatus('mandatory')
sn_l4_gslb_site_remote_server_iron_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4GslbSiteRemoteServerIronIP'))
if mibBuilder.loadTexts:
snL4GslbSiteRemoteServerIronEntry.setStatus('mandatory')
sn_l4_gslb_site_remote_server_iron_ip = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4GslbSiteRemoteServerIronIP.setStatus('mandatory')
sn_l4_gslb_site_remote_server_iron_preference = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 27, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4GslbSiteRemoteServerIronPreference.setStatus('mandatory')
sn_l4_real_server_history_control_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1))
if mibBuilder.loadTexts:
snL4RealServerHistoryControlTable.setStatus('mandatory')
sn_l4_real_server_history_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerHistoryControlIndex'))
if mibBuilder.loadTexts:
snL4RealServerHistoryControlEntry.setStatus('mandatory')
sn_l4_real_server_history_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlIndex.setStatus('mandatory')
sn_l4_real_server_history_control_data_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlDataSource.setStatus('mandatory')
sn_l4_real_server_history_control_buckets_requested = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(50)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlBucketsRequested.setStatus('mandatory')
sn_l4_real_server_history_control_buckets_granted = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlBucketsGranted.setStatus('mandatory')
sn_l4_real_server_history_control_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(1800)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlInterval.setStatus('mandatory')
sn_l4_real_server_history_control_owner = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlOwner.setStatus('mandatory')
sn_l4_real_server_history_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('valid', 1), ('createRequest', 2), ('underCreation', 3), ('invalid', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerHistoryControlStatus.setStatus('mandatory')
sn_l4_real_server_history_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2))
if mibBuilder.loadTexts:
snL4RealServerHistoryTable.setStatus('mandatory')
sn_l4_real_server_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerHistoryIndex'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerHistorySampleIndex'))
if mibBuilder.loadTexts:
snL4RealServerHistoryEntry.setStatus('mandatory')
sn_l4_real_server_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryIndex.setStatus('mandatory')
sn_l4_real_server_history_sample_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistorySampleIndex.setStatus('mandatory')
sn_l4_real_server_history_interval_start = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 3), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryIntervalStart.setStatus('mandatory')
sn_l4_real_server_history_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryReceivePkts.setStatus('mandatory')
sn_l4_real_server_history_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryTransmitPkts.setStatus('mandatory')
sn_l4_real_server_history_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryTotalConnections.setStatus('mandatory')
sn_l4_real_server_history_cur_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryCurConnections.setStatus('mandatory')
sn_l4_real_server_history_peak_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryPeakConnections.setStatus('mandatory')
sn_l4_real_server_history_reassignments = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerHistoryReassignments.setStatus('mandatory')
sn_l4_real_server_port_history_control_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3))
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlTable.setStatus('mandatory')
sn_l4_real_server_port_history_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortHistoryControlIndex'))
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlEntry.setStatus('mandatory')
sn_l4_real_server_port_history_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlIndex.setStatus('mandatory')
sn_l4_real_server_port_history_control_data_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlDataSource.setStatus('mandatory')
sn_l4_real_server_port_history_control_buckets_requested = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(50)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlBucketsRequested.setStatus('mandatory')
sn_l4_real_server_port_history_control_buckets_granted = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlBucketsGranted.setStatus('mandatory')
sn_l4_real_server_port_history_control_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(1800)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlInterval.setStatus('mandatory')
sn_l4_real_server_port_history_control_owner = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlOwner.setStatus('mandatory')
sn_l4_real_server_port_history_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('valid', 1), ('createRequest', 2), ('underCreation', 3), ('invalid', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryControlStatus.setStatus('mandatory')
sn_l4_real_server_port_history_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4))
if mibBuilder.loadTexts:
snL4RealServerPortHistoryTable.setStatus('mandatory')
sn_l4_real_server_port_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortHistoryIndex'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4RealServerPortHistorySampleIndex'))
if mibBuilder.loadTexts:
snL4RealServerPortHistoryEntry.setStatus('mandatory')
sn_l4_real_server_port_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryIndex.setStatus('mandatory')
sn_l4_real_server_port_history_sample_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistorySampleIndex.setStatus('mandatory')
sn_l4_real_server_port_history_interval_start = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 3), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryIntervalStart.setStatus('mandatory')
sn_l4_real_server_port_history_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryReceivePkts.setStatus('mandatory')
sn_l4_real_server_port_history_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryTransmitPkts.setStatus('mandatory')
sn_l4_real_server_port_history_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryTotalConnections.setStatus('mandatory')
sn_l4_real_server_port_history_cur_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryCurConnections.setStatus('mandatory')
sn_l4_real_server_port_history_peak_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryPeakConnections.setStatus('mandatory')
sn_l4_real_server_port_history_response_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4RealServerPortHistoryResponseTime.setStatus('mandatory')
sn_l4_virtual_server_history_control_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5))
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlTable.setStatus('mandatory')
sn_l4_virtual_server_history_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerHistoryControlIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlEntry.setStatus('mandatory')
sn_l4_virtual_server_history_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlIndex.setStatus('mandatory')
sn_l4_virtual_server_history_control_data_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlDataSource.setStatus('mandatory')
sn_l4_virtual_server_history_control_buckets_requested = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(50)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlBucketsRequested.setStatus('mandatory')
sn_l4_virtual_server_history_control_buckets_granted = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlBucketsGranted.setStatus('mandatory')
sn_l4_virtual_server_history_control_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(1800)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlInterval.setStatus('mandatory')
sn_l4_virtual_server_history_control_owner = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlOwner.setStatus('mandatory')
sn_l4_virtual_server_history_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('valid', 1), ('createRequest', 2), ('underCreation', 3), ('invalid', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryControlStatus.setStatus('mandatory')
sn_l4_virtual_server_history_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6))
if mibBuilder.loadTexts:
snL4VirtualServerHistoryTable.setStatus('mandatory')
sn_l4_virtual_server_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerHistoryIndex'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerHistorySampleIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerHistoryEntry.setStatus('mandatory')
sn_l4_virtual_server_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryIndex.setStatus('mandatory')
sn_l4_virtual_server_history_sample_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistorySampleIndex.setStatus('mandatory')
sn_l4_virtual_server_history_interval_start = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 3), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryIntervalStart.setStatus('mandatory')
sn_l4_virtual_server_history_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryReceivePkts.setStatus('mandatory')
sn_l4_virtual_server_history_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryTransmitPkts.setStatus('mandatory')
sn_l4_virtual_server_history_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryTotalConnections.setStatus('mandatory')
sn_l4_virtual_server_history_cur_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryCurConnections.setStatus('mandatory')
sn_l4_virtual_server_history_peak_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 6, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerHistoryPeakConnections.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7))
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlTable.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortHistoryControlIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlEntry.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlIndex.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_data_source = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlDataSource.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_buckets_requested = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(50)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlBucketsRequested.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_buckets_granted = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlBucketsGranted.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_interval = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(1800)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlInterval.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_owner = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlOwner.setStatus('mandatory')
sn_l4_virtual_server_port_history_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 7, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('valid', 1), ('createRequest', 2), ('underCreation', 3), ('invalid', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryControlStatus.setStatus('mandatory')
sn_l4_virtual_server_port_history_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8))
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryTable.setStatus('mandatory')
sn_l4_virtual_server_port_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1)).setIndexNames((0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortHistoryIndex'), (0, 'HP-SN-SW-L4-SWITCH-GROUP-MIB', 'snL4VirtualServerPortHistorySampleIndex'))
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryEntry.setStatus('mandatory')
sn_l4_virtual_server_port_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryIndex.setStatus('mandatory')
sn_l4_virtual_server_port_history_sample_index = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistorySampleIndex.setStatus('mandatory')
sn_l4_virtual_server_port_history_interval_start = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 3), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryIntervalStart.setStatus('mandatory')
sn_l4_virtual_server_port_history_receive_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryReceivePkts.setStatus('mandatory')
sn_l4_virtual_server_port_history_transmit_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryTransmitPkts.setStatus('mandatory')
sn_l4_virtual_server_port_history_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryTotalConnections.setStatus('mandatory')
sn_l4_virtual_server_port_history_cur_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryCurConnections.setStatus('mandatory')
sn_l4_virtual_server_port_history_peak_connections = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 3, 7, 11, 12, 1, 4, 28, 8, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
snL4VirtualServerPortHistoryPeakConnections.setStatus('mandatory')
mibBuilder.exportSymbols('HP-SN-SW-L4-SWITCH-GROUP-MIB', snL4RealServerPortStatisticState=snL4RealServerPortStatisticState, snL4EnableRealServerDownTrap=snL4EnableRealServerDownTrap, snL4VirtualServerPortStatisticPort=snL4VirtualServerPortStatisticPort, snL4BindTable=snL4BindTable, snL4BackupMacAddr=snL4BackupMacAddr, snL4EnableGslbHealthCheckIpPortDownTrap=snL4EnableGslbHealthCheckIpPortDownTrap, snL4VirtualServerPortHistoryTransmitPkts=snL4VirtualServerPortHistoryTransmitPkts, snL4UdpAge=snL4UdpAge, L4Status=L4Status, snL4RealServerPortCfgServerName=snL4RealServerPortCfgServerName, snL4RealServerCfgMaxConnections=snL4RealServerCfgMaxConnections, snL4VirtualServerPort=snL4VirtualServerPort, snL4VirtualServerHistoryControlInterval=snL4VirtualServerHistoryControlInterval, snL4RealServerHistoryEntry=snL4RealServerHistoryEntry, snL4VirtualServerStatisticSymmetricInactives=snL4VirtualServerStatisticSymmetricInactives, snL4VirtualServerPortCfgRowStatus=snL4VirtualServerPortCfgRowStatus, snL4VirtualServerStatisticSymmetricBestStandbyMacAddr=snL4VirtualServerStatisticSymmetricBestStandbyMacAddr, snL4WebCacheTrafficStatsEntry=snL4WebCacheTrafficStatsEntry, snL4VirtualServerPortCfgEntry=snL4VirtualServerPortCfgEntry, snL4VirtualServerPortStatisticTable=snL4VirtualServerPortStatisticTable, snL4RealServerPortHistoryTotalConnections=snL4RealServerPortHistoryTotalConnections, snL4VirtualServerHistoryReceivePkts=snL4VirtualServerHistoryReceivePkts, snL4RealServerPortStatisticRxPkts=snL4RealServerPortStatisticRxPkts, PhysAddress=PhysAddress, snL4RealServerPortTable=snL4RealServerPortTable, snL4WebCacheGroup=snL4WebCacheGroup, snL4WebCachePortPort=snL4WebCachePortPort, snL4EnableGslbRemoteGslbSiUpTrap=snL4EnableGslbRemoteGslbSiUpTrap, snL4VirtualServerPortCfgPort=snL4VirtualServerPortCfgPort, snL4RealServerPortHistoryControlBucketsRequested=snL4RealServerPortHistoryControlBucketsRequested, snL4PolicyPortAccessTable=snL4PolicyPortAccessTable, snL4RealServerHistoryReassignments=snL4RealServerHistoryReassignments, snL4RealServerStatusFailTime=snL4RealServerStatusFailTime, snL4RealServerRowStatus=snL4RealServerRowStatus, snL4RealServerPortStatusRxPkts=snL4RealServerPortStatusRxPkts, snL4PolicyPriority=snL4PolicyPriority, snL4RealServerPortHistoryControlStatus=snL4RealServerPortHistoryControlStatus, L4DeleteState=L4DeleteState, snL4History=snL4History, snL4BecomeStandBy=snL4BecomeStandBy, snL4Gen=snL4Gen, snL4WebCachePortState=snL4WebCachePortState, snL4slbGlobalSDAType=snL4slbGlobalSDAType, snL4RealServerPortStatusTotalConnection=snL4RealServerPortStatusTotalConnection, snL4VirtualServerEntry=snL4VirtualServerEntry, snL4slbRouterInterfacePortMask=snL4slbRouterInterfacePortMask, snL4VirtualServerPortCfg=snL4VirtualServerPortCfg, snL4RealServerCfgDeleteState=snL4RealServerCfgDeleteState, snL4VirtualServerHistoryPeakConnections=snL4VirtualServerHistoryPeakConnections, snL4PolicyPort=snL4PolicyPort, snL4VirtualServerHistoryControlDataSource=snL4VirtualServerHistoryControlDataSource, snL4RealServerStatisticTotalConnections=snL4RealServerStatisticTotalConnections, snL4RealServerHistoryControlTable=snL4RealServerHistoryControlTable, snL4RealServerPortHistoryEntry=snL4RealServerPortHistoryEntry, snL4unsuccessfulConn=snL4unsuccessfulConn, snL4EnableRealServerMaxConnLimitReachedTrap=snL4EnableRealServerMaxConnLimitReachedTrap, snL4RealServerCfgWeight=snL4RealServerCfgWeight, snL4RealServerPortHistoryPeakConnections=snL4RealServerPortHistoryPeakConnections, snL4VirtualServerPortCfgIP=snL4VirtualServerPortCfgIP, snL4VirtualServerPortSticky=snL4VirtualServerPortSticky, snL4slbDrops=snL4slbDrops, L4Flag=L4Flag, snL4WebCacheRowStatus=snL4WebCacheRowStatus, snL4RealServerPortStatisticTable=snL4RealServerPortStatisticTable, snL4RealServerPortHistoryCurConnections=snL4RealServerPortHistoryCurConnections, snL4EnableGslbRemoteSiDownTrap=snL4EnableGslbRemoteSiDownTrap, snL4VirtualServerPortServerName=snL4VirtualServerPortServerName, snL4TrapRealServerPort=snL4TrapRealServerPort, snL4VirtualServerStatisticName=snL4VirtualServerStatisticName, snL4EnableBecomeActiveTrap=snL4EnableBecomeActiveTrap, snL4BindRealPortNumber=snL4BindRealPortNumber, snL4RealServerPortStatusPort=snL4RealServerPortStatusPort, snL4VirtualServerHistoryCurConnections=snL4VirtualServerHistoryCurConnections, snL4RealServerPortStatisticEntry=snL4RealServerPortStatisticEntry, snL4RealServerPortHistoryReceivePkts=snL4RealServerPortHistoryReceivePkts, snL4RealServerHistoryControlEntry=snL4RealServerHistoryControlEntry, snL4RealServerPort=snL4RealServerPort, snL4WebCacheGroupAdminStatus=snL4WebCacheGroupAdminStatus, snL4RealServerPortStatisticServerName=snL4RealServerPortStatisticServerName, snL4RealServerPortStatisticReassignCount=snL4RealServerPortStatisticReassignCount, snL4RealServerTable=snL4RealServerTable, snL4VirtualServerStatisticSymmetricActiveMacAddr=snL4VirtualServerStatisticSymmetricActiveMacAddr, snL4TrapRealServerIP=snL4TrapRealServerIP, snL4VirtualServerPortTable=snL4VirtualServerPortTable, snL4RealServerStatusState=snL4RealServerStatusState, snL4RealServerEntry=snL4RealServerEntry, snL4WebCacheTxPkts=snL4WebCacheTxPkts, snL4RealServerPortCfgAdminStatus=snL4RealServerPortCfgAdminStatus, snL4RealServerPortCfgTable=snL4RealServerPortCfgTable, snL4VirtualServerPortConcurrent=snL4VirtualServerPortConcurrent, snL4TrapRealServerName=snL4TrapRealServerName, snL4RealServerPortStatisticCurrentConnection=snL4RealServerPortStatisticCurrentConnection, snL4EnableBecomeStandbyTrap=snL4EnableBecomeStandbyTrap, snL4NoPDUSent=snL4NoPDUSent, snL4RealServerStatisticTable=snL4RealServerStatisticTable, snL4RealServerPortStatusState=snL4RealServerPortStatusState, snL4RealServerIndex=snL4RealServerIndex, snL4VirtualServerPortPort=snL4VirtualServerPortPort, snL4RealServerMaxConnections=snL4RealServerMaxConnections, snL4VirtualServerStatisticSymmetricKeep=snL4VirtualServerStatisticSymmetricKeep, snL4VirtualServerPortStatusServerName=snL4VirtualServerPortStatusServerName, snL4VirtualServerHistoryEntry=snL4VirtualServerHistoryEntry, snL4VirtualServerHistoryIndex=snL4VirtualServerHistoryIndex, snL4RealServerStatisticReceivePkts=snL4RealServerStatisticReceivePkts, snL4WebCacheTrafficIp=snL4WebCacheTrafficIp, snL4RealServerPortCfgDeleteState=snL4RealServerPortCfgDeleteState, snL4WebUncachedTrafficStatsEntry=snL4WebUncachedTrafficStatsEntry, snL4VirtualServerPortIndex=snL4VirtualServerPortIndex, snL4VirtualServerStatisticTransmitPkts=snL4VirtualServerStatisticTransmitPkts, snL4VirtualServerPortStatusTotalConnection=snL4VirtualServerPortStatusTotalConnection, snL4Backup=snL4Backup, snL4RealServerStatusCurConnections=snL4RealServerStatusCurConnections, snL4PolicyPortAccessEntry=snL4PolicyPortAccessEntry, snL4VirtualServerPortStatisticIP=snL4VirtualServerPortStatisticIP, snL4VirtualServerPortAdminStatus=snL4VirtualServerPortAdminStatus, snL4PolicyTable=snL4PolicyTable, snL4WebCacheGroupWebCacheIpList=snL4WebCacheGroupWebCacheIpList, snL4RealServerPortHistoryControlDataSource=snL4RealServerPortHistoryControlDataSource, snL4slbRouterInterfacePortList=snL4slbRouterInterfacePortList, snL4VirtualServerStatisticTotalConnections=snL4VirtualServerStatisticTotalConnections, snL4RealServerStatisticTransmitPkts=snL4RealServerStatisticTransmitPkts, snL4VirtualServerCfgTable=snL4VirtualServerCfgTable, snL4VirtualServerHistoryControlOwner=snL4VirtualServerHistoryControlOwner, snL4VirtualServerPortHistoryCurConnections=snL4VirtualServerPortHistoryCurConnections, snL4RealServerPortHistoryControlBucketsGranted=snL4RealServerPortHistoryControlBucketsGranted, snL4RealServerStatisticCurConnections=snL4RealServerStatisticCurConnections, snL4VirtualServerStatisticTransmitBytes=snL4VirtualServerStatisticTransmitBytes, snL4slbTotalConnections=snL4slbTotalConnections, snL4RealServerPortStatistic=snL4RealServerPortStatistic, snL4VirtualServerStatisticTable=snL4VirtualServerStatisticTable, snL4VirtualServerCfgDeleteState=snL4VirtualServerCfgDeleteState, snL4RealServerStatusTransmitPkts=snL4RealServerStatusTransmitPkts, snL4WebCacheTotalConnections=snL4WebCacheTotalConnections, snL4VirtualServerStatusIndex=snL4VirtualServerStatusIndex, snL4VirtualServerPortHistoryControlDataSource=snL4VirtualServerPortHistoryControlDataSource, snL4VirtualServerPortCfgSticky=snL4VirtualServerPortCfgSticky, snL4RealServerStatistic=snL4RealServerStatistic, snL4WebCacheGroupName=snL4WebCacheGroupName, snL4EnableGslbHealthCheckIpDownTrap=snL4EnableGslbHealthCheckIpDownTrap, snL4GslbSiteRemoteServerIronPreference=snL4GslbSiteRemoteServerIronPreference, snL4MaxNumWebCacheGroup=snL4MaxNumWebCacheGroup, snL4slbLimitExceeds=snL4slbLimitExceeds, snL4RealServerPortStatusTable=snL4RealServerPortStatusTable, snL4slbDangling=snL4slbDangling, snL4RealServerPortStatisticIP=snL4RealServerPortStatisticIP, snL4RealServerCfgTable=snL4RealServerCfgTable, snL4VirtualServerStatisticEntry=snL4VirtualServerStatisticEntry, snL4RealServerCfgEntry=snL4RealServerCfgEntry, snL4RealServerPortStatusFailTime=snL4RealServerPortStatusFailTime, snL4RealServerIP=snL4RealServerIP, snL4VirtualServerTable=snL4VirtualServerTable, snL4WebCacheMaxConnections=snL4WebCacheMaxConnections, snL4BindIndex=snL4BindIndex, snL4WebCacheGroupRowStatus=snL4WebCacheGroupRowStatus, snL4slbFinished=snL4slbFinished, snL4VirtualServerHistoryControlStatus=snL4VirtualServerHistoryControlStatus, snL4EnableRealServerPortDownTrap=snL4EnableRealServerPortDownTrap, snL4RealServerPortHistoryIntervalStart=snL4RealServerPortHistoryIntervalStart, snL4WebCacheEntry=snL4WebCacheEntry, snL4RealServerHistoryControlOwner=snL4RealServerHistoryControlOwner, snL4VirtualServerHistoryControlTable=snL4VirtualServerHistoryControlTable, snL4WebUncachedTrafficStatsTable=snL4WebUncachedTrafficStatsTable, snL4RealServerHistoryTotalConnections=snL4RealServerHistoryTotalConnections, snL4WebCacheStateful=snL4WebCacheStateful, snL4VirtualServerHistoryControlBucketsRequested=snL4VirtualServerHistoryControlBucketsRequested, snL4EnableGslbHealthCheckIpPortUpTrap=snL4EnableGslbHealthCheckIpPortUpTrap, snL4RealServerPortHistoryControlOwner=snL4RealServerPortHistoryControlOwner, snL4WebCacheAdminStatus=snL4WebCacheAdminStatus, snL4RealServerHistoryPeakConnections=snL4RealServerHistoryPeakConnections, snL4WebCachePortEntry=snL4WebCachePortEntry, snL4RealServerStatusReassignmentLimit=snL4RealServerStatusReassignmentLimit, snL4RealServerStatisticName=snL4RealServerStatisticName, snL4NoPDUCount=snL4NoPDUCount, snL4VirtualServerPortCfgAdminStatus=snL4VirtualServerPortCfgAdminStatus, snL4PingRetry=snL4PingRetry, snL4VirtualServerStatisticSymmetricState=snL4VirtualServerStatisticSymmetricState, snL4Bind=snL4Bind, snL4VirtualServerStatusTransmitPkts=snL4VirtualServerStatusTransmitPkts, snL4VirtualServerPortStatusEntry=snL4VirtualServerPortStatusEntry, snL4VirtualServerHistoryControlBucketsGranted=snL4VirtualServerHistoryControlBucketsGranted, snL4WebCacheGroupEntry=snL4WebCacheGroupEntry, snL4VirtualServerPortCfgDeleteState=snL4VirtualServerPortCfgDeleteState, snL4RealServerPortStatisticTotalConnection=snL4RealServerPortStatisticTotalConnection, snL4RealServerPortHistoryControlInterval=snL4RealServerPortHistoryControlInterval, snL4VirtualServerCfgName=snL4VirtualServerCfgName, snL4WebCachePortAdminStatus=snL4WebCachePortAdminStatus, snL4VirtualServerCfgVirtualIP=snL4VirtualServerCfgVirtualIP, snL4RealServerPortHistoryTable=snL4RealServerPortHistoryTable, snL4VirtualServerPortHistoryControlInterval=snL4VirtualServerPortHistoryControlInterval, snL4RealServerStatisticReassignmentLimit=snL4RealServerStatisticReassignmentLimit, snL4RealServerAdminStatus=snL4RealServerAdminStatus, snL4RealServerStatusReassignments=snL4RealServerStatusReassignments, snL4WebServerPort=snL4WebServerPort, snL4WebCacheTable=snL4WebCacheTable, snL4VirtualServerStatusEntry=snL4VirtualServerStatusEntry, snL4PolicyRowStatus=snL4PolicyRowStatus, snL4RealServerHistorySampleIndex=snL4RealServerHistorySampleIndex, snL4MaxNumWebCachePerGroup=snL4MaxNumWebCachePerGroup, snL4VirtualServerPortHistoryIntervalStart=snL4VirtualServerPortHistoryIntervalStart, snL4VirtualServerPortStatisticCurrentConnection=snL4VirtualServerPortStatisticCurrentConnection, snL4VirtualServerStatistic=snL4VirtualServerStatistic, snL4WebCacheCurrConnections=snL4WebCacheCurrConnections, snL4VirtualServerStatisticIP=snL4VirtualServerStatisticIP, snL4VirtualServerRowStatus=snL4VirtualServerRowStatus, snL4RealServerCfgRowStatus=snL4RealServerCfgRowStatus, snL4TcpAge=snL4TcpAge, snL4slbReverseTraffic=snL4slbReverseTraffic, snL4RealServerPortStatisticFailTime=snL4RealServerPortStatisticFailTime, snL4RealServerStatisticReassignments=snL4RealServerStatisticReassignments, snL4RealServerHistoryIndex=snL4RealServerHistoryIndex, snL4VirtualServerHistoryControlEntry=snL4VirtualServerHistoryControlEntry, snL4RealServerPortStatusRxBytes=snL4RealServerPortStatusRxBytes, snL4VirtualServerStatusName=snL4VirtualServerStatusName, snL4WebCacheIP=snL4WebCacheIP, snL4VirtualServerPortStatisticTotalConnection=snL4VirtualServerPortStatisticTotalConnection, snL4WebCacheTrafficPort=snL4WebCacheTrafficPort, snL4PolicyPortAccessPort=snL4PolicyPortAccessPort, snL4VirtualServerStatisticSymmetricPriority=snL4VirtualServerStatisticSymmetricPriority, snL4WebCacheRxOctets=snL4WebCacheRxOctets, snL4Active=snL4Active, snL4FreeSessionCount=snL4FreeSessionCount, snL4VirtualServerCfgSDAType=snL4VirtualServerCfgSDAType, snL4RealServerDeleteState=snL4RealServerDeleteState, snL4VirtualServerStatisticReceivePkts=snL4VirtualServerStatisticReceivePkts, snL4RealServerPortServerName=snL4RealServerPortServerName, snL4NoPortMap=snL4NoPortMap, snL4RealServerPortStatusReassignCount=snL4RealServerPortStatusReassignCount, snL4RealServerHistoryControlBucketsRequested=snL4RealServerHistoryControlBucketsRequested, snL4WebCacheGroupId=snL4WebCacheGroupId, snL4RealServerHistoryCurConnections=snL4RealServerHistoryCurConnections, snL4WebCachePortTable=snL4WebCachePortTable, snL4PolicyId=snL4PolicyId, snL4WebCacheTxOctets=snL4WebCacheTxOctets, WebCacheState=WebCacheState, snL4VirtualServerStatusTotalConnections=snL4VirtualServerStatusTotalConnections, snL4VirtualServerPortStatus=snL4VirtualServerPortStatus, snL4VirtualServerPortHistoryIndex=snL4VirtualServerPortHistoryIndex, snL4RealServerHistoryTable=snL4RealServerHistoryTable, snL4VirtualServerPortStatusCurrentConnection=snL4VirtualServerPortStatusCurrentConnection, snL4RealServerPortStatus=snL4RealServerPortStatus, snL4VirtualServerPortDeleteState=snL4VirtualServerPortDeleteState, snL4RealServerCfgAdminStatus=snL4RealServerCfgAdminStatus, snL4WebCacheTrafficStats=snL4WebCacheTrafficStats, snL4RealServerStatusFailedPortExists=snL4RealServerStatusFailedPortExists, snL4VirtualServerPortHistoryPeakConnections=snL4VirtualServerPortHistoryPeakConnections, snL4VirtualServerPortHistoryEntry=snL4VirtualServerPortHistoryEntry, snL4VirtualServerPortStatusTable=snL4VirtualServerPortStatusTable, snL4VirtualServerPortCfgConcurrent=snL4VirtualServerPortCfgConcurrent, snL4VirtualServerHistoryTotalConnections=snL4VirtualServerHistoryTotalConnections, snL4VirtualServerAdminStatus=snL4VirtualServerAdminStatus, snL4VirtualServerSDAType=snL4VirtualServerSDAType, snL4WebClientPortName=snL4WebClientPortName, snL4RealServerPortEntry=snL4RealServerPortEntry, snL4RealServerPortHistoryControlIndex=snL4RealServerPortHistoryControlIndex)
mibBuilder.exportSymbols('HP-SN-SW-L4-SWITCH-GROUP-MIB', snL4WebCachePort=snL4WebCachePort, snL4RealServerPortStatisticPort=snL4RealServerPortStatisticPort, snL4VirtualServerPortStatisticServerName=snL4VirtualServerPortStatisticServerName, snL4VirtualServerPortStatusPort=snL4VirtualServerPortStatusPort, snL4WebCacheGroupDestMask=snL4WebCacheGroupDestMask, snL4RealServerPortStatusIndex=snL4RealServerPortStatusIndex, snL4RealServerPortStatisticTxBytes=snL4RealServerPortStatisticTxBytes, snL4MaxSessionLimit=snL4MaxSessionLimit, snL4RealServerStatusTable=snL4RealServerStatusTable, snL4WebCacheWeight=snL4WebCacheWeight, snL4GslbSiteRemoteServerIrons=snL4GslbSiteRemoteServerIrons, snL4WebCachePortServerIp=snL4WebCachePortServerIp, snL4RealServerPortStatisticTxPkts=snL4RealServerPortStatisticTxPkts, snL4WebUncachedRxPkts=snL4WebUncachedRxPkts, snL4RealServerPortHistoryIndex=snL4RealServerPortHistoryIndex, snL4RealServerPortStatusServerName=snL4RealServerPortStatusServerName, snL4RealServerPortCfgEntry=snL4RealServerPortCfgEntry, snL4VirtualServerPortHistoryControlStatus=snL4VirtualServerPortHistoryControlStatus, snL4VirtualServerCfgEntry=snL4VirtualServerCfgEntry, snL4RealServerPortStatisticPeakConnection=snL4RealServerPortStatisticPeakConnection, snL4RealServerHistoryTransmitPkts=snL4RealServerHistoryTransmitPkts, snL4RealServerStatusName=snL4RealServerStatusName, snL4RealServerPortStatusTxPkts=snL4RealServerPortStatusTxPkts, snL4RealServerPortPort=snL4RealServerPortPort, snL4RealServerPortStatusTxBytes=snL4RealServerPortStatusTxBytes, snL4Redundancy=snL4Redundancy, L4RowSts=L4RowSts, snL4PolicyScope=snL4PolicyScope, snL4RealServerStatusRealIP=snL4RealServerStatusRealIP, snL4EnableGslbRemoteGslbSiDownTrap=snL4EnableGslbRemoteGslbSiDownTrap, snL4VirtualServerCfgRowStatus=snL4VirtualServerCfgRowStatus, snL4RealServerPortHistoryControlEntry=snL4RealServerPortHistoryControlEntry, snL4BackupInterface=snL4BackupInterface, snL4WebUncachedTxPkts=snL4WebUncachedTxPkts, snL4VirtualServerHistoryTable=snL4VirtualServerHistoryTable, snL4RealServerStatus=snL4RealServerStatus, snL4VirtualServerPortHistoryReceivePkts=snL4VirtualServerPortHistoryReceivePkts, snL4GslbSiteRemoteServerIronEntry=snL4GslbSiteRemoteServerIronEntry, snL4PolicyEntry=snL4PolicyEntry, snL4RealServerPortCfgRowStatus=snL4RealServerPortCfgRowStatus, snL4VirtualServerPortHistoryControlEntry=snL4VirtualServerPortHistoryControlEntry, snL4EnableRealServerPortUpTrap=snL4EnableRealServerPortUpTrap, snL4VirtualServerVirtualIP=snL4VirtualServerVirtualIP, snL4BindEntry=snL4BindEntry, snL4RealServerStatisticFailedPortExists=snL4RealServerStatisticFailedPortExists, snL4RealServerStatisticAge=snL4RealServerStatisticAge, snL4VirtualServerPortStatisticPeakConnection=snL4VirtualServerPortStatisticPeakConnection, snL4VirtualServerPortCfgTable=snL4VirtualServerPortCfgTable, snL4WebUncachedTxOctets=snL4WebUncachedTxOctets, snL4WebUncachedRxOctets=snL4WebUncachedRxOctets, snL4WebCacheName=snL4WebCacheName, snL4EnableRealServerUpTrap=snL4EnableRealServerUpTrap, snL4RealServerPortCfgIP=snL4RealServerPortCfgIP, snL4VirtualServer=snL4VirtualServer, snL4VirtualServerStatusReceivePkts=snL4VirtualServerStatusReceivePkts, snL4VirtualServerCfgAdminStatus=snL4VirtualServerCfgAdminStatus, snL4RealServerPortHistoryTransmitPkts=snL4RealServerPortHistoryTransmitPkts, snL4RealServerPortDeleteState=snL4RealServerPortDeleteState, snL4VirtualServerHistoryControlIndex=snL4VirtualServerHistoryControlIndex, snL4slbForwardTraffic=snL4slbForwardTraffic, snL4RealServerStatisticRealIP=snL4RealServerStatisticRealIP, snL4TrapRealServerCurConnections=snL4TrapRealServerCurConnections, snL4VirtualServerPortHistoryTable=snL4VirtualServerPortHistoryTable, snL4Trap=snL4Trap, snL4RealServerPortHistoryControlTable=snL4RealServerPortHistoryControlTable, snL4VirtualServerDeleteState=snL4VirtualServerDeleteState, snL4VirtualServerStatisticSymmetricActivates=snL4VirtualServerStatisticSymmetricActivates, snL4WebCacheRxPkts=snL4WebCacheRxPkts, snL4VirtualServerPortEntry=snL4VirtualServerPortEntry, snL4PingInterval=snL4PingInterval, snL4BindVirtualServerName=snL4BindVirtualServerName, snL4WebCacheDeleteState=snL4WebCacheDeleteState, snL4RealServerPortStatisticRxBytes=snL4RealServerPortStatisticRxBytes, snL4WebCachePortDeleteState=snL4WebCachePortDeleteState, snL4VirtualServerHistorySampleIndex=snL4VirtualServerHistorySampleIndex, snL4RealServerPortStatusPeakConnection=snL4RealServerPortStatusPeakConnection, snL4RealServerPortHistorySampleIndex=snL4RealServerPortHistorySampleIndex, snL4RealServerHistoryControlBucketsGranted=snL4RealServerHistoryControlBucketsGranted, snL4VirtualServerPortStatisticEntry=snL4VirtualServerPortStatisticEntry, snL4RealServerStatisticState=snL4RealServerStatisticState, snL4VirtualServerPortHistorySampleIndex=snL4VirtualServerPortHistorySampleIndex, snL4RealServerStatusReceivePkts=snL4RealServerStatusReceivePkts, snL4BecomeActive=snL4BecomeActive, snL4RealServerPortRowStatus=snL4RealServerPortRowStatus, snL4WebClientPort=snL4WebClientPort, snL4WebCacheGroupTable=snL4WebCacheGroupTable, snL4RealServerPortIndex=snL4RealServerPortIndex, snL4Policy=snL4Policy, snL4BindRealServerName=snL4BindRealServerName, snL4BindVirtualPortNumber=snL4BindVirtualPortNumber, snL4WebServerPortName=snL4WebServerPortName, snL4EnableMaxSessionLimitReachedTrap=snL4EnableMaxSessionLimitReachedTrap, snL4WebCacheGroupSrcMask=snL4WebCacheGroupSrcMask, snL4RealServerStatisticEntry=snL4RealServerStatisticEntry, snL4GslbSiteRemoteServerIronTable=snL4GslbSiteRemoteServerIronTable, snL4VirtualServerHistoryIntervalStart=snL4VirtualServerHistoryIntervalStart, snL4EnableGslbHealthCheckIpUpTrap=snL4EnableGslbHealthCheckIpUpTrap, snL4VirtualServerStatusTable=snL4VirtualServerStatusTable, snL4RealServerStatusTotalConnections=snL4RealServerStatusTotalConnections, snL4VirtualServerPortHistoryControlBucketsGranted=snL4VirtualServerPortHistoryControlBucketsGranted, snL4EnableGslbRemoteSiUpTrap=snL4EnableGslbRemoteSiUpTrap, snL4VirtualServerStatus=snL4VirtualServerStatus, snL4RealServerCfgIP=snL4RealServerCfgIP, snL4VirtualServerPortStatusPeakConnection=snL4VirtualServerPortStatusPeakConnection, snL4RealServerStatusPeakConnections=snL4RealServerStatusPeakConnections, snL4RealServerPortHistoryResponseTime=snL4RealServerPortHistoryResponseTime, DisplayString=DisplayString, snL4slbDisableCount=snL4slbDisableCount, snL4VirtualServerPortHistoryTotalConnections=snL4VirtualServerPortHistoryTotalConnections, snL4VirtualServerStatisticReceiveBytes=snL4VirtualServerStatisticReceiveBytes, snL4RealServerPortCfg=snL4RealServerPortCfg, snL4RealServerHistoryControlStatus=snL4RealServerHistoryControlStatus, snL4VirtualServerHistoryTransmitPkts=snL4VirtualServerHistoryTransmitPkts, snL4RealServerCfg=snL4RealServerCfg, snL4RealServerStatisticFailTime=snL4RealServerStatisticFailTime, snL4BackupState=snL4BackupState, snL4WebCachePortRowStatus=snL4WebCachePortRowStatus, snL4VirtualServerCfg=snL4VirtualServerCfg, snL4WebCacheTrafficStatsTable=snL4WebCacheTrafficStatsTable, snL4PolicyProtocol=snL4PolicyProtocol, snL4RealServer=snL4RealServer, snL4VirtualServerIndex=snL4VirtualServerIndex, snL4TcpSynLimit=snL4TcpSynLimit, snL4RealServerWeight=snL4RealServerWeight, snL4RealServerHistoryControlDataSource=snL4RealServerHistoryControlDataSource, snL4BindRowStatus=snL4BindRowStatus, snL4PolicyPortAccessRowStatus=snL4PolicyPortAccessRowStatus, snL4RealServerHistoryControlInterval=snL4RealServerHistoryControlInterval, snL4VirtualServerPortHistoryControlOwner=snL4VirtualServerPortHistoryControlOwner, snL4RealServerPortCfgPort=snL4RealServerPortCfgPort, snL4RealServerPortStatusEntry=snL4RealServerPortStatusEntry, snL4VirtualServerPortRowStatus=snL4VirtualServerPortRowStatus, snL4RealServerStatusEntry=snL4RealServerStatusEntry, L4ServerName=L4ServerName, snL4VirtualServerPortHistoryControlTable=snL4VirtualServerPortHistoryControlTable, snL4VirtualServerPortHistoryControlBucketsRequested=snL4VirtualServerPortHistoryControlBucketsRequested, snL4VirtualServerPortHistoryControlIndex=snL4VirtualServerPortHistoryControlIndex, snL4RealServerPortStatusCurrentConnection=snL4RealServerPortStatusCurrentConnection, snL4PolicyPortAccessList=snL4PolicyPortAccessList, snL4RealServerCfgName=snL4RealServerCfgName, snL4WebUncachedTrafficStats=snL4WebUncachedTrafficStats, snL4VirtualServerName=snL4VirtualServerName, snL4RealServerPortAdminStatus=snL4RealServerPortAdminStatus, snL4VirtualServerPortStatusIndex=snL4VirtualServerPortStatusIndex, snL4RealServerName=snL4RealServerName, snL4RealServerHistoryIntervalStart=snL4RealServerHistoryIntervalStart, snL4RealServerStatusAge=snL4RealServerStatusAge, snL4VirtualServerPortStatistic=snL4VirtualServerPortStatistic, snL4RealServerHistoryControlIndex=snL4RealServerHistoryControlIndex, snL4slbAged=snL4slbAged, snL4RealServerStatusIndex=snL4RealServerStatusIndex, snL4WebCache=snL4WebCache, snL4RealServerHistoryReceivePkts=snL4RealServerHistoryReceivePkts, snL4PolicyPortAccess=snL4PolicyPortAccess, snL4RealServerStatisticPeakConnections=snL4RealServerStatisticPeakConnections, snL4EnableTcpSynLimitReachedTrap=snL4EnableTcpSynLimitReachedTrap, snL4GslbSiteRemoteServerIronIP=snL4GslbSiteRemoteServerIronIP, snL4VirtualServerPortCfgServerName=snL4VirtualServerPortCfgServerName) |
#!/usr/bin/env python3
# [rights] Copyright 2020 brianddk at github https://github.com/brianddk
# [license] Apache 2.0 License https://www.apache.org/licenses/LICENSE-2.0
# [repo] github.com/brianddk/reddit/blob/master/python/mining.py
# [btc] BTC-b32: bc1qwc2203uym96u0nmq04pcgqfs9ldqz9l3mz8fpj
# [tipjar] github.com/brianddk/reddit/blob/master/tipjar/tipjar.txt
spot = 8939.90
hashrate = 110 * 10**12
difficulty = float("16,104,807,485,529".replace(',','_'))
reward = 12.5
usd_per_day = (spot * hashrate * reward * 60 * 60 * 24) / (difficulty * 2**32)
print(usd_per_day)
| spot = 8939.9
hashrate = 110 * 10 ** 12
difficulty = float('16,104,807,485,529'.replace(',', '_'))
reward = 12.5
usd_per_day = spot * hashrate * reward * 60 * 60 * 24 / (difficulty * 2 ** 32)
print(usd_per_day) |
data = b""
data += b"\x7F\x45\x4C\x46" # ELF
data += b"\x02\x02\x02" # ELF64
data += b"\x20\x00" # ABI
data += b"\x00\x00\x00\x00\x00\x00\x00" # Pad
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Type Machine Version
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Start Address
data += b"\x00\x00\x00\x00\x00\x00\x00\x40" # Program Header
data += b"\x00\x00\x00\x00\x00\x00\x00\x78" # Section Header
data += b"\x00\x00\x00\x00" # Flags
data += b"\x00\x40" # Size of This Header
data += b"\x00\x38" # Size of Program Header
data += b"\x00\x01" # Number of Program Headers
data += b"\x00\x40" # Size of Section Headers
data += b"\x00\x02" # Number of Section Headers
data += b"\x00\x01" # Section Index Containing Labels
data += b"\x00\x00\x00\x01" # Segment Type (LOAD)
data += b"\x00\x00\x00\x00" # Flags (None)
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Offset
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Virtual Address
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Physical Address
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Size in File
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Size in Memory
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Alignment
data += b"\x00\x00\x00\x01" # Section Name in STRTAB
data += b"\x00\x00\x00\x01" # PROGBITS
data += b"\x00\x00\x00\x00\x00\x00\x00\x07" # Flags (WAX)
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Virtual Address
data += b"\x00\x00\x00\x00\x00\x00\x01\x00" # Offset in File
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Size in File
data += b"\x00\x00\x00\x00" # Section Index
data += b"\x00\x00\x00\x00" # Extra Information
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Alignment
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Size of Entry or Zero
data += b"\x00\x00\x00\x07" # Section Name in STRTAB
data += b"\x00\x00\x00\x03" # STRTAB
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Flags (None)
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Virtual Address
data += b"\x00\x00\x00\x00\x00\x00\x00\xF8" # Offset in File
data += b"\x00\x00\x00\x00\x00\x00\x00\x0C" # Size in File
data += b"\x00\x00\x00\x00" # Section Index
data += b"\x00\x00\x00\x00" # Extra Information
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Alignment
data += b"\x00\x00\x00\x00\x00\x00\x00\x00" # Size of Entry or Zero
data += b"\x00.text\x00.data\x00"
data += b"\x00" * (0x100 - len(data))
data += b"\x48\x65\x6C\x6C\x6F\x20\x57\x6F\x72\x6C\x64\x21\x0A\x00" # Hello World!
file = open("sample4.elf", "wb")
file.write(data)
file.close()
print("Done!")
| data = b''
data += b'\x7fELF'
data += b'\x02\x02\x02'
data += b' \x00'
data += b'\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00@'
data += b'\x00\x00\x00\x00\x00\x00\x00x'
data += b'\x00\x00\x00\x00'
data += b'\x00@'
data += b'\x008'
data += b'\x00\x01'
data += b'\x00@'
data += b'\x00\x02'
data += b'\x00\x01'
data += b'\x00\x00\x00\x01'
data += b'\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x01'
data += b'\x00\x00\x00\x01'
data += b'\x00\x00\x00\x00\x00\x00\x00\x07'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x01\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x07'
data += b'\x00\x00\x00\x03'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\xf8'
data += b'\x00\x00\x00\x00\x00\x00\x00\x0c'
data += b'\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00\x00\x00\x00\x00\x00\x00\x00'
data += b'\x00.text\x00.data\x00'
data += b'\x00' * (256 - len(data))
data += b'Hello World!\n\x00'
file = open('sample4.elf', 'wb')
file.write(data)
file.close()
print('Done!') |
class User:
def __init__(self):
self.id = None
self.login = None
self.password = None
self.fullName = None
self.phone = None
self.email = None
self.imageUrl = ''
self.activated = False
self.langKey = 'en'
self.activationKey = None
self.resetKey = None
self.createdBy = None
self.createdDate = None
self.resetDate = None
self.lastModifiedBy = None
self.lastModifiedDate = None
self.authorities = ['ROLE_USER', ]
self.activateUrlPrefix = None
def from_record(self, record):
self.id = record[0]
self.login = record[1]
self.password = record[2]
self.fullName = record[3]
self.phone = record[4]
self.email = record[5]
self.imageUrl = record[6]
self.activated = ord(record[7]) == 1
self.langKey = record[8]
self.activationKey = record[9]
self.resetKey = record[10]
self.createdBy = record[11]
self.createdDate = record[12].strftime('%Y-%m-%dT%H:%M:%S') if record[12] else None
self.resetDate = record[13].strftime('%Y-%m-%dT%H:%M:%S') if record[13] else None
self.lastModifiedBy = record[14]
self.lastModifiedDate = record[15].strftime('%Y-%m-%dT%H:%M:%S') if record[15] else None
self.authorities = record[16].split(',')
def remove_internal_values(self):
delattr(self, 'password')
delattr(self, 'activationKey')
delattr(self, 'resetKey')
delattr(self, 'resetDate')
delattr(self, 'activateUrlPrefix')
| class User:
def __init__(self):
self.id = None
self.login = None
self.password = None
self.fullName = None
self.phone = None
self.email = None
self.imageUrl = ''
self.activated = False
self.langKey = 'en'
self.activationKey = None
self.resetKey = None
self.createdBy = None
self.createdDate = None
self.resetDate = None
self.lastModifiedBy = None
self.lastModifiedDate = None
self.authorities = ['ROLE_USER']
self.activateUrlPrefix = None
def from_record(self, record):
self.id = record[0]
self.login = record[1]
self.password = record[2]
self.fullName = record[3]
self.phone = record[4]
self.email = record[5]
self.imageUrl = record[6]
self.activated = ord(record[7]) == 1
self.langKey = record[8]
self.activationKey = record[9]
self.resetKey = record[10]
self.createdBy = record[11]
self.createdDate = record[12].strftime('%Y-%m-%dT%H:%M:%S') if record[12] else None
self.resetDate = record[13].strftime('%Y-%m-%dT%H:%M:%S') if record[13] else None
self.lastModifiedBy = record[14]
self.lastModifiedDate = record[15].strftime('%Y-%m-%dT%H:%M:%S') if record[15] else None
self.authorities = record[16].split(',')
def remove_internal_values(self):
delattr(self, 'password')
delattr(self, 'activationKey')
delattr(self, 'resetKey')
delattr(self, 'resetDate')
delattr(self, 'activateUrlPrefix') |
row = int(input("How many rows you want? "))
column = int(input("How many columns you want? "))
if row==column:
for i in range(1,row+1):
for j in range(1,row+1):
if i==j:
print("1", end = " ")
else:
print("0", end= " ")
print("")
else:
print("It does not forms square matrix")
| row = int(input('How many rows you want? '))
column = int(input('How many columns you want? '))
if row == column:
for i in range(1, row + 1):
for j in range(1, row + 1):
if i == j:
print('1', end=' ')
else:
print('0', end=' ')
print('')
else:
print('It does not forms square matrix') |
patches = [
{
"op": "remove",
"path": "/PropertyTypes/AWS::S3::StorageLens.S3BucketDestination/Properties/Encryption/Type",
},
{
"op": "add",
"path": "/PropertyTypes/AWS::S3::StorageLens.S3BucketDestination/Properties/Encryption/PrimitiveType",
"value": "Json",
},
# Rename AWS::S3::StorageLens.DataExport to AWS::S3::StorageLens.StorageLensDataExport due to conflict with AWS::S3::Bucket.DataExport
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::StorageLens.DataExport",
"path": "/PropertyTypes/AWS::S3::StorageLens.StorageLensDataExport",
},
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::StorageLens.StorageLensConfiguration/Properties/DataExport/Type",
"value": "StorageLensDataExport",
},
# Rename AWS::S3::LifecycleConfiguration.Rule to AWS::S3::LifecycleConfiguration.LifecycleRule - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.Rule",
"path": "/PropertyTypes/AWS::S3::Bucket.LifecycleRule",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.LifecycleConfiguration/Properties/Rules/ItemType",
"value": "LifecycleRule",
},
# Rename AWS::S3::Bucket.Transition to AWS::S3::Bucket.LifecycleRuleTransition - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.Transition",
"path": "/PropertyTypes/AWS::S3::Bucket.LifecycleRuleTransition",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.LifecycleRule/Properties/Transition/Type",
"value": "LifecycleRuleTransition",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.LifecycleRule/Properties/Transitions/ItemType",
"value": "LifecycleRuleTransition",
},
# Rename AWS::S3::Bucket.CorsRule to AWS::S3::Bucket.CorsRule - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.CorsRule",
"path": "/PropertyTypes/AWS::S3::Bucket.CorsRules",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.CorsConfiguration/Properties/CorsRules/ItemType",
"value": "CorsRules",
},
# Rename AWS::S3::Bucket.FilterRule to AWS::S3::Bucket.Rules - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.FilterRule",
"path": "/PropertyTypes/AWS::S3::Bucket.Rules",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.S3KeyFilter/Properties/Rules/ItemType",
"value": "Rules",
},
# Rename AWS::S3::Bucket.S3KeyFilter to AWS::S3::Bucket.S3Key - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.S3KeyFilter",
"path": "/PropertyTypes/AWS::S3::Bucket.S3Key",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.NotificationFilter/Properties/S3Key/Type",
"value": "S3Key",
},
# Rename AWS::S3::Bucket.NotificationFilter to AWS::S3::Bucket.Filter - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.NotificationFilter",
"path": "/PropertyTypes/AWS::S3::Bucket.Filter",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.LambdaConfiguration/Properties/Filter/Type",
"value": "Filter",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.QueueConfiguration/Properties/Filter/Type",
"value": "Filter",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.TopicConfiguration/Properties/Filter/Type",
"value": "Filter",
},
# Rename AWS::S3::Bucket.LambdaConfiguration to AWS::S3::Bucket.LambdaConfigurations - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.LambdaConfiguration",
"path": "/PropertyTypes/AWS::S3::Bucket.LambdaConfigurations",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.NotificationConfiguration/Properties/LambdaConfigurations/ItemType",
"value": "LambdaConfigurations",
},
# Rename AWS::S3::Bucket.QueueConfigurations to AWS::S3::Bucket.QueueConfigurations - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.QueueConfiguration",
"path": "/PropertyTypes/AWS::S3::Bucket.QueueConfigurations",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.NotificationConfiguration/Properties/QueueConfigurations/ItemType",
"value": "QueueConfigurations",
},
# Rename AWS::S3::Bucket.TopicConfiguration to AWS::S3::Bucket.TopicConfigurations - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.TopicConfiguration",
"path": "/PropertyTypes/AWS::S3::Bucket.TopicConfigurations",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.NotificationConfiguration/Properties/TopicConfigurations/ItemType",
"value": "TopicConfigurations",
},
# Rename AWS::S3::Bucket.ReplicationDestination to AWS::S3::Bucket.ReplicationConfigurationRulesDestination - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.ReplicationDestination",
"path": "/PropertyTypes/AWS::S3::Bucket.ReplicationConfigurationRulesDestination",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.ReplicationRule/Properties/Destination/Type",
"value": "ReplicationConfigurationRulesDestination",
},
# Rename AWS::S3::Bucket.ReplicationRule to AWS::S3::Bucket.ReplicationConfigurationRules - backward compatibility
{
"op": "move",
"from": "/PropertyTypes/AWS::S3::Bucket.ReplicationRule",
"path": "/PropertyTypes/AWS::S3::Bucket.ReplicationConfigurationRules",
},
# backward compatibility
{
"op": "replace",
"path": "/PropertyTypes/AWS::S3::Bucket.ReplicationConfiguration/Properties/Rules/ItemType",
"value": "ReplicationConfigurationRules",
},
]
| patches = [{'op': 'remove', 'path': '/PropertyTypes/AWS::S3::StorageLens.S3BucketDestination/Properties/Encryption/Type'}, {'op': 'add', 'path': '/PropertyTypes/AWS::S3::StorageLens.S3BucketDestination/Properties/Encryption/PrimitiveType', 'value': 'Json'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::StorageLens.DataExport', 'path': '/PropertyTypes/AWS::S3::StorageLens.StorageLensDataExport'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::StorageLens.StorageLensConfiguration/Properties/DataExport/Type', 'value': 'StorageLensDataExport'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.Rule', 'path': '/PropertyTypes/AWS::S3::Bucket.LifecycleRule'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.LifecycleConfiguration/Properties/Rules/ItemType', 'value': 'LifecycleRule'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.Transition', 'path': '/PropertyTypes/AWS::S3::Bucket.LifecycleRuleTransition'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.LifecycleRule/Properties/Transition/Type', 'value': 'LifecycleRuleTransition'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.LifecycleRule/Properties/Transitions/ItemType', 'value': 'LifecycleRuleTransition'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.CorsRule', 'path': '/PropertyTypes/AWS::S3::Bucket.CorsRules'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.CorsConfiguration/Properties/CorsRules/ItemType', 'value': 'CorsRules'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.FilterRule', 'path': '/PropertyTypes/AWS::S3::Bucket.Rules'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.S3KeyFilter/Properties/Rules/ItemType', 'value': 'Rules'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.S3KeyFilter', 'path': '/PropertyTypes/AWS::S3::Bucket.S3Key'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.NotificationFilter/Properties/S3Key/Type', 'value': 'S3Key'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.NotificationFilter', 'path': '/PropertyTypes/AWS::S3::Bucket.Filter'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.LambdaConfiguration/Properties/Filter/Type', 'value': 'Filter'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.QueueConfiguration/Properties/Filter/Type', 'value': 'Filter'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.TopicConfiguration/Properties/Filter/Type', 'value': 'Filter'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.LambdaConfiguration', 'path': '/PropertyTypes/AWS::S3::Bucket.LambdaConfigurations'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.NotificationConfiguration/Properties/LambdaConfigurations/ItemType', 'value': 'LambdaConfigurations'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.QueueConfiguration', 'path': '/PropertyTypes/AWS::S3::Bucket.QueueConfigurations'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.NotificationConfiguration/Properties/QueueConfigurations/ItemType', 'value': 'QueueConfigurations'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.TopicConfiguration', 'path': '/PropertyTypes/AWS::S3::Bucket.TopicConfigurations'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.NotificationConfiguration/Properties/TopicConfigurations/ItemType', 'value': 'TopicConfigurations'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.ReplicationDestination', 'path': '/PropertyTypes/AWS::S3::Bucket.ReplicationConfigurationRulesDestination'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.ReplicationRule/Properties/Destination/Type', 'value': 'ReplicationConfigurationRulesDestination'}, {'op': 'move', 'from': '/PropertyTypes/AWS::S3::Bucket.ReplicationRule', 'path': '/PropertyTypes/AWS::S3::Bucket.ReplicationConfigurationRules'}, {'op': 'replace', 'path': '/PropertyTypes/AWS::S3::Bucket.ReplicationConfiguration/Properties/Rules/ItemType', 'value': 'ReplicationConfigurationRules'}] |
#
# PySNMP MIB module CISCO-COMMON-MGMT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-COMMON-MGMT-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:36:17 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
usmNoPrivProtocol, usmNoAuthProtocol = mibBuilder.importSymbols("SNMP-USER-BASED-SM-MIB", "usmNoPrivProtocol", "usmNoAuthProtocol")
ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, TimeTicks, Counter64, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Integer32, Unsigned32, Counter32, iso, NotificationType, ObjectIdentity, IpAddress, Gauge32, dod = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "TimeTicks", "Counter64", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Integer32", "Unsigned32", "Counter32", "iso", "NotificationType", "ObjectIdentity", "IpAddress", "Gauge32", "dod")
TruthValue, StorageType, AutonomousType, DateAndTime, DisplayString, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "StorageType", "AutonomousType", "DateAndTime", "DisplayString", "TextualConvention", "RowStatus")
ciscoCommonMgmtMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 443))
ciscoCommonMgmtMIB.setRevisions(('2008-06-13 00:00', '2005-06-23 00:00',))
if mibBuilder.loadTexts: ciscoCommonMgmtMIB.setLastUpdated('200806130000Z')
if mibBuilder.loadTexts: ciscoCommonMgmtMIB.setOrganization('Cisco Systems Inc.')
ciscoCommonMgmtNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 0))
ciscoCommonMgmtMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 1))
ciscoCommonMgmtMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 2))
ccmUserConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1))
ccmCommonMaxUsers = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccmCommonMaxUsers.setStatus('current')
ccmCommonUsers = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccmCommonUsers.setStatus('current')
ccmCommonUsersGlobalEnforcePriv = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 3), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccmCommonUsersGlobalEnforcePriv.setStatus('current')
ccmCommonUserLastChange = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 4), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccmCommonUserLastChange.setStatus('current')
ccmCommonUserTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5), )
if mibBuilder.loadTexts: ccmCommonUserTable.setStatus('current')
ccmCommonUserEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1), ).setIndexNames((0, "CISCO-COMMON-MGMT-MIB", "ccmCommonUserName"))
if mibBuilder.loadTexts: ccmCommonUserEntry.setStatus('current')
ccmCommonUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)))
if mibBuilder.loadTexts: ccmCommonUserName.setStatus('current')
ccmCommonUserPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 2), DisplayString().clone(hexValue="")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserPassword.setStatus('current')
ccmCommonUserExpiryDate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 3), DateAndTime().clone(hexValue="0000000000000000000000")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserExpiryDate.setStatus('current')
ccmCommonUserSshKeyFilename = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255)).clone(hexValue="")).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserSshKeyFilename.setStatus('current')
ccmCommonUserSshKeyConfigured = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccmCommonUserSshKeyConfigured.setStatus('current')
ccmCommonUserSNMPAuthProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 6), AutonomousType().clone((1, 3, 6, 1, 6, 3, 10, 1, 1, 1))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserSNMPAuthProtocol.setStatus('current')
ccmCommonUserSNMPPrivProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 7), AutonomousType().clone((1, 3, 6, 1, 6, 3, 10, 1, 2, 1))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserSNMPPrivProtocol.setStatus('current')
ccmCommonUserCredType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("localCredentialStore", 2), ("remoteCredentialStore", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ccmCommonUserCredType.setStatus('current')
ccmCommonUserStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 9), StorageType().clone('nonVolatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserStorageType.setStatus('current')
ccmCommonUserRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 10), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserRowStatus.setStatus('current')
ccmCommonUserRoleTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6), )
if mibBuilder.loadTexts: ccmCommonUserRoleTable.setStatus('current')
ccmCommonUserRoleEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1), ).setIndexNames((0, "CISCO-COMMON-MGMT-MIB", "ccmCommonUserName"), (0, "CISCO-COMMON-MGMT-MIB", "ccmCommonUserRoleName"))
if mibBuilder.loadTexts: ccmCommonUserRoleEntry.setStatus('current')
ccmCommonUserRoleName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)))
if mibBuilder.loadTexts: ccmCommonUserRoleName.setStatus('current')
ccmCommonUserRoleStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1, 2), StorageType().clone('nonVolatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserRoleStorageType.setStatus('current')
ccmCommonUserRoleRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ccmCommonUserRoleRowStatus.setStatus('current')
ccmCommonUserCacheTimeout = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 86400))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: ccmCommonUserCacheTimeout.setStatus('current')
ciscoCommonMgmtMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 1))
ciscoCommonMgmtMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 2))
ciscoCommonMgmtMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 1, 1)).setObjects(("CISCO-COMMON-MGMT-MIB", "ccmConfigurationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoCommonMgmtMIBCompliance = ciscoCommonMgmtMIBCompliance.setStatus('obsolete')
ciscoCommonMgmtMIBCompliance1 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 1, 2)).setObjects(("CISCO-COMMON-MGMT-MIB", "ccmConfigurationGroup"), ("CISCO-COMMON-MGMT-MIB", "ccmCacheTimeoutConfigGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoCommonMgmtMIBCompliance1 = ciscoCommonMgmtMIBCompliance1.setStatus('current')
ccmConfigurationGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 2, 1)).setObjects(("CISCO-COMMON-MGMT-MIB", "ccmCommonMaxUsers"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUsers"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUsersGlobalEnforcePriv"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserLastChange"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserPassword"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserExpiryDate"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserSshKeyFilename"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserSshKeyConfigured"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserSNMPAuthProtocol"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserSNMPPrivProtocol"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserCredType"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserStorageType"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserRowStatus"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserRoleStorageType"), ("CISCO-COMMON-MGMT-MIB", "ccmCommonUserRoleRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ccmConfigurationGroup = ccmConfigurationGroup.setStatus('current')
ccmCacheTimeoutConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 2, 2)).setObjects(("CISCO-COMMON-MGMT-MIB", "ccmCommonUserCacheTimeout"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ccmCacheTimeoutConfigGroup = ccmCacheTimeoutConfigGroup.setStatus('current')
mibBuilder.exportSymbols("CISCO-COMMON-MGMT-MIB", ccmCommonUserTable=ccmCommonUserTable, ccmCommonUserPassword=ccmCommonUserPassword, ccmCommonUserSNMPAuthProtocol=ccmCommonUserSNMPAuthProtocol, ccmCommonUserRoleStorageType=ccmCommonUserRoleStorageType, PYSNMP_MODULE_ID=ciscoCommonMgmtMIB, ccmCommonUsers=ccmCommonUsers, ciscoCommonMgmtMIB=ciscoCommonMgmtMIB, ccmCommonUserEntry=ccmCommonUserEntry, ciscoCommonMgmtMIBObjects=ciscoCommonMgmtMIBObjects, ccmConfigurationGroup=ccmConfigurationGroup, ccmCommonUserSNMPPrivProtocol=ccmCommonUserSNMPPrivProtocol, ccmCommonUserLastChange=ccmCommonUserLastChange, ccmCommonUserRoleName=ccmCommonUserRoleName, ciscoCommonMgmtMIBCompliance1=ciscoCommonMgmtMIBCompliance1, ciscoCommonMgmtMIBCompliances=ciscoCommonMgmtMIBCompliances, ccmCommonUserRoleTable=ccmCommonUserRoleTable, ccmCommonUserRoleEntry=ccmCommonUserRoleEntry, ccmCommonUserSshKeyConfigured=ccmCommonUserSshKeyConfigured, ccmUserConfig=ccmUserConfig, ciscoCommonMgmtMIBGroups=ciscoCommonMgmtMIBGroups, ccmCommonUserName=ccmCommonUserName, ccmCommonMaxUsers=ccmCommonMaxUsers, ccmCacheTimeoutConfigGroup=ccmCacheTimeoutConfigGroup, ccmCommonUserRowStatus=ccmCommonUserRowStatus, ciscoCommonMgmtMIBCompliance=ciscoCommonMgmtMIBCompliance, ccmCommonUserCredType=ccmCommonUserCredType, ccmCommonUserSshKeyFilename=ccmCommonUserSshKeyFilename, ciscoCommonMgmtNotifs=ciscoCommonMgmtNotifs, ciscoCommonMgmtMIBConform=ciscoCommonMgmtMIBConform, ccmCommonUserRoleRowStatus=ccmCommonUserRoleRowStatus, ccmCommonUsersGlobalEnforcePriv=ccmCommonUsersGlobalEnforcePriv, ccmCommonUserCacheTimeout=ccmCommonUserCacheTimeout, ccmCommonUserStorageType=ccmCommonUserStorageType, ccmCommonUserExpiryDate=ccmCommonUserExpiryDate)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_size_constraint, constraints_intersection, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(usm_no_priv_protocol, usm_no_auth_protocol) = mibBuilder.importSymbols('SNMP-USER-BASED-SM-MIB', 'usmNoPrivProtocol', 'usmNoAuthProtocol')
(object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup')
(module_identity, time_ticks, counter64, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, integer32, unsigned32, counter32, iso, notification_type, object_identity, ip_address, gauge32, dod) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'TimeTicks', 'Counter64', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Integer32', 'Unsigned32', 'Counter32', 'iso', 'NotificationType', 'ObjectIdentity', 'IpAddress', 'Gauge32', 'dod')
(truth_value, storage_type, autonomous_type, date_and_time, display_string, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'StorageType', 'AutonomousType', 'DateAndTime', 'DisplayString', 'TextualConvention', 'RowStatus')
cisco_common_mgmt_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 443))
ciscoCommonMgmtMIB.setRevisions(('2008-06-13 00:00', '2005-06-23 00:00'))
if mibBuilder.loadTexts:
ciscoCommonMgmtMIB.setLastUpdated('200806130000Z')
if mibBuilder.loadTexts:
ciscoCommonMgmtMIB.setOrganization('Cisco Systems Inc.')
cisco_common_mgmt_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 0))
cisco_common_mgmt_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 1))
cisco_common_mgmt_mib_conform = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 2))
ccm_user_config = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1))
ccm_common_max_users = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccmCommonMaxUsers.setStatus('current')
ccm_common_users = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccmCommonUsers.setStatus('current')
ccm_common_users_global_enforce_priv = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 3), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccmCommonUsersGlobalEnforcePriv.setStatus('current')
ccm_common_user_last_change = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 4), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccmCommonUserLastChange.setStatus('current')
ccm_common_user_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5))
if mibBuilder.loadTexts:
ccmCommonUserTable.setStatus('current')
ccm_common_user_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1)).setIndexNames((0, 'CISCO-COMMON-MGMT-MIB', 'ccmCommonUserName'))
if mibBuilder.loadTexts:
ccmCommonUserEntry.setStatus('current')
ccm_common_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)))
if mibBuilder.loadTexts:
ccmCommonUserName.setStatus('current')
ccm_common_user_password = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 2), display_string().clone(hexValue='')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserPassword.setStatus('current')
ccm_common_user_expiry_date = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 3), date_and_time().clone(hexValue='0000000000000000000000')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserExpiryDate.setStatus('current')
ccm_common_user_ssh_key_filename = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255)).clone(hexValue='')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserSshKeyFilename.setStatus('current')
ccm_common_user_ssh_key_configured = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 5), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccmCommonUserSshKeyConfigured.setStatus('current')
ccm_common_user_snmp_auth_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 6), autonomous_type().clone((1, 3, 6, 1, 6, 3, 10, 1, 1, 1))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserSNMPAuthProtocol.setStatus('current')
ccm_common_user_snmp_priv_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 7), autonomous_type().clone((1, 3, 6, 1, 6, 3, 10, 1, 2, 1))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserSNMPPrivProtocol.setStatus('current')
ccm_common_user_cred_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('localCredentialStore', 2), ('remoteCredentialStore', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ccmCommonUserCredType.setStatus('current')
ccm_common_user_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 9), storage_type().clone('nonVolatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserStorageType.setStatus('current')
ccm_common_user_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 5, 1, 10), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserRowStatus.setStatus('current')
ccm_common_user_role_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6))
if mibBuilder.loadTexts:
ccmCommonUserRoleTable.setStatus('current')
ccm_common_user_role_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1)).setIndexNames((0, 'CISCO-COMMON-MGMT-MIB', 'ccmCommonUserName'), (0, 'CISCO-COMMON-MGMT-MIB', 'ccmCommonUserRoleName'))
if mibBuilder.loadTexts:
ccmCommonUserRoleEntry.setStatus('current')
ccm_common_user_role_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)))
if mibBuilder.loadTexts:
ccmCommonUserRoleName.setStatus('current')
ccm_common_user_role_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1, 2), storage_type().clone('nonVolatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserRoleStorageType.setStatus('current')
ccm_common_user_role_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 6, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ccmCommonUserRoleRowStatus.setStatus('current')
ccm_common_user_cache_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 443, 1, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 86400))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ccmCommonUserCacheTimeout.setStatus('current')
cisco_common_mgmt_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 1))
cisco_common_mgmt_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 2))
cisco_common_mgmt_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 1, 1)).setObjects(('CISCO-COMMON-MGMT-MIB', 'ccmConfigurationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_common_mgmt_mib_compliance = ciscoCommonMgmtMIBCompliance.setStatus('obsolete')
cisco_common_mgmt_mib_compliance1 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 1, 2)).setObjects(('CISCO-COMMON-MGMT-MIB', 'ccmConfigurationGroup'), ('CISCO-COMMON-MGMT-MIB', 'ccmCacheTimeoutConfigGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_common_mgmt_mib_compliance1 = ciscoCommonMgmtMIBCompliance1.setStatus('current')
ccm_configuration_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 2, 1)).setObjects(('CISCO-COMMON-MGMT-MIB', 'ccmCommonMaxUsers'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUsers'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUsersGlobalEnforcePriv'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserLastChange'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserPassword'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserExpiryDate'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserSshKeyFilename'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserSshKeyConfigured'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserSNMPAuthProtocol'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserSNMPPrivProtocol'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserCredType'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserStorageType'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserRowStatus'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserRoleStorageType'), ('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserRoleRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ccm_configuration_group = ccmConfigurationGroup.setStatus('current')
ccm_cache_timeout_config_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 443, 2, 2, 2)).setObjects(('CISCO-COMMON-MGMT-MIB', 'ccmCommonUserCacheTimeout'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ccm_cache_timeout_config_group = ccmCacheTimeoutConfigGroup.setStatus('current')
mibBuilder.exportSymbols('CISCO-COMMON-MGMT-MIB', ccmCommonUserTable=ccmCommonUserTable, ccmCommonUserPassword=ccmCommonUserPassword, ccmCommonUserSNMPAuthProtocol=ccmCommonUserSNMPAuthProtocol, ccmCommonUserRoleStorageType=ccmCommonUserRoleStorageType, PYSNMP_MODULE_ID=ciscoCommonMgmtMIB, ccmCommonUsers=ccmCommonUsers, ciscoCommonMgmtMIB=ciscoCommonMgmtMIB, ccmCommonUserEntry=ccmCommonUserEntry, ciscoCommonMgmtMIBObjects=ciscoCommonMgmtMIBObjects, ccmConfigurationGroup=ccmConfigurationGroup, ccmCommonUserSNMPPrivProtocol=ccmCommonUserSNMPPrivProtocol, ccmCommonUserLastChange=ccmCommonUserLastChange, ccmCommonUserRoleName=ccmCommonUserRoleName, ciscoCommonMgmtMIBCompliance1=ciscoCommonMgmtMIBCompliance1, ciscoCommonMgmtMIBCompliances=ciscoCommonMgmtMIBCompliances, ccmCommonUserRoleTable=ccmCommonUserRoleTable, ccmCommonUserRoleEntry=ccmCommonUserRoleEntry, ccmCommonUserSshKeyConfigured=ccmCommonUserSshKeyConfigured, ccmUserConfig=ccmUserConfig, ciscoCommonMgmtMIBGroups=ciscoCommonMgmtMIBGroups, ccmCommonUserName=ccmCommonUserName, ccmCommonMaxUsers=ccmCommonMaxUsers, ccmCacheTimeoutConfigGroup=ccmCacheTimeoutConfigGroup, ccmCommonUserRowStatus=ccmCommonUserRowStatus, ciscoCommonMgmtMIBCompliance=ciscoCommonMgmtMIBCompliance, ccmCommonUserCredType=ccmCommonUserCredType, ccmCommonUserSshKeyFilename=ccmCommonUserSshKeyFilename, ciscoCommonMgmtNotifs=ciscoCommonMgmtNotifs, ciscoCommonMgmtMIBConform=ciscoCommonMgmtMIBConform, ccmCommonUserRoleRowStatus=ccmCommonUserRoleRowStatus, ccmCommonUsersGlobalEnforcePriv=ccmCommonUsersGlobalEnforcePriv, ccmCommonUserCacheTimeout=ccmCommonUserCacheTimeout, ccmCommonUserStorageType=ccmCommonUserStorageType, ccmCommonUserExpiryDate=ccmCommonUserExpiryDate) |
with open("input_16.txt", "r") as f:
lines = f.readlines()
names = []
restrictions = []
for line in lines:
if len(line.strip()) == 0:
break
names.append(line.strip().split(": ")[0])
values = line.strip().split(": ")[1]
ranges = values.split(" or ")
restrictions.append([
[int(x) for x in ranges[0].split("-")],
[int(x) for x in ranges[1].split("-")]
])
nearby_tickets = []
start_adding = False
for line in lines:
if start_adding:
cleaned = line.strip().split(",")
nearby_tickets.append([int(x) for x in cleaned])
if "nearby tickets:" in line:
start_adding = True
not_satisfied = []
valid_tickets = []
for ticket in nearby_tickets:
valid_ticket = True
for field in ticket:
fulfills_restriction = False
for restriction in restrictions:
if (restriction[0][0] <= field <= restriction[0][1]) or (restriction[1][0] <= field <= restriction[1][1]):
fulfills_restriction = True
break
if not fulfills_restriction:
not_satisfied.append(field)
valid_ticket = False
if valid_ticket:
valid_tickets.append(ticket)
fields = [[valid_ticket[i] for valid_ticket in valid_tickets] for i in range(len(valid_tickets[0]))]
field_to_possibilities = []
for field in fields:
possible_restrictions = []
for i, restriction in enumerate(restrictions):
fulfills_restriction = True
for ticket in field:
if not ((restriction[0][0] <= ticket <= restriction[0][1]) or (restriction[1][0] <= ticket <= restriction[1][1])):
fulfills_restriction = False
break
if fulfills_restriction:
possible_restrictions.append(i)
field_to_possibilities.append(possible_restrictions)
remaining = set(range(len(fields)))
fields = ["" for _ in fields]
while len(remaining) > 0:
for i, possibilities in enumerate(field_to_possibilities):
if len(possibilities) == 1:
chosen = possibilities[0]
chosen_idx = i
break
for possibilities in field_to_possibilities:
if chosen in possibilities:
possibilities.remove(chosen)
fields[chosen_idx] = names[chosen]
remaining.remove(chosen)
print(fields)
idxs = [idx for idx, val in enumerate(fields) if val.startswith("departure")]
your_ticket = "151,71,67,113,127,163,131,59,137,103,73,139,107,101,97,149,157,53,109,61"
your_ticket_vals = [int(val) for val in your_ticket.split(",")]
ans = 1
for idx in idxs:
ans *= your_ticket_vals[idx]
print(ans) | with open('input_16.txt', 'r') as f:
lines = f.readlines()
names = []
restrictions = []
for line in lines:
if len(line.strip()) == 0:
break
names.append(line.strip().split(': ')[0])
values = line.strip().split(': ')[1]
ranges = values.split(' or ')
restrictions.append([[int(x) for x in ranges[0].split('-')], [int(x) for x in ranges[1].split('-')]])
nearby_tickets = []
start_adding = False
for line in lines:
if start_adding:
cleaned = line.strip().split(',')
nearby_tickets.append([int(x) for x in cleaned])
if 'nearby tickets:' in line:
start_adding = True
not_satisfied = []
valid_tickets = []
for ticket in nearby_tickets:
valid_ticket = True
for field in ticket:
fulfills_restriction = False
for restriction in restrictions:
if restriction[0][0] <= field <= restriction[0][1] or restriction[1][0] <= field <= restriction[1][1]:
fulfills_restriction = True
break
if not fulfills_restriction:
not_satisfied.append(field)
valid_ticket = False
if valid_ticket:
valid_tickets.append(ticket)
fields = [[valid_ticket[i] for valid_ticket in valid_tickets] for i in range(len(valid_tickets[0]))]
field_to_possibilities = []
for field in fields:
possible_restrictions = []
for (i, restriction) in enumerate(restrictions):
fulfills_restriction = True
for ticket in field:
if not (restriction[0][0] <= ticket <= restriction[0][1] or restriction[1][0] <= ticket <= restriction[1][1]):
fulfills_restriction = False
break
if fulfills_restriction:
possible_restrictions.append(i)
field_to_possibilities.append(possible_restrictions)
remaining = set(range(len(fields)))
fields = ['' for _ in fields]
while len(remaining) > 0:
for (i, possibilities) in enumerate(field_to_possibilities):
if len(possibilities) == 1:
chosen = possibilities[0]
chosen_idx = i
break
for possibilities in field_to_possibilities:
if chosen in possibilities:
possibilities.remove(chosen)
fields[chosen_idx] = names[chosen]
remaining.remove(chosen)
print(fields)
idxs = [idx for (idx, val) in enumerate(fields) if val.startswith('departure')]
your_ticket = '151,71,67,113,127,163,131,59,137,103,73,139,107,101,97,149,157,53,109,61'
your_ticket_vals = [int(val) for val in your_ticket.split(',')]
ans = 1
for idx in idxs:
ans *= your_ticket_vals[idx]
print(ans) |
#cigar_party
def cigar_party(cigars, is_weekend):
if 40<=cigars<=60:
return True
elif cigars>=60 and is_weekend:
return True
return False
#date_fashion
def date_fashion(you, date):
if you<=2 or date<=2:
return 0
elif you>=8 or date>=8:
return 2
elif 2<you<8 or 2<date<8:
return 1
#squirrel_play
def squirrel_play(temp, is_summer):
if 60<=temp<=90:
return True
elif 90<temp<=100 and is_summer==False:
return False
elif 90<temp<=100 and is_summer==True:
return True
return False
#caught_speeding
def caught_speeding(speed, is_birthday):
if is_birthday:
speed-=5
if speed<=60:
return 0
elif 61<=speed<=80:
return 1
elif speed>=81:
return 2
#sorta_sum
def sorta_sum(a, b):
sum = a+b
if 10<=sum<=19:
return 20
return sum
#alarm_clock
def alarm_clock(day, vacation):
if (day==1 or day==2 or day==3 or day==4 or day==5) and not vacation:
return "7:00"
elif ((day==0 or day==6) and not vacation) or ((day==1 or day==2 or day==3 or day==4 or day==5) and vacation):
return "10:00"
else:
return "off"
#love6
def love6(a, b):
if a==6 or b==6 or a+b==6 or abs(a-b)==6:
return True
return False
#in1to10
def in1to10(n, outside_mode):
if outside_mode and (n>=10 or n<=1):
return True
elif 1<=n<=10 and not outside_mode:
return True
return False
#near_ten
def near_ten(num):
if (num%10)<=2 or num%10>=8:
return True
return False
| def cigar_party(cigars, is_weekend):
if 40 <= cigars <= 60:
return True
elif cigars >= 60 and is_weekend:
return True
return False
def date_fashion(you, date):
if you <= 2 or date <= 2:
return 0
elif you >= 8 or date >= 8:
return 2
elif 2 < you < 8 or 2 < date < 8:
return 1
def squirrel_play(temp, is_summer):
if 60 <= temp <= 90:
return True
elif 90 < temp <= 100 and is_summer == False:
return False
elif 90 < temp <= 100 and is_summer == True:
return True
return False
def caught_speeding(speed, is_birthday):
if is_birthday:
speed -= 5
if speed <= 60:
return 0
elif 61 <= speed <= 80:
return 1
elif speed >= 81:
return 2
def sorta_sum(a, b):
sum = a + b
if 10 <= sum <= 19:
return 20
return sum
def alarm_clock(day, vacation):
if (day == 1 or day == 2 or day == 3 or (day == 4) or (day == 5)) and (not vacation):
return '7:00'
elif (day == 0 or day == 6) and (not vacation) or ((day == 1 or day == 2 or day == 3 or (day == 4) or (day == 5)) and vacation):
return '10:00'
else:
return 'off'
def love6(a, b):
if a == 6 or b == 6 or a + b == 6 or (abs(a - b) == 6):
return True
return False
def in1to10(n, outside_mode):
if outside_mode and (n >= 10 or n <= 1):
return True
elif 1 <= n <= 10 and (not outside_mode):
return True
return False
def near_ten(num):
if num % 10 <= 2 or num % 10 >= 8:
return True
return False |
#
# first solution:
#
class sample(object):
class one(object):
def __get__(self, obj, type=None):
print("computing ...")
obj.one = 1
return 1
one = one()
x=sample()
print(x.one)
print(x.one)
#
# other solution:
#
# lazy attribute descriptor
class lazyattr(object):
def __init__(self, fget, doc=''):
self.fget = fget
self.__doc__ = doc
def __appoint__(self, name, cl_name):
if hasattr(self,"name"):
raise SyntaxError("conflict between "+name+" and "+self.name)
self.name = name
def __get__(self, obj, cl=None):
if obj is None:
return self
value = self.fget(obj)
setattr(obj, self.name, value)
return value
# appointer metaclass:
# call the members __appoint__ method
class appointer(type):
def __init__(self, cl_name, bases, namespace):
for name,obj in namespace.items():
try:
obj.__appoint__(name, cl_name)
except AttributeError:
pass
super(appointer, self).__init__(cl_name, bases, namespace)
# base class for lazyattr users
class lazyuser(object, metaclass=appointer):
pass
# usage sample
class sample(lazyuser):
def one(self):
print("computing ...")
return 1
one = lazyattr(one, "one lazyattr")
x=sample()
print(x.one)
print(x.one)
del x.one
print(x.one)
| class Sample(object):
class One(object):
def __get__(self, obj, type=None):
print('computing ...')
obj.one = 1
return 1
one = one()
x = sample()
print(x.one)
print(x.one)
class Lazyattr(object):
def __init__(self, fget, doc=''):
self.fget = fget
self.__doc__ = doc
def __appoint__(self, name, cl_name):
if hasattr(self, 'name'):
raise syntax_error('conflict between ' + name + ' and ' + self.name)
self.name = name
def __get__(self, obj, cl=None):
if obj is None:
return self
value = self.fget(obj)
setattr(obj, self.name, value)
return value
class Appointer(type):
def __init__(self, cl_name, bases, namespace):
for (name, obj) in namespace.items():
try:
obj.__appoint__(name, cl_name)
except AttributeError:
pass
super(appointer, self).__init__(cl_name, bases, namespace)
class Lazyuser(object, metaclass=appointer):
pass
class Sample(lazyuser):
def one(self):
print('computing ...')
return 1
one = lazyattr(one, 'one lazyattr')
x = sample()
print(x.one)
print(x.one)
del x.one
print(x.one) |
class Ball(object):
color = str()
circumference = float()
brand = str()
| class Ball(object):
color = str()
circumference = float()
brand = str() |
NAME = 'converter.py'
ORIGINAL_AUTHORS = [
'Angelo Giacco'
]
ABOUT = '''
Converts currencies
'''
COMMANDS = '''
>>> .convert <<base currency code>> <<target currency code>> <<amount>>
returns the conversion: amount argument is optional with a default of 1
.convert help
shows a list of currencies supported
'''
WEBSITE = ''
| name = 'converter.py'
original_authors = ['Angelo Giacco']
about = '\nConverts currencies\n'
commands = '\n>>> .convert <<base currency code>> <<target currency code>> <<amount>>\nreturns the conversion: amount argument is optional with a default of 1\n.convert help\nshows a list of currencies supported\n'
website = '' |
class Bar:
x = 1
print(Bar.x)
| class Bar:
x = 1
print(Bar.x) |
def find_min(array, i):
if i == len(array) - 1:
return array[i]
else:
tmp_min = array[i]
i = i + 1
min_frm = find_min(array, i)
return min(tmp_min, min_frm)
a = [2, 1, 3, 10, 53, 23, -1, 2, 5, 0, 34, 8]
#a = [x for x in range(1000)]
print (find_min(a, 0))
| def find_min(array, i):
if i == len(array) - 1:
return array[i]
else:
tmp_min = array[i]
i = i + 1
min_frm = find_min(array, i)
return min(tmp_min, min_frm)
a = [2, 1, 3, 10, 53, 23, -1, 2, 5, 0, 34, 8]
print(find_min(a, 0)) |
def solve(input):
print(sum(list(map(int, input))))
with open('input.txt', 'r') as f:
input = f.read().splitlines()
solve(input)
| def solve(input):
print(sum(list(map(int, input))))
with open('input.txt', 'r') as f:
input = f.read().splitlines()
solve(input) |
# Given a linked list, determine if it has a cycle in it.
# Follow up:
# Can you solve it without using extra space?
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
# @param head, a ListNode
# @return a boolean
def hasCycle(self, head):
if not head:
return False
walker = runner = head
while runner and runner.next:
walker = walker.next
runner = runner.next.next
if walker == runner:
return True
return False | class Solution:
def has_cycle(self, head):
if not head:
return False
walker = runner = head
while runner and runner.next:
walker = walker.next
runner = runner.next.next
if walker == runner:
return True
return False |
#1
# Time: O(n)
# Space: O(n)
# Given an array of integers, return indices of
# the two numbers such that they add up to a specific target.
# You may assume that each input would have exactly one solution,
# and you may not use the same element twice.
#
# Example:
# Given nums = [2, 7, 11, 15], target = 9,
# Because nums[0] + nums[1] = 2 + 7 = 9,
# return [0, 1].
class hashTableSol():
def twoSum(self,nums,target):
num_idx={}
for idx,num in enumerate(nums):
if target-num in num_idx:
return [num_idx[target-num],idx]
else:
num_idx[num]=idx
return []
| class Hashtablesol:
def two_sum(self, nums, target):
num_idx = {}
for (idx, num) in enumerate(nums):
if target - num in num_idx:
return [num_idx[target - num], idx]
else:
num_idx[num] = idx
return [] |
def get_length(dna):
''' (str) -> int
Return the length of the DNA sequence dna.
>>> get_length('ATCGAT')
6
>>> get_length('ATCG')
4
'''
return len(dna)
def is_longer(dna1, dna2):
''' (str, str) -> bool
Return True if and only if DNA sequence dna1 is longer than DNA sequence
dna2.
>>> is_longer('ATCG', 'AT')
True
>>> is_longer('ATCG', 'ATCGGA')
False
'''
return len(dna1) > len(dna2)
def count_nucleotides(dna, nucleotide):
''' (str, str) -> int
Return the number of occurrences of nucleotide in the DNA sequence dna.
>>> count_nucleotides('ATCGGC', 'G')
2
>>> count_nucleotides('ATCTA', 'G')
0
'''
return dna.count(nucleotide,)
def contains_sequence(dna1, dna2):
''' (str, str) -> bool
Return True if and only if DNA sequence dna2 occurs in the DNA sequence
dna1.
>>> contains_sequence('ATCGGC', 'GG')
True
>>> contains_sequence('ATCGGC', 'GT')
False
'''
return dna2 in dna1
def is_valid_sequence(dna):
''' (str) -> bool
Return True if and only if the DNA sequence is valid.
Lowercase characters are not valid.
>>> is_valid_sequence('ATCGGC')
True
>>> is_valid_sequence('BTCGGC')
False
'''
validity = True
for char in dna:
if not char in 'ATCG':
validity = False
return validity
def insert_sequence(dna1, dna2, index):
''' (str, str, int) -> str
Return the DNA sequence obtained by inserting the second DNA sequence into the first DNA sequence at the given index
>>> insert_sequence('CCGG', 'AT', 2)
CCATGG
>>> insert_sequence('ATGC', 'CG', 4)
ATGCCG
'''
return dna1[0:index] + dna2 + dna1[index:]
def get_complement(nucleotide):
''' (str) -> str
Return the nucleotide's complement
>>> get_complement('A')
'T'
>>> get_complement('C')
'G'
>>> get_complement('G')
'C'
>>> get_complement('T')
'A'
'''
if nucleotide == 'A':
return 'T'
elif nucleotide == 'C':
return 'G'
elif nucleotide == 'G':
return 'C'
elif nucleotide == 'T':
return 'A'
def get_complementary_sequence(dna):
''' (str) -> str
Return the DNA sequency that is complementary to the given DNA sequency
>>> get_complementary_sequence('AT')
'TA'
>>> get_complementary_sequence('ATCGGC')
'TAGCCG'
'''
result=''
for nucleotide in dna:
result += get_complement(nucleotide)
return result
| def get_length(dna):
""" (str) -> int
Return the length of the DNA sequence dna.
>>> get_length('ATCGAT')
6
>>> get_length('ATCG')
4
"""
return len(dna)
def is_longer(dna1, dna2):
""" (str, str) -> bool
Return True if and only if DNA sequence dna1 is longer than DNA sequence
dna2.
>>> is_longer('ATCG', 'AT')
True
>>> is_longer('ATCG', 'ATCGGA')
False
"""
return len(dna1) > len(dna2)
def count_nucleotides(dna, nucleotide):
""" (str, str) -> int
Return the number of occurrences of nucleotide in the DNA sequence dna.
>>> count_nucleotides('ATCGGC', 'G')
2
>>> count_nucleotides('ATCTA', 'G')
0
"""
return dna.count(nucleotide)
def contains_sequence(dna1, dna2):
""" (str, str) -> bool
Return True if and only if DNA sequence dna2 occurs in the DNA sequence
dna1.
>>> contains_sequence('ATCGGC', 'GG')
True
>>> contains_sequence('ATCGGC', 'GT')
False
"""
return dna2 in dna1
def is_valid_sequence(dna):
""" (str) -> bool
Return True if and only if the DNA sequence is valid.
Lowercase characters are not valid.
>>> is_valid_sequence('ATCGGC')
True
>>> is_valid_sequence('BTCGGC')
False
"""
validity = True
for char in dna:
if not char in 'ATCG':
validity = False
return validity
def insert_sequence(dna1, dna2, index):
""" (str, str, int) -> str
Return the DNA sequence obtained by inserting the second DNA sequence into the first DNA sequence at the given index
>>> insert_sequence('CCGG', 'AT', 2)
CCATGG
>>> insert_sequence('ATGC', 'CG', 4)
ATGCCG
"""
return dna1[0:index] + dna2 + dna1[index:]
def get_complement(nucleotide):
""" (str) -> str
Return the nucleotide's complement
>>> get_complement('A')
'T'
>>> get_complement('C')
'G'
>>> get_complement('G')
'C'
>>> get_complement('T')
'A'
"""
if nucleotide == 'A':
return 'T'
elif nucleotide == 'C':
return 'G'
elif nucleotide == 'G':
return 'C'
elif nucleotide == 'T':
return 'A'
def get_complementary_sequence(dna):
""" (str) -> str
Return the DNA sequency that is complementary to the given DNA sequency
>>> get_complementary_sequence('AT')
'TA'
>>> get_complementary_sequence('ATCGGC')
'TAGCCG'
"""
result = ''
for nucleotide in dna:
result += get_complement(nucleotide)
return result |
STREAM_ERROR_SOURCE_USER = "stream_error_source_user"
STREAM_ERROR_SOURCE_STREAM_PUMP = "stream_error_source_stream_pump"
STREAM_ERROR_SOURCE_SUBSCRIPTION_GAZE_DATA = "stream_error_source_subscription_gaze_data"
STREAM_ERROR_SOURCE_SUBSCRIPTION_USER_POSITION_GUIDE = "stream_error_source_subscription_user_position_guide"
STREAM_ERROR_SOURCE_SUBSCRIPTION_EXTERNAL_SIGNAL = "stream_error_source_subscription_external_signal"
STREAM_ERROR_SOURCE_SUBSCRIPTION_TIME_SYNCHRONIZATION_DATA = \
"stream_error_source_subscription_time_synchronization_data"
STREAM_ERROR_SOURCE_SUBSCRIPTION_EYE_IMAGE = "stream_error_source_subscription_eye_image"
STREAM_ERROR_SOURCE_SUBSCRIPTION_NOTIFICATION = "stream_error_source_subscription_notification"
STREAM_ERROR_CONNECTION_LOST = "stream_error_connection_lost"
STREAM_ERROR_INSUFFICIENT_LICENSE = "stream_error_insufficient_license"
STREAM_ERROR_NOT_SUPPORTED = "stream_error_not_supported"
STREAM_ERROR_TOO_MANY_SUBSCRIBERS = "stream_error_too_many_subscribers"
STREAM_ERROR_INTERNAL_ERROR = "stream_error_internal_error"
STREAM_ERROR_USER_ERROR = "stream_error_user_error"
class StreamErrorData(object):
'''Provides information about a stream error.
'''
def __init__(self, data):
if not isinstance(data, dict):
raise ValueError("You shouldn't create StreamErrorData objects yourself.")
self._system_time_stamp = data["system_time_stamp"]
self._error = data["error"]
self._source = data["source"]
self._message = data["message"]
@property
def system_time_stamp(self):
return self._system_time_stamp
@property
def source(self):
return self._source
@property
def error(self):
return self._error
@property
def message(self):
return self._message
| stream_error_source_user = 'stream_error_source_user'
stream_error_source_stream_pump = 'stream_error_source_stream_pump'
stream_error_source_subscription_gaze_data = 'stream_error_source_subscription_gaze_data'
stream_error_source_subscription_user_position_guide = 'stream_error_source_subscription_user_position_guide'
stream_error_source_subscription_external_signal = 'stream_error_source_subscription_external_signal'
stream_error_source_subscription_time_synchronization_data = 'stream_error_source_subscription_time_synchronization_data'
stream_error_source_subscription_eye_image = 'stream_error_source_subscription_eye_image'
stream_error_source_subscription_notification = 'stream_error_source_subscription_notification'
stream_error_connection_lost = 'stream_error_connection_lost'
stream_error_insufficient_license = 'stream_error_insufficient_license'
stream_error_not_supported = 'stream_error_not_supported'
stream_error_too_many_subscribers = 'stream_error_too_many_subscribers'
stream_error_internal_error = 'stream_error_internal_error'
stream_error_user_error = 'stream_error_user_error'
class Streamerrordata(object):
"""Provides information about a stream error.
"""
def __init__(self, data):
if not isinstance(data, dict):
raise value_error("You shouldn't create StreamErrorData objects yourself.")
self._system_time_stamp = data['system_time_stamp']
self._error = data['error']
self._source = data['source']
self._message = data['message']
@property
def system_time_stamp(self):
return self._system_time_stamp
@property
def source(self):
return self._source
@property
def error(self):
return self._error
@property
def message(self):
return self._message |
def digit_sum(num: str):
res = 0
for c in num:
res += int(c)
return res
def digit_prod(num: str):
res = 1
for c in num:
res *= int(c)
return res
def main():
memo = {}
T = int(input())
for t in range(1, T + 1):
A, B = [int(x) for x in input().split(" ")]
res = 0
for num in range(A, B + 1):
num_str = "".join(sorted(str(num)))
if num_str not in memo:
memo[num_str] = digit_prod(num_str) % digit_sum(num_str) == 0
if memo[num_str]:
res += 1
print(f"Case #{t}: {res}")
if __name__ == "__main__":
main()
| def digit_sum(num: str):
res = 0
for c in num:
res += int(c)
return res
def digit_prod(num: str):
res = 1
for c in num:
res *= int(c)
return res
def main():
memo = {}
t = int(input())
for t in range(1, T + 1):
(a, b) = [int(x) for x in input().split(' ')]
res = 0
for num in range(A, B + 1):
num_str = ''.join(sorted(str(num)))
if num_str not in memo:
memo[num_str] = digit_prod(num_str) % digit_sum(num_str) == 0
if memo[num_str]:
res += 1
print(f'Case #{t}: {res}')
if __name__ == '__main__':
main() |
BOT_TOKEN = "1910688339:AAG0t3dMaraOL9u31bkjMEbFcMPy-Pl6rA8"
RESULTS_COUNT = 4 # NOTE Number of results to show, 4 is better
SUDO_CHATS_ID = [1731097588, -1005456463651]
DRIVE_NAME = [
"Root", # folder 1 name
"Cartoon", # folder 2 name
"Course", # folder 3 name
"Movies", # ....
"Series", # ......
"Others" # and soo onnnn folder n names
]
DRIVE_ID = [
"0AHQOFQWVW-LiUk9PVA", # folder 1 id
"0AKqQHy-eIErTUk9PVA", # folder 2 id
"0AITVP56KLmIIUk9PVA", # and so onn... folder n id
"10_hTMK8HE8k144wOTth_3x1hC2kZL-LR",
"1-oTctBpyFcydDNiptLL09Enwte0dClCq",
"1B9A3QqQqF31IuW2om3Qhr-wkiVLloxw8"
]
INDEX_URL = [
"https://vc.vc007.workers.dev/0:", # folder 1 index link
"https://vc.vc007.workers.dev/1:/Animated", # folder 2 index link
"https://vc.vc007.workers.dev/2:", # and soo on folder n link
"https://vc.vc007.workers.dev/1:/Movies",
"https://vc.vc007.workers.dev/1:/Series",
"https://dl.null.tech/0:/Roms"
]
| bot_token = '1910688339:AAG0t3dMaraOL9u31bkjMEbFcMPy-Pl6rA8'
results_count = 4
sudo_chats_id = [1731097588, -1005456463651]
drive_name = ['Root', 'Cartoon', 'Course', 'Movies', 'Series', 'Others']
drive_id = ['0AHQOFQWVW-LiUk9PVA', '0AKqQHy-eIErTUk9PVA', '0AITVP56KLmIIUk9PVA', '10_hTMK8HE8k144wOTth_3x1hC2kZL-LR', '1-oTctBpyFcydDNiptLL09Enwte0dClCq', '1B9A3QqQqF31IuW2om3Qhr-wkiVLloxw8']
index_url = ['https://vc.vc007.workers.dev/0:', 'https://vc.vc007.workers.dev/1:/Animated', 'https://vc.vc007.workers.dev/2:', 'https://vc.vc007.workers.dev/1:/Movies', 'https://vc.vc007.workers.dev/1:/Series', 'https://dl.null.tech/0:/Roms'] |
if __name__ == '__main__':
n = int(input())
i = 0
while n > 0:
print(i ** 2)
i = i + 1
n = n - 1
| if __name__ == '__main__':
n = int(input())
i = 0
while n > 0:
print(i ** 2)
i = i + 1
n = n - 1 |
#11. Find GCD of two given Numbers.
m = int(input("Enter the First Number: "))
n = int(input("Enter the Second Number: "))
r = m
while(m!=n):
if(m>n):
m=m-n
else:
n=n-m
print("G.C.D is ",m)
| m = int(input('Enter the First Number: '))
n = int(input('Enter the Second Number: '))
r = m
while m != n:
if m > n:
m = m - n
else:
n = n - m
print('G.C.D is ', m) |
#Shipping Accounts App
#Define list of users
users = ['eramom', 'footea', 'davisv', 'papinukt', 'allenj', 'eliasro']
print("Welcome to the Shipping Accounts Program.")
#Get user input
username = input("\nHello, what is your username: ").lower().strip()
#User is in list....
if username in users:
#print a price summary
print("\nHello " + username + ". Welcome back to your account.")
print("Current shipping prices are as follows:")
print("\nShipping orders 0 to 100: \t\t$5.10 each")
print("Shipping orders 100 to 500: \t\t$5.00 each")
print("Shipping orders 500 to 1000 \t\t$4.95 each")
print("Shipping orders over 1000: \t\t$4.80 each")
#Determine price based on how many items are shipped
quantity = int(input("\nHow many items would you like to ship: "))
if quantity < 100:
cost = 5.10
elif quantity < 500:
cost = 5.00
elif quantity < 1000:
cost = 4.95
else:
cost = 4.80
#Display final cost
bill = quantity*cost
bill = round(bill, 2)
print("To ship " + str(quantity) + " items it will cost you $" +str(bill) + " at $" + str(cost) + " per item.")
#Place order
choice = input("\nWould you like to place this order (y/n): ").lower()
if choice.startswith('y'):
print("OKAY. Shipping your " + str(quantity) + " items.")
else:
print("OKAY, no order is being placed at this time.")
#The user is not in the list
else:
print("Sorry, you do not have an account with us. Goodbye...") | users = ['eramom', 'footea', 'davisv', 'papinukt', 'allenj', 'eliasro']
print('Welcome to the Shipping Accounts Program.')
username = input('\nHello, what is your username: ').lower().strip()
if username in users:
print('\nHello ' + username + '. Welcome back to your account.')
print('Current shipping prices are as follows:')
print('\nShipping orders 0 to 100: \t\t$5.10 each')
print('Shipping orders 100 to 500: \t\t$5.00 each')
print('Shipping orders 500 to 1000 \t\t$4.95 each')
print('Shipping orders over 1000: \t\t$4.80 each')
quantity = int(input('\nHow many items would you like to ship: '))
if quantity < 100:
cost = 5.1
elif quantity < 500:
cost = 5.0
elif quantity < 1000:
cost = 4.95
else:
cost = 4.8
bill = quantity * cost
bill = round(bill, 2)
print('To ship ' + str(quantity) + ' items it will cost you $' + str(bill) + ' at $' + str(cost) + ' per item.')
choice = input('\nWould you like to place this order (y/n): ').lower()
if choice.startswith('y'):
print('OKAY. Shipping your ' + str(quantity) + ' items.')
else:
print('OKAY, no order is being placed at this time.')
else:
print('Sorry, you do not have an account with us. Goodbye...') |
# A class to represent the adjacency list of the node
class AdjNode:
def __init__(self, data):
self.vertex = data
self.next = None
class Graph:
def __init__(self, vertices):
self.V = vertices
self.graph = [None] * self.V
self.verticeslist = []
def add_edge(self, src, dest):
self.verticeslist.append(src)
self.verticeslist.append(dest)
node = AdjNode(dest)
node.next = self.graph[src]
self.graph[src] = node
# Adding the source node to the destination as
# it is the undirected graph
node = AdjNode(src)
node.next = self.graph[dest]
self.graph[dest] = node
def adjacency_list(self):
for i in range(self.V):
print("Adjacency list of vertex {}\n head".format(i), end="")
temp = self.graph[i]
while temp:
print(" -> {}".format(temp.vertex), end="")
temp = temp.next
print(" \n")
# Saves space O(|V|+|E|) . In the worst case, there can be C(V, 2) number of edges in a graph thus consuming O(V^2) space. Adding a vertex is easier.
def adjacency_matrix(self):
self.verticeslist = set(self.verticeslist)
print(self.verticeslist)
print("ADJACENCY MATRIX for ")
for i in self.verticeslist:
d = []
print("I", i)
temp = self.graph[i]
while temp:
d.append(temp.vertex)
temp = temp.next
print(d)
if __name__ == "__main__":
V = 5
graph = Graph(V)
graph.add_edge(0, 1)
graph.add_edge(0, 4)
graph.add_edge(1, 2)
graph.add_edge(1, 3)
graph.add_edge(1, 4)
graph.add_edge(2, 3)
graph.add_edge(3, 4)
# graph.adjacency_list()
graph.adjacency_matrix()
| class Adjnode:
def __init__(self, data):
self.vertex = data
self.next = None
class Graph:
def __init__(self, vertices):
self.V = vertices
self.graph = [None] * self.V
self.verticeslist = []
def add_edge(self, src, dest):
self.verticeslist.append(src)
self.verticeslist.append(dest)
node = adj_node(dest)
node.next = self.graph[src]
self.graph[src] = node
node = adj_node(src)
node.next = self.graph[dest]
self.graph[dest] = node
def adjacency_list(self):
for i in range(self.V):
print('Adjacency list of vertex {}\n head'.format(i), end='')
temp = self.graph[i]
while temp:
print(' -> {}'.format(temp.vertex), end='')
temp = temp.next
print(' \n')
def adjacency_matrix(self):
self.verticeslist = set(self.verticeslist)
print(self.verticeslist)
print('ADJACENCY MATRIX for ')
for i in self.verticeslist:
d = []
print('I', i)
temp = self.graph[i]
while temp:
d.append(temp.vertex)
temp = temp.next
print(d)
if __name__ == '__main__':
v = 5
graph = graph(V)
graph.add_edge(0, 1)
graph.add_edge(0, 4)
graph.add_edge(1, 2)
graph.add_edge(1, 3)
graph.add_edge(1, 4)
graph.add_edge(2, 3)
graph.add_edge(3, 4)
graph.adjacency_matrix() |
description = 'Vaccum sensors and temperature control'
devices = dict(
vacuum=device(
'nicos_ess.estia.devices.pfeiffer.PfeifferTPG261',
description='Pfeiffer TPG 261 vacuum gauge controller',
hostport='192.168.1.254:4002',
fmtstr='%.2E',
),
)
| description = 'Vaccum sensors and temperature control'
devices = dict(vacuum=device('nicos_ess.estia.devices.pfeiffer.PfeifferTPG261', description='Pfeiffer TPG 261 vacuum gauge controller', hostport='192.168.1.254:4002', fmtstr='%.2E')) |
SECRET_KEY = "123"
INSTALLED_APPS = [
'sr'
]
SR = {
'test1': 'Test1',
'test2': {
'test3': 'Test3',
},
'test4': {
'test4': 'Test4 {0} {1}',
},
'test5': {
'test5': "<b>foo</b>",
}
}
| secret_key = '123'
installed_apps = ['sr']
sr = {'test1': 'Test1', 'test2': {'test3': 'Test3'}, 'test4': {'test4': 'Test4 {0} {1}'}, 'test5': {'test5': '<b>foo</b>'}} |
# -*- coding: utf-8 -*-
numero_empleado = int(input())
numero_hrs_mes = int(input())
pago_por_hora = float('%.2f' % ( float(input()) ))
pago_por_mes = pago_por_hora*numero_hrs_mes
pago_por_mes = '%.2f'%(float(pago_por_mes))
print ("NUMBER = " + str(numero_empleado))
print ("SALARY = U$ " + str(pago_por_mes)) | numero_empleado = int(input())
numero_hrs_mes = int(input())
pago_por_hora = float('%.2f' % float(input()))
pago_por_mes = pago_por_hora * numero_hrs_mes
pago_por_mes = '%.2f' % float(pago_por_mes)
print('NUMBER = ' + str(numero_empleado))
print('SALARY = U$ ' + str(pago_por_mes)) |
{
"targets": [
{
"target_name": "wiringpi",
"sources": [ "wiringpi.cc" ],
"include_dirs": [ "/usr/local/include" ],
"ldflags": [ "-lwiringPi" ]
}
]
}
| {'targets': [{'target_name': 'wiringpi', 'sources': ['wiringpi.cc'], 'include_dirs': ['/usr/local/include'], 'ldflags': ['-lwiringPi']}]} |
bot_name = 'your_bot_username'
bot_token = 'your_bot_token'
redis_server = 'localhost'
redis_port = 6379
bot_master = 'your_userid_here'
| bot_name = 'your_bot_username'
bot_token = 'your_bot_token'
redis_server = 'localhost'
redis_port = 6379
bot_master = 'your_userid_here' |
class NavigationHelper:
def __init__(self, app):
self.app = app
def open_home_page(self):
wd = self.app.wd
wd.get(self.app.base_url)
def return_to_home_page(self):
wd = self.app.wd
wd.find_element_by_link_text("home").click()
| class Navigationhelper:
def __init__(self, app):
self.app = app
def open_home_page(self):
wd = self.app.wd
wd.get(self.app.base_url)
def return_to_home_page(self):
wd = self.app.wd
wd.find_element_by_link_text('home').click() |
_base_ = [
'./retina.py'
]
model= dict(
type='CustomRetinaNet',
#pretrained=None,
#backbone=dict( # Replacding R50 by OTE MV2
# _delete_=True,
# type='mobilenetv2_w1',
# out_indices=(2, 3, 4, 5),
# frozen_stages=-1,
# norm_eval=True, # False in OTE setting
# pretrained=True,
#),
#neck=dict(
# in_channels=[24, 32, 96, 320],
# out_channels=64,
#),
#bbox_head=dict(
# type='CustomRetinaHead',
# in_channels=64,
# feat_channels=64,
#),
)
| _base_ = ['./retina.py']
model = dict(type='CustomRetinaNet') |
class BaseComponent(object):
def __init__(self):
self.version = self.__version__
def forward(self, tweet: str):
raise NotImplementedError
@property
def __version__(self):
raise NotImplementedError
| class Basecomponent(object):
def __init__(self):
self.version = self.__version__
def forward(self, tweet: str):
raise NotImplementedError
@property
def __version__(self):
raise NotImplementedError |
def create_spam_worker_name(user_id):
return f'user_{user_id}_spam_worker'
def create_email_worker_name(user_id):
return f'user_{user_id}_email_worker'
def create_worker_celery_name(worker_name):
return f"celery@{worker_name}"
def create_spam_worker_celery_name(user_id):
return create_worker_celery_name(create_spam_worker_name(user_id))
def create_email_worker_celery_name(user_id):
return create_worker_celery_name(create_email_worker_name(user_id))
def create_user_spam_queue_name(user_id):
return f'user_{user_id}_spam_queue'
def create_user_email_queue_name(user_id):
return f'user_{user_id}_email_queue'
| def create_spam_worker_name(user_id):
return f'user_{user_id}_spam_worker'
def create_email_worker_name(user_id):
return f'user_{user_id}_email_worker'
def create_worker_celery_name(worker_name):
return f'celery@{worker_name}'
def create_spam_worker_celery_name(user_id):
return create_worker_celery_name(create_spam_worker_name(user_id))
def create_email_worker_celery_name(user_id):
return create_worker_celery_name(create_email_worker_name(user_id))
def create_user_spam_queue_name(user_id):
return f'user_{user_id}_spam_queue'
def create_user_email_queue_name(user_id):
return f'user_{user_id}_email_queue' |
def aditya():
return "aditya"
def shantanu(num):
if num>10:
return "shantanu"
else:
return "patankar" | def aditya():
return 'aditya'
def shantanu(num):
if num > 10:
return 'shantanu'
else:
return 'patankar' |
# Define a Multiplication Function
def mul(num1, num2):
return num1 * num2
| def mul(num1, num2):
return num1 * num2 |
''' Write a Python program to accept a filename from the user and print the extension of that. '''
ext = input("Enter a file name: ")
files = ext.split('.')
print(files[1])
| """ Write a Python program to accept a filename from the user and print the extension of that. """
ext = input('Enter a file name: ')
files = ext.split('.')
print(files[1]) |
def kth_largest1(arr,k):
if k > len(arr):
return None
for i in range(k-1):
arr.remove(max(arr))
return max(arr)
def kth_largest2(arr,k):
if k > len(arr):
return None
n = len(arr)
arr.sort()
return(arr[n - k])
print(kth_largest2([4,2,8,9,5,6,7],2)) | def kth_largest1(arr, k):
if k > len(arr):
return None
for i in range(k - 1):
arr.remove(max(arr))
return max(arr)
def kth_largest2(arr, k):
if k > len(arr):
return None
n = len(arr)
arr.sort()
return arr[n - k]
print(kth_largest2([4, 2, 8, 9, 5, 6, 7], 2)) |
# the way currently the code is written it is possible to change the value accidently or it can be changed accidently
class Customer:
def __init__(self, cust_id, name, age, wallet_balance):
self.cust_id = cust_id
self.name = name
self.age = age
self.wallet_balance = wallet_balance
def update_balance(self, amount):
if amount < 1000 and amount > 0:
self.wallet_balance += amount
def show_balance(self):
print("The balance is ", self.wallet_balance)
c1 = Customer(100, "Gopal", 24, 1000)
c1.wallet_balance = 10000000
c1.show_balance()
# this example shows how the code & data is vulnarable and its being changed by invoking the object by the method
| class Customer:
def __init__(self, cust_id, name, age, wallet_balance):
self.cust_id = cust_id
self.name = name
self.age = age
self.wallet_balance = wallet_balance
def update_balance(self, amount):
if amount < 1000 and amount > 0:
self.wallet_balance += amount
def show_balance(self):
print('The balance is ', self.wallet_balance)
c1 = customer(100, 'Gopal', 24, 1000)
c1.wallet_balance = 10000000
c1.show_balance() |
def match(output_file, input_file):
block = []
blocks = []
for line in open(input_file, encoding='utf8').readlines():
if line.startswith('#'):
block.append(line)
else:
if block:
blocks.append(block)
block = []
block1 = []
blocks1 = []
for line in open(output_file, encoding='utf8').readlines():
if not line.startswith('#'):
block1.append(line)
else:
if block1:
blocks1.append(block1)
block1 = []
if block1:
blocks1.append(block1)
assert len(blocks) == len(blocks1), (len(blocks), len(blocks1))
with open(output_file+'.pred', 'w', encoding='utf8') as fo:
for block, block1 in zip(blocks, blocks1):
for line in block:
fo.write(line)
for line in block1:
fo.write(line)
| def match(output_file, input_file):
block = []
blocks = []
for line in open(input_file, encoding='utf8').readlines():
if line.startswith('#'):
block.append(line)
else:
if block:
blocks.append(block)
block = []
block1 = []
blocks1 = []
for line in open(output_file, encoding='utf8').readlines():
if not line.startswith('#'):
block1.append(line)
else:
if block1:
blocks1.append(block1)
block1 = []
if block1:
blocks1.append(block1)
assert len(blocks) == len(blocks1), (len(blocks), len(blocks1))
with open(output_file + '.pred', 'w', encoding='utf8') as fo:
for (block, block1) in zip(blocks, blocks1):
for line in block:
fo.write(line)
for line in block1:
fo.write(line) |
# quicksort
def partition(arr,low,high):
i = ( low-1 ) # index of smaller element
pivot = arr[high] # pivot
for j in range(low , high):
# If current element is smaller than or
# equal to pivot
if arr[j] <= pivot:
# increment index of smaller element
i = i+1
arr[i],arr[j] = arr[j],arr[i]
arr[i+1], arr[high] = arr[high], arr[i+1]
return ( i+1 )
def quickSort(arr,low,high):
if low < high:
# pi is partitioning index, arr[p] is now
# at right place
pi = partition(arr,low,high)
# Separately sort elements before
# partition and after partition
quickSort(arr, low, pi-1)
quickSort(arr, pi+1, high)
else:
print("Error encountered")
def printList(arr):
for i in range(len(arr)):
print(arr[i],end=" ")
print()
# Driver code to test above
def main():
user_arr = list(input("Give me some numbers seperated by a space\n"))
print("Given Array: ", end="\n")
n = len(user_arr)
quickSort(user_arr,0,n-1)
print ("Sorted array is: ", end="\n")
printList(user_arr)
# for i in range(n):
# sort_list = list([(quickSort(arr,0,n-1))])
# print ("%d" %arr[i])
main() | def partition(arr, low, high):
i = low - 1
pivot = arr[high]
for j in range(low, high):
if arr[j] <= pivot:
i = i + 1
(arr[i], arr[j]) = (arr[j], arr[i])
(arr[i + 1], arr[high]) = (arr[high], arr[i + 1])
return i + 1
def quick_sort(arr, low, high):
if low < high:
pi = partition(arr, low, high)
quick_sort(arr, low, pi - 1)
quick_sort(arr, pi + 1, high)
else:
print('Error encountered')
def print_list(arr):
for i in range(len(arr)):
print(arr[i], end=' ')
print()
def main():
user_arr = list(input('Give me some numbers seperated by a space\n'))
print('Given Array: ', end='\n')
n = len(user_arr)
quick_sort(user_arr, 0, n - 1)
print('Sorted array is: ', end='\n')
print_list(user_arr)
main() |
# A mapping between model field internal datatypes and sensible
# client-friendly datatypes. In virtually all cases, client programs
# only need to differentiate between high-level types like number, string,
# and boolean. More granular separation be may desired to alter the
# allowed operators or may infer a different client-side representation
SIMPLE_TYPES = {
'auto': 'key',
'foreignkey': 'key',
'biginteger': 'number',
'decimal': 'number',
'float': 'number',
'integer': 'number',
'positiveinteger': 'number',
'positivesmallinteger': 'number',
'smallinteger': 'number',
'nullboolean': 'boolean',
'char': 'string',
'email': 'string',
'file': 'string',
'filepath': 'string',
'image': 'string',
'ipaddress': 'string',
'slug': 'string',
'text': 'string',
'url': 'string',
}
# A mapping between the client-friendly datatypes and sensible operators
# that will be used to validate a query condition. In many cases, these types
# support more operators than what are defined, but are not include because
# they are not commonly used.
OPERATORS = {
'key': ('exact', '-exact', 'in', '-in'),
'boolean': ('exact', '-exact', 'in', '-in'),
'date': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte',
'range', '-range'),
'number': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte',
'range', '-range'),
'string': ('exact', '-exact', 'iexact', '-iexact', 'in', '-in',
'icontains', '-icontains', 'iregex', '-iregex'),
'datetime': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte',
'range', '-range'),
'time': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte',
'range', '-range'),
}
# A general mapping of formfield overrides for all subclasses. the mapping is
# similar to the SIMPLE_TYPE_MAP, but the values reference internal
# formfield classes, that is integer -> IntegerField. in many cases, the
# validation performed may need to be a bit less restrictive than what the
# is actually necessary
INTERNAL_DATATYPE_FORMFIELDS = {
'integer': 'FloatField',
'positiveinteger': 'FloatField',
'positivesmallinteger': 'FloatField',
'smallinteger': 'FloatField',
'biginteger': 'FloatField',
}
# The minimum number of distinct values required when determining to set the
# `searchable` flag on `DataField` instances during the `init` process. This
# will only be applied to fields with a Avocado datatype of 'string'
ENUMERABLE_MAXIMUM = 30
# Flag for enabling the history API
HISTORY_ENABLED = True
# The maximum size of a user's history. If the value is an integer, this
# is the maximum number of allowed items in the user's history. Set to
# `None` (or 0) to enable unlimited history. Note, in order to enforce this
# limit, the `avocado history --prune` command must be executed to remove
# the oldest history from each user based on this value.
HISTORY_MAX_SIZE = None
# App that the metadata migrations will be created for. This is typically the
# project itself.
METADATA_MIGRATION_APP = None
# Directory for the migration backup fixtures. If None, this will default to
# the fixtures dir in the app defined by `METADATA_MIGRATION_APP`
METADATA_FIXTURE_DIR = None
METADATA_FIXTURE_SUFFIX = 'avocado_metadata'
METADATA_MIGRATION_SUFFIX = 'avocado_metadata_migration'
# Query processors
QUERY_PROCESSORS = {
'default': 'avocado.query.pipeline.QueryProcessor',
}
# Custom validation error and warnings messages
VALIDATION_ERRORS = {}
VALIDATION_WARNINGS = {}
# Toggle whether DataField instances should cache the underlying data
# for their most common data access methods.
DATA_CACHE_ENABLED = True
# These settings affect how queries can be shared between users.
# A user is able to enter either a username or an email of another user
# they wish to share the query with. To limit to only one type of sharing
# set the appropriate setting to True and all others to false.
SHARE_BY_USERNAME = True
SHARE_BY_EMAIL = True
SHARE_BY_USERNAME_CASE_SENSITIVE = True
# Toggle whether the permissions system should be enabled.
# If django-guardian is installed and this value is None or True, permissions
# will be applied. If the value is True and django-guardian is not installed
# it is an error. If set to False the permissions will not be applied.
PERMISSIONS_ENABLED = None
# Caches are used to improve performance across various APIs. The two primary
# ones are data and query. Data cache is used for individual data field
# caching such as counts, values, and aggregations. Query cache is used for
# the ad-hoc queries built from a context and view.
DATA_CACHE = 'default'
QUERY_CACHE = 'default'
# Name of the queue to use for scheduling and working on async jobs.
ASYNC_QUEUE = 'avocado'
| simple_types = {'auto': 'key', 'foreignkey': 'key', 'biginteger': 'number', 'decimal': 'number', 'float': 'number', 'integer': 'number', 'positiveinteger': 'number', 'positivesmallinteger': 'number', 'smallinteger': 'number', 'nullboolean': 'boolean', 'char': 'string', 'email': 'string', 'file': 'string', 'filepath': 'string', 'image': 'string', 'ipaddress': 'string', 'slug': 'string', 'text': 'string', 'url': 'string'}
operators = {'key': ('exact', '-exact', 'in', '-in'), 'boolean': ('exact', '-exact', 'in', '-in'), 'date': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte', 'range', '-range'), 'number': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte', 'range', '-range'), 'string': ('exact', '-exact', 'iexact', '-iexact', 'in', '-in', 'icontains', '-icontains', 'iregex', '-iregex'), 'datetime': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte', 'range', '-range'), 'time': ('exact', '-exact', 'in', '-in', 'lt', 'lte', 'gt', 'gte', 'range', '-range')}
internal_datatype_formfields = {'integer': 'FloatField', 'positiveinteger': 'FloatField', 'positivesmallinteger': 'FloatField', 'smallinteger': 'FloatField', 'biginteger': 'FloatField'}
enumerable_maximum = 30
history_enabled = True
history_max_size = None
metadata_migration_app = None
metadata_fixture_dir = None
metadata_fixture_suffix = 'avocado_metadata'
metadata_migration_suffix = 'avocado_metadata_migration'
query_processors = {'default': 'avocado.query.pipeline.QueryProcessor'}
validation_errors = {}
validation_warnings = {}
data_cache_enabled = True
share_by_username = True
share_by_email = True
share_by_username_case_sensitive = True
permissions_enabled = None
data_cache = 'default'
query_cache = 'default'
async_queue = 'avocado' |
constants = {
# --- ASSETS FILE NAMES AND DELAY BETWEEN FOOTAGE
"CALIBRATION_CAMERA_STATIC_PATH": "assets/cam1 - static/calibration.mov",
"CALIBRATION_CAMERA_MOVING_PATH": "assets/cam2 - moving light/calibration.mp4",
"COIN_1_VIDEO_CAMERA_STATIC_PATH": "assets/cam1 - static/coin1.mov",
"COIN_1_VIDEO_CAMERA_MOVING_PATH": "assets/cam2 - moving light/coin1.mp4",
"COIN_2_VIDEO_CAMERA_STATIC_PATH": "assets/cam1 - static/coin2.mov",
"COIN_2_VIDEO_CAMERA_MOVING_PATH": "assets/cam2 - moving light/coin2.mp4",
"COIN_3_VIDEO_CAMERA_STATIC_PATH": "assets/cam1 - static/coin3.mov",
"COIN_3_VIDEO_CAMERA_MOVING_PATH": "assets/cam2 - moving light/coin3.mp4",
"COIN_4_VIDEO_CAMERA_STATIC_PATH": "assets/cam1 - static/coin4.mov",
"COIN_4_VIDEO_CAMERA_MOVING_PATH": "assets/cam2 - moving light/coin4.mp4",
"FILE_1_MOVING_CAMERA_DELAY": 2.724, # [seconds] (static) 3.609 - 0.885 (moving)
"FILE_2_MOVING_CAMERA_DELAY": 2.024, # [seconds] (static) 2.995 - 0.971 (moving)
"FILE_3_MOVING_CAMERA_DELAY": 2.275, # [seconds] (static) 3.355 - 1.08 (moving)
"FILE_4_MOVING_CAMERA_DELAY": 2.015, # [seconds] (static) 2.960 - 0.945 (moving)
# --- CAMERA CALIBRATION CONSTANTS
"CHESSBOARD_SIZE": (6, 9),
"CALIBRATION_FRAME_SKIP_INTERVAL": 40, # We just need some, not all
# --- ANALYSIS CONSTANTS
"SQAURE_GRID_DIMENSION": 200, # It will be a 400x400 square grid inside the marker
"ALIGNED_VIDEO_FPS": 30,
"ANALYSIS_FRAME_SKIP": 5, # It will skip this frames each iteration during analysis
# --- DEBUG CONSTANTS
"STATIC_CAMERA_FEED_WINDOW_TITLE": "Static camera feed",
"MOVING_CAMERA_FEED_WINDOW_TITLE": "Moving camera feed",
"WARPED_FRAME_WINDOW_TITLE": "Warped moving frame",
"LIGHT_DIRECTION_WINDOW_TITLE": "Light direction",
"LIGHT_DIRECTION_WINDOW_SIZE": 200,
# --- INTERACTIVE RELIGHTING CONSTANTS
"INTERPOLATED_WINDOW_TITLE": "Interpolated Data",
"INPUT_LIGHT_DIRECTION_WINDOW_TITLE": "Light direction input",
# --- DATA FILE NAMES CONSTANTS
"CALIBRATION_INTRINSICS_CAMERA_STATIC_PATH": "data/static_intrinsics.xml",
"CALIBRATION_INTRINSICS_CAMERA_MOVING_PATH": "data/moving_intrinsics.xml",
"COIN_1_ALIGNED_VIDEO_STATIC_PATH": "data/1_static_aligned_video.mov",
"COIN_1_ALIGNED_VIDEO_MOVING_PATH": "data/1_moving_aligned_video.mp4",
"COIN_2_ALIGNED_VIDEO_STATIC_PATH": "data/2_static_aligned_video.mov",
"COIN_2_ALIGNED_VIDEO_MOVING_PATH": "data/2_moving_aligned_video.mp4",
"COIN_3_ALIGNED_VIDEO_STATIC_PATH": "data/3_static_aligned_video.mov",
"COIN_3_ALIGNED_VIDEO_MOVING_PATH": "data/3_moving_aligned_video.mp4",
"COIN_4_ALIGNED_VIDEO_STATIC_PATH": "data/4_static_aligned_video.mov",
"COIN_4_ALIGNED_VIDEO_MOVING_PATH": "data/4_moving_aligned_video.mp4",
"COIN_1_EXTRACTED_DATA_FILE_PATH": "data/1_extracted_data.npz",
"COIN_2_EXTRACTED_DATA_FILE_PATH": "data/2_extracted_data.npz",
"COIN_3_EXTRACTED_DATA_FILE_PATH": "data/3_extracted_data.npz",
"COIN_4_EXTRACTED_DATA_FILE_PATH": "data/4_extracted_data.npz",
"COIN_1_INTERPOLATED_DATA_RBF_FILE_PATH": "data/1_rbf_interpolated_data.npz",
"COIN_2_INTERPOLATED_DATA_RBF_FILE_PATH": "data/2_rbf_interpolated_data.npz",
"COIN_3_INTERPOLATED_DATA_RBF_FILE_PATH": "data/3_rbf_interpolated_data.npz",
"COIN_4_INTERPOLATED_DATA_RBF_FILE_PATH": "data/4_rbf_interpolated_data.npz",
"COIN_1_INTERPOLATED_DATA_PTM_FILE_PATH": "data/1_ptm_interpolated_data.npz",
"COIN_2_INTERPOLATED_DATA_PTM_FILE_PATH": "data/2_ptm_interpolated_data.npz",
"COIN_3_INTERPOLATED_DATA_PTM_FILE_PATH": "data/3_ptm_interpolated_data.npz",
"COIN_4_INTERPOLATED_DATA_PTM_FILE_PATH": "data/4_ptm_interpolated_data.npz",
}
| constants = {'CALIBRATION_CAMERA_STATIC_PATH': 'assets/cam1 - static/calibration.mov', 'CALIBRATION_CAMERA_MOVING_PATH': 'assets/cam2 - moving light/calibration.mp4', 'COIN_1_VIDEO_CAMERA_STATIC_PATH': 'assets/cam1 - static/coin1.mov', 'COIN_1_VIDEO_CAMERA_MOVING_PATH': 'assets/cam2 - moving light/coin1.mp4', 'COIN_2_VIDEO_CAMERA_STATIC_PATH': 'assets/cam1 - static/coin2.mov', 'COIN_2_VIDEO_CAMERA_MOVING_PATH': 'assets/cam2 - moving light/coin2.mp4', 'COIN_3_VIDEO_CAMERA_STATIC_PATH': 'assets/cam1 - static/coin3.mov', 'COIN_3_VIDEO_CAMERA_MOVING_PATH': 'assets/cam2 - moving light/coin3.mp4', 'COIN_4_VIDEO_CAMERA_STATIC_PATH': 'assets/cam1 - static/coin4.mov', 'COIN_4_VIDEO_CAMERA_MOVING_PATH': 'assets/cam2 - moving light/coin4.mp4', 'FILE_1_MOVING_CAMERA_DELAY': 2.724, 'FILE_2_MOVING_CAMERA_DELAY': 2.024, 'FILE_3_MOVING_CAMERA_DELAY': 2.275, 'FILE_4_MOVING_CAMERA_DELAY': 2.015, 'CHESSBOARD_SIZE': (6, 9), 'CALIBRATION_FRAME_SKIP_INTERVAL': 40, 'SQAURE_GRID_DIMENSION': 200, 'ALIGNED_VIDEO_FPS': 30, 'ANALYSIS_FRAME_SKIP': 5, 'STATIC_CAMERA_FEED_WINDOW_TITLE': 'Static camera feed', 'MOVING_CAMERA_FEED_WINDOW_TITLE': 'Moving camera feed', 'WARPED_FRAME_WINDOW_TITLE': 'Warped moving frame', 'LIGHT_DIRECTION_WINDOW_TITLE': 'Light direction', 'LIGHT_DIRECTION_WINDOW_SIZE': 200, 'INTERPOLATED_WINDOW_TITLE': 'Interpolated Data', 'INPUT_LIGHT_DIRECTION_WINDOW_TITLE': 'Light direction input', 'CALIBRATION_INTRINSICS_CAMERA_STATIC_PATH': 'data/static_intrinsics.xml', 'CALIBRATION_INTRINSICS_CAMERA_MOVING_PATH': 'data/moving_intrinsics.xml', 'COIN_1_ALIGNED_VIDEO_STATIC_PATH': 'data/1_static_aligned_video.mov', 'COIN_1_ALIGNED_VIDEO_MOVING_PATH': 'data/1_moving_aligned_video.mp4', 'COIN_2_ALIGNED_VIDEO_STATIC_PATH': 'data/2_static_aligned_video.mov', 'COIN_2_ALIGNED_VIDEO_MOVING_PATH': 'data/2_moving_aligned_video.mp4', 'COIN_3_ALIGNED_VIDEO_STATIC_PATH': 'data/3_static_aligned_video.mov', 'COIN_3_ALIGNED_VIDEO_MOVING_PATH': 'data/3_moving_aligned_video.mp4', 'COIN_4_ALIGNED_VIDEO_STATIC_PATH': 'data/4_static_aligned_video.mov', 'COIN_4_ALIGNED_VIDEO_MOVING_PATH': 'data/4_moving_aligned_video.mp4', 'COIN_1_EXTRACTED_DATA_FILE_PATH': 'data/1_extracted_data.npz', 'COIN_2_EXTRACTED_DATA_FILE_PATH': 'data/2_extracted_data.npz', 'COIN_3_EXTRACTED_DATA_FILE_PATH': 'data/3_extracted_data.npz', 'COIN_4_EXTRACTED_DATA_FILE_PATH': 'data/4_extracted_data.npz', 'COIN_1_INTERPOLATED_DATA_RBF_FILE_PATH': 'data/1_rbf_interpolated_data.npz', 'COIN_2_INTERPOLATED_DATA_RBF_FILE_PATH': 'data/2_rbf_interpolated_data.npz', 'COIN_3_INTERPOLATED_DATA_RBF_FILE_PATH': 'data/3_rbf_interpolated_data.npz', 'COIN_4_INTERPOLATED_DATA_RBF_FILE_PATH': 'data/4_rbf_interpolated_data.npz', 'COIN_1_INTERPOLATED_DATA_PTM_FILE_PATH': 'data/1_ptm_interpolated_data.npz', 'COIN_2_INTERPOLATED_DATA_PTM_FILE_PATH': 'data/2_ptm_interpolated_data.npz', 'COIN_3_INTERPOLATED_DATA_PTM_FILE_PATH': 'data/3_ptm_interpolated_data.npz', 'COIN_4_INTERPOLATED_DATA_PTM_FILE_PATH': 'data/4_ptm_interpolated_data.npz'} |
def timeConversion(s):
if "P" in s:
s = s.split(":")
if s[0] == '12':
s = s.split(":")
s[2] = s[2][:2]
print(":".join(s))
else:
s[0] = str(int(s[0])+12)
s[2] = s[2][:2]
print(":".join(s))
else:
s = s.split(":")
if s[0] == "12":
s[0] == "00"
print(s)
s[2] = s[2][:2]
print(":".join(s),'AM')
else:
s[2] = s[2][:2]
print(":".join(s))
s = input()
timeConversion(s)
| def time_conversion(s):
if 'P' in s:
s = s.split(':')
if s[0] == '12':
s = s.split(':')
s[2] = s[2][:2]
print(':'.join(s))
else:
s[0] = str(int(s[0]) + 12)
s[2] = s[2][:2]
print(':'.join(s))
else:
s = s.split(':')
if s[0] == '12':
s[0] == '00'
print(s)
s[2] = s[2][:2]
print(':'.join(s), 'AM')
else:
s[2] = s[2][:2]
print(':'.join(s))
s = input()
time_conversion(s) |
def for_loop4(str, x):
result = 0
for i in str:
if i == x:
result += 1
return result
def main():
print(for_loop4('athenian', 'e'))
print(for_loop4('apples', 'a'))
print(for_loop4('hello', 'a'))
print(for_loop4('alphabet', 'h'))
print(for_loop4('aaaaa', 'b'))
if __name__ == '__main__':
main()
| def for_loop4(str, x):
result = 0
for i in str:
if i == x:
result += 1
return result
def main():
print(for_loop4('athenian', 'e'))
print(for_loop4('apples', 'a'))
print(for_loop4('hello', 'a'))
print(for_loop4('alphabet', 'h'))
print(for_loop4('aaaaa', 'b'))
if __name__ == '__main__':
main() |
# Author : Nekyz
# Date : 30/06/2015
# Project Euler Challenge 3
# Largest palindrome of 2 three digit number
def is_palindrome (n):
# Reversing n to see if it's the same ! Extended slice are fun
if str(n) == (str(n))[::-1]:
return True
return False
max = 0
for i in range(999,100,-1):
for j in range (999,100,-1):
product = i * j
if is_palindrome(product):
if (product > max):
max = product
print(i," * ",j," = ", product)
print("Max palindrome is : ", max)
| def is_palindrome(n):
if str(n) == str(n)[::-1]:
return True
return False
max = 0
for i in range(999, 100, -1):
for j in range(999, 100, -1):
product = i * j
if is_palindrome(product):
if product > max:
max = product
print(i, ' * ', j, ' = ', product)
print('Max palindrome is : ', max) |
# -*- coding: utf-8 -*-
def remove_duplicate_elements(check_list):
func = lambda x,y:x if y in x else x + [y]
return reduce(func, [[], ] + check_list)
| def remove_duplicate_elements(check_list):
func = lambda x, y: x if y in x else x + [y]
return reduce(func, [[]] + check_list) |
# coding: utf-8
mail_conf = {
"host": "",
"sender": "boom_run raise error",
"username": "",
"passwd": "",
"mail_postfix": "",
"recipients": [
"",
]
}
redis_conf = {
"host": "127.0.0.1",
"port": 6379,
}
| mail_conf = {'host': '', 'sender': 'boom_run raise error', 'username': '', 'passwd': '', 'mail_postfix': '', 'recipients': ['']}
redis_conf = {'host': '127.0.0.1', 'port': 6379} |
#
# PySNMP MIB module BEGEMOT-PF-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/BEGEMOT-PF-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:37:07 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
begemot, = mibBuilder.importSymbols("BEGEMOT-MIB", "begemot")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Gauge32, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, Bits, ObjectIdentity, Integer32, TimeTicks, Unsigned32, NotificationType, IpAddress, MibIdentifier, Counter32, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "Bits", "ObjectIdentity", "Integer32", "TimeTicks", "Unsigned32", "NotificationType", "IpAddress", "MibIdentifier", "Counter32", "Counter64")
TextualConvention, DisplayString, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue")
begemotPf = ModuleIdentity((1, 3, 6, 1, 4, 1, 12325, 1, 200))
if mibBuilder.loadTexts: begemotPf.setLastUpdated('200501240000Z')
if mibBuilder.loadTexts: begemotPf.setOrganization('NixSys BVBA')
if mibBuilder.loadTexts: begemotPf.setContactInfo(' Philip Paeps Postal: NixSys BVBA Louizastraat 14 BE-2800 Mechelen Belgium E-Mail: philip@FreeBSD.org')
if mibBuilder.loadTexts: begemotPf.setDescription('The Begemot MIB for the pf packet filter.')
begemotPfObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1))
pfStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1))
pfCounter = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2))
pfStateTable = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3))
pfSrcNodes = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4))
pfLimits = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5))
pfTimeouts = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6))
pfLogInterface = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7))
pfInterfaces = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8))
pfTables = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9))
pfAltq = MibIdentifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10))
pfStatusRunning = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStatusRunning.setStatus('current')
if mibBuilder.loadTexts: pfStatusRunning.setDescription('True if pf is currently enabled.')
pfStatusRuntime = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 2), TimeTicks()).setUnits('1/100th of a Second').setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStatusRuntime.setStatus('current')
if mibBuilder.loadTexts: pfStatusRuntime.setDescription('Indicates how long pf has been enabled. If pf is not currently enabled, indicates how long it has been disabled. If pf has not been enabled or disabled since the system was started, the value will be 0.')
pfStatusDebug = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("none", 0), ("urgent", 1), ("misc", 2), ("loud", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStatusDebug.setStatus('current')
if mibBuilder.loadTexts: pfStatusDebug.setDescription('Indicates the debug level at which pf is running.')
pfStatusHostId = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStatusHostId.setStatus('current')
if mibBuilder.loadTexts: pfStatusHostId.setDescription('The (unique) host identifier of the machine running pf.')
pfCounterMatch = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 1), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfCounterMatch.setStatus('current')
if mibBuilder.loadTexts: pfCounterMatch.setDescription('Number of packets that matched a filter rule.')
pfCounterBadOffset = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfCounterBadOffset.setStatus('current')
if mibBuilder.loadTexts: pfCounterBadOffset.setDescription('Number of packets with bad offset.')
pfCounterFragment = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfCounterFragment.setStatus('current')
if mibBuilder.loadTexts: pfCounterFragment.setDescription('Number of fragmented packets.')
pfCounterShort = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfCounterShort.setStatus('current')
if mibBuilder.loadTexts: pfCounterShort.setDescription('Number of short packets.')
pfCounterNormalize = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfCounterNormalize.setStatus('current')
if mibBuilder.loadTexts: pfCounterNormalize.setDescription('Number of normalized packets.')
pfCounterMemDrop = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfCounterMemDrop.setStatus('current')
if mibBuilder.loadTexts: pfCounterMemDrop.setDescription('Number of packets dropped due to memory limitations.')
pfStateTableCount = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStateTableCount.setStatus('current')
if mibBuilder.loadTexts: pfStateTableCount.setDescription('Number of entries in the state table.')
pfStateTableSearches = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStateTableSearches.setStatus('current')
if mibBuilder.loadTexts: pfStateTableSearches.setDescription('Number of searches against the state table.')
pfStateTableInserts = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStateTableInserts.setStatus('current')
if mibBuilder.loadTexts: pfStateTableInserts.setDescription('Number of entries inserted into the state table.')
pfStateTableRemovals = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfStateTableRemovals.setStatus('current')
if mibBuilder.loadTexts: pfStateTableRemovals.setDescription('Number of entries removed from the state table.')
pfSrcNodesCount = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfSrcNodesCount.setStatus('current')
if mibBuilder.loadTexts: pfSrcNodesCount.setDescription('Number of entries in the source tracking table.')
pfSrcNodesSearches = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfSrcNodesSearches.setStatus('current')
if mibBuilder.loadTexts: pfSrcNodesSearches.setDescription('Number of searches against the source tracking table.')
pfSrcNodesInserts = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfSrcNodesInserts.setStatus('current')
if mibBuilder.loadTexts: pfSrcNodesInserts.setDescription('Number of entries inserted into the source tracking table.')
pfSrcNodesRemovals = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfSrcNodesRemovals.setStatus('current')
if mibBuilder.loadTexts: pfSrcNodesRemovals.setDescription('Number of entries removed from the source tracking table.')
pfLimitsStates = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLimitsStates.setStatus('current')
if mibBuilder.loadTexts: pfLimitsStates.setDescription("Maximum number of 'keep state' rules in the ruleset.")
pfLimitsSrcNodes = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLimitsSrcNodes.setStatus('current')
if mibBuilder.loadTexts: pfLimitsSrcNodes.setDescription("Maximum number of 'sticky-address' or 'source-track' rules in the ruleset.")
pfLimitsFrags = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLimitsFrags.setStatus('current')
if mibBuilder.loadTexts: pfLimitsFrags.setDescription("Maximum number of 'scrub' rules in the ruleset.")
pfTimeoutsTcpFirst = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsTcpFirst.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsTcpFirst.setDescription('State after the first packet in a connection.')
pfTimeoutsTcpOpening = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsTcpOpening.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsTcpOpening.setDescription('State before the destination host ever sends a packet.')
pfTimeoutsTcpEstablished = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsTcpEstablished.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsTcpEstablished.setDescription('The fully established state.')
pfTimeoutsTcpClosing = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsTcpClosing.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsTcpClosing.setDescription('State after the first FIN has been sent.')
pfTimeoutsTcpFinWait = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsTcpFinWait.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsTcpFinWait.setDescription('State after both FINs have been exchanged and the connection is closed.')
pfTimeoutsTcpClosed = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsTcpClosed.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsTcpClosed.setDescription('State after one endpoint sends an RST.')
pfTimeoutsUdpFirst = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsUdpFirst.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsUdpFirst.setDescription('State after the first packet.')
pfTimeoutsUdpSingle = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsUdpSingle.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsUdpSingle.setDescription('State if the source host sends more than one packet but the destination host has never sent one back.')
pfTimeoutsUdpMultiple = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsUdpMultiple.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsUdpMultiple.setDescription('State if both hosts have sent packets.')
pfTimeoutsIcmpFirst = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsIcmpFirst.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsIcmpFirst.setDescription('State after the first packet.')
pfTimeoutsIcmpError = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsIcmpError.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsIcmpError.setDescription('State after an ICMP error came back in response to an ICMP packet.')
pfTimeoutsOtherFirst = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsOtherFirst.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsOtherFirst.setDescription('State after the first packet.')
pfTimeoutsOtherSingle = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsOtherSingle.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsOtherSingle.setDescription('State if the source host sends more than one packet but the destination host has never sent one back.')
pfTimeoutsOtherMultiple = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsOtherMultiple.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsOtherMultiple.setDescription('State if both hosts have sent packets.')
pfTimeoutsFragment = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsFragment.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsFragment.setDescription('Seconds before an unassembled fragment is expired.')
pfTimeoutsInterval = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsInterval.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsInterval.setDescription('Interval between purging expired states and fragments.')
pfTimeoutsAdaptiveStart = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsAdaptiveStart.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsAdaptiveStart.setDescription('When the number of state entries exceeds this value, adaptive scaling begins.')
pfTimeoutsAdaptiveEnd = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsAdaptiveEnd.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsAdaptiveEnd.setDescription('When reaching this number of state entries, all timeout values become zero, effectively purging all state entries immediately.')
pfTimeoutsSrcNode = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 19), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTimeoutsSrcNode.setStatus('current')
if mibBuilder.loadTexts: pfTimeoutsSrcNode.setDescription('Length of time to retain a source tracking entry after the last state expires.')
pfLogInterfaceName = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 1), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceName.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceName.setDescription("The name of the interface configured with 'set loginterface'. If no interface has been configured, the object will be empty.")
pfLogInterfaceIp4BytesIn = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp4BytesIn.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp4BytesIn.setDescription('Number of IPv4 bytes passed in on the loginterface.')
pfLogInterfaceIp4BytesOut = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp4BytesOut.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp4BytesOut.setDescription('Number of IPv4 bytes passed out on the loginterface.')
pfLogInterfaceIp4PktsInPass = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsInPass.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsInPass.setDescription('Number of IPv4 packets passed in on the loginterface.')
pfLogInterfaceIp4PktsInDrop = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsInDrop.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsInDrop.setDescription('Number of IPv4 packets dropped coming in on the loginterface.')
pfLogInterfaceIp4PktsOutPass = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsOutPass.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsOutPass.setDescription('Number of IPv4 packets passed out on the loginterface.')
pfLogInterfaceIp4PktsOutDrop = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsOutDrop.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp4PktsOutDrop.setDescription('Number of IPv4 packets dropped going out on the loginterface.')
pfLogInterfaceIp6BytesIn = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp6BytesIn.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp6BytesIn.setDescription('Number of IPv6 bytes passed in on the loginterface.')
pfLogInterfaceIp6BytesOut = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp6BytesOut.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp6BytesOut.setDescription('Number of IPv6 bytes passed out on the loginterface.')
pfLogInterfaceIp6PktsInPass = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsInPass.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsInPass.setDescription('Number of IPv6 packets passed in on the loginterface.')
pfLogInterfaceIp6PktsInDrop = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsInDrop.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsInDrop.setDescription('Number of IPv6 packets dropped coming in on the loginterface.')
pfLogInterfaceIp6PktsOutPass = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsOutPass.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsOutPass.setDescription('Number of IPv6 packets passed out on the loginterface.')
pfLogInterfaceIp6PktsOutDrop = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsOutDrop.setStatus('current')
if mibBuilder.loadTexts: pfLogInterfaceIp6PktsOutDrop.setDescription('Number of IPv6 packets dropped going out on the loginterface.')
pfInterfacesIfNumber = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIfNumber.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfNumber.setDescription('The number of network interfaces on this system.')
pfInterfacesIfTable = MibTable((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2), )
if mibBuilder.loadTexts: pfInterfacesIfTable.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfTable.setDescription('Table of network interfaces, indexed on pfInterfacesIfNumber.')
pfInterfacesIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1), ).setIndexNames((0, "BEGEMOT-PF-MIB", "pfInterfacesIfIndex"))
if mibBuilder.loadTexts: pfInterfacesIfEntry.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfEntry.setDescription('An entry in the pfInterfacesIfTable containing information about a particular network interface in the machine.')
pfInterfacesIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: pfInterfacesIfIndex.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfIndex.setDescription('A unique value, greater than zero, for each interface.')
pfInterfacesIfDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIfDescr.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfDescr.setDescription('The name of the interface.')
pfInterfacesIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("group", 0), ("instance", 1), ("detached", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIfType.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfType.setDescription('Indicates whether the interface is a group inteface, an interface instance, or whether it has been removed or destroyed.')
pfInterfacesIfTZero = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 4), TimeTicks()).setUnits('1/100th of a Second').setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIfTZero.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfTZero.setDescription('Time since statistics were last reset or since the interface was loaded.')
pfInterfacesIfRefsState = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIfRefsState.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfRefsState.setDescription('The number of state and/or source track entries referencing this interface.')
pfInterfacesIfRefsRule = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIfRefsRule.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIfRefsRule.setDescription('The number of rules referencing this interface.')
pfInterfacesIf4BytesInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4BytesInPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4BytesInPass.setDescription('The number of IPv4 bytes passed coming in on this interface.')
pfInterfacesIf4BytesInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4BytesInBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4BytesInBlock.setDescription('The number of IPv4 bytes blocked coming in on this interface.')
pfInterfacesIf4BytesOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4BytesOutPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4BytesOutPass.setDescription('The number of IPv4 bytes passed going out on this interface.')
pfInterfacesIf4BytesOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4BytesOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4BytesOutBlock.setDescription('The number of IPv4 bytes blocked going out on this interface.')
pfInterfacesIf4PktsInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4PktsInPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4PktsInPass.setDescription('The number of IPv4 packets passed coming in on this interface.')
pfInterfacesIf4PktsInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4PktsInBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4PktsInBlock.setDescription('The number of IPv4 packets blocked coming in on this interface.')
pfInterfacesIf4PktsOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4PktsOutPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4PktsOutPass.setDescription('The number of IPv4 packets passed going out on this interface.')
pfInterfacesIf4PktsOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf4PktsOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf4PktsOutBlock.setDescription('The number of IPv4 packets blocked going out on this interface.')
pfInterfacesIf6BytesInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6BytesInPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6BytesInPass.setDescription('The number of IPv6 bytes passed coming in on this interface.')
pfInterfacesIf6BytesInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6BytesInBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6BytesInBlock.setDescription('The number of IPv6 bytes blocked coming in on this interface.')
pfInterfacesIf6BytesOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6BytesOutPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6BytesOutPass.setDescription('The number of IPv6 bytes passed going out on this interface.')
pfInterfacesIf6BytesOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6BytesOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6BytesOutBlock.setDescription('The number of IPv6 bytes blocked going out on this interface.')
pfInterfacesIf6PktsInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6PktsInPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6PktsInPass.setDescription('The number of IPv6 packets passed coming in on this interface.')
pfInterfacesIf6PktsInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6PktsInBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6PktsInBlock.setDescription('The number of IPv6 packets blocked coming in on this interface.')
pfInterfacesIf6PktsOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6PktsOutPass.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6PktsOutPass.setDescription('The number of IPv6 packets passed going out on this interface.')
pfInterfacesIf6PktsOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfInterfacesIf6PktsOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfInterfacesIf6PktsOutBlock.setDescription('The number of IPv6 packets blocked going out on this interface.')
pfTablesTblNumber = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblNumber.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblNumber.setDescription('The number of tables on this system.')
pfTablesTblTable = MibTable((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2), )
if mibBuilder.loadTexts: pfTablesTblTable.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblTable.setDescription('Table of tables, index on pfTablesTblIndex.')
pfTablesTblEntry = MibTableRow((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1), ).setIndexNames((0, "BEGEMOT-PF-MIB", "pfTablesTblIndex"))
if mibBuilder.loadTexts: pfTablesTblEntry.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblEntry.setDescription('Any entry in the pfTablesTblTable containing information about a particular table on the system.')
pfTablesTblIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: pfTablesTblIndex.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblIndex.setDescription('A unique value, greater than zero, for each table.')
pfTablesTblDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblDescr.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblDescr.setDescription('The name of the table.')
pfTablesTblCount = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblCount.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblCount.setDescription('The number of addresses in the table.')
pfTablesTblTZero = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 4), TimeTicks()).setUnits('1/100th of a Second').setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblTZero.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblTZero.setDescription('The time passed since the statistics of this table were last cleared or the time since this table was loaded, whichever is sooner.')
pfTablesTblRefsAnchor = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblRefsAnchor.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblRefsAnchor.setDescription('The number of anchors referencing this table.')
pfTablesTblRefsRule = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblRefsRule.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblRefsRule.setDescription('The number of rules referencing this table.')
pfTablesTblEvalMatch = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblEvalMatch.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblEvalMatch.setDescription('The number of evaluations returning a match.')
pfTablesTblEvalNoMatch = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblEvalNoMatch.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblEvalNoMatch.setDescription('The number of evaluations not returning a match.')
pfTablesTblBytesInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblBytesInPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblBytesInPass.setDescription('The number of bytes passed in matching the table.')
pfTablesTblBytesInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblBytesInBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblBytesInBlock.setDescription('The number of bytes blocked coming in matching the table.')
pfTablesTblBytesInXPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblBytesInXPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblBytesInXPass.setDescription('The number of bytes statefully passed in where the state entry refers to the table, but the table no longer contains the address in question.')
pfTablesTblBytesOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblBytesOutPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblBytesOutPass.setDescription('The number of bytes passed out matching the table.')
pfTablesTblBytesOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblBytesOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblBytesOutBlock.setDescription('The number of bytes blocked going out matching the table.')
pfTablesTblBytesOutXPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblBytesOutXPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblBytesOutXPass.setDescription('The number of bytes statefully passed out where the state entry refers to the table, but the table no longer contains the address in question.')
pfTablesTblPktsInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblPktsInPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblPktsInPass.setDescription('The number of packets passed in matching the table.')
pfTablesTblPktsInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblPktsInBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblPktsInBlock.setDescription('The number of packets blocked coming in matching the table.')
pfTablesTblPktsInXPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblPktsInXPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblPktsInXPass.setDescription('The number of packets statefully passed in where the state entry refers to the table, but the table no longer contains the address in question.')
pfTablesTblPktsOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblPktsOutPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblPktsOutPass.setDescription('The number of packets passed out matching the table.')
pfTablesTblPktsOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblPktsOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblPktsOutBlock.setDescription('The number of packets blocked going out matching the table.')
pfTablesTblPktsOutXPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesTblPktsOutXPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesTblPktsOutXPass.setDescription('The number of packets statefully passed out where the state entry refers to the table, but the table no longer contains the address in question.')
pfTablesAddrTable = MibTable((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3), )
if mibBuilder.loadTexts: pfTablesAddrTable.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrTable.setDescription('Table of addresses from every table on the system.')
pfTablesAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1), ).setIndexNames((0, "BEGEMOT-PF-MIB", "pfTablesAddrIndex"))
if mibBuilder.loadTexts: pfTablesAddrEntry.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrEntry.setDescription('An entry in the pfTablesAddrTable containing information about a particular entry in a table.')
pfTablesAddrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: pfTablesAddrIndex.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrIndex.setDescription('A unique value, greater than zero, for each address.')
pfTablesAddrNet = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrNet.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrNet.setDescription('The IP address of this particular table entry.')
pfTablesAddrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrMask.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrMask.setDescription('The CIDR netmask of this particular table entry.')
pfTablesAddrTZero = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 4), TimeTicks()).setUnits('1/100th of a Second').setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrTZero.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrTZero.setDescription("The time passed since this entry's statistics were last cleared, or the time passed since this entry was loaded into the table, whichever is sooner.")
pfTablesAddrBytesInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrBytesInPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrBytesInPass.setDescription('The number of inbound bytes passed as a result of this entry.')
pfTablesAddrBytesInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrBytesInBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrBytesInBlock.setDescription('The number of inbound bytes blocked as a result of this entry.')
pfTablesAddrBytesOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrBytesOutPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrBytesOutPass.setDescription('The number of outbound bytes passed as a result of this entry.')
pfTablesAddrBytesOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrBytesOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrBytesOutBlock.setDescription('The number of outbound bytes blocked as a result of this entry.')
pfTablesAddrPktsInPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrPktsInPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrPktsInPass.setDescription('The number of inbound packets passed as a result of this entry.')
pfTablesAddrPktsInBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrPktsInBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrPktsInBlock.setDescription('The number of inbound packets blocked as a result of this entry.')
pfTablesAddrPktsOutPass = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrPktsOutPass.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrPktsOutPass.setDescription('The number of outbound packets passed as a result of this entry.')
pfTablesAddrPktsOutBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfTablesAddrPktsOutBlock.setStatus('current')
if mibBuilder.loadTexts: pfTablesAddrPktsOutBlock.setDescription('The number of outbound packets blocked as a result of this entry.')
pfAltqQueueNumber = MibScalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueueNumber.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueNumber.setDescription('The number of queues in the active set.')
pfAltqQueueTable = MibTable((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2), )
if mibBuilder.loadTexts: pfAltqQueueTable.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueTable.setDescription('Table containing the rules that are active on this system.')
pfAltqQueueEntry = MibTableRow((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1), ).setIndexNames((0, "BEGEMOT-PF-MIB", "pfAltqQueueIndex"))
if mibBuilder.loadTexts: pfAltqQueueEntry.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueEntry.setDescription('An entry in the pfAltqQueueTable table.')
pfAltqQueueIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)))
if mibBuilder.loadTexts: pfAltqQueueIndex.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueIndex.setDescription('A unique value, greater than zero, for each queue.')
pfAltqQueueDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueueDescr.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueDescr.setDescription('The name of the queue.')
pfAltqQueueParent = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueueParent.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueParent.setDescription("Name of the queue's parent if it has one.")
pfAltqQueueScheduler = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 8, 11))).clone(namedValues=NamedValues(("cbq", 1), ("hfsc", 8), ("priq", 11)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueueScheduler.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueScheduler.setDescription('Scheduler algorithm implemented by this queue.')
pfAltqQueueBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueueBandwidth.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueBandwidth.setDescription('Bandwitch assigned to this queue.')
pfAltqQueuePriority = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueuePriority.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueuePriority.setDescription('Priority level of the queue.')
pfAltqQueueLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pfAltqQueueLimit.setStatus('current')
if mibBuilder.loadTexts: pfAltqQueueLimit.setDescription('Maximum number of packets in the queue.')
mibBuilder.exportSymbols("BEGEMOT-PF-MIB", pfTablesTblIndex=pfTablesTblIndex, pfLogInterfaceIp4PktsOutPass=pfLogInterfaceIp4PktsOutPass, pfTimeoutsTcpOpening=pfTimeoutsTcpOpening, pfStatusRunning=pfStatusRunning, pfStateTableCount=pfStateTableCount, pfSrcNodesSearches=pfSrcNodesSearches, pfCounterBadOffset=pfCounterBadOffset, pfStateTableSearches=pfStateTableSearches, pfTablesTblTable=pfTablesTblTable, pfInterfacesIf6PktsInPass=pfInterfacesIf6PktsInPass, pfInterfacesIf6BytesOutBlock=pfInterfacesIf6BytesOutBlock, pfTablesTblPktsOutPass=pfTablesTblPktsOutPass, pfLogInterfaceIp6BytesOut=pfLogInterfaceIp6BytesOut, pfStatusRuntime=pfStatusRuntime, pfLogInterfaceIp4PktsInDrop=pfLogInterfaceIp4PktsInDrop, pfInterfacesIf4PktsInBlock=pfInterfacesIf4PktsInBlock, pfAltqQueueParent=pfAltqQueueParent, pfInterfacesIfEntry=pfInterfacesIfEntry, pfTablesTblEvalNoMatch=pfTablesTblEvalNoMatch, pfTablesTblBytesOutPass=pfTablesTblBytesOutPass, PYSNMP_MODULE_ID=begemotPf, pfStatusHostId=pfStatusHostId, pfLogInterfaceIp4BytesOut=pfLogInterfaceIp4BytesOut, pfTablesAddrEntry=pfTablesAddrEntry, pfTablesTblPktsInXPass=pfTablesTblPktsInXPass, pfTimeoutsTcpClosing=pfTimeoutsTcpClosing, pfLogInterfaceIp6PktsOutDrop=pfLogInterfaceIp6PktsOutDrop, pfTablesTblBytesInPass=pfTablesTblBytesInPass, pfAltqQueueDescr=pfAltqQueueDescr, pfTimeoutsOtherFirst=pfTimeoutsOtherFirst, pfTablesTblBytesOutBlock=pfTablesTblBytesOutBlock, pfAltqQueueLimit=pfAltqQueueLimit, pfTablesTblPktsInBlock=pfTablesTblPktsInBlock, pfAltqQueueBandwidth=pfAltqQueueBandwidth, pfCounterMemDrop=pfCounterMemDrop, pfInterfacesIf6BytesInBlock=pfInterfacesIf6BytesInBlock, pfInterfaces=pfInterfaces, pfTimeoutsUdpFirst=pfTimeoutsUdpFirst, pfStateTable=pfStateTable, pfInterfacesIf4PktsOutBlock=pfInterfacesIf4PktsOutBlock, pfTimeoutsAdaptiveEnd=pfTimeoutsAdaptiveEnd, pfTablesTblEvalMatch=pfTablesTblEvalMatch, pfInterfacesIfNumber=pfInterfacesIfNumber, pfTablesTblRefsRule=pfTablesTblRefsRule, pfTimeoutsOtherMultiple=pfTimeoutsOtherMultiple, pfTimeoutsTcpFinWait=pfTimeoutsTcpFinWait, pfLogInterfaceIp6BytesIn=pfLogInterfaceIp6BytesIn, pfTablesTblPktsOutXPass=pfTablesTblPktsOutXPass, pfLimits=pfLimits, pfLogInterface=pfLogInterface, pfTimeoutsTcpEstablished=pfTimeoutsTcpEstablished, pfLogInterfaceIp6PktsInPass=pfLogInterfaceIp6PktsInPass, pfAltq=pfAltq, pfTablesTblBytesInXPass=pfTablesTblBytesInXPass, pfTablesTblTZero=pfTablesTblTZero, pfTablesTblRefsAnchor=pfTablesTblRefsAnchor, pfTablesAddrBytesInBlock=pfTablesAddrBytesInBlock, pfInterfacesIf4PktsOutPass=pfInterfacesIf4PktsOutPass, pfTimeoutsTcpClosed=pfTimeoutsTcpClosed, pfInterfacesIf6PktsOutPass=pfInterfacesIf6PktsOutPass, pfTablesAddrPktsInBlock=pfTablesAddrPktsInBlock, begemotPfObjects=begemotPfObjects, pfStateTableRemovals=pfStateTableRemovals, pfTablesAddrBytesInPass=pfTablesAddrBytesInPass, pfTablesTblPktsOutBlock=pfTablesTblPktsOutBlock, pfCounterFragment=pfCounterFragment, pfTimeoutsIcmpFirst=pfTimeoutsIcmpFirst, pfInterfacesIf4BytesOutPass=pfInterfacesIf4BytesOutPass, pfTablesAddrTable=pfTablesAddrTable, pfInterfacesIf4PktsInPass=pfInterfacesIf4PktsInPass, pfLogInterfaceIp6PktsInDrop=pfLogInterfaceIp6PktsInDrop, pfStatusDebug=pfStatusDebug, pfTimeouts=pfTimeouts, pfInterfacesIf4BytesOutBlock=pfInterfacesIf4BytesOutBlock, pfTablesAddrMask=pfTablesAddrMask, pfLogInterfaceIp4BytesIn=pfLogInterfaceIp4BytesIn, pfInterfacesIfTZero=pfInterfacesIfTZero, pfInterfacesIf6PktsOutBlock=pfInterfacesIf6PktsOutBlock, pfCounter=pfCounter, pfTablesAddrBytesOutPass=pfTablesAddrBytesOutPass, pfInterfacesIf6BytesInPass=pfInterfacesIf6BytesInPass, pfTimeoutsUdpSingle=pfTimeoutsUdpSingle, pfInterfacesIfRefsState=pfInterfacesIfRefsState, pfTables=pfTables, pfSrcNodesCount=pfSrcNodesCount, pfTimeoutsFragment=pfTimeoutsFragment, pfInterfacesIfDescr=pfInterfacesIfDescr, pfInterfacesIf6PktsInBlock=pfInterfacesIf6PktsInBlock, pfLogInterfaceIp4PktsOutDrop=pfLogInterfaceIp4PktsOutDrop, pfTablesTblEntry=pfTablesTblEntry, pfInterfacesIf4BytesInBlock=pfInterfacesIf4BytesInBlock, pfTablesAddrTZero=pfTablesAddrTZero, pfTimeoutsOtherSingle=pfTimeoutsOtherSingle, pfLogInterfaceIp4PktsInPass=pfLogInterfaceIp4PktsInPass, pfAltqQueuePriority=pfAltqQueuePriority, pfLogInterfaceIp6PktsOutPass=pfLogInterfaceIp6PktsOutPass, pfTimeoutsAdaptiveStart=pfTimeoutsAdaptiveStart, pfTimeoutsIcmpError=pfTimeoutsIcmpError, begemotPf=begemotPf, pfInterfacesIfIndex=pfInterfacesIfIndex, pfLimitsSrcNodes=pfLimitsSrcNodes, pfCounterMatch=pfCounterMatch, pfInterfacesIfType=pfInterfacesIfType, pfLimitsFrags=pfLimitsFrags, pfCounterNormalize=pfCounterNormalize, pfStateTableInserts=pfStateTableInserts, pfTimeoutsSrcNode=pfTimeoutsSrcNode, pfSrcNodes=pfSrcNodes, pfTimeoutsUdpMultiple=pfTimeoutsUdpMultiple, pfAltqQueueTable=pfAltqQueueTable, pfTablesTblPktsInPass=pfTablesTblPktsInPass, pfAltqQueueNumber=pfAltqQueueNumber, pfStatus=pfStatus, pfTablesTblNumber=pfTablesTblNumber, pfTablesAddrBytesOutBlock=pfTablesAddrBytesOutBlock, pfTablesAddrPktsOutBlock=pfTablesAddrPktsOutBlock, pfAltqQueueIndex=pfAltqQueueIndex, pfSrcNodesInserts=pfSrcNodesInserts, pfInterfacesIf4BytesInPass=pfInterfacesIf4BytesInPass, pfTablesTblDescr=pfTablesTblDescr, pfSrcNodesRemovals=pfSrcNodesRemovals, pfTablesTblCount=pfTablesTblCount, pfTablesAddrPktsInPass=pfTablesAddrPktsInPass, pfInterfacesIf6BytesOutPass=pfInterfacesIf6BytesOutPass, pfTablesTblBytesInBlock=pfTablesTblBytesInBlock, pfLimitsStates=pfLimitsStates, pfTablesAddrIndex=pfTablesAddrIndex, pfTimeoutsTcpFirst=pfTimeoutsTcpFirst, pfAltqQueueEntry=pfAltqQueueEntry, pfTablesAddrNet=pfTablesAddrNet, pfCounterShort=pfCounterShort, pfTimeoutsInterval=pfTimeoutsInterval, pfAltqQueueScheduler=pfAltqQueueScheduler, pfTablesTblBytesOutXPass=pfTablesTblBytesOutXPass, pfTablesAddrPktsOutPass=pfTablesAddrPktsOutPass, pfInterfacesIfTable=pfInterfacesIfTable, pfLogInterfaceName=pfLogInterfaceName, pfInterfacesIfRefsRule=pfInterfacesIfRefsRule)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(begemot,) = mibBuilder.importSymbols('BEGEMOT-MIB', 'begemot')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(gauge32, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, bits, object_identity, integer32, time_ticks, unsigned32, notification_type, ip_address, mib_identifier, counter32, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'Bits', 'ObjectIdentity', 'Integer32', 'TimeTicks', 'Unsigned32', 'NotificationType', 'IpAddress', 'MibIdentifier', 'Counter32', 'Counter64')
(textual_convention, display_string, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue')
begemot_pf = module_identity((1, 3, 6, 1, 4, 1, 12325, 1, 200))
if mibBuilder.loadTexts:
begemotPf.setLastUpdated('200501240000Z')
if mibBuilder.loadTexts:
begemotPf.setOrganization('NixSys BVBA')
if mibBuilder.loadTexts:
begemotPf.setContactInfo(' Philip Paeps Postal: NixSys BVBA Louizastraat 14 BE-2800 Mechelen Belgium E-Mail: philip@FreeBSD.org')
if mibBuilder.loadTexts:
begemotPf.setDescription('The Begemot MIB for the pf packet filter.')
begemot_pf_objects = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1))
pf_status = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1))
pf_counter = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2))
pf_state_table = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3))
pf_src_nodes = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4))
pf_limits = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5))
pf_timeouts = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6))
pf_log_interface = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7))
pf_interfaces = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8))
pf_tables = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9))
pf_altq = mib_identifier((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10))
pf_status_running = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStatusRunning.setStatus('current')
if mibBuilder.loadTexts:
pfStatusRunning.setDescription('True if pf is currently enabled.')
pf_status_runtime = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 2), time_ticks()).setUnits('1/100th of a Second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStatusRuntime.setStatus('current')
if mibBuilder.loadTexts:
pfStatusRuntime.setDescription('Indicates how long pf has been enabled. If pf is not currently enabled, indicates how long it has been disabled. If pf has not been enabled or disabled since the system was started, the value will be 0.')
pf_status_debug = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('none', 0), ('urgent', 1), ('misc', 2), ('loud', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStatusDebug.setStatus('current')
if mibBuilder.loadTexts:
pfStatusDebug.setDescription('Indicates the debug level at which pf is running.')
pf_status_host_id = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStatusHostId.setStatus('current')
if mibBuilder.loadTexts:
pfStatusHostId.setDescription('The (unique) host identifier of the machine running pf.')
pf_counter_match = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 1), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfCounterMatch.setStatus('current')
if mibBuilder.loadTexts:
pfCounterMatch.setDescription('Number of packets that matched a filter rule.')
pf_counter_bad_offset = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfCounterBadOffset.setStatus('current')
if mibBuilder.loadTexts:
pfCounterBadOffset.setDescription('Number of packets with bad offset.')
pf_counter_fragment = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfCounterFragment.setStatus('current')
if mibBuilder.loadTexts:
pfCounterFragment.setDescription('Number of fragmented packets.')
pf_counter_short = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfCounterShort.setStatus('current')
if mibBuilder.loadTexts:
pfCounterShort.setDescription('Number of short packets.')
pf_counter_normalize = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfCounterNormalize.setStatus('current')
if mibBuilder.loadTexts:
pfCounterNormalize.setDescription('Number of normalized packets.')
pf_counter_mem_drop = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 2, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfCounterMemDrop.setStatus('current')
if mibBuilder.loadTexts:
pfCounterMemDrop.setDescription('Number of packets dropped due to memory limitations.')
pf_state_table_count = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStateTableCount.setStatus('current')
if mibBuilder.loadTexts:
pfStateTableCount.setDescription('Number of entries in the state table.')
pf_state_table_searches = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStateTableSearches.setStatus('current')
if mibBuilder.loadTexts:
pfStateTableSearches.setDescription('Number of searches against the state table.')
pf_state_table_inserts = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStateTableInserts.setStatus('current')
if mibBuilder.loadTexts:
pfStateTableInserts.setDescription('Number of entries inserted into the state table.')
pf_state_table_removals = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 3, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfStateTableRemovals.setStatus('current')
if mibBuilder.loadTexts:
pfStateTableRemovals.setDescription('Number of entries removed from the state table.')
pf_src_nodes_count = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfSrcNodesCount.setStatus('current')
if mibBuilder.loadTexts:
pfSrcNodesCount.setDescription('Number of entries in the source tracking table.')
pf_src_nodes_searches = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfSrcNodesSearches.setStatus('current')
if mibBuilder.loadTexts:
pfSrcNodesSearches.setDescription('Number of searches against the source tracking table.')
pf_src_nodes_inserts = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfSrcNodesInserts.setStatus('current')
if mibBuilder.loadTexts:
pfSrcNodesInserts.setDescription('Number of entries inserted into the source tracking table.')
pf_src_nodes_removals = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 4, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfSrcNodesRemovals.setStatus('current')
if mibBuilder.loadTexts:
pfSrcNodesRemovals.setDescription('Number of entries removed from the source tracking table.')
pf_limits_states = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLimitsStates.setStatus('current')
if mibBuilder.loadTexts:
pfLimitsStates.setDescription("Maximum number of 'keep state' rules in the ruleset.")
pf_limits_src_nodes = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLimitsSrcNodes.setStatus('current')
if mibBuilder.loadTexts:
pfLimitsSrcNodes.setDescription("Maximum number of 'sticky-address' or 'source-track' rules in the ruleset.")
pf_limits_frags = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 5, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLimitsFrags.setStatus('current')
if mibBuilder.loadTexts:
pfLimitsFrags.setDescription("Maximum number of 'scrub' rules in the ruleset.")
pf_timeouts_tcp_first = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsTcpFirst.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsTcpFirst.setDescription('State after the first packet in a connection.')
pf_timeouts_tcp_opening = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsTcpOpening.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsTcpOpening.setDescription('State before the destination host ever sends a packet.')
pf_timeouts_tcp_established = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsTcpEstablished.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsTcpEstablished.setDescription('The fully established state.')
pf_timeouts_tcp_closing = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsTcpClosing.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsTcpClosing.setDescription('State after the first FIN has been sent.')
pf_timeouts_tcp_fin_wait = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsTcpFinWait.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsTcpFinWait.setDescription('State after both FINs have been exchanged and the connection is closed.')
pf_timeouts_tcp_closed = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsTcpClosed.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsTcpClosed.setDescription('State after one endpoint sends an RST.')
pf_timeouts_udp_first = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsUdpFirst.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsUdpFirst.setDescription('State after the first packet.')
pf_timeouts_udp_single = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsUdpSingle.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsUdpSingle.setDescription('State if the source host sends more than one packet but the destination host has never sent one back.')
pf_timeouts_udp_multiple = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsUdpMultiple.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsUdpMultiple.setDescription('State if both hosts have sent packets.')
pf_timeouts_icmp_first = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsIcmpFirst.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsIcmpFirst.setDescription('State after the first packet.')
pf_timeouts_icmp_error = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsIcmpError.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsIcmpError.setDescription('State after an ICMP error came back in response to an ICMP packet.')
pf_timeouts_other_first = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsOtherFirst.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsOtherFirst.setDescription('State after the first packet.')
pf_timeouts_other_single = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsOtherSingle.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsOtherSingle.setDescription('State if the source host sends more than one packet but the destination host has never sent one back.')
pf_timeouts_other_multiple = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsOtherMultiple.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsOtherMultiple.setDescription('State if both hosts have sent packets.')
pf_timeouts_fragment = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsFragment.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsFragment.setDescription('Seconds before an unassembled fragment is expired.')
pf_timeouts_interval = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsInterval.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsInterval.setDescription('Interval between purging expired states and fragments.')
pf_timeouts_adaptive_start = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsAdaptiveStart.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsAdaptiveStart.setDescription('When the number of state entries exceeds this value, adaptive scaling begins.')
pf_timeouts_adaptive_end = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsAdaptiveEnd.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsAdaptiveEnd.setDescription('When reaching this number of state entries, all timeout values become zero, effectively purging all state entries immediately.')
pf_timeouts_src_node = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 6, 19), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTimeoutsSrcNode.setStatus('current')
if mibBuilder.loadTexts:
pfTimeoutsSrcNode.setDescription('Length of time to retain a source tracking entry after the last state expires.')
pf_log_interface_name = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 1), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceName.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceName.setDescription("The name of the interface configured with 'set loginterface'. If no interface has been configured, the object will be empty.")
pf_log_interface_ip4_bytes_in = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp4BytesIn.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp4BytesIn.setDescription('Number of IPv4 bytes passed in on the loginterface.')
pf_log_interface_ip4_bytes_out = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp4BytesOut.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp4BytesOut.setDescription('Number of IPv4 bytes passed out on the loginterface.')
pf_log_interface_ip4_pkts_in_pass = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsInPass.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsInPass.setDescription('Number of IPv4 packets passed in on the loginterface.')
pf_log_interface_ip4_pkts_in_drop = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsInDrop.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsInDrop.setDescription('Number of IPv4 packets dropped coming in on the loginterface.')
pf_log_interface_ip4_pkts_out_pass = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsOutPass.setDescription('Number of IPv4 packets passed out on the loginterface.')
pf_log_interface_ip4_pkts_out_drop = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsOutDrop.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp4PktsOutDrop.setDescription('Number of IPv4 packets dropped going out on the loginterface.')
pf_log_interface_ip6_bytes_in = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp6BytesIn.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp6BytesIn.setDescription('Number of IPv6 bytes passed in on the loginterface.')
pf_log_interface_ip6_bytes_out = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp6BytesOut.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp6BytesOut.setDescription('Number of IPv6 bytes passed out on the loginterface.')
pf_log_interface_ip6_pkts_in_pass = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsInPass.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsInPass.setDescription('Number of IPv6 packets passed in on the loginterface.')
pf_log_interface_ip6_pkts_in_drop = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsInDrop.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsInDrop.setDescription('Number of IPv6 packets dropped coming in on the loginterface.')
pf_log_interface_ip6_pkts_out_pass = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsOutPass.setDescription('Number of IPv6 packets passed out on the loginterface.')
pf_log_interface_ip6_pkts_out_drop = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 7, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsOutDrop.setStatus('current')
if mibBuilder.loadTexts:
pfLogInterfaceIp6PktsOutDrop.setDescription('Number of IPv6 packets dropped going out on the loginterface.')
pf_interfaces_if_number = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIfNumber.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfNumber.setDescription('The number of network interfaces on this system.')
pf_interfaces_if_table = mib_table((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2))
if mibBuilder.loadTexts:
pfInterfacesIfTable.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfTable.setDescription('Table of network interfaces, indexed on pfInterfacesIfNumber.')
pf_interfaces_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1)).setIndexNames((0, 'BEGEMOT-PF-MIB', 'pfInterfacesIfIndex'))
if mibBuilder.loadTexts:
pfInterfacesIfEntry.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfEntry.setDescription('An entry in the pfInterfacesIfTable containing information about a particular network interface in the machine.')
pf_interfaces_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
pfInterfacesIfIndex.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfIndex.setDescription('A unique value, greater than zero, for each interface.')
pf_interfaces_if_descr = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIfDescr.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfDescr.setDescription('The name of the interface.')
pf_interfaces_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('group', 0), ('instance', 1), ('detached', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIfType.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfType.setDescription('Indicates whether the interface is a group inteface, an interface instance, or whether it has been removed or destroyed.')
pf_interfaces_if_t_zero = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 4), time_ticks()).setUnits('1/100th of a Second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIfTZero.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfTZero.setDescription('Time since statistics were last reset or since the interface was loaded.')
pf_interfaces_if_refs_state = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIfRefsState.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfRefsState.setDescription('The number of state and/or source track entries referencing this interface.')
pf_interfaces_if_refs_rule = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIfRefsRule.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIfRefsRule.setDescription('The number of rules referencing this interface.')
pf_interfaces_if4_bytes_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesInPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesInPass.setDescription('The number of IPv4 bytes passed coming in on this interface.')
pf_interfaces_if4_bytes_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesInBlock.setDescription('The number of IPv4 bytes blocked coming in on this interface.')
pf_interfaces_if4_bytes_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesOutPass.setDescription('The number of IPv4 bytes passed going out on this interface.')
pf_interfaces_if4_bytes_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4BytesOutBlock.setDescription('The number of IPv4 bytes blocked going out on this interface.')
pf_interfaces_if4_pkts_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsInPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsInPass.setDescription('The number of IPv4 packets passed coming in on this interface.')
pf_interfaces_if4_pkts_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsInBlock.setDescription('The number of IPv4 packets blocked coming in on this interface.')
pf_interfaces_if4_pkts_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsOutPass.setDescription('The number of IPv4 packets passed going out on this interface.')
pf_interfaces_if4_pkts_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf4PktsOutBlock.setDescription('The number of IPv4 packets blocked going out on this interface.')
pf_interfaces_if6_bytes_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesInPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesInPass.setDescription('The number of IPv6 bytes passed coming in on this interface.')
pf_interfaces_if6_bytes_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesInBlock.setDescription('The number of IPv6 bytes blocked coming in on this interface.')
pf_interfaces_if6_bytes_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesOutPass.setDescription('The number of IPv6 bytes passed going out on this interface.')
pf_interfaces_if6_bytes_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6BytesOutBlock.setDescription('The number of IPv6 bytes blocked going out on this interface.')
pf_interfaces_if6_pkts_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsInPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsInPass.setDescription('The number of IPv6 packets passed coming in on this interface.')
pf_interfaces_if6_pkts_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsInBlock.setDescription('The number of IPv6 packets blocked coming in on this interface.')
pf_interfaces_if6_pkts_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsOutPass.setDescription('The number of IPv6 packets passed going out on this interface.')
pf_interfaces_if6_pkts_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 8, 2, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfInterfacesIf6PktsOutBlock.setDescription('The number of IPv6 packets blocked going out on this interface.')
pf_tables_tbl_number = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblNumber.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblNumber.setDescription('The number of tables on this system.')
pf_tables_tbl_table = mib_table((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2))
if mibBuilder.loadTexts:
pfTablesTblTable.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblTable.setDescription('Table of tables, index on pfTablesTblIndex.')
pf_tables_tbl_entry = mib_table_row((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1)).setIndexNames((0, 'BEGEMOT-PF-MIB', 'pfTablesTblIndex'))
if mibBuilder.loadTexts:
pfTablesTblEntry.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblEntry.setDescription('Any entry in the pfTablesTblTable containing information about a particular table on the system.')
pf_tables_tbl_index = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
pfTablesTblIndex.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblIndex.setDescription('A unique value, greater than zero, for each table.')
pf_tables_tbl_descr = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblDescr.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblDescr.setDescription('The name of the table.')
pf_tables_tbl_count = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblCount.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblCount.setDescription('The number of addresses in the table.')
pf_tables_tbl_t_zero = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 4), time_ticks()).setUnits('1/100th of a Second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblTZero.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblTZero.setDescription('The time passed since the statistics of this table were last cleared or the time since this table was loaded, whichever is sooner.')
pf_tables_tbl_refs_anchor = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblRefsAnchor.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblRefsAnchor.setDescription('The number of anchors referencing this table.')
pf_tables_tbl_refs_rule = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblRefsRule.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblRefsRule.setDescription('The number of rules referencing this table.')
pf_tables_tbl_eval_match = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblEvalMatch.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblEvalMatch.setDescription('The number of evaluations returning a match.')
pf_tables_tbl_eval_no_match = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblEvalNoMatch.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblEvalNoMatch.setDescription('The number of evaluations not returning a match.')
pf_tables_tbl_bytes_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblBytesInPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblBytesInPass.setDescription('The number of bytes passed in matching the table.')
pf_tables_tbl_bytes_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblBytesInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblBytesInBlock.setDescription('The number of bytes blocked coming in matching the table.')
pf_tables_tbl_bytes_in_x_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblBytesInXPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblBytesInXPass.setDescription('The number of bytes statefully passed in where the state entry refers to the table, but the table no longer contains the address in question.')
pf_tables_tbl_bytes_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblBytesOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblBytesOutPass.setDescription('The number of bytes passed out matching the table.')
pf_tables_tbl_bytes_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblBytesOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblBytesOutBlock.setDescription('The number of bytes blocked going out matching the table.')
pf_tables_tbl_bytes_out_x_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblBytesOutXPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblBytesOutXPass.setDescription('The number of bytes statefully passed out where the state entry refers to the table, but the table no longer contains the address in question.')
pf_tables_tbl_pkts_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblPktsInPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblPktsInPass.setDescription('The number of packets passed in matching the table.')
pf_tables_tbl_pkts_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblPktsInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblPktsInBlock.setDescription('The number of packets blocked coming in matching the table.')
pf_tables_tbl_pkts_in_x_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblPktsInXPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblPktsInXPass.setDescription('The number of packets statefully passed in where the state entry refers to the table, but the table no longer contains the address in question.')
pf_tables_tbl_pkts_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblPktsOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblPktsOutPass.setDescription('The number of packets passed out matching the table.')
pf_tables_tbl_pkts_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblPktsOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblPktsOutBlock.setDescription('The number of packets blocked going out matching the table.')
pf_tables_tbl_pkts_out_x_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 2, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesTblPktsOutXPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesTblPktsOutXPass.setDescription('The number of packets statefully passed out where the state entry refers to the table, but the table no longer contains the address in question.')
pf_tables_addr_table = mib_table((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3))
if mibBuilder.loadTexts:
pfTablesAddrTable.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrTable.setDescription('Table of addresses from every table on the system.')
pf_tables_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1)).setIndexNames((0, 'BEGEMOT-PF-MIB', 'pfTablesAddrIndex'))
if mibBuilder.loadTexts:
pfTablesAddrEntry.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrEntry.setDescription('An entry in the pfTablesAddrTable containing information about a particular entry in a table.')
pf_tables_addr_index = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
pfTablesAddrIndex.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrIndex.setDescription('A unique value, greater than zero, for each address.')
pf_tables_addr_net = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrNet.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrNet.setDescription('The IP address of this particular table entry.')
pf_tables_addr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrMask.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrMask.setDescription('The CIDR netmask of this particular table entry.')
pf_tables_addr_t_zero = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 4), time_ticks()).setUnits('1/100th of a Second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrTZero.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrTZero.setDescription("The time passed since this entry's statistics were last cleared, or the time passed since this entry was loaded into the table, whichever is sooner.")
pf_tables_addr_bytes_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrBytesInPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrBytesInPass.setDescription('The number of inbound bytes passed as a result of this entry.')
pf_tables_addr_bytes_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrBytesInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrBytesInBlock.setDescription('The number of inbound bytes blocked as a result of this entry.')
pf_tables_addr_bytes_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrBytesOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrBytesOutPass.setDescription('The number of outbound bytes passed as a result of this entry.')
pf_tables_addr_bytes_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrBytesOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrBytesOutBlock.setDescription('The number of outbound bytes blocked as a result of this entry.')
pf_tables_addr_pkts_in_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrPktsInPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrPktsInPass.setDescription('The number of inbound packets passed as a result of this entry.')
pf_tables_addr_pkts_in_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrPktsInBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrPktsInBlock.setDescription('The number of inbound packets blocked as a result of this entry.')
pf_tables_addr_pkts_out_pass = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrPktsOutPass.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrPktsOutPass.setDescription('The number of outbound packets passed as a result of this entry.')
pf_tables_addr_pkts_out_block = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 9, 3, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfTablesAddrPktsOutBlock.setStatus('current')
if mibBuilder.loadTexts:
pfTablesAddrPktsOutBlock.setDescription('The number of outbound packets blocked as a result of this entry.')
pf_altq_queue_number = mib_scalar((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 1), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueueNumber.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueNumber.setDescription('The number of queues in the active set.')
pf_altq_queue_table = mib_table((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2))
if mibBuilder.loadTexts:
pfAltqQueueTable.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueTable.setDescription('Table containing the rules that are active on this system.')
pf_altq_queue_entry = mib_table_row((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1)).setIndexNames((0, 'BEGEMOT-PF-MIB', 'pfAltqQueueIndex'))
if mibBuilder.loadTexts:
pfAltqQueueEntry.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueEntry.setDescription('An entry in the pfAltqQueueTable table.')
pf_altq_queue_index = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)))
if mibBuilder.loadTexts:
pfAltqQueueIndex.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueIndex.setDescription('A unique value, greater than zero, for each queue.')
pf_altq_queue_descr = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueueDescr.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueDescr.setDescription('The name of the queue.')
pf_altq_queue_parent = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueueParent.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueParent.setDescription("Name of the queue's parent if it has one.")
pf_altq_queue_scheduler = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 8, 11))).clone(namedValues=named_values(('cbq', 1), ('hfsc', 8), ('priq', 11)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueueScheduler.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueScheduler.setDescription('Scheduler algorithm implemented by this queue.')
pf_altq_queue_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueueBandwidth.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueBandwidth.setDescription('Bandwitch assigned to this queue.')
pf_altq_queue_priority = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueuePriority.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueuePriority.setDescription('Priority level of the queue.')
pf_altq_queue_limit = mib_table_column((1, 3, 6, 1, 4, 1, 12325, 1, 200, 1, 10, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pfAltqQueueLimit.setStatus('current')
if mibBuilder.loadTexts:
pfAltqQueueLimit.setDescription('Maximum number of packets in the queue.')
mibBuilder.exportSymbols('BEGEMOT-PF-MIB', pfTablesTblIndex=pfTablesTblIndex, pfLogInterfaceIp4PktsOutPass=pfLogInterfaceIp4PktsOutPass, pfTimeoutsTcpOpening=pfTimeoutsTcpOpening, pfStatusRunning=pfStatusRunning, pfStateTableCount=pfStateTableCount, pfSrcNodesSearches=pfSrcNodesSearches, pfCounterBadOffset=pfCounterBadOffset, pfStateTableSearches=pfStateTableSearches, pfTablesTblTable=pfTablesTblTable, pfInterfacesIf6PktsInPass=pfInterfacesIf6PktsInPass, pfInterfacesIf6BytesOutBlock=pfInterfacesIf6BytesOutBlock, pfTablesTblPktsOutPass=pfTablesTblPktsOutPass, pfLogInterfaceIp6BytesOut=pfLogInterfaceIp6BytesOut, pfStatusRuntime=pfStatusRuntime, pfLogInterfaceIp4PktsInDrop=pfLogInterfaceIp4PktsInDrop, pfInterfacesIf4PktsInBlock=pfInterfacesIf4PktsInBlock, pfAltqQueueParent=pfAltqQueueParent, pfInterfacesIfEntry=pfInterfacesIfEntry, pfTablesTblEvalNoMatch=pfTablesTblEvalNoMatch, pfTablesTblBytesOutPass=pfTablesTblBytesOutPass, PYSNMP_MODULE_ID=begemotPf, pfStatusHostId=pfStatusHostId, pfLogInterfaceIp4BytesOut=pfLogInterfaceIp4BytesOut, pfTablesAddrEntry=pfTablesAddrEntry, pfTablesTblPktsInXPass=pfTablesTblPktsInXPass, pfTimeoutsTcpClosing=pfTimeoutsTcpClosing, pfLogInterfaceIp6PktsOutDrop=pfLogInterfaceIp6PktsOutDrop, pfTablesTblBytesInPass=pfTablesTblBytesInPass, pfAltqQueueDescr=pfAltqQueueDescr, pfTimeoutsOtherFirst=pfTimeoutsOtherFirst, pfTablesTblBytesOutBlock=pfTablesTblBytesOutBlock, pfAltqQueueLimit=pfAltqQueueLimit, pfTablesTblPktsInBlock=pfTablesTblPktsInBlock, pfAltqQueueBandwidth=pfAltqQueueBandwidth, pfCounterMemDrop=pfCounterMemDrop, pfInterfacesIf6BytesInBlock=pfInterfacesIf6BytesInBlock, pfInterfaces=pfInterfaces, pfTimeoutsUdpFirst=pfTimeoutsUdpFirst, pfStateTable=pfStateTable, pfInterfacesIf4PktsOutBlock=pfInterfacesIf4PktsOutBlock, pfTimeoutsAdaptiveEnd=pfTimeoutsAdaptiveEnd, pfTablesTblEvalMatch=pfTablesTblEvalMatch, pfInterfacesIfNumber=pfInterfacesIfNumber, pfTablesTblRefsRule=pfTablesTblRefsRule, pfTimeoutsOtherMultiple=pfTimeoutsOtherMultiple, pfTimeoutsTcpFinWait=pfTimeoutsTcpFinWait, pfLogInterfaceIp6BytesIn=pfLogInterfaceIp6BytesIn, pfTablesTblPktsOutXPass=pfTablesTblPktsOutXPass, pfLimits=pfLimits, pfLogInterface=pfLogInterface, pfTimeoutsTcpEstablished=pfTimeoutsTcpEstablished, pfLogInterfaceIp6PktsInPass=pfLogInterfaceIp6PktsInPass, pfAltq=pfAltq, pfTablesTblBytesInXPass=pfTablesTblBytesInXPass, pfTablesTblTZero=pfTablesTblTZero, pfTablesTblRefsAnchor=pfTablesTblRefsAnchor, pfTablesAddrBytesInBlock=pfTablesAddrBytesInBlock, pfInterfacesIf4PktsOutPass=pfInterfacesIf4PktsOutPass, pfTimeoutsTcpClosed=pfTimeoutsTcpClosed, pfInterfacesIf6PktsOutPass=pfInterfacesIf6PktsOutPass, pfTablesAddrPktsInBlock=pfTablesAddrPktsInBlock, begemotPfObjects=begemotPfObjects, pfStateTableRemovals=pfStateTableRemovals, pfTablesAddrBytesInPass=pfTablesAddrBytesInPass, pfTablesTblPktsOutBlock=pfTablesTblPktsOutBlock, pfCounterFragment=pfCounterFragment, pfTimeoutsIcmpFirst=pfTimeoutsIcmpFirst, pfInterfacesIf4BytesOutPass=pfInterfacesIf4BytesOutPass, pfTablesAddrTable=pfTablesAddrTable, pfInterfacesIf4PktsInPass=pfInterfacesIf4PktsInPass, pfLogInterfaceIp6PktsInDrop=pfLogInterfaceIp6PktsInDrop, pfStatusDebug=pfStatusDebug, pfTimeouts=pfTimeouts, pfInterfacesIf4BytesOutBlock=pfInterfacesIf4BytesOutBlock, pfTablesAddrMask=pfTablesAddrMask, pfLogInterfaceIp4BytesIn=pfLogInterfaceIp4BytesIn, pfInterfacesIfTZero=pfInterfacesIfTZero, pfInterfacesIf6PktsOutBlock=pfInterfacesIf6PktsOutBlock, pfCounter=pfCounter, pfTablesAddrBytesOutPass=pfTablesAddrBytesOutPass, pfInterfacesIf6BytesInPass=pfInterfacesIf6BytesInPass, pfTimeoutsUdpSingle=pfTimeoutsUdpSingle, pfInterfacesIfRefsState=pfInterfacesIfRefsState, pfTables=pfTables, pfSrcNodesCount=pfSrcNodesCount, pfTimeoutsFragment=pfTimeoutsFragment, pfInterfacesIfDescr=pfInterfacesIfDescr, pfInterfacesIf6PktsInBlock=pfInterfacesIf6PktsInBlock, pfLogInterfaceIp4PktsOutDrop=pfLogInterfaceIp4PktsOutDrop, pfTablesTblEntry=pfTablesTblEntry, pfInterfacesIf4BytesInBlock=pfInterfacesIf4BytesInBlock, pfTablesAddrTZero=pfTablesAddrTZero, pfTimeoutsOtherSingle=pfTimeoutsOtherSingle, pfLogInterfaceIp4PktsInPass=pfLogInterfaceIp4PktsInPass, pfAltqQueuePriority=pfAltqQueuePriority, pfLogInterfaceIp6PktsOutPass=pfLogInterfaceIp6PktsOutPass, pfTimeoutsAdaptiveStart=pfTimeoutsAdaptiveStart, pfTimeoutsIcmpError=pfTimeoutsIcmpError, begemotPf=begemotPf, pfInterfacesIfIndex=pfInterfacesIfIndex, pfLimitsSrcNodes=pfLimitsSrcNodes, pfCounterMatch=pfCounterMatch, pfInterfacesIfType=pfInterfacesIfType, pfLimitsFrags=pfLimitsFrags, pfCounterNormalize=pfCounterNormalize, pfStateTableInserts=pfStateTableInserts, pfTimeoutsSrcNode=pfTimeoutsSrcNode, pfSrcNodes=pfSrcNodes, pfTimeoutsUdpMultiple=pfTimeoutsUdpMultiple, pfAltqQueueTable=pfAltqQueueTable, pfTablesTblPktsInPass=pfTablesTblPktsInPass, pfAltqQueueNumber=pfAltqQueueNumber, pfStatus=pfStatus, pfTablesTblNumber=pfTablesTblNumber, pfTablesAddrBytesOutBlock=pfTablesAddrBytesOutBlock, pfTablesAddrPktsOutBlock=pfTablesAddrPktsOutBlock, pfAltqQueueIndex=pfAltqQueueIndex, pfSrcNodesInserts=pfSrcNodesInserts, pfInterfacesIf4BytesInPass=pfInterfacesIf4BytesInPass, pfTablesTblDescr=pfTablesTblDescr, pfSrcNodesRemovals=pfSrcNodesRemovals, pfTablesTblCount=pfTablesTblCount, pfTablesAddrPktsInPass=pfTablesAddrPktsInPass, pfInterfacesIf6BytesOutPass=pfInterfacesIf6BytesOutPass, pfTablesTblBytesInBlock=pfTablesTblBytesInBlock, pfLimitsStates=pfLimitsStates, pfTablesAddrIndex=pfTablesAddrIndex, pfTimeoutsTcpFirst=pfTimeoutsTcpFirst, pfAltqQueueEntry=pfAltqQueueEntry, pfTablesAddrNet=pfTablesAddrNet, pfCounterShort=pfCounterShort, pfTimeoutsInterval=pfTimeoutsInterval, pfAltqQueueScheduler=pfAltqQueueScheduler, pfTablesTblBytesOutXPass=pfTablesTblBytesOutXPass, pfTablesAddrPktsOutPass=pfTablesAddrPktsOutPass, pfInterfacesIfTable=pfInterfacesIfTable, pfLogInterfaceName=pfLogInterfaceName, pfInterfacesIfRefsRule=pfInterfacesIfRefsRule) |
# -*- coding:utf-8 -*-
p = raw_input("Escribe una frase: ")
for letras in p:
print(p.upper()) | p = raw_input('Escribe una frase: ')
for letras in p:
print(p.upper()) |
def find_words_in_phone_number():
phone_number = "3662277"
words = ["foo", "bar", "baz", "foobar", "emo", "cap", "car", "cat"]
lst = []
cmap = dict(a=2, b=2, c=2, d=3, e=3, f=3, g=4, h=4, i=4, j=5, k=5, l=5,
m=6, n=6, o=6, p=7, q=7, r=7, s=7, t=8, u=8, v=8, w=9, x=9, y=9, z=9)
for word in words:
num = "".join(str(cmap.get(x.lower(), "0")) for x in word)
found = num in phone_number
print(found, word, num, phone_number)
found and lst.append(word)
print(lst)
def countdown(count: int):
for num in range(count, 0, -1):
print(num)
if __name__ == '__main__':
find_words_in_phone_number()
| def find_words_in_phone_number():
phone_number = '3662277'
words = ['foo', 'bar', 'baz', 'foobar', 'emo', 'cap', 'car', 'cat']
lst = []
cmap = dict(a=2, b=2, c=2, d=3, e=3, f=3, g=4, h=4, i=4, j=5, k=5, l=5, m=6, n=6, o=6, p=7, q=7, r=7, s=7, t=8, u=8, v=8, w=9, x=9, y=9, z=9)
for word in words:
num = ''.join((str(cmap.get(x.lower(), '0')) for x in word))
found = num in phone_number
print(found, word, num, phone_number)
found and lst.append(word)
print(lst)
def countdown(count: int):
for num in range(count, 0, -1):
print(num)
if __name__ == '__main__':
find_words_in_phone_number() |
CMarketRspInfoField = {
"ErrorID": "int",
"ErrorMsg": "string",
}
CMarketReqUserLoginField = {
"UserId": "string",
"UserPwd": "string",
"UserType": "string",
"MacAddress": "string",
"ComputerName": "string",
"SoftwareName": "string",
"SoftwareVersion": "string",
"AuthorCode": "string",
"ErrorDescription": "string",
}
CMarketRspUserLoginField = {
"UserName": "string",
"UserPwd": "string",
"UserType": "string",
}
CMarketReqUserLogoutField = {
"BrokerID": "string",
"UserId": "string",
"ErrorDescription": "string",
}
CMarketReqMarketDataField = {
"MarketType": "char",
"SubscMode": "char",
"MarketCount": "int",
"MarketTrcode[MAX_SUB_COUNT]": "string",
"ErrorDescription": "string",
}
CMarketRspMarketDataField = {
"ExchangeCode": "string",
"TreatyCode": "string",
"BuyPrice": "string",
"BuyNumber": "string",
"SalePrice": "string",
"SaleNumber": "string",
"CurrPrice": "string",
"CurrNumber": "string",
"High": "string",
"Low": "string",
"Open": "string",
"IntradaySettlePrice": "string",
"Close": "string",
"Time": "string",
"FilledNum": "string",
"HoldNum": "string",
"BuyPrice2": "string",
"BuyPrice3": "string",
"BuyPrice4": "string",
"BuyPrice5": "string",
"BuyNumber2": "string",
"BuyNumber3": "string",
"BuyNumber4": "string",
"BuyNumber5": "string",
"SalePrice2": "string",
"SalePrice3": "string",
"SalePrice4": "string",
"SalePrice5": "string",
"SaleNumber2": "string",
"SaleNumber3": "string",
"SaleNumber4": "string",
"SaleNumber5": "string",
"HideBuyPrice": "string",
"HideBuyNumber": "string",
"HideSalePrice": "string",
"HideSaleNumber": "string",
"LimitDownPrice": "string",
"LimitUpPrice": "string",
"TradeDay": "string",
"BuyPrice6": "string",
"BuyPrice7": "string",
"BuyPrice8": "string",
"BuyPrice9": "string",
"BuyPrice10": "string",
"BuyNumber6": "string",
"BuyNumber7": "string",
"BuyNumber8": "string",
"BuyNumber9": "string",
"BuyNumber10": "string",
"SalePrice6": "string",
"SalePrice7": "string",
"SalePrice8": "string",
"SalePrice9": "string",
"SalePrice10": "string",
"SaleNumber6": "string",
"SaleNumber7": "string",
"SaleNumber8": "string",
"SaleNumber9": "string",
"SaleNumber10": "string",
"TradeFlag": "string",
"DataTimestamp": "string",
"DataSourceId": "string",
"CanSellVol": "string",
"QuoteType": "string",
"AggressorSide": "string",
"PreSettlementPrice": "string",
}
CMarketReqBrokerDataField = {
"ContCode": "string",
"ErrorDescription": "string",
}
CMarketRspBrokerDataField = {
"BrokerData": "string",
}
CMarketRspTradeDateField = {
"TradeDate": "string",
"TradeProduct": "string",
}
| c_market_rsp_info_field = {'ErrorID': 'int', 'ErrorMsg': 'string'}
c_market_req_user_login_field = {'UserId': 'string', 'UserPwd': 'string', 'UserType': 'string', 'MacAddress': 'string', 'ComputerName': 'string', 'SoftwareName': 'string', 'SoftwareVersion': 'string', 'AuthorCode': 'string', 'ErrorDescription': 'string'}
c_market_rsp_user_login_field = {'UserName': 'string', 'UserPwd': 'string', 'UserType': 'string'}
c_market_req_user_logout_field = {'BrokerID': 'string', 'UserId': 'string', 'ErrorDescription': 'string'}
c_market_req_market_data_field = {'MarketType': 'char', 'SubscMode': 'char', 'MarketCount': 'int', 'MarketTrcode[MAX_SUB_COUNT]': 'string', 'ErrorDescription': 'string'}
c_market_rsp_market_data_field = {'ExchangeCode': 'string', 'TreatyCode': 'string', 'BuyPrice': 'string', 'BuyNumber': 'string', 'SalePrice': 'string', 'SaleNumber': 'string', 'CurrPrice': 'string', 'CurrNumber': 'string', 'High': 'string', 'Low': 'string', 'Open': 'string', 'IntradaySettlePrice': 'string', 'Close': 'string', 'Time': 'string', 'FilledNum': 'string', 'HoldNum': 'string', 'BuyPrice2': 'string', 'BuyPrice3': 'string', 'BuyPrice4': 'string', 'BuyPrice5': 'string', 'BuyNumber2': 'string', 'BuyNumber3': 'string', 'BuyNumber4': 'string', 'BuyNumber5': 'string', 'SalePrice2': 'string', 'SalePrice3': 'string', 'SalePrice4': 'string', 'SalePrice5': 'string', 'SaleNumber2': 'string', 'SaleNumber3': 'string', 'SaleNumber4': 'string', 'SaleNumber5': 'string', 'HideBuyPrice': 'string', 'HideBuyNumber': 'string', 'HideSalePrice': 'string', 'HideSaleNumber': 'string', 'LimitDownPrice': 'string', 'LimitUpPrice': 'string', 'TradeDay': 'string', 'BuyPrice6': 'string', 'BuyPrice7': 'string', 'BuyPrice8': 'string', 'BuyPrice9': 'string', 'BuyPrice10': 'string', 'BuyNumber6': 'string', 'BuyNumber7': 'string', 'BuyNumber8': 'string', 'BuyNumber9': 'string', 'BuyNumber10': 'string', 'SalePrice6': 'string', 'SalePrice7': 'string', 'SalePrice8': 'string', 'SalePrice9': 'string', 'SalePrice10': 'string', 'SaleNumber6': 'string', 'SaleNumber7': 'string', 'SaleNumber8': 'string', 'SaleNumber9': 'string', 'SaleNumber10': 'string', 'TradeFlag': 'string', 'DataTimestamp': 'string', 'DataSourceId': 'string', 'CanSellVol': 'string', 'QuoteType': 'string', 'AggressorSide': 'string', 'PreSettlementPrice': 'string'}
c_market_req_broker_data_field = {'ContCode': 'string', 'ErrorDescription': 'string'}
c_market_rsp_broker_data_field = {'BrokerData': 'string'}
c_market_rsp_trade_date_field = {'TradeDate': 'string', 'TradeProduct': 'string'} |
# cook your dish here
print("137=2(2(2)+2+2(0))+2(2+2(0))+2(0)")
print("1315=2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0)")
print("73=2(2(2)+2)+2(2+2(0))+2(0)")
print("136=2(2(2)+2+2(0))+2(2+2(0))")
print("255=2(2(2)+2+2(0))+2(2(2)+2)+2(2(2)+2(0))+2(2(2))+2(2+2(0))+2(2)+2+2(0)")
print("1384=2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2)+2(2(2)+2(0))+2(2+2(0))")
print("16385=2(2(2+2(0))+2(2)+2)+2(0)")
| print('137=2(2(2)+2+2(0))+2(2+2(0))+2(0)')
print('1315=2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0)')
print('73=2(2(2)+2)+2(2+2(0))+2(0)')
print('136=2(2(2)+2+2(0))+2(2+2(0))')
print('255=2(2(2)+2+2(0))+2(2(2)+2)+2(2(2)+2(0))+2(2(2))+2(2+2(0))+2(2)+2+2(0)')
print('1384=2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2)+2(2(2)+2(0))+2(2+2(0))')
print('16385=2(2(2+2(0))+2(2)+2)+2(0)') |
def get_current_players(current_room):
host_user = current_room['host_user']
users = current_room['game']['users']
players = [player for player in users]
players.append(host_user)
return players
| def get_current_players(current_room):
host_user = current_room['host_user']
users = current_room['game']['users']
players = [player for player in users]
players.append(host_user)
return players |
class DuckyScriptParser:
'''
This class is a parser for the DuckyScript language.
It allows to generate a sequence of frame to inject keystrokes according to the provided script.
'''
def __init__(self,content="",filename=""):
if content != "":
self.content = content
else:
self.content = open(filename,"r").read()
self.specialKeys ={
"ENTER":["ENTER"],
"super":["GUI","WINDOWS"],
"ctrl":["CTRL","CONTROL"],
"alt":["ALT"],
"shift":["SHIFT"],
"DOWNARROW":["DOWNARROW","DOWN"],
"UPARROW":["UPARROW","UP"],
"LEFTARROW":["LEFTARROW","LEFT"],
"RIGHTARROW":["RIGHTARROW","RIGHT"],
"F1":["F1"],
"F2":["F2"],
"F3":["F3"],
"F4":["F4"],
"F5":["F5"],
"F6":["F6"],
"F7":["F7"],
"F8":["F8"],
"F9":["F9"],
"F10":["F10"],
"F11":["F11"],
"F12":["F12"],
"ESC":["ESC","ESCAPE"],
"PAUSE":["PAUSE"],
"SPACE":["SPACE"],
"TAB":["TAB"],
"END":["END"],
"DELETE":["DELETE"],
"PAUSE":["BREAK","PAUSE"],
"PRINTSCREEN":["PRINTSCREEN"],
"CAPSLOCK":["CAPSLOCK"],
"SCROLLLOCK":["SCROLLLOCK"],
"INSERT":["INSERT"],
"HOME":["HOME"],
"PAGEUP":["PAGEUP"],
"PAGEDOWN":["PAGEDOWN"]
}
def _isSpecialKey(self,string):
for k,v in self.specialKeys.items():
if string in v:
return True
return False
def _getSpecialKey(self,string):
for k,v in self.specialKeys.items():
if string in v:
return k
return string
def _parseInstruction(self,instruction=[]):
first = instruction[0]
if first == "REM":
return None
elif first == "STRING":
return {"type":"text", "param":" ".join(instruction[1:])}
elif first == "DELAY":
return {"type":"sleep", "param":int(instruction[1])}
elif first == "REPEAT":
return {"type":"repeat", "param":int(instruction[1])}
elif first == "DEFAULTDELAY" or first == "DEFAULT_DELAY":
return {"type":"defaultdelay", "param":int(instruction[1])}
elif first == "APP" or first == "MENU":
return {"type":"keys","param":["shift","F10"]}
elif self._isSpecialKey(first):
keys = []
for k in instruction:
keys.append(self._getSpecialKey(k))
if len(keys)==1:
if keys[0] in ("ctrl","alt","shift"):
key = key.upper()
elif keys[0] == "super":
key = "GUI"
else:
key = keys[0]
return {"type":"key", "param":key}
else:
return {"type":"keys", "param":keys}
def _parse(self):
self.instructions = []
instructions = self.content.split("\n")
for instruction in instructions:
tokens = instruction.split(" ")
generated = self._parseInstruction(tokens)
if generated is not None:
self.instructions.append(generated)
def _generatePacketsFromInstruction(self,
currentDelay=0,
previousInstruction={},
currentInstruction={},
textFunction=None,
keyFunction=None,
sleepFunction=None
):
defaultDelay,packets = currentDelay, []
if currentInstruction["type"] == "defaultdelay":
defaultDelay = currentInstruction["param"]
elif currentInstruction["type"] == "sleep":
packets += sleepFunction(duration=currentInstruction["param"])
elif currentInstruction["type"] == "repeat" and previousInstruction != {}:
for _ in range(currentInstruction["param"]):
defaultDelay,nextPackets = self._generatePacketsFromInstruction(
currentDelay=currentDelay,
previousInstruction={},
currentInstruction=previousInstruction,
textFunction=textFunction,
keyFunction=keyFunction,
sleepFunction=sleepFunction
)
packets += nextPackets
elif currentInstruction["type"] == "text":
packets += textFunction(string=currentInstruction["param"])
elif currentInstruction["type"] == "key":
packets += keyFunction(key=currentInstruction["param"])
elif currentInstruction["type"] == "keys":
ctrl = "ctrl" in currentInstruction["param"]
alt = "alt" in currentInstruction["param"]
gui = "super" in currentInstruction["param"]
shift = "shift" in currentInstruction["param"]
key = ""
for i in currentInstruction["param"]:
if i not in ("ctrl","alt","super","shift"):
key = i
packets += keyFunction(key=key,shift=shift,gui=gui,ctrl=ctrl,alt=alt)
return defaultDelay,packets
def generatePackets(self,textFunction=None, keyFunction=None, sleepFunction=None, initFunction=None):
'''
This function allows to generate the sequence of packets corresponding to the provided script.
You have to provide different functions that returns the sequence of packets for a given action.
:param textFunction: function corresponding to a text injection
:type textFunction: func
:param keyFunction: function corresponding to a single keystroke injection
:type keyFunction: func
:param sleepFunction: function corresponding to a sleep interval
:type sleepFunction: func
:param initFunction: function corresponding to the initialization of the process
:type initFunction: func
:return: sequence of packets
:rtype: list of ``mirage.libs.wireless_utils.packets.Packet``
'''
self._parse()
defaultDelay = 0
previousInstruction = {}
currentInstruction = {}
packets = initFunction()
for currentInstruction in self.instructions:
newDelay,nextPackets = self._generatePacketsFromInstruction(
currentDelay=defaultDelay,
previousInstruction=previousInstruction,
currentInstruction=currentInstruction,
textFunction=textFunction,
keyFunction=keyFunction,
sleepFunction=sleepFunction
)
packets += nextPackets
defaultDelay = newDelay
if defaultDelay > 0:
packets += sleepFunction(duration=defaultDelay)
previousInstruction = currentInstruction
return packets
| class Duckyscriptparser:
"""
This class is a parser for the DuckyScript language.
It allows to generate a sequence of frame to inject keystrokes according to the provided script.
"""
def __init__(self, content='', filename=''):
if content != '':
self.content = content
else:
self.content = open(filename, 'r').read()
self.specialKeys = {'ENTER': ['ENTER'], 'super': ['GUI', 'WINDOWS'], 'ctrl': ['CTRL', 'CONTROL'], 'alt': ['ALT'], 'shift': ['SHIFT'], 'DOWNARROW': ['DOWNARROW', 'DOWN'], 'UPARROW': ['UPARROW', 'UP'], 'LEFTARROW': ['LEFTARROW', 'LEFT'], 'RIGHTARROW': ['RIGHTARROW', 'RIGHT'], 'F1': ['F1'], 'F2': ['F2'], 'F3': ['F3'], 'F4': ['F4'], 'F5': ['F5'], 'F6': ['F6'], 'F7': ['F7'], 'F8': ['F8'], 'F9': ['F9'], 'F10': ['F10'], 'F11': ['F11'], 'F12': ['F12'], 'ESC': ['ESC', 'ESCAPE'], 'PAUSE': ['PAUSE'], 'SPACE': ['SPACE'], 'TAB': ['TAB'], 'END': ['END'], 'DELETE': ['DELETE'], 'PAUSE': ['BREAK', 'PAUSE'], 'PRINTSCREEN': ['PRINTSCREEN'], 'CAPSLOCK': ['CAPSLOCK'], 'SCROLLLOCK': ['SCROLLLOCK'], 'INSERT': ['INSERT'], 'HOME': ['HOME'], 'PAGEUP': ['PAGEUP'], 'PAGEDOWN': ['PAGEDOWN']}
def _is_special_key(self, string):
for (k, v) in self.specialKeys.items():
if string in v:
return True
return False
def _get_special_key(self, string):
for (k, v) in self.specialKeys.items():
if string in v:
return k
return string
def _parse_instruction(self, instruction=[]):
first = instruction[0]
if first == 'REM':
return None
elif first == 'STRING':
return {'type': 'text', 'param': ' '.join(instruction[1:])}
elif first == 'DELAY':
return {'type': 'sleep', 'param': int(instruction[1])}
elif first == 'REPEAT':
return {'type': 'repeat', 'param': int(instruction[1])}
elif first == 'DEFAULTDELAY' or first == 'DEFAULT_DELAY':
return {'type': 'defaultdelay', 'param': int(instruction[1])}
elif first == 'APP' or first == 'MENU':
return {'type': 'keys', 'param': ['shift', 'F10']}
elif self._isSpecialKey(first):
keys = []
for k in instruction:
keys.append(self._getSpecialKey(k))
if len(keys) == 1:
if keys[0] in ('ctrl', 'alt', 'shift'):
key = key.upper()
elif keys[0] == 'super':
key = 'GUI'
else:
key = keys[0]
return {'type': 'key', 'param': key}
else:
return {'type': 'keys', 'param': keys}
def _parse(self):
self.instructions = []
instructions = self.content.split('\n')
for instruction in instructions:
tokens = instruction.split(' ')
generated = self._parseInstruction(tokens)
if generated is not None:
self.instructions.append(generated)
def _generate_packets_from_instruction(self, currentDelay=0, previousInstruction={}, currentInstruction={}, textFunction=None, keyFunction=None, sleepFunction=None):
(default_delay, packets) = (currentDelay, [])
if currentInstruction['type'] == 'defaultdelay':
default_delay = currentInstruction['param']
elif currentInstruction['type'] == 'sleep':
packets += sleep_function(duration=currentInstruction['param'])
elif currentInstruction['type'] == 'repeat' and previousInstruction != {}:
for _ in range(currentInstruction['param']):
(default_delay, next_packets) = self._generatePacketsFromInstruction(currentDelay=currentDelay, previousInstruction={}, currentInstruction=previousInstruction, textFunction=textFunction, keyFunction=keyFunction, sleepFunction=sleepFunction)
packets += nextPackets
elif currentInstruction['type'] == 'text':
packets += text_function(string=currentInstruction['param'])
elif currentInstruction['type'] == 'key':
packets += key_function(key=currentInstruction['param'])
elif currentInstruction['type'] == 'keys':
ctrl = 'ctrl' in currentInstruction['param']
alt = 'alt' in currentInstruction['param']
gui = 'super' in currentInstruction['param']
shift = 'shift' in currentInstruction['param']
key = ''
for i in currentInstruction['param']:
if i not in ('ctrl', 'alt', 'super', 'shift'):
key = i
packets += key_function(key=key, shift=shift, gui=gui, ctrl=ctrl, alt=alt)
return (defaultDelay, packets)
def generate_packets(self, textFunction=None, keyFunction=None, sleepFunction=None, initFunction=None):
"""
This function allows to generate the sequence of packets corresponding to the provided script.
You have to provide different functions that returns the sequence of packets for a given action.
:param textFunction: function corresponding to a text injection
:type textFunction: func
:param keyFunction: function corresponding to a single keystroke injection
:type keyFunction: func
:param sleepFunction: function corresponding to a sleep interval
:type sleepFunction: func
:param initFunction: function corresponding to the initialization of the process
:type initFunction: func
:return: sequence of packets
:rtype: list of ``mirage.libs.wireless_utils.packets.Packet``
"""
self._parse()
default_delay = 0
previous_instruction = {}
current_instruction = {}
packets = init_function()
for current_instruction in self.instructions:
(new_delay, next_packets) = self._generatePacketsFromInstruction(currentDelay=defaultDelay, previousInstruction=previousInstruction, currentInstruction=currentInstruction, textFunction=textFunction, keyFunction=keyFunction, sleepFunction=sleepFunction)
packets += nextPackets
default_delay = newDelay
if defaultDelay > 0:
packets += sleep_function(duration=defaultDelay)
previous_instruction = currentInstruction
return packets |
def Awana_Academy(name, age): ## say to python that all the code that come after that line is going to be in d function
print("Hello " + name + "you are " + age + "years old ")
Awana_Academy("Alex " , "45")
Awana_Academy("Donald ", "12")
| def awana__academy(name, age):
print('Hello ' + name + 'you are ' + age + 'years old ')
awana__academy('Alex ', '45')
awana__academy('Donald ', '12') |
# https://www.codewars.com/kata/55d2aee99f30dbbf8b000001/
'''
Details :
A new school year is approaching, which also means students will be taking tests.
The tests in this kata are to be graded in different ways. A certain number of points will be given for each correct answer and a certain number of points will be deducted for each incorrect answer. For ommitted answers, points will either be awarded, deducted, or no points will be given at all.
Return the number of points someone has scored on varying tests of different lengths.
The given parameters will be:
An array containing a series of 0s, 1s, and 2s, where 0 is a correct answer, 1 is an omitted answer, and 2 is an incorrect answer.
The points awarded for correct answers
The points awarded for omitted answers (note that this may be negative)
The points deducted for incorrect answers (hint: this value has to be subtracted)
Note: The input will always be valid (an array and three numbers)
Examples
#1:
[0, 0, 0, 0, 2, 1, 0], 2, 0, 1 --> 9
because:
5 correct answers: 5*2 = 10
1 omitted answer: 1*0 = 0
1 wrong answer: 1*1 = 1
which is: 10 + 0 - 1 = 9
#2:
[0, 1, 0, 0, 2, 1, 0, 2, 2, 1], 3, -1, 2) --> 3
because: 4*3 + 3*-1 - 3*2 = 3
'''
def score_test(tests, right, omit, wrong):
return tests.count(0) * right + tests.count(1) * omit - tests.count(2) * wrong
| """
Details :
A new school year is approaching, which also means students will be taking tests.
The tests in this kata are to be graded in different ways. A certain number of points will be given for each correct answer and a certain number of points will be deducted for each incorrect answer. For ommitted answers, points will either be awarded, deducted, or no points will be given at all.
Return the number of points someone has scored on varying tests of different lengths.
The given parameters will be:
An array containing a series of 0s, 1s, and 2s, where 0 is a correct answer, 1 is an omitted answer, and 2 is an incorrect answer.
The points awarded for correct answers
The points awarded for omitted answers (note that this may be negative)
The points deducted for incorrect answers (hint: this value has to be subtracted)
Note: The input will always be valid (an array and three numbers)
Examples
#1:
[0, 0, 0, 0, 2, 1, 0], 2, 0, 1 --> 9
because:
5 correct answers: 5*2 = 10
1 omitted answer: 1*0 = 0
1 wrong answer: 1*1 = 1
which is: 10 + 0 - 1 = 9
#2:
[0, 1, 0, 0, 2, 1, 0, 2, 2, 1], 3, -1, 2) --> 3
because: 4*3 + 3*-1 - 3*2 = 3
"""
def score_test(tests, right, omit, wrong):
return tests.count(0) * right + tests.count(1) * omit - tests.count(2) * wrong |
# https://open.kattis.com/problems/babybites
n = int(input())
inp = input().split()
for i in range(0, n):
if inp[i].isdigit():
if int(inp[i]) != i + 1:
print('something is fishy')
break
else:
print('makes sense')
| n = int(input())
inp = input().split()
for i in range(0, n):
if inp[i].isdigit():
if int(inp[i]) != i + 1:
print('something is fishy')
break
else:
print('makes sense') |
#Let's use tuples to store information about a file: its name,
#its type and its size in bytes.
#Fill in the gaps in this code to return the size in kilobytes (a kilobyte is 1024 bytes) up to 2 decimal places.
#Code:
def file_size(file_info):
name, type, size= file_info
return("{:.2f}".format(size / 1024))
print(file_size(('Class Assignment', 'docx', 17875))) # Should print 17.46
print(file_size(('Notes', 'txt', 496))) # Should print 0.48
print(file_size(('Program', 'py', 1239))) # Should print 1.21
| def file_size(file_info):
(name, type, size) = file_info
return '{:.2f}'.format(size / 1024)
print(file_size(('Class Assignment', 'docx', 17875)))
print(file_size(('Notes', 'txt', 496)))
print(file_size(('Program', 'py', 1239))) |
def gmaps_url_to_coords(url):
gmaps_coords = url.split('=')
coords = (0.0, 0.0) # defaults to 0,0
if len(gmaps_coords) == 2:
gmaps_coords = gmaps_coords[1]
coords = tuple(map(lambda c: float(c), gmaps_coords.split(',')))
return coords
| def gmaps_url_to_coords(url):
gmaps_coords = url.split('=')
coords = (0.0, 0.0)
if len(gmaps_coords) == 2:
gmaps_coords = gmaps_coords[1]
coords = tuple(map(lambda c: float(c), gmaps_coords.split(',')))
return coords |
# Copyright 2014 Google Inc. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE filters or at
# https://developers.google.com/open-source/licenses/bsd
{
'includes': [
'../../common.gypi',
],
'targets': [
{
'target_name': 'filters',
'type': '<(component)',
'sources': [
'avc_decoder_configuration.cc',
'avc_decoder_configuration.h',
'decoder_configuration.cc',
'decoder_configuration.h',
'ec3_audio_util.cc',
'ec3_audio_util.h',
'h264_byte_to_unit_stream_converter.cc',
'h264_byte_to_unit_stream_converter.h',
'h264_parser.cc',
'h264_parser.h',
'h265_byte_to_unit_stream_converter.cc',
'h265_byte_to_unit_stream_converter.h',
'h265_parser.cc',
'h265_parser.h',
'h26x_bit_reader.cc',
'h26x_bit_reader.h',
'h26x_byte_to_unit_stream_converter.cc',
'h26x_byte_to_unit_stream_converter.h',
'hevc_decoder_configuration.cc',
'hevc_decoder_configuration.h',
'nal_unit_to_byte_stream_converter.cc',
'nal_unit_to_byte_stream_converter.h',
'nalu_reader.cc',
'nalu_reader.h',
'vp_codec_configuration.cc',
'vp_codec_configuration.h',
'vp8_parser.cc',
'vp8_parser.h',
'vp9_parser.cc',
'vp9_parser.h',
'vpx_parser.h',
],
'dependencies': [
'../../base/base.gyp:base',
],
},
{
'target_name': 'filters_unittest',
'type': '<(gtest_target_type)',
'sources': [
'avc_decoder_configuration_unittest.cc',
'ec3_audio_util_unittest.cc',
'h264_byte_to_unit_stream_converter_unittest.cc',
'h264_parser_unittest.cc',
'h265_byte_to_unit_stream_converter_unittest.cc',
'h265_parser_unittest.cc',
'h26x_bit_reader_unittest.cc',
'hevc_decoder_configuration_unittest.cc',
'nal_unit_to_byte_stream_converter_unittest.cc',
'nalu_reader_unittest.cc',
'vp_codec_configuration_unittest.cc',
'vp8_parser_unittest.cc',
'vp9_parser_unittest.cc',
],
'dependencies': [
'../../media/base/media_base.gyp:media_base',
'../../testing/gmock.gyp:gmock',
'../../testing/gtest.gyp:gtest',
'../test/media_test.gyp:media_test_support',
'filters',
],
},
],
}
| {'includes': ['../../common.gypi'], 'targets': [{'target_name': 'filters', 'type': '<(component)', 'sources': ['avc_decoder_configuration.cc', 'avc_decoder_configuration.h', 'decoder_configuration.cc', 'decoder_configuration.h', 'ec3_audio_util.cc', 'ec3_audio_util.h', 'h264_byte_to_unit_stream_converter.cc', 'h264_byte_to_unit_stream_converter.h', 'h264_parser.cc', 'h264_parser.h', 'h265_byte_to_unit_stream_converter.cc', 'h265_byte_to_unit_stream_converter.h', 'h265_parser.cc', 'h265_parser.h', 'h26x_bit_reader.cc', 'h26x_bit_reader.h', 'h26x_byte_to_unit_stream_converter.cc', 'h26x_byte_to_unit_stream_converter.h', 'hevc_decoder_configuration.cc', 'hevc_decoder_configuration.h', 'nal_unit_to_byte_stream_converter.cc', 'nal_unit_to_byte_stream_converter.h', 'nalu_reader.cc', 'nalu_reader.h', 'vp_codec_configuration.cc', 'vp_codec_configuration.h', 'vp8_parser.cc', 'vp8_parser.h', 'vp9_parser.cc', 'vp9_parser.h', 'vpx_parser.h'], 'dependencies': ['../../base/base.gyp:base']}, {'target_name': 'filters_unittest', 'type': '<(gtest_target_type)', 'sources': ['avc_decoder_configuration_unittest.cc', 'ec3_audio_util_unittest.cc', 'h264_byte_to_unit_stream_converter_unittest.cc', 'h264_parser_unittest.cc', 'h265_byte_to_unit_stream_converter_unittest.cc', 'h265_parser_unittest.cc', 'h26x_bit_reader_unittest.cc', 'hevc_decoder_configuration_unittest.cc', 'nal_unit_to_byte_stream_converter_unittest.cc', 'nalu_reader_unittest.cc', 'vp_codec_configuration_unittest.cc', 'vp8_parser_unittest.cc', 'vp9_parser_unittest.cc'], 'dependencies': ['../../media/base/media_base.gyp:media_base', '../../testing/gmock.gyp:gmock', '../../testing/gtest.gyp:gtest', '../test/media_test.gyp:media_test_support', 'filters']}]} |
def no_teen_sum(a, b, c):
retSum = 0
for i in [a, b, c]:
if i <= 19 and i >= 13 and i != 15 and i != 16:
continue
retSum += i
return retSum
| def no_teen_sum(a, b, c):
ret_sum = 0
for i in [a, b, c]:
if i <= 19 and i >= 13 and (i != 15) and (i != 16):
continue
ret_sum += i
return retSum |
def func():
yield 1
yield 2
yield 3
def main():
for item in func():
print(item)
# print(func()) #<generator object func at 0x7f227f3ae3b8>
obj1 = (1,2,3,)
obj = (i for i in range(10))
print (obj)
# print(obj[1]) # 'generator' object is not subscriptable
obj2 = [i for i in range(10)]
print(obj2)
print(obj2[1]) # Works absolutely fine
mygenerator = (x*x for x in range(3))
print(mygenerator)
print('-------')
print('Iterate A Generator')
print('-------')
for item in obj:
print(item)
print('-------')
print('Again!!!')
print('-------')
for item in obj:
print(item) # Prints nothing
if __name__ == '__main__':
main()
| def func():
yield 1
yield 2
yield 3
def main():
for item in func():
print(item)
obj1 = (1, 2, 3)
obj = (i for i in range(10))
print(obj)
obj2 = [i for i in range(10)]
print(obj2)
print(obj2[1])
mygenerator = (x * x for x in range(3))
print(mygenerator)
print('-------')
print('Iterate A Generator')
print('-------')
for item in obj:
print(item)
print('-------')
print('Again!!!')
print('-------')
for item in obj:
print(item)
if __name__ == '__main__':
main() |
def is_palindrome(str, length):
is_pali = True
length -= 1
for i in range (0, length//2):
if (str[i] != str[length - i]):
is_pali = False
break
return is_pali
str = input('please enter a string\n')
message = "Palindrome!" if is_palindrome(str, len(str)) else "not pali"
print (message) | def is_palindrome(str, length):
is_pali = True
length -= 1
for i in range(0, length // 2):
if str[i] != str[length - i]:
is_pali = False
break
return is_pali
str = input('please enter a string\n')
message = 'Palindrome!' if is_palindrome(str, len(str)) else 'not pali'
print(message) |
# TODO -- co.api.InvalidResponse is used in (client) public code. This should
# move to private.
class ClientError(Exception):
def __init__(self, status_code, message):
Exception.__init__(self)
self.status_code = status_code
self.message = message
def to_dict(self):
return {"message": self.message}
| class Clienterror(Exception):
def __init__(self, status_code, message):
Exception.__init__(self)
self.status_code = status_code
self.message = message
def to_dict(self):
return {'message': self.message} |
groups_dict = {
-1001384861110: "expresses"
}
log_file = "logs.log"
database_file = "Couples.sqlite"
couples_delta = 60 * 60 * 4
| groups_dict = {-1001384861110: 'expresses'}
log_file = 'logs.log'
database_file = 'Couples.sqlite'
couples_delta = 60 * 60 * 4 |
class Solution:
def reverseStr(self, s: str, k: int) -> str:
if not s or not k or k < 0:
return ""
s = list(s)
for i in range(0, len(s), 2 * k):
s[i: i+k] = reversed(s[i:i+k])
return ''.join(s)
| class Solution:
def reverse_str(self, s: str, k: int) -> str:
if not s or not k or k < 0:
return ''
s = list(s)
for i in range(0, len(s), 2 * k):
s[i:i + k] = reversed(s[i:i + k])
return ''.join(s) |
d1, d2 = map(int, input().split())
s = d1 + d2
dic = {}
for i in range(2, s + 1):
dic[i] = 0
for i in range(1, d1 + 1):
for j in range(1, d2 + 1):
dic[i + j] += 1
top = 0
out = []
for key in dic:
if dic[key] == top:
out.append(key)
elif dic[key] > top:
top = dic[key]
out = []
out.append(key)
else: continue
for i in out:
print(i) | (d1, d2) = map(int, input().split())
s = d1 + d2
dic = {}
for i in range(2, s + 1):
dic[i] = 0
for i in range(1, d1 + 1):
for j in range(1, d2 + 1):
dic[i + j] += 1
top = 0
out = []
for key in dic:
if dic[key] == top:
out.append(key)
elif dic[key] > top:
top = dic[key]
out = []
out.append(key)
else:
continue
for i in out:
print(i) |
'''
PARTIAL DEARRANGEMENTS
A partial dearrangement is a dearrangement where some points are
fixed. That is, given a number n and a number k, we need to find
count of all such dearrangements of n numbers, where k numbers are
fixed in their position.
'''
mod = 1000000007
def nCr(n, r, mod):
if n < r:
return -1
# We create a pascal triangle.
Pascal = []
Pascal.append(1)
for i in range(0, r):
Pascal.append(0)
# We use the known formula nCr = (n-1)C(r) + (n-1)C(r-1)
# for computing the values.
for i in range(0, n + 1):
k = ((i) if (i < r) else (r))
# We know, nCr = nC(n-r). Thus, at any point we only need min
# of the two, so as to improve our computation time.
for j in range(k, 0, -1):
Pascal[j] = (Pascal[j] + Pascal[j - 1]) % mod
return Pascal[r]
def count(n, k):
if k == 0:
if n == 0:
return 1
if n == 1:
return 0
return (n - 1) * (count(n - 1, 0) + count(n - 2, 0))
return nCr(n, k, mod) * count(n - k, 0)
number = int(input())
k = int(input())
dearrangements = count(number, k)
print("The number of partial dearrangements is", dearrangements)
'''
INPUT : n = 6
k = 3
OUTPUT: The number of partial dearrangements is 40
'''
| """
PARTIAL DEARRANGEMENTS
A partial dearrangement is a dearrangement where some points are
fixed. That is, given a number n and a number k, we need to find
count of all such dearrangements of n numbers, where k numbers are
fixed in their position.
"""
mod = 1000000007
def n_cr(n, r, mod):
if n < r:
return -1
pascal = []
Pascal.append(1)
for i in range(0, r):
Pascal.append(0)
for i in range(0, n + 1):
k = i if i < r else r
for j in range(k, 0, -1):
Pascal[j] = (Pascal[j] + Pascal[j - 1]) % mod
return Pascal[r]
def count(n, k):
if k == 0:
if n == 0:
return 1
if n == 1:
return 0
return (n - 1) * (count(n - 1, 0) + count(n - 2, 0))
return n_cr(n, k, mod) * count(n - k, 0)
number = int(input())
k = int(input())
dearrangements = count(number, k)
print('The number of partial dearrangements is', dearrangements)
'\nINPUT : n = 6\n k = 3\nOUTPUT: The number of partial dearrangements is 40\n' |
#!/usr/bin/env python3
class Color():
black = "\u001b[30m"
red = "\u001b[31m"
green = "\u001b[32m"
yellow = "\u001b[33m"
blue = "\u001b[34m"
magenta = "\u001b[35m"
cyan = "\u001b[36m"
white = "\u001b[37m"
reset = "\u001b[0m"
| class Color:
black = '\x1b[30m'
red = '\x1b[31m'
green = '\x1b[32m'
yellow = '\x1b[33m'
blue = '\x1b[34m'
magenta = '\x1b[35m'
cyan = '\x1b[36m'
white = '\x1b[37m'
reset = '\x1b[0m' |
# Classic crab rave text filter
def apply_filter(input_stream, overlay_text, font_file, font_color, font_size):
text_lines = overlay_text.split("\n")
text_shadow = int(font_size / 16)
# ffmpeg does not support multiline text with vertical align
if len(text_lines) >= 2:
video_stream = input_stream.video.drawtext(
x="(w-text_w)/2",
y="(h-text_h)/2-text_h",
text=text_lines[0],
fontfile=font_file,
fontcolor=font_color,
fontsize=font_size,
shadowcolor="black@0.6",
shadowx=str(text_shadow),
shadowy=str(text_shadow)
).drawtext(
x="(w-text_w)/2",
y="(h-text_h)/2+text_h",
text=text_lines[1],
fontfile=font_file,
fontcolor=font_color,
fontsize=font_size,
shadowcolor="black@0.6",
shadowx=str(text_shadow),
shadowy=str(text_shadow)
)
else:
video_stream = input_stream.video.drawtext(
x="(w-text_w)/2",
y="(h-text_h)/2",
text=overlay_text,
fontfile=font_file,
fontcolor=font_color,
fontsize=font_size,
shadowcolor="black@0.6",
shadowx=str(text_shadow),
shadowy=str(text_shadow)
)
return video_stream
| def apply_filter(input_stream, overlay_text, font_file, font_color, font_size):
text_lines = overlay_text.split('\n')
text_shadow = int(font_size / 16)
if len(text_lines) >= 2:
video_stream = input_stream.video.drawtext(x='(w-text_w)/2', y='(h-text_h)/2-text_h', text=text_lines[0], fontfile=font_file, fontcolor=font_color, fontsize=font_size, shadowcolor='black@0.6', shadowx=str(text_shadow), shadowy=str(text_shadow)).drawtext(x='(w-text_w)/2', y='(h-text_h)/2+text_h', text=text_lines[1], fontfile=font_file, fontcolor=font_color, fontsize=font_size, shadowcolor='black@0.6', shadowx=str(text_shadow), shadowy=str(text_shadow))
else:
video_stream = input_stream.video.drawtext(x='(w-text_w)/2', y='(h-text_h)/2', text=overlay_text, fontfile=font_file, fontcolor=font_color, fontsize=font_size, shadowcolor='black@0.6', shadowx=str(text_shadow), shadowy=str(text_shadow))
return video_stream |
class ElementableError(Exception):
pass
class InvalidElementError(KeyError, ElementableError):
def __init__(self, msg):
msg = f"Element {msg} is not supported"
super().__init__(msg)
| class Elementableerror(Exception):
pass
class Invalidelementerror(KeyError, ElementableError):
def __init__(self, msg):
msg = f'Element {msg} is not supported'
super().__init__(msg) |
NTIPAliasFlag = {}
NTIPAliasFlag["identified"]="0x10"
NTIPAliasFlag["eth"]="0x400000"
NTIPAliasFlag["ethereal"]="0x400000"
NTIPAliasFlag["runeword"]="0x4000000"
| ntip_alias_flag = {}
NTIPAliasFlag['identified'] = '0x10'
NTIPAliasFlag['eth'] = '0x400000'
NTIPAliasFlag['ethereal'] = '0x400000'
NTIPAliasFlag['runeword'] = '0x4000000' |
for _ in range(int(input())):
word = input()
if len(word) > 10:
print(word[0]+str(len(word)-2)+word[-1])
else:
print(word) | for _ in range(int(input())):
word = input()
if len(word) > 10:
print(word[0] + str(len(word) - 2) + word[-1])
else:
print(word) |
xmin, ymin, xmax, ymax = 100, 100, 1000, 800
# Bit code (0001, 0010, 0100, 1000 and 0000)
LEFT, RIGHT, BOT, TOP = 1, 2, 4, 8
INSIDE = 0
print(f"Xmin: {xmin}\nYmin: {ymin}\nXmax: {xmax}\nYmax: {ymax}")
x1 = float(input("Enter x: "))
y1 = float(input("Enter y: "))
x2 = float(input("Enter x2: "))
y2 = float(input("Enter y2: "))
# Compute code, doing OR operation according
# the position of x,y
def computeCode(x, y):
code = INSIDE
if x < xmin:
code |= LEFT
elif x > xmax:
code |= RIGHT
if y < ymin:
code |= BOT
elif y > ymax:
code |= TOP
return code
# Clipping line process
def cohenSuthClip(x1, y1, x2, y2):
# Compute region code
code1 = computeCode(x1, y1)
code2 = computeCode(x2, y2)
accept = False
while True:
# If both endpoints lie within clip bounds
if code1 == 0 and code2 == 0:
accept = True
break
# If both endpoints are outside clip bounds
elif (code1 & code2) != 0:
break
# Some inside and some outside
else:
# Clip process needed
# At least one point is outside clip
x = 1.
y = 1.
code_out = code1 if code1 != 0 else code2
# Find intersection point
# F(y) => y = y1 + slope * (x - x1),
# F(x) => x = x1 + (1 / slope) * (y - y1)
if code_out & TOP:
# point is above xmax
x = x1 + (x2 - x1) * (ymax - y1) / (y2 - y1)
y = ymax
elif code_out & BOT:
# point is below clip
x = x1 + (x2 - x1) * (ymin - y1) / (x2 - x1)
y = ymin
elif code_out & LEFT:
# point is to the left of the clip
y = y1 + (y2 - y1) * (xmin - x1) / (x2 - x1)
x = xmin
elif code_out & RIGHT:
# point is to the right of the clip
y = y1 + (y2 - y1) * (xmax - x1) / (x2 - x1)
x = xmax
# intersection point x,y is set now
# replace point outside clipping bounds
# by recently found intersection point
if code_out == code1:
x1 = x
y1 = y
code1 = computeCode(x1, y1)
else:
x2 = x
y2 = y
code2 = computeCode(x2, y2)
if accept:
print(f"Line accepted from {x1}, {y1}, {x2}, {y2}")
else:
print("Line rejected")
cohenSuthClip(x1, y1, x2, y2)
| (xmin, ymin, xmax, ymax) = (100, 100, 1000, 800)
(left, right, bot, top) = (1, 2, 4, 8)
inside = 0
print(f'Xmin: {xmin}\nYmin: {ymin}\nXmax: {xmax}\nYmax: {ymax}')
x1 = float(input('Enter x: '))
y1 = float(input('Enter y: '))
x2 = float(input('Enter x2: '))
y2 = float(input('Enter y2: '))
def compute_code(x, y):
code = INSIDE
if x < xmin:
code |= LEFT
elif x > xmax:
code |= RIGHT
if y < ymin:
code |= BOT
elif y > ymax:
code |= TOP
return code
def cohen_suth_clip(x1, y1, x2, y2):
code1 = compute_code(x1, y1)
code2 = compute_code(x2, y2)
accept = False
while True:
if code1 == 0 and code2 == 0:
accept = True
break
elif code1 & code2 != 0:
break
else:
x = 1.0
y = 1.0
code_out = code1 if code1 != 0 else code2
if code_out & TOP:
x = x1 + (x2 - x1) * (ymax - y1) / (y2 - y1)
y = ymax
elif code_out & BOT:
x = x1 + (x2 - x1) * (ymin - y1) / (x2 - x1)
y = ymin
elif code_out & LEFT:
y = y1 + (y2 - y1) * (xmin - x1) / (x2 - x1)
x = xmin
elif code_out & RIGHT:
y = y1 + (y2 - y1) * (xmax - x1) / (x2 - x1)
x = xmax
if code_out == code1:
x1 = x
y1 = y
code1 = compute_code(x1, y1)
else:
x2 = x
y2 = y
code2 = compute_code(x2, y2)
if accept:
print(f'Line accepted from {x1}, {y1}, {x2}, {y2}')
else:
print('Line rejected')
cohen_suth_clip(x1, y1, x2, y2) |
class Solution(object):
def firstMissingPositive(self, nums):
size = len(nums)
for i in range(size):
v = nums[i]
if v<1 or v > size:
nums[i]=size+10
for i in range(size):
v = abs(nums[i])
if v >0 and v<=size and nums[v-1]>0:
nums[v-1] = -nums[v-1]
for i in range(size):
if nums[i] >=0:
return i+1
return size + 1
def test():
s = Solution()
a=[1,2,7,8,3,9,11,12]
a=[1,2,3]
a=[1,2,3,0]
a=[1,1]
a=[1,2,0]
a=[0,1,2]
a=[1]
print(a)
r = s.firstMissingPositive(a)
print(a)
print(r)
test()
| class Solution(object):
def first_missing_positive(self, nums):
size = len(nums)
for i in range(size):
v = nums[i]
if v < 1 or v > size:
nums[i] = size + 10
for i in range(size):
v = abs(nums[i])
if v > 0 and v <= size and (nums[v - 1] > 0):
nums[v - 1] = -nums[v - 1]
for i in range(size):
if nums[i] >= 0:
return i + 1
return size + 1
def test():
s = solution()
a = [1, 2, 7, 8, 3, 9, 11, 12]
a = [1, 2, 3]
a = [1, 2, 3, 0]
a = [1, 1]
a = [1, 2, 0]
a = [0, 1, 2]
a = [1]
print(a)
r = s.firstMissingPositive(a)
print(a)
print(r)
test() |
{
"targets": [
{
"target_name": "index"
}
]
} | {'targets': [{'target_name': 'index'}]} |
def countingSort(array):
size = len(array)
output = [0] * size
count = [0] * 10
for i in range(0, size):
count[array[i]] += 1
for j in range(1,10):
count[j] += count[j-1]
a = size-1
while a >= 0:
output[count[array[a]]-1] = array[a]
count[array[a]] -= 1
a -= 1
return output
unsorted_array = [4,2,2,2,8,8,3,3,1,7]
sorted_array=countingSort(unsorted_array)
print('Sorted Array:',sorted_array)
## OUTPUT:
'''
Sorted Array: [1, 2, 2, 2, 3, 3, 4, 7, 8, 8]
''' | def counting_sort(array):
size = len(array)
output = [0] * size
count = [0] * 10
for i in range(0, size):
count[array[i]] += 1
for j in range(1, 10):
count[j] += count[j - 1]
a = size - 1
while a >= 0:
output[count[array[a]] - 1] = array[a]
count[array[a]] -= 1
a -= 1
return output
unsorted_array = [4, 2, 2, 2, 8, 8, 3, 3, 1, 7]
sorted_array = counting_sort(unsorted_array)
print('Sorted Array:', sorted_array)
'\nSorted Array: [1, 2, 2, 2, 3, 3, 4, 7, 8, 8]\n\n' |
# Uses python3
def calc_fib(n):
fib_nums = []
fib_nums.append(0)
fib_nums.append(1)
for i in range(2, n + 1):
fib_nums.append(fib_nums[i - 1] + fib_nums[i - 2])
return fib_nums[n]
n = int(input())
print(calc_fib(n))
| def calc_fib(n):
fib_nums = []
fib_nums.append(0)
fib_nums.append(1)
for i in range(2, n + 1):
fib_nums.append(fib_nums[i - 1] + fib_nums[i - 2])
return fib_nums[n]
n = int(input())
print(calc_fib(n)) |
#Narcissistic Number: (find all this kinds of number fromm 100~999)
#example: 153 = 1**3 + 5**3 + 3**3
#................method 1............................
# for x in range(100, 1000):
# digit_3 = x//100
# digit_2 = x%100//10
# digit_1 = x%10
# if x == digit_3**3 + digit_2**3 + digit_1**3:
# print (x)
#................method 2............................
# for x in range(100,1000):
# s=str(x)
# digit_3 = int(s[0])
# digit_2 = int(s[1])
# digit_1 = int(s[2])
# if x == digit_3**3 + digit_2**3 + digit_1**3:
# print (x)
#................method 3............................
for digit_3 in range(1, 10):
for digit_2 in range(10):
for digit_1 in range (10):
x = 100*digit_3 + 10*digit_2 + digit_1
if x == digit_3**3 + digit_2**3 + digit_1**3:
print (x) | for digit_3 in range(1, 10):
for digit_2 in range(10):
for digit_1 in range(10):
x = 100 * digit_3 + 10 * digit_2 + digit_1
if x == digit_3 ** 3 + digit_2 ** 3 + digit_1 ** 3:
print(x) |
status = True
print(status)
print(type(status))
status = False
print(status)
print(type(status))
soda = 'coke'
print(soda == 'coke')
print(soda == 'pepsi')
print(soda == 'Coke')
print(soda != 'root beer')
names = ['mike', 'john', 'mary']
mike_status = 'mike' in names
bill_status = 'bill' in names
print(mike_status)
print(bill_status)
not_bill_status = 'bill' not in names
print(not_bill_status) | status = True
print(status)
print(type(status))
status = False
print(status)
print(type(status))
soda = 'coke'
print(soda == 'coke')
print(soda == 'pepsi')
print(soda == 'Coke')
print(soda != 'root beer')
names = ['mike', 'john', 'mary']
mike_status = 'mike' in names
bill_status = 'bill' in names
print(mike_status)
print(bill_status)
not_bill_status = 'bill' not in names
print(not_bill_status) |
def pytest_assertrepr_compare(op, left, right):
# add one more line for "assert ..."
return (
['']
+ ['---']
+ ['> ' + _.text for _ in left]
+ ['---']
+ ['> ' + _.text for _ in right]
)
def pytest_addoption(parser):
parser.addoption('--int', type='int')
def pytest_generate_tests(metafunc):
if 'int_test' in metafunc.fixturenames:
tests = []
count = metafunc.config.getoption('int')
if count:
tests = metafunc.module.int_tests(count)
metafunc.parametrize('int_test', tests)
| def pytest_assertrepr_compare(op, left, right):
return [''] + ['---'] + ['> ' + _.text for _ in left] + ['---'] + ['> ' + _.text for _ in right]
def pytest_addoption(parser):
parser.addoption('--int', type='int')
def pytest_generate_tests(metafunc):
if 'int_test' in metafunc.fixturenames:
tests = []
count = metafunc.config.getoption('int')
if count:
tests = metafunc.module.int_tests(count)
metafunc.parametrize('int_test', tests) |
def solution(s):
answer = []
str_idx = 0
for cont in s:
if cont.isalpha() == True:
if str_idx % 2 == 0:
answer.append(cont.upper())
else:
answer.append(cont.lower())
str_idx = str_idx + 1
else:
if cont == ' ':
str_idx = 0
answer.append(cont)
return ''.join(answer) | def solution(s):
answer = []
str_idx = 0
for cont in s:
if cont.isalpha() == True:
if str_idx % 2 == 0:
answer.append(cont.upper())
else:
answer.append(cont.lower())
str_idx = str_idx + 1
else:
if cont == ' ':
str_idx = 0
answer.append(cont)
return ''.join(answer) |
MAX_ROWS_DISPLAYABLE = 60
MAX_COLS_DISPLAYABLE = 80
cmap_freq = 'viridis'
cmap_grouping = 'copper' # 'Greys'
grouping_text_color = 'white'
grouping_text_color_background = 'grey'
grouping_fontweight = 'bold'
| max_rows_displayable = 60
max_cols_displayable = 80
cmap_freq = 'viridis'
cmap_grouping = 'copper'
grouping_text_color = 'white'
grouping_text_color_background = 'grey'
grouping_fontweight = 'bold' |
class AccelerationException(Exception):
def __init__(self, message='This is neither acceleration nor deceleration... Go away and program Java, BooN'):
self.message = message
super().__init__(self.message)
class NoMemberException(Exception):
def __init__(self, message='This truck is not a convoy member'):
self.message = message
super().__init__(self.message)
class TruckBrokenException(Exception):
def __init__(self, message='A broken truck can\'t do this'):
self.message = message
super().__init__(self.message)
| class Accelerationexception(Exception):
def __init__(self, message='This is neither acceleration nor deceleration... Go away and program Java, BooN'):
self.message = message
super().__init__(self.message)
class Nomemberexception(Exception):
def __init__(self, message='This truck is not a convoy member'):
self.message = message
super().__init__(self.message)
class Truckbrokenexception(Exception):
def __init__(self, message="A broken truck can't do this"):
self.message = message
super().__init__(self.message) |
class InvalidValueError(Exception):
pass
class NotFoundError(Exception):
pass
| class Invalidvalueerror(Exception):
pass
class Notfounderror(Exception):
pass |
c = get_config()
c.ContentsManager.root_dir = "/root/"
c.NotebookApp.allow_root = True
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
# Comment out this line or first hash your own password
#c.NotebookApp.password = u'sha1:1234567abcdefghi'
c.ContentsManager.allow_hidden = True
| c = get_config()
c.ContentsManager.root_dir = '/root/'
c.NotebookApp.allow_root = True
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
c.ContentsManager.allow_hidden = True |
r,c=map(int,input('enter number of rows and columns of matrix: ').split())
m1=[]
m2=[]
a=[]
print('<<<<< enter element of matrix1 >>>>>')
for i in range(r):
l=[]
for j in range(c):
l.append(int(input(f"enter in m1[{i}][{j}]: ")))
m1.append(l)
print('<<<<< enter element of matrix2 >>>>>')
for i in range(r):
l=[]
for j in range(c):
l.append(int(input(f"enter in m2[{i}][{j}]: ")))
m2.append(l)
#addition of two matrix
print('<<<<< addition of two matrix >>>>>')
for i in range(r):
l=[]
for j in range(c):
l.append(int(m1[i][j])+int(m2[i][j]))
a.append(l)
print(a)
'''
output:
enter number of rows and columns of matrix: 2 2
<<<<< enter element of matrix1 >>>>>
enter in m1[0][0]: 21
enter in m1[0][1]: 22
enter in m1[1][0]: 23
enter in m1[1][1]: 24
<<<<< enter element of matrix2 >>>>>
enter in m2[0][0]: 1
enter in m2[0][1]: 2
enter in m2[1][0]: 3
enter in m2[1][1]: 4
<<<<< addition of two matrix >>>>>
[[22, 24], [26, 28]]
'''
| (r, c) = map(int, input('enter number of rows and columns of matrix: ').split())
m1 = []
m2 = []
a = []
print('<<<<< enter element of matrix1 >>>>>')
for i in range(r):
l = []
for j in range(c):
l.append(int(input(f'enter in m1[{i}][{j}]: ')))
m1.append(l)
print('<<<<< enter element of matrix2 >>>>>')
for i in range(r):
l = []
for j in range(c):
l.append(int(input(f'enter in m2[{i}][{j}]: ')))
m2.append(l)
print('<<<<< addition of two matrix >>>>>')
for i in range(r):
l = []
for j in range(c):
l.append(int(m1[i][j]) + int(m2[i][j]))
a.append(l)
print(a)
'\noutput:\nenter number of rows and columns of matrix: 2 2\n<<<<< enter element of matrix1 >>>>>\nenter in m1[0][0]: 21\nenter in m1[0][1]: 22\nenter in m1[1][0]: 23\nenter in m1[1][1]: 24\n<<<<< enter element of matrix2 >>>>>\nenter in m2[0][0]: 1\nenter in m2[0][1]: 2\nenter in m2[1][0]: 3\nenter in m2[1][1]: 4\n<<<<< addition of two matrix >>>>>\n[[22, 24], [26, 28]]\n' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.