content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
# TESTS FOR COLOURABLE
# graph with no vertices
g0 = Graph(0)
print(str(colourable(g0)) + "... should be TRUE")
# graph with one vertice (no edge)
g1 = Graph(1)
g1.matrix[0][0] = True
print(str(colourable(g1)) + "... should be FALSE")
# graph with one vertice (and edge)
g2 = Graph(1)
print(str(colourable(g2)) + "... should be TRUE")
# two vertices
g3 = Graph(2)
print(str(colourable(g3)) + "... should be TRUE")
g4 = Graph(2)
g4.matrix[0][0] = True
print(str(colourable(g4)) + "... should be FALSE")
g5 = Graph(2)
g5.matrix[0][1] = True
g5.matrix[1][0] = True
print(str(colourable(g5)) + "... should be TRUE")
g6 = Graph(2)
g6.matrix[1][1] = True
print(str(colourable(g6)) + "... should be FALSE")
# three vertices
g7 = Graph(3)
print(str(colourable(g7)) + "... should be TRUE")
g8 = Graph(3)
g8.matrix[0][1] = True
g8.matrix[1][0] = True
print(str(colourable(g8)) + "... should be TRUE")
g9 = Graph(3)
g9.matrix[0][1] = True
g9.matrix[1][0] = True
g9.matrix[2][2] = True
print(str(colourable(g9)) + "... should be FALSE")
g10 = Graph(3)
g10.matrix[0][1] = True
g10.matrix[1][0] = True
g10.matrix[0][2] = True
g10.matrix[2][0] = True
print(str(colourable(g10)) + "... should be TRUE")
g11 = Graph(3)
g11.matrix[0][1] = True
g11.matrix[1][0] = True
g11.matrix[0][2] = True
g11.matrix[2][0] = True
g11.matrix[2][2] = True
print(str(colourable(g11)) + "... should be FALSE")
g12 = Graph(3)
g12.matrix[0][1] = True
g12.matrix[1][0] = True
g12.matrix[0][2] = True
g12.matrix[2][0] = True
g12.matrix[2][1] = True
g12.matrix[1][2] = True
print(str(colourable(g12)) + "... should be FALSE")
g13 = Graph(3)
g13.matrix[0][2] = True
g13.matrix[1][2] = True
g13.matrix[2][0] = True
g13.matrix[2][1] = True
print(str(colourable(g13)) + "... should be TRUE")
g14 = Graph(4)
g14.matrix[0][1] = True
g14.matrix[0][2] = True
g14.matrix[1][3] = True
g14.matrix[2][3] = True
g14.matrix[1][0] = True
g14.matrix[2][0] = True
g14.matrix[3][1] = True
g14.matrix[3][2] = True
print(str(colourable(g14)) + "... should be TRUE")
#same graph as 14, but no backwards edges
g15 = Graph(4)
g15.matrix[0][1] = True
g15.matrix[0][2] = True
g15.matrix[1][3] = True
g15.matrix[2][3] = True
print(str(colourable(g15)) + "... should be TRUE")
g16 = Graph(6)
g16.matrix[0][1] = True
g16.matrix[0][2] = True
g16.matrix[1][3] = True
g16.matrix[2][3] = True
g16.matrix[1][0] = True
g16.matrix[2][0] = True
g16.matrix[3][1] = True
g16.matrix[3][2] = True
g16.matrix[4][5] = True
g16.matrix[5][4] = True
print(str(colourable(g16)) + "... should be TRUE")
g17 = Graph(4)
g17.matrix[0][1] = True
g17.matrix[1][0] = True
g17.matrix[1][3] = True
g17.matrix[3][1] = True
g17.matrix[2][3] = True
g17.matrix[3][2] = True
print(str(colourable(g17)) + "... should be TRUE")
g18 = Graph(5)
g18.matrix[4][3] = True
g18.matrix[4][1] = True
g18.matrix[1][0] = True
g18.matrix[0][2] = True
g18.matrix[2][4] = True
g18.matrix[4][2] = True
g18.matrix[2][0] = True
g18.matrix[0][1] = True
g18.matrix[1][4] = True
g18.matrix[3][4] = True
print(str(colourable(g18)) + "... should be TRUE")
g20 = Graph(4)
g20.matrix[3][0] = True
g20.matrix[0][1] = True
g20.matrix[0][2] = True
g20.matrix[0][3] = True
g20.matrix[1][0] = True
g20.matrix[2][0] = True
print(str(colourable(g20)) + "... should be TRUE")
# TEST FOR DEPENDENCY
g1 = Graph(0)
print(str(compute_dependencies(g1)) + " ... should be []")
g2 = Graph(1)
g2.matrix[0][0] = True
print(str(compute_dependencies(g2)) + " ... should be None")
g3 = Graph(3)
g3.matrix[0][1] = True
g3.matrix[2][0] = True
g3.matrix[2][1] = True
print(str(compute_dependencies(g3)) + " ... [2, 0, 1]")
g4 = Graph(3)
g4.matrix[1][2] = True
print(str(compute_dependencies(g4)) + " ... [0, 1, 2], [1, 0, 2], [1, 2, 0]")
g5 = Graph(4)
g5.matrix[0][1] = True
g5.matrix[2][3] = True
print(str(compute_dependencies(g5)) + " ... [2, 3, 0, 1], [0, 2, 1, 3]")
g6 = Graph(3)
g6.matrix[0][1] = True
g6.matrix[1][2] = True
g6.matrix[2][0] = True
print(str(compute_dependencies(g6)) + " ... None")
|
g0 = graph(0)
print(str(colourable(g0)) + '... should be TRUE')
g1 = graph(1)
g1.matrix[0][0] = True
print(str(colourable(g1)) + '... should be FALSE')
g2 = graph(1)
print(str(colourable(g2)) + '... should be TRUE')
g3 = graph(2)
print(str(colourable(g3)) + '... should be TRUE')
g4 = graph(2)
g4.matrix[0][0] = True
print(str(colourable(g4)) + '... should be FALSE')
g5 = graph(2)
g5.matrix[0][1] = True
g5.matrix[1][0] = True
print(str(colourable(g5)) + '... should be TRUE')
g6 = graph(2)
g6.matrix[1][1] = True
print(str(colourable(g6)) + '... should be FALSE')
g7 = graph(3)
print(str(colourable(g7)) + '... should be TRUE')
g8 = graph(3)
g8.matrix[0][1] = True
g8.matrix[1][0] = True
print(str(colourable(g8)) + '... should be TRUE')
g9 = graph(3)
g9.matrix[0][1] = True
g9.matrix[1][0] = True
g9.matrix[2][2] = True
print(str(colourable(g9)) + '... should be FALSE')
g10 = graph(3)
g10.matrix[0][1] = True
g10.matrix[1][0] = True
g10.matrix[0][2] = True
g10.matrix[2][0] = True
print(str(colourable(g10)) + '... should be TRUE')
g11 = graph(3)
g11.matrix[0][1] = True
g11.matrix[1][0] = True
g11.matrix[0][2] = True
g11.matrix[2][0] = True
g11.matrix[2][2] = True
print(str(colourable(g11)) + '... should be FALSE')
g12 = graph(3)
g12.matrix[0][1] = True
g12.matrix[1][0] = True
g12.matrix[0][2] = True
g12.matrix[2][0] = True
g12.matrix[2][1] = True
g12.matrix[1][2] = True
print(str(colourable(g12)) + '... should be FALSE')
g13 = graph(3)
g13.matrix[0][2] = True
g13.matrix[1][2] = True
g13.matrix[2][0] = True
g13.matrix[2][1] = True
print(str(colourable(g13)) + '... should be TRUE')
g14 = graph(4)
g14.matrix[0][1] = True
g14.matrix[0][2] = True
g14.matrix[1][3] = True
g14.matrix[2][3] = True
g14.matrix[1][0] = True
g14.matrix[2][0] = True
g14.matrix[3][1] = True
g14.matrix[3][2] = True
print(str(colourable(g14)) + '... should be TRUE')
g15 = graph(4)
g15.matrix[0][1] = True
g15.matrix[0][2] = True
g15.matrix[1][3] = True
g15.matrix[2][3] = True
print(str(colourable(g15)) + '... should be TRUE')
g16 = graph(6)
g16.matrix[0][1] = True
g16.matrix[0][2] = True
g16.matrix[1][3] = True
g16.matrix[2][3] = True
g16.matrix[1][0] = True
g16.matrix[2][0] = True
g16.matrix[3][1] = True
g16.matrix[3][2] = True
g16.matrix[4][5] = True
g16.matrix[5][4] = True
print(str(colourable(g16)) + '... should be TRUE')
g17 = graph(4)
g17.matrix[0][1] = True
g17.matrix[1][0] = True
g17.matrix[1][3] = True
g17.matrix[3][1] = True
g17.matrix[2][3] = True
g17.matrix[3][2] = True
print(str(colourable(g17)) + '... should be TRUE')
g18 = graph(5)
g18.matrix[4][3] = True
g18.matrix[4][1] = True
g18.matrix[1][0] = True
g18.matrix[0][2] = True
g18.matrix[2][4] = True
g18.matrix[4][2] = True
g18.matrix[2][0] = True
g18.matrix[0][1] = True
g18.matrix[1][4] = True
g18.matrix[3][4] = True
print(str(colourable(g18)) + '... should be TRUE')
g20 = graph(4)
g20.matrix[3][0] = True
g20.matrix[0][1] = True
g20.matrix[0][2] = True
g20.matrix[0][3] = True
g20.matrix[1][0] = True
g20.matrix[2][0] = True
print(str(colourable(g20)) + '... should be TRUE')
g1 = graph(0)
print(str(compute_dependencies(g1)) + ' ... should be []')
g2 = graph(1)
g2.matrix[0][0] = True
print(str(compute_dependencies(g2)) + ' ... should be None')
g3 = graph(3)
g3.matrix[0][1] = True
g3.matrix[2][0] = True
g3.matrix[2][1] = True
print(str(compute_dependencies(g3)) + ' ... [2, 0, 1]')
g4 = graph(3)
g4.matrix[1][2] = True
print(str(compute_dependencies(g4)) + ' ... [0, 1, 2], [1, 0, 2], [1, 2, 0]')
g5 = graph(4)
g5.matrix[0][1] = True
g5.matrix[2][3] = True
print(str(compute_dependencies(g5)) + ' ... [2, 3, 0, 1], [0, 2, 1, 3]')
g6 = graph(3)
g6.matrix[0][1] = True
g6.matrix[1][2] = True
g6.matrix[2][0] = True
print(str(compute_dependencies(g6)) + ' ... None')
|
class Solution:
def threeSum(self, nums: List[int]) -> List[List[int]]:
nums.sort()
ret = set()
for i, v in enumerate(nums):
j, k = i + 1, len(nums) - 1
while j < k:
if nums[j] + nums[k] == -v:
ret.add((v, nums[j], nums[k]))
if nums[j] + nums[k] > -v:
k -= 1
else:
j += 1
return list(map(lambda x: list(x), ret))
|
class Solution:
def three_sum(self, nums: List[int]) -> List[List[int]]:
nums.sort()
ret = set()
for (i, v) in enumerate(nums):
(j, k) = (i + 1, len(nums) - 1)
while j < k:
if nums[j] + nums[k] == -v:
ret.add((v, nums[j], nums[k]))
if nums[j] + nums[k] > -v:
k -= 1
else:
j += 1
return list(map(lambda x: list(x), ret))
|
'''
(C) Copyright 2021 Steven;
@author: Steven [email protected]
@date: 2021-06-30
'''
|
"""
(C) Copyright 2021 Steven;
@author: Steven [email protected]
@date: 2021-06-30
"""
|
with open('day13/input.txt', 'r') as file:
timestamp = int(file.readline())
data = str(file.readline()).split(',')
data_1 = [int(x) for x in data if x != 'x']
res = sorted([(x - timestamp % x, x) for x in data_1], key=lambda x: x[0])
data_2 = [(int(x), data.index(x)) for x in data if x != 'x']
superbus_time = data_2[0][0]
final_time = 0
for bus, remainder in data_2[1:]:
while (final_time + remainder) % bus != 0:
final_time += superbus_time
superbus_time *= bus
print(f"Result 1: {res[0][0] * res[0][1]}\nResult 2: {final_time}")
|
with open('day13/input.txt', 'r') as file:
timestamp = int(file.readline())
data = str(file.readline()).split(',')
data_1 = [int(x) for x in data if x != 'x']
res = sorted([(x - timestamp % x, x) for x in data_1], key=lambda x: x[0])
data_2 = [(int(x), data.index(x)) for x in data if x != 'x']
superbus_time = data_2[0][0]
final_time = 0
for (bus, remainder) in data_2[1:]:
while (final_time + remainder) % bus != 0:
final_time += superbus_time
superbus_time *= bus
print(f'Result 1: {res[0][0] * res[0][1]}\nResult 2: {final_time}')
|
#O(n) Space and time Complexity
# Maintain a frequency map as {prefix_Sum:frequency of this prefix sum}
# While looping the array:
#0. hash_map[current_prefix_sum] += 1
#1. If (current_prefix_sum - k) exists in the map, it means there is a subarray found hence increment the counter.
class Solution:
def subarraySum(self, nums: List[int], k: int) -> int:
D={}
D[0]=1
s=0
c=0
for i in range(len(nums)):
s=s+nums[i]
if s-k in D:
c += D[s-k]
if s in D:
D[s] += 1
else:
D[s]=1
return c
|
class Solution:
def subarray_sum(self, nums: List[int], k: int) -> int:
d = {}
D[0] = 1
s = 0
c = 0
for i in range(len(nums)):
s = s + nums[i]
if s - k in D:
c += D[s - k]
if s in D:
D[s] += 1
else:
D[s] = 1
return c
|
# Here's a challenge for you to help you practice
# See if you can fix the code below
# print the message
# There was a single quote inside the string!
# Use double quotes to enclose the string
print("Why won't this line of code print")
# print the message
# There was a mistake in the function name
print('This line fails too!')
# print the message
# Need to add the () around the string
print ("I think I know how to fix this one")
# print the name entered by the user
# You need to store the value returned by the input statement
# in a variable
name = input('Please tell me your name: ')
print(name)
|
print("Why won't this line of code print")
print('This line fails too!')
print('I think I know how to fix this one')
name = input('Please tell me your name: ')
print(name)
|
POST_ACTIONS = [
'oauth.getAccessToken',
'oauth.getRequestToken',
'oauth.verify',
'comment.digg',
'comment.bury',
'shorturl.create',
'story.bury',
'story.digg',
]
|
post_actions = ['oauth.getAccessToken', 'oauth.getRequestToken', 'oauth.verify', 'comment.digg', 'comment.bury', 'shorturl.create', 'story.bury', 'story.digg']
|
N = input()
before = ""
count = 1
for s in N:
if before == -1:
before = s
else:
if before == s:
count += 1
if count >= 3:
print("Yes")
exit()
else:
before = s
count = 1
print("No")
|
n = input()
before = ''
count = 1
for s in N:
if before == -1:
before = s
elif before == s:
count += 1
if count >= 3:
print('Yes')
exit()
else:
before = s
count = 1
print('No')
|
class Optimizer:
pass
class RandomRestartOptimizer(Optimizer):
def __init__(self, N=10):
self.N=N
|
class Optimizer:
pass
class Randomrestartoptimizer(Optimizer):
def __init__(self, N=10):
self.N = N
|
AUTH_USER_MODEL = 'users.User'
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
DJOSER = {
'HIDE_USERS': False,
'LOGIN_FIELD': 'email',
'SERIALIZERS': {
'user_create': 'users.api.serializers.UserCreateSerializer',
'user': 'users.api.serializers.UserSerializer',
'current_user': 'users.api.serializers.UserSerializer',
},
'PERMISSIONS': {
'user_list': ['rest_framework.permissions.AllowAny'],
'user': ['rest_framework.permissions.IsAuthenticated'],
},
}
|
auth_user_model = 'users.User'
auth_password_validators = [{'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'}, {'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator'}, {'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator'}, {'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator'}]
djoser = {'HIDE_USERS': False, 'LOGIN_FIELD': 'email', 'SERIALIZERS': {'user_create': 'users.api.serializers.UserCreateSerializer', 'user': 'users.api.serializers.UserSerializer', 'current_user': 'users.api.serializers.UserSerializer'}, 'PERMISSIONS': {'user_list': ['rest_framework.permissions.AllowAny'], 'user': ['rest_framework.permissions.IsAuthenticated']}}
|
class AlgorithmConfigurationProvider:
def __init__(self, chromosome_config, left_range_number, right_range_number, population_number,
epochs_number, selection_amount, elite_amount, selection_method, is_maximization):
self.__chromosome_config = chromosome_config
self.__left_range_number = left_range_number
self.__right_range_number = right_range_number
self.__variables_number = 2
self.__population_number = population_number
self.__epochs_number = epochs_number
self.__selection_amount = selection_amount
self.__elite_amount = elite_amount
self.__selection_method = selection_method
self.__is_maximization = is_maximization
@property
def left_range_number(self):
return self.__left_range_number
@property
def right_range_number(self):
return self.__right_range_number
@property
def population_number(self):
return self.__population_number
@property
def epochs_number(self):
return self.__epochs_number
@property
def variables_number(self):
return self.__variables_number
@property
def is_maximization(self):
return self.__is_maximization
@property
def chromosome_config(self):
return self.__chromosome_config
@property
def selection_method(self):
return self.__selection_method
@property
def selection_amount(self):
return self.__selection_amount
@property
def elite_amount(self):
return self.__elite_amount
|
class Algorithmconfigurationprovider:
def __init__(self, chromosome_config, left_range_number, right_range_number, population_number, epochs_number, selection_amount, elite_amount, selection_method, is_maximization):
self.__chromosome_config = chromosome_config
self.__left_range_number = left_range_number
self.__right_range_number = right_range_number
self.__variables_number = 2
self.__population_number = population_number
self.__epochs_number = epochs_number
self.__selection_amount = selection_amount
self.__elite_amount = elite_amount
self.__selection_method = selection_method
self.__is_maximization = is_maximization
@property
def left_range_number(self):
return self.__left_range_number
@property
def right_range_number(self):
return self.__right_range_number
@property
def population_number(self):
return self.__population_number
@property
def epochs_number(self):
return self.__epochs_number
@property
def variables_number(self):
return self.__variables_number
@property
def is_maximization(self):
return self.__is_maximization
@property
def chromosome_config(self):
return self.__chromosome_config
@property
def selection_method(self):
return self.__selection_method
@property
def selection_amount(self):
return self.__selection_amount
@property
def elite_amount(self):
return self.__elite_amount
|
def get_ids_and_classes(tag):
attrs = tag.attrs
if 'id' in attrs:
ids = attrs['id']
if isinstance(ids, list):
for subitem in ids:
yield subitem
else:
yield ids
if 'class' in attrs:
classes = attrs['class']
if isinstance(classes, list):
for subitem in classes:
yield subitem
else:
yield classes
|
def get_ids_and_classes(tag):
attrs = tag.attrs
if 'id' in attrs:
ids = attrs['id']
if isinstance(ids, list):
for subitem in ids:
yield subitem
else:
yield ids
if 'class' in attrs:
classes = attrs['class']
if isinstance(classes, list):
for subitem in classes:
yield subitem
else:
yield classes
|
def testHasMasterPrimary(nodeSet, up):
masterPrimaryCount = 0
for node in nodeSet:
masterPrimaryCount += int(node.monitor.hasMasterPrimary)
assert masterPrimaryCount == 1
|
def test_has_master_primary(nodeSet, up):
master_primary_count = 0
for node in nodeSet:
master_primary_count += int(node.monitor.hasMasterPrimary)
assert masterPrimaryCount == 1
|
###################################
# File Name : dir_normal_func.py
###################################
#!/usr/bin/python3
def normal_func():
pass
if __name__ == "__main__":
p = dir(normal_func())
print ("=== attribute ===")
print (p)
|
def normal_func():
pass
if __name__ == '__main__':
p = dir(normal_func())
print('=== attribute ===')
print(p)
|
dividendo=int(input("Dividendo: "))
divisor=int(input("Divisor: "))
if dividendo>0 and divisor>0:
cociente=0
residuo=dividendo
while (residuo>=divisor):
residuo-=divisor
cociente+=1
print(residuo)
print(cociente)
|
dividendo = int(input('Dividendo: '))
divisor = int(input('Divisor: '))
if dividendo > 0 and divisor > 0:
cociente = 0
residuo = dividendo
while residuo >= divisor:
residuo -= divisor
cociente += 1
print(residuo)
print(cociente)
|
class FunctionMetadata:
def __init__(self):
self._constantReturnValue = ()
def setConstantReturnValue(self, value):
self._constantReturnValue = (value,)
def hasConstantReturnValue(self):
return self._constantReturnValue
def getConstantReturnValue(self):
return self._constantReturnValue[0] if self._constantReturnValue else None
|
class Functionmetadata:
def __init__(self):
self._constantReturnValue = ()
def set_constant_return_value(self, value):
self._constantReturnValue = (value,)
def has_constant_return_value(self):
return self._constantReturnValue
def get_constant_return_value(self):
return self._constantReturnValue[0] if self._constantReturnValue else None
|
# https://www.codewars.com/kata/578553c3a1b8d5c40300037c/train/python
# Given an array of ones and zeroes, convert the equivalent binary value
# to an integer.
# Eg: [0, 0, 0, 1] is treated as 0001 which is the binary representation of 1.
# Examples:
# Testing: [0, 0, 0, 1] ==> 1
# Testing: [0, 0, 1, 0] ==> 2
# Testing: [0, 1, 0, 1] ==> 5
# Testing: [1, 0, 0, 1] ==> 9
# Testing: [0, 0, 1, 0] ==> 2
# Testing: [0, 1, 1, 0] ==> 6
# Testing: [1, 1, 1, 1] ==> 15
# Testing: [1, 0, 1, 1] ==> 11
# However, the arrays can have varying lengths, not just limited to 4.
def binary_array_to_number(arr):
total = 0
i = 1
for num in arr[::-1]:
total += i * num
i *= 2
return total
# Alternative:
# def binary_array_to_number(arr):
# return int("".join(
# map(str, arr)
# ), 2)
# def binary_array_to_number(arr):
# s = 0
# for digit in arr:
# s = s * 2 + digit
# return s
|
def binary_array_to_number(arr):
total = 0
i = 1
for num in arr[::-1]:
total += i * num
i *= 2
return total
|
class Solution:
def rob(self, nums: List[int]) -> int:
def rob(l: int, r: int) -> int:
dp1 = 0
dp2 = 0
for i in range(l, r + 1):
temp = dp1
dp1 = max(dp1, dp2 + nums[i])
dp2 = temp
return dp1
if not nums:
return 0
if len(nums) < 2:
return nums[0]
return max(rob(0, len(nums) - 2), rob(1, len(nums) - 1))
|
class Solution:
def rob(self, nums: List[int]) -> int:
def rob(l: int, r: int) -> int:
dp1 = 0
dp2 = 0
for i in range(l, r + 1):
temp = dp1
dp1 = max(dp1, dp2 + nums[i])
dp2 = temp
return dp1
if not nums:
return 0
if len(nums) < 2:
return nums[0]
return max(rob(0, len(nums) - 2), rob(1, len(nums) - 1))
|
array = ['a', 'b', 'c']
def decorator(func):
def newValueOf(pos):
if pos >= len(array):
print("Oops! Array index is out of range")
return
func(pos)
return newValueOf
@decorator
def valueOf(index):
print(array[index])
valueOf(10)
|
array = ['a', 'b', 'c']
def decorator(func):
def new_value_of(pos):
if pos >= len(array):
print('Oops! Array index is out of range')
return
func(pos)
return newValueOf
@decorator
def value_of(index):
print(array[index])
value_of(10)
|
numero = 5
fracao = 6.1
online = True
texto = "Armando"
|
numero = 5
fracao = 6.1
online = True
texto = 'Armando'
|
maior = 0
pos = 0
for i in range(1, 11):
val = int(input())
if val > maior:
maior = val
pos = i
print('{}\n{}'.format(maior, pos))
|
maior = 0
pos = 0
for i in range(1, 11):
val = int(input())
if val > maior:
maior = val
pos = i
print('{}\n{}'.format(maior, pos))
|
COUNT = 100
class Stack:
def __init__(self, value):
self.value = value;
self.next = None
def test():
top = None
for i in range(0, COUNT):
curr = Stack(f'Hello #{i}')
curr.next = top
top = curr
print(stackSize(top))
def stackSize(stack):
size = 0
if stack is not None:
size = stackSize(stack.next) + 1
return size
if __name__ == "__main__":
test()
|
count = 100
class Stack:
def __init__(self, value):
self.value = value
self.next = None
def test():
top = None
for i in range(0, COUNT):
curr = stack(f'Hello #{i}')
curr.next = top
top = curr
print(stack_size(top))
def stack_size(stack):
size = 0
if stack is not None:
size = stack_size(stack.next) + 1
return size
if __name__ == '__main__':
test()
|
'''
Author: Maciej Kaczkowski
26.03-13.04.2021
'''
# configuration file with constans, etc.
# using "reversi convention" - black has first move,
# hence BLACK is Max player, while WHITE is Min player
WHITE = -1
BLACK = 1
EMPTY = 0
# player's codenames
RANDOM = 'random'
ALGO = 'minmax'
# min-max parameters
MAX_DEPTH = 4
# cordinates for better readability
NORTHEAST = (-1, 1)
NORTH = (-1, 0)
NORTHWEST = (-1, -1)
WEST = (0, -1)
SOUTHWEST = (1, -1)
SOUTH = (1, 0)
SOUTHEAST = (1, 1)
EAST = (0, 1)
|
"""
Author: Maciej Kaczkowski
26.03-13.04.2021
"""
white = -1
black = 1
empty = 0
random = 'random'
algo = 'minmax'
max_depth = 4
northeast = (-1, 1)
north = (-1, 0)
northwest = (-1, -1)
west = (0, -1)
southwest = (1, -1)
south = (1, 0)
southeast = (1, 1)
east = (0, 1)
|
def replace_string_in_file(filepath, searched, replaced):
with open(filepath) as f:
file_source = f.read()
# replace all occurences
replace_string = file_source.replace(searched, replaced)
with open(filepath, "w") as f:
f.write(replace_string)
|
def replace_string_in_file(filepath, searched, replaced):
with open(filepath) as f:
file_source = f.read()
replace_string = file_source.replace(searched, replaced)
with open(filepath, 'w') as f:
f.write(replace_string)
|
class Fail(Exception):
pass
class InvalidArgument(Fail):
pass
|
class Fail(Exception):
pass
class Invalidargument(Fail):
pass
|
# -*- coding: utf-8 -*-
def main():
n = int(input())
a = list(map(int, input().split()))
inf = 1 << 30
ans = inf
for bit in range(1 << n - 1):
candidate = 0
inner = 0
for j in range(n):
inner |= a[j]
if (bit >> j) & 1:
candidate ^= inner
inner = 0
candidate ^= inner
ans = min(ans, candidate)
print(ans)
if __name__ == "__main__":
main()
|
def main():
n = int(input())
a = list(map(int, input().split()))
inf = 1 << 30
ans = inf
for bit in range(1 << n - 1):
candidate = 0
inner = 0
for j in range(n):
inner |= a[j]
if bit >> j & 1:
candidate ^= inner
inner = 0
candidate ^= inner
ans = min(ans, candidate)
print(ans)
if __name__ == '__main__':
main()
|
# Addition and subtraction
print(5 + 5)
print(5 - 5)
# Multiplication and division
print(3 * 5)
print(10 / 2)
# Exponentiation
print(4 ** 2)
# Modulo
print(18 % 7)
|
print(5 + 5)
print(5 - 5)
print(3 * 5)
print(10 / 2)
print(4 ** 2)
print(18 % 7)
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''A simple module to store the user's style preferences.'''
INDENT_PREFERENCE = {'indent': ' '}
def get_indent_preference():
'''str: How the user prefers their indentation. Default: " ".'''
return INDENT_PREFERENCE['indent']
def register_indent_preference(text):
'''Set indentation that will be used for multi-line function calls.'''
INDENT_PREFERENCE['indent'] = text
|
"""A simple module to store the user's style preferences."""
indent_preference = {'indent': ' '}
def get_indent_preference():
"""str: How the user prefers their indentation. Default: " "."""
return INDENT_PREFERENCE['indent']
def register_indent_preference(text):
"""Set indentation that will be used for multi-line function calls."""
INDENT_PREFERENCE['indent'] = text
|
'''
StaticRoute Genie Ops Object Outputs for IOSXE.
'''
class StaticRouteOutput(object):
# 'show ipv4 static route' output
showIpv4StaticRoute = {
'vrf': {
'VRF1': {
'address_family': {
'ipv4': {
'routes': {
'2.2.2.2/32': {
'route': '2.2.2.2/32',
'next_hop': {
'next_hop_list': {
1: {
'index': 1,
'active': True,
'next_hop': '10.1.2.2',
'outgoing_interface': 'GigabitEthernet0/0',
'preference': 1,
},
2: {
'index': 2,
'active': False,
'next_hop': '20.1.2.2',
'outgoing_interface': 'GigabitEthernet0/1',
'preference': 2,
},
3: {
'index': 3,
'active': False,
'next_hop': '20.1.2.2',
'preference': 3,
},
},
},
},
'3.3.3.3/32': {
'route': '3.3.3.3/32',
'next_hop': {
'outgoing_interface': {
'GigabitEthernet0/2': {
'active': True,
'outgoing_interface': 'GigabitEthernet0/2',
'preference': 1,
},
'GigabitEthernet0/3': {
'active': True,
'outgoing_interface': 'GigabitEthernet0/3',
'preference': 1,
},
},
},
},
},
},
},
},
},
}
showIpv6StaticRoute = {
'vrf': {
'default': {
'address_family': {
'ipv6': {
'routes': {
'2001:2:2:2::2/128': {
'route': '2001:2:2:2::2/128',
'next_hop': {
'next_hop_list': {
1: {
'index': 1,
'active': False,
'next_hop': '2001:10:1:2::2',
'resolved_outgoing_interface': 'GigabitEthernet0/0',
'resolved_paths_number': 1,
'max_depth': 1,
'preference': 3,
},
2: {
'index': 2,
'next_hop': '2001:20:1:2::2',
'active': True,
'outgoing_interface': 'GigabitEthernet0/1',
'preference': 1,
},
3: {
'index': 3,
'active': False,
'next_hop': '2001:10:1:2::2',
'outgoing_interface': 'GigabitEthernet0/0',
'rejected_by': 'routing table',
'preference': 11,
'tag': 100,
'track': 1,
'track_state': 'up',
},
},
},
},
'2001:3:3:3::3/128': {
'route': '2001:3:3:3::3/128',
'next_hop': {
'outgoing_interface': {
'GigabitEthernet0/3': {
'outgoing_interface': 'GigabitEthernet0/3',
'active': True,
'preference': 1,
},
'GigabitEthernet0/2': {
'outgoing_interface': 'GigabitEthernet0/2',
'active': True,
'preference': 1,
},
},
},
},
},
},
},
},
},
}
staticRouteOpsOutput = {
'vrf': {
'VRF1': {
'address_family': {
'ipv4': {
'routes': {
'2.2.2.2/32': {
'route': '2.2.2.2/32',
'next_hop': {
'next_hop_list': {
1: {
'index': 1,
'active': True,
'next_hop': '10.1.2.2',
'outgoing_interface': 'GigabitEthernet0/0',
'preference': 1,
},
2: {
'index': 2,
'active': False,
'next_hop': '20.1.2.2',
'outgoing_interface': 'GigabitEthernet0/1',
'preference': 2,
},
3: {
'index': 3,
'active': False,
'next_hop': '20.1.2.2',
'preference': 3,
},
},
},
},
'3.3.3.3/32': {
'route': '3.3.3.3/32',
'next_hop': {
'outgoing_interface': {
'GigabitEthernet0/2': {
'active': True,
'outgoing_interface': 'GigabitEthernet0/2',
'preference': 1,
},
'GigabitEthernet0/3': {
'active': True,
'outgoing_interface': 'GigabitEthernet0/3',
'preference': 1,
},
},
},
},
},
},
},
},
'default': {
'address_family': {
'ipv6': {
'routes': {
'2001:2:2:2::2/128': {
'route': '2001:2:2:2::2/128',
'next_hop': {
'next_hop_list': {
1: {
'index': 1,
'active': False,
'next_hop': '2001:10:1:2::2',
'preference': 3,
},
2: {
'index': 2,
'next_hop': '2001:20:1:2::2',
'active': True,
'outgoing_interface': 'GigabitEthernet0/1',
'preference': 1,
},
3: {
'index': 3,
'active': False,
'next_hop': '2001:10:1:2::2',
'outgoing_interface': 'GigabitEthernet0/0',
'preference': 11,
},
},
},
},
'2001:3:3:3::3/128': {
'route': '2001:3:3:3::3/128',
'next_hop': {
'outgoing_interface': {
'GigabitEthernet0/3': {
'outgoing_interface': 'GigabitEthernet0/3',
'active': True,
'preference': 1,
},
'GigabitEthernet0/2': {
'outgoing_interface': 'GigabitEthernet0/2',
'active': True,
'preference': 1,
},
},
},
},
},
},
},
},
},
}
|
"""
StaticRoute Genie Ops Object Outputs for IOSXE.
"""
class Staticrouteoutput(object):
show_ipv4_static_route = {'vrf': {'VRF1': {'address_family': {'ipv4': {'routes': {'2.2.2.2/32': {'route': '2.2.2.2/32', 'next_hop': {'next_hop_list': {1: {'index': 1, 'active': True, 'next_hop': '10.1.2.2', 'outgoing_interface': 'GigabitEthernet0/0', 'preference': 1}, 2: {'index': 2, 'active': False, 'next_hop': '20.1.2.2', 'outgoing_interface': 'GigabitEthernet0/1', 'preference': 2}, 3: {'index': 3, 'active': False, 'next_hop': '20.1.2.2', 'preference': 3}}}}, '3.3.3.3/32': {'route': '3.3.3.3/32', 'next_hop': {'outgoing_interface': {'GigabitEthernet0/2': {'active': True, 'outgoing_interface': 'GigabitEthernet0/2', 'preference': 1}, 'GigabitEthernet0/3': {'active': True, 'outgoing_interface': 'GigabitEthernet0/3', 'preference': 1}}}}}}}}}}
show_ipv6_static_route = {'vrf': {'default': {'address_family': {'ipv6': {'routes': {'2001:2:2:2::2/128': {'route': '2001:2:2:2::2/128', 'next_hop': {'next_hop_list': {1: {'index': 1, 'active': False, 'next_hop': '2001:10:1:2::2', 'resolved_outgoing_interface': 'GigabitEthernet0/0', 'resolved_paths_number': 1, 'max_depth': 1, 'preference': 3}, 2: {'index': 2, 'next_hop': '2001:20:1:2::2', 'active': True, 'outgoing_interface': 'GigabitEthernet0/1', 'preference': 1}, 3: {'index': 3, 'active': False, 'next_hop': '2001:10:1:2::2', 'outgoing_interface': 'GigabitEthernet0/0', 'rejected_by': 'routing table', 'preference': 11, 'tag': 100, 'track': 1, 'track_state': 'up'}}}}, '2001:3:3:3::3/128': {'route': '2001:3:3:3::3/128', 'next_hop': {'outgoing_interface': {'GigabitEthernet0/3': {'outgoing_interface': 'GigabitEthernet0/3', 'active': True, 'preference': 1}, 'GigabitEthernet0/2': {'outgoing_interface': 'GigabitEthernet0/2', 'active': True, 'preference': 1}}}}}}}}}}
static_route_ops_output = {'vrf': {'VRF1': {'address_family': {'ipv4': {'routes': {'2.2.2.2/32': {'route': '2.2.2.2/32', 'next_hop': {'next_hop_list': {1: {'index': 1, 'active': True, 'next_hop': '10.1.2.2', 'outgoing_interface': 'GigabitEthernet0/0', 'preference': 1}, 2: {'index': 2, 'active': False, 'next_hop': '20.1.2.2', 'outgoing_interface': 'GigabitEthernet0/1', 'preference': 2}, 3: {'index': 3, 'active': False, 'next_hop': '20.1.2.2', 'preference': 3}}}}, '3.3.3.3/32': {'route': '3.3.3.3/32', 'next_hop': {'outgoing_interface': {'GigabitEthernet0/2': {'active': True, 'outgoing_interface': 'GigabitEthernet0/2', 'preference': 1}, 'GigabitEthernet0/3': {'active': True, 'outgoing_interface': 'GigabitEthernet0/3', 'preference': 1}}}}}}}}, 'default': {'address_family': {'ipv6': {'routes': {'2001:2:2:2::2/128': {'route': '2001:2:2:2::2/128', 'next_hop': {'next_hop_list': {1: {'index': 1, 'active': False, 'next_hop': '2001:10:1:2::2', 'preference': 3}, 2: {'index': 2, 'next_hop': '2001:20:1:2::2', 'active': True, 'outgoing_interface': 'GigabitEthernet0/1', 'preference': 1}, 3: {'index': 3, 'active': False, 'next_hop': '2001:10:1:2::2', 'outgoing_interface': 'GigabitEthernet0/0', 'preference': 11}}}}, '2001:3:3:3::3/128': {'route': '2001:3:3:3::3/128', 'next_hop': {'outgoing_interface': {'GigabitEthernet0/3': {'outgoing_interface': 'GigabitEthernet0/3', 'active': True, 'preference': 1}, 'GigabitEthernet0/2': {'outgoing_interface': 'GigabitEthernet0/2', 'active': True, 'preference': 1}}}}}}}}}}
|
'''
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string "".
Example 1:
Input: ["flower","flow","flight"]
Output: "fl"
Example 2:
Input: ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.
Note:
All given inputs are in lowercase letters a-z.
'''
class Solution:
def longestCommonPrefix(self, strs: [str]) -> str:
if len(strs) == 0:
return ''
result = ''
maxLength = len(strs[0])
for str in strs:
if len(str) < maxLength:
maxLength = len(str)
for i in range(maxLength):
c = strs[0][i]
for str in strs:
if str[i] != c:
return result
result += c
return result
if __name__ == '__main__':
solution = Solution()
print(solution.longestCommonPrefix(["flower","flow","flight"]))
|
"""
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string "".
Example 1:
Input: ["flower","flow","flight"]
Output: "fl"
Example 2:
Input: ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.
Note:
All given inputs are in lowercase letters a-z.
"""
class Solution:
def longest_common_prefix(self, strs: [str]) -> str:
if len(strs) == 0:
return ''
result = ''
max_length = len(strs[0])
for str in strs:
if len(str) < maxLength:
max_length = len(str)
for i in range(maxLength):
c = strs[0][i]
for str in strs:
if str[i] != c:
return result
result += c
return result
if __name__ == '__main__':
solution = solution()
print(solution.longestCommonPrefix(['flower', 'flow', 'flight']))
|
datos= [0,0,0,0,0,0,0,0,0,0,0,0,0
,1,1,1,1,1,1,1,1,1,1
,2,2,2,2,2,2,2
,3,3,3,3,3,3
,4,4]
def media(datos):
return sum(datos)/len(datos)
def mediana(datos):
if(len(datos)%2 == 0):
return (datos[int(len(datos)/2)] + datos[int((len(datos)+1)/2)]) / 2
else:
return datos[(len(datos)+1)/2]
if __name__ == '__main__':
print(media(datos))
print(mediana(datos))
|
datos = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4]
def media(datos):
return sum(datos) / len(datos)
def mediana(datos):
if len(datos) % 2 == 0:
return (datos[int(len(datos) / 2)] + datos[int((len(datos) + 1) / 2)]) / 2
else:
return datos[(len(datos) + 1) / 2]
if __name__ == '__main__':
print(media(datos))
print(mediana(datos))
|
while True:
b=input().split()
X,M=b
X=int(X)
M=int(M)
if(X==0 and M==0):
break
else:
E=X*M
print(E)
|
while True:
b = input().split()
(x, m) = b
x = int(X)
m = int(M)
if X == 0 and M == 0:
break
else:
e = X * M
print(E)
|
first = ['Bucky', 'Tom', 'Taylor']
last = ['Roberts', 'Hanks', 'Swift']
names = zip(first, last)
for a, b in names:
print(a, b)
|
first = ['Bucky', 'Tom', 'Taylor']
last = ['Roberts', 'Hanks', 'Swift']
names = zip(first, last)
for (a, b) in names:
print(a, b)
|
'''To find Symmetric Difference between two Sets.'''
#Example INPUT:
'''
4
2 4 5 9
4
2 4 11 12
'''
#OUTPUT: (Symmetric difference in ascending order)
'''
5
9
11
12
'''
#Code
n=int(input())
a=[int(i) for i in input().split()]
m=int(input())
b=[int(i) for i in input().split()]
a1=set(a)
b1=set(b)
t=a1.union(b1)
f=t-(a1.intersection(b1))
tt=list(f)
tt.sort()
for i in tt:
print(i)
|
"""To find Symmetric Difference between two Sets."""
'\n4\n2 4 5 9\n4\n2 4 11 12\n'
'\n5\n9\n11\n12\n'
n = int(input())
a = [int(i) for i in input().split()]
m = int(input())
b = [int(i) for i in input().split()]
a1 = set(a)
b1 = set(b)
t = a1.union(b1)
f = t - a1.intersection(b1)
tt = list(f)
tt.sort()
for i in tt:
print(i)
|
class EditorFactory(object):
__registeredEditors = []
def __init__(self):
super(EditorFactory, self).__init__()
@classmethod
def registerEditorClass(cls, widgetClass):
cls.__registeredEditors.append(widgetClass)
@classmethod
def constructEditor(cls, valueController, parent=None):
for widgetCls in reversed(cls.__registeredEditors):
if widgetCls.canDisplay(valueController):
return widgetCls(valueController, parent=parent)
raise Exception("No Editors registered for the given controller:" + valueController.getName() + ":" + valueController.getDataType())
|
class Editorfactory(object):
__registered_editors = []
def __init__(self):
super(EditorFactory, self).__init__()
@classmethod
def register_editor_class(cls, widgetClass):
cls.__registeredEditors.append(widgetClass)
@classmethod
def construct_editor(cls, valueController, parent=None):
for widget_cls in reversed(cls.__registeredEditors):
if widgetCls.canDisplay(valueController):
return widget_cls(valueController, parent=parent)
raise exception('No Editors registered for the given controller:' + valueController.getName() + ':' + valueController.getDataType())
|
def rev(j):
rev = 0
while (j > 0):
remainder = j % 10
rev = (rev * 10) + remainder
j = j // 10
return rev
def emirp(j):
if j <= 1:
return False
else:
for i in range(2, rev(j)):
if j % i == 0 or rev(j) % i == 0:
print(j, "Is not emirp no.")
break
else:
print(j, "Is emirp no.")
break
j = int(input())
emirp(j)
|
def rev(j):
rev = 0
while j > 0:
remainder = j % 10
rev = rev * 10 + remainder
j = j // 10
return rev
def emirp(j):
if j <= 1:
return False
else:
for i in range(2, rev(j)):
if j % i == 0 or rev(j) % i == 0:
print(j, 'Is not emirp no.')
break
else:
print(j, 'Is emirp no.')
break
j = int(input())
emirp(j)
|
x = 0
y = 0
def setup():
size(400, 400)
def draw():
global x, y
background(255)
ellipse(x, y, 30, 30)
x += (mouseX - x) / 10
y += (mouseY - y) / 10
|
x = 0
y = 0
def setup():
size(400, 400)
def draw():
global x, y
background(255)
ellipse(x, y, 30, 30)
x += (mouseX - x) / 10
y += (mouseY - y) / 10
|
def parse_from_file(filename, parser):
with open(filename,"r") as f:
string=f.read()
args=parser.parse_args(string.split())
return args
|
def parse_from_file(filename, parser):
with open(filename, 'r') as f:
string = f.read()
args = parser.parse_args(string.split())
return args
|
#Problem Set 02
print('Problem Set 02')
# Problem 01 (20 points)
print('\nProblem 1')
cases = [70, 75, 126, 144, 170]
cases_latest = None #TODO Replace
# Problem 02 (20 points)
print('\nProblem 2')
tests = None #TODO Replace
tests_last_three = None #TODO Replace
tests_reverse = None #TODO Replace
# Problem 03 (20 points)
print('\nProblem 3')
vaccines = " 39,896-41,826-44,154-46,458-48,634-50,090 "
vaccines_list = None #TODO Replace
# Problem 04 (20 points)
print('\nProblem 4')
dates = ["January 31st", "January 30th", "January 29th", "January 28th", "January 27th", "January 26th"]
dates_str = None #TODO Replace
# Problem 05 (20 points)
print('\nProblem 5')
vaccines_26th = None #TODO Replace
vaccines_31st = None #TODO Replace
|
print('Problem Set 02')
print('\nProblem 1')
cases = [70, 75, 126, 144, 170]
cases_latest = None
print('\nProblem 2')
tests = None
tests_last_three = None
tests_reverse = None
print('\nProblem 3')
vaccines = ' 39,896-41,826-44,154-46,458-48,634-50,090 '
vaccines_list = None
print('\nProblem 4')
dates = ['January 31st', 'January 30th', 'January 29th', 'January 28th', 'January 27th', 'January 26th']
dates_str = None
print('\nProblem 5')
vaccines_26th = None
vaccines_31st = None
|
class Mesh:
def __init__(self):
self.vertexs = []
def setName(self, name):
self.name = name
def addVertex(self, x, y, z):
self.vertexs.append([x, y, z])
def read(self):
print(self.name)
print(self.vertexs)
def getVertexs(self):
return self.vertexs
def getName(self):
return self.name
|
class Mesh:
def __init__(self):
self.vertexs = []
def set_name(self, name):
self.name = name
def add_vertex(self, x, y, z):
self.vertexs.append([x, y, z])
def read(self):
print(self.name)
print(self.vertexs)
def get_vertexs(self):
return self.vertexs
def get_name(self):
return self.name
|
#!/usr/bin/env python3
class RunfileFormatError(Exception):
pass
class RunfileNotFoundError(Exception):
def __init__(self, path):
self.path = path
class TargetNotFoundError(Exception):
def __init__(self, target=None):
self.target = target
class TargetExecutionError(Exception):
def __init__(self, exit_code):
self.exit_code = exit_code
class CodeBlockExecutionError(Exception):
def __init__(self, exit_code):
self.exit_code = exit_code
class ContainerBuildError(Exception):
def __init__(self, exit_code):
self.exit_code = exit_code
|
class Runfileformaterror(Exception):
pass
class Runfilenotfounderror(Exception):
def __init__(self, path):
self.path = path
class Targetnotfounderror(Exception):
def __init__(self, target=None):
self.target = target
class Targetexecutionerror(Exception):
def __init__(self, exit_code):
self.exit_code = exit_code
class Codeblockexecutionerror(Exception):
def __init__(self, exit_code):
self.exit_code = exit_code
class Containerbuilderror(Exception):
def __init__(self, exit_code):
self.exit_code = exit_code
|
count= 0
fname= input("Enter the file name:")
if fname== "na na boo boo":
print("NA NA BOO BOO TO YOU- You have been punk'd")
exit()
else:
try:
fhand= open(fname)
except:
print("File cannot be opened", fname)
exit()
for line in fhand:
if line.startswith("Subject"):
count= count + 1
print("There were",count, "subject lines in", fname)
|
count = 0
fname = input('Enter the file name:')
if fname == 'na na boo boo':
print("NA NA BOO BOO TO YOU- You have been punk'd")
exit()
else:
try:
fhand = open(fname)
except:
print('File cannot be opened', fname)
exit()
for line in fhand:
if line.startswith('Subject'):
count = count + 1
print('There were', count, 'subject lines in', fname)
|
input_data = input()
symbols = {}
def count_symbols(data):
for symbol in data:
if symbol not in symbols:
symbols[symbol] = 0
symbols[symbol] += 1
return dict(sorted(symbols.items(), key=lambda s: s[0]))
def print_data(symbols):
for symbol, count in symbols.items():
print(f'{symbol}: {count} time/s')
symbols = count_symbols(input_data)
print_data(symbols)
|
input_data = input()
symbols = {}
def count_symbols(data):
for symbol in data:
if symbol not in symbols:
symbols[symbol] = 0
symbols[symbol] += 1
return dict(sorted(symbols.items(), key=lambda s: s[0]))
def print_data(symbols):
for (symbol, count) in symbols.items():
print(f'{symbol}: {count} time/s')
symbols = count_symbols(input_data)
print_data(symbols)
|
def userinfo(claims, user):
claims["name"] = user.username
claims["preferred_username"] = user.username
return claims
|
def userinfo(claims, user):
claims['name'] = user.username
claims['preferred_username'] = user.username
return claims
|
#%% 6-misol
lst=list(input().split())
lst=[int(i) for i in lst]
print(lst)
k=0
son=list()
for i in range(len(lst)-1):
if lst[i]>lst[i+1]:
if son!=[]:
son.append(lst[i])
print(*son)
son=list()
k+=1
#%% 7-misol
son=int(input("son="))
list1=list()
while son!=0:
list1.append(son%10)
son//=10
list1.reverse()
xona=['million','ming','yuz']
bir={1:'bir',
2:'ikki',
3:'uch',
4:'to\'rt',
5:'besh',
6:'olti',
7:'yetti',
8:'sakkiz',
9:'to\'qqiz'}
on={ 1:'o\'n',
2:'yigirma',
3:'o\'ttiz',
4:'qirq',
5:'ellik',
6:'oltmish',
7:'yetmish',
8:'sakson',
9:'to\'qson'}
for i in range(len(list1)-1,-1,-1):
if i==2:
if list1[0]!=0:
print(bir[list1[0]],"yuz",end=' ')
if list1[1]!=0:
print(on[list1[1]],end=' ')
if list1[2]!=0:
print(bir[list1[2]])
elif i==1:
if list1[0]!=0:
print(on[list1[0]],end=' ')
if list1[1]!=0:
print(bir[list1[1]])
else:
print(bir[list1[0]])
|
lst = list(input().split())
lst = [int(i) for i in lst]
print(lst)
k = 0
son = list()
for i in range(len(lst) - 1):
if lst[i] > lst[i + 1]:
if son != []:
son.append(lst[i])
print(*son)
son = list()
k += 1
son = int(input('son='))
list1 = list()
while son != 0:
list1.append(son % 10)
son //= 10
list1.reverse()
xona = ['million', 'ming', 'yuz']
bir = {1: 'bir', 2: 'ikki', 3: 'uch', 4: "to'rt", 5: 'besh', 6: 'olti', 7: 'yetti', 8: 'sakkiz', 9: "to'qqiz"}
on = {1: "o'n", 2: 'yigirma', 3: "o'ttiz", 4: 'qirq', 5: 'ellik', 6: 'oltmish', 7: 'yetmish', 8: 'sakson', 9: "to'qson"}
for i in range(len(list1) - 1, -1, -1):
if i == 2:
if list1[0] != 0:
print(bir[list1[0]], 'yuz', end=' ')
if list1[1] != 0:
print(on[list1[1]], end=' ')
if list1[2] != 0:
print(bir[list1[2]])
elif i == 1:
if list1[0] != 0:
print(on[list1[0]], end=' ')
if list1[1] != 0:
print(bir[list1[1]])
else:
print(bir[list1[0]])
|
class Utils(object):
'''
keep values between -180 and 180 degrees
input and output parameters are in degrees
'''
def normalize_angle(self, degrees: float) -> float:
degrees = degrees % 360
if degrees > 180:
return degrees - 360
return degrees
|
class Utils(object):
"""
keep values between -180 and 180 degrees
input and output parameters are in degrees
"""
def normalize_angle(self, degrees: float) -> float:
degrees = degrees % 360
if degrees > 180:
return degrees - 360
return degrees
|
# The following is an implementation of the hex helper
# from Electrum - lightweight Bitcoin client, which is
# subject to the following license.
#
# Copyright (C) 2011 thomasv@gitorious
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
class Hexxer:
bfh = bytes.fromhex
@classmethod
def bh2u(self, x: bytes) -> str:
# str with hex representation of a bytes-like object
# x = bytes((1, 2, 10))
# bh2u(x)
# '01020A'
return x.hex()
@classmethod
def rev_hex(self, s: str) -> str:
return self.bh2u(self.bfh(s)[::-1])
@classmethod
def int_to_hex(self, i: int, length: int=1) -> str:
# Converts int to little-endian hex string where
# length is the number of bytes available
if not isinstance(i, int):
raise TypeError('{} instead of int'.format(i))
range_size = pow(256, length)
if i < -(range_size//2) or i >= range_size:
raise OverflowError('cannot convert int {} to hex ({} bytes)'.format(i, length))
if i < 0:
i = range_size + i
s = hex(i)[2:].rstrip('L')
s = "0"*(2*length - len(s)) + s
return self.rev_hex(s)
|
class Hexxer:
bfh = bytes.fromhex
@classmethod
def bh2u(self, x: bytes) -> str:
return x.hex()
@classmethod
def rev_hex(self, s: str) -> str:
return self.bh2u(self.bfh(s)[::-1])
@classmethod
def int_to_hex(self, i: int, length: int=1) -> str:
if not isinstance(i, int):
raise type_error('{} instead of int'.format(i))
range_size = pow(256, length)
if i < -(range_size // 2) or i >= range_size:
raise overflow_error('cannot convert int {} to hex ({} bytes)'.format(i, length))
if i < 0:
i = range_size + i
s = hex(i)[2:].rstrip('L')
s = '0' * (2 * length - len(s)) + s
return self.rev_hex(s)
|
num = input("Please enter a num: ")
while not num.isdigit():
num = input("Please enter a num: ")
print("Your num: %s" % num)
|
num = input('Please enter a num: ')
while not num.isdigit():
num = input('Please enter a num: ')
print('Your num: %s' % num)
|
class ModulationException(Exception):
pass
class EncodingException(ModulationException):
pass
class DecodingException(ModulationException):
pass
|
class Modulationexception(Exception):
pass
class Encodingexception(ModulationException):
pass
class Decodingexception(ModulationException):
pass
|
class RedisMock():
def __init__(self):
self.incoming_queue = []
self.in_progress_queue = []
def brpoplpush(self, *args):
if self.incoming_queue:
item = self.incoming_queue.pop(0)
self.in_progress_queue.append(item)
return item
else:
return None
def lrem(self, queue_name, op_type, item):
self.in_progress_queue.remove(item)
def lrange(self, *args):
# remove-safe copy
return self.in_progress_queue[:]
def lpush(self, queue_name, *messages):
self.incoming_queue += messages
def create_init_data(self, initial_messages: list):
self.incoming_queue = initial_messages
def set_in_progress_data(self, messages):
self.in_progress_queue = messages
def mock_redis():
return RedisMock()
|
class Redismock:
def __init__(self):
self.incoming_queue = []
self.in_progress_queue = []
def brpoplpush(self, *args):
if self.incoming_queue:
item = self.incoming_queue.pop(0)
self.in_progress_queue.append(item)
return item
else:
return None
def lrem(self, queue_name, op_type, item):
self.in_progress_queue.remove(item)
def lrange(self, *args):
return self.in_progress_queue[:]
def lpush(self, queue_name, *messages):
self.incoming_queue += messages
def create_init_data(self, initial_messages: list):
self.incoming_queue = initial_messages
def set_in_progress_data(self, messages):
self.in_progress_queue = messages
def mock_redis():
return redis_mock()
|
def solve(matrix, target):
possible_results = []
for r, row in enumerate(matrix):
start = 0
end = len(row) - 1
while start <= end:
mid = (start + end) // 2
if row[mid] == target:
possible_results.append((r + 1) * 1009 + mid + 1)
break
elif row[mid] < target:
start = mid + 1
else:
end = mid - 1
if len(possible_results) == 0:
return -1
return min(possible_results)
|
def solve(matrix, target):
possible_results = []
for (r, row) in enumerate(matrix):
start = 0
end = len(row) - 1
while start <= end:
mid = (start + end) // 2
if row[mid] == target:
possible_results.append((r + 1) * 1009 + mid + 1)
break
elif row[mid] < target:
start = mid + 1
else:
end = mid - 1
if len(possible_results) == 0:
return -1
return min(possible_results)
|
class Solution:
def pivotIndex(self, nums: List[int]) -> int:
for i in range(0, len(nums)):
if sum(nums[:i]) == sum(nums[i+1:]):
return i
return -1
|
class Solution:
def pivot_index(self, nums: List[int]) -> int:
for i in range(0, len(nums)):
if sum(nums[:i]) == sum(nums[i + 1:]):
return i
return -1
|
class Solution:
def longestOnes(self, A: List[int], K: int) -> int:
maxLen = zero = start = 0
for i, a in enumerate(A):
if a == 0:
zero += 1
while zero > K:
if A[start] == 0:
zero -= 1
start += 1
maxLen = max(maxLen, i - start + 1)
return maxLen
class Solution2:
def longestOnes(self, A: List[int], K: int) -> int:
zero = start = 0
for i, a in enumerate(A):
if a == 0:
zero += 1
if zero > K:
if A[start] == 0:
zero -= 1
start += 1
return len(A) - start
|
class Solution:
def longest_ones(self, A: List[int], K: int) -> int:
max_len = zero = start = 0
for (i, a) in enumerate(A):
if a == 0:
zero += 1
while zero > K:
if A[start] == 0:
zero -= 1
start += 1
max_len = max(maxLen, i - start + 1)
return maxLen
class Solution2:
def longest_ones(self, A: List[int], K: int) -> int:
zero = start = 0
for (i, a) in enumerate(A):
if a == 0:
zero += 1
if zero > K:
if A[start] == 0:
zero -= 1
start += 1
return len(A) - start
|
# Fill all this out with your information
patreon_client_id = None
patreon_client_secret = None
patreon_creator_refresh_token = None
patreon_creator_access_token = None
patreon_creator_id = None
patreon_redirect_uri = None
|
patreon_client_id = None
patreon_client_secret = None
patreon_creator_refresh_token = None
patreon_creator_access_token = None
patreon_creator_id = None
patreon_redirect_uri = None
|
# Initialize Global Variables
VERSION = '1.4'
TITLE = 'RO:X Next Generation - Auto Fishing version'
PID = ''
SCREEN_WIDTH = 0
SCREEN_HEIGHT = 0
IS_ACTIVE = False
HOLD = True
FRAME = None
PREV_TIME = 0
CURRENT_TIME = 0
LIMIT = 0
LOOP = 0
IS_FISHING = True
LAST_CLICK_TIME = 0
COUNT = 0
BOUNDING_BOX = {'top': 0, 'left': 0, 'width': 240, 'height': 250}
CENTER_X = 0
CENTER_Y = 0
RADIUS = 80
|
version = '1.4'
title = 'RO:X Next Generation - Auto Fishing version'
pid = ''
screen_width = 0
screen_height = 0
is_active = False
hold = True
frame = None
prev_time = 0
current_time = 0
limit = 0
loop = 0
is_fishing = True
last_click_time = 0
count = 0
bounding_box = {'top': 0, 'left': 0, 'width': 240, 'height': 250}
center_x = 0
center_y = 0
radius = 80
|
class Node:
next_node = None
data = 0
def __init__(self, value):
self.data = value
def run(input_data):
if input_data is None or input_data.next_node is None:
return False
input_data.data = input_data.next_node.data
input_data.next_node = input_data.next_node.next_node
return True
|
class Node:
next_node = None
data = 0
def __init__(self, value):
self.data = value
def run(input_data):
if input_data is None or input_data.next_node is None:
return False
input_data.data = input_data.next_node.data
input_data.next_node = input_data.next_node.next_node
return True
|
# File to automate the conversion of the glosary to txt file
text_file = open("glossory.txt", "r")
glossory = text_file.readlines()
word = []
deffinition = []
for i in range(len(glossory)):
if (i % 2) == 0:
word.append(glossory[i])
else:
deffinition.append(glossory[i])
word[:] = [line.rstrip('\n') for line in word]
deffinition[:] = [line.rstrip('\n') for line in deffinition]
for i in word:
print(i.lower())
print("\n \n \n \n \n \n \n")
for i in deffinition:
print(i)
|
text_file = open('glossory.txt', 'r')
glossory = text_file.readlines()
word = []
deffinition = []
for i in range(len(glossory)):
if i % 2 == 0:
word.append(glossory[i])
else:
deffinition.append(glossory[i])
word[:] = [line.rstrip('\n') for line in word]
deffinition[:] = [line.rstrip('\n') for line in deffinition]
for i in word:
print(i.lower())
print('\n \n \n \n \n \n \n')
for i in deffinition:
print(i)
|
class CronExecutor(object):
def __init__(self):
# cron cache key is {<Date String YYY-mm-dd>: {<timestamp>: [<string command 1>...]}
self._cache = {}
|
class Cronexecutor(object):
def __init__(self):
self._cache = {}
|
# connect-4
# Define the board's Width and Height as constant
WIDTH = 7
HEIGHT = 6
def init_board():
b = []
for x in range(0, WIDTH):
b.append([])
for y in range(0, HEIGHT):
b[x].append(0)
return b
def player1_move(board, x, y):
board[x][y] = 1
def player2_move(board, x, y):
board[x][y] = 2
def print_board(board):
for y in range(0, HEIGHT):
line = ''
for x in range(0, WIDTH):
if board[x][y] == 0:
line = line + '-'
elif board[x][y] == 1:
line = line + 'X'
elif board[x][y] == 2:
line = line + 'O'
print(line)
def who_won(board):
# 0 means no one win, 1 means player 1 wins, 2 means player 2 wins
result = 0
# check row
for y in range(0, HEIGHT):
for x in range(0, WIDTH - 4 + 1):
result = check_winning(board[x][y], board[x+1][y], board[x+2][y], board[x+3][y])
if result > 0:
return result
# check col
for x in range(0, WIDTH):
for y in range(0, HEIGHT - 4 + 1):
# print("{0} {1}".format(x, y))
result = check_winning(board[x][y], board[x][y+1], board[x][y+2], board[x][y+3])
if result > 0:
return result
# check diagonal NW to SE:
for x in range(0, WIDTH - 4 + 1):
for y in range(0, HEIGHT - 4 + 1):
result = check_winning(board[x][y], board[x+1][y+1], board[x+2][y+2], board[x+3][y+3])
if result > 0:
return result
# check diagonal NE to SW:
for x in range(WIDTH - 4, WIDTH):
for y in range(0, HEIGHT - 4 + 1):
# print("{0} {1}".format(x, y))
result = check_winning(board[x-3][y+3], board[x-2][y+2], board[x-1][y+1], board[x][y])
if result > 0:
return result
return result
def check_winning(a, b, c, d):
if (a == 1) and (b == 1) and (c == 1) and (d == 1):
return 1
elif (a == 2) and (b == 2) and (c == 2) and (d == 2):
return 2
else:
return 0
def print_line():
print("")
def is_full(board):
result = True
for y in range(0, HEIGHT):
for x in range(0, WIDTH):
if board[x][y] == 0:
result = False
break
return result
def input_player_move(board, player_number):
# Python 2.7, You need to change input => raw_input
input_valid = False
while input_valid is False:
x = input("Player {0}, enter your move X:".format(player_number))
x = int(x)
if x >= 0 and x <= WIDTH - 1:
input_valid = True
if (input_valid):
y = find_top_of_column(board, x)
return x, y
def find_top_of_column(board, x):
result = -1
for y in range(0, HEIGHT):
if board[x][y] == 0:
result = y
return result
def main():
board = init_board()
won = 0
turn = 1
while (won == 0) and (is_full(board) is False):
print_board(board)
print_line()
x, y = input_player_move(board, turn)
if turn == 1:
player1_move(board, x, y)
if turn == 2:
player2_move(board, x, y)
won = who_won(board)
if turn == 1:
turn = 2
else:
turn = 1
print_board(board)
print_line()
if won > 0:
print("Player {0} has won!!".format(won))
else:
print("It is a tie.")
'''
print(board)
print(board[0][0])
print(board[0][1])
print_board(board)
print_line()
player1_move(board, 1, 1)
print_board(board)
print_line()
player2_move(board, 1, 0)
print_board(board)
print_line()
player1_move(board, 0, 0)
x, y = input_player_move(1)
print("{0}, {1}".format(x, y))
'''
if __name__ == "__main__":
main()
|
width = 7
height = 6
def init_board():
b = []
for x in range(0, WIDTH):
b.append([])
for y in range(0, HEIGHT):
b[x].append(0)
return b
def player1_move(board, x, y):
board[x][y] = 1
def player2_move(board, x, y):
board[x][y] = 2
def print_board(board):
for y in range(0, HEIGHT):
line = ''
for x in range(0, WIDTH):
if board[x][y] == 0:
line = line + '-'
elif board[x][y] == 1:
line = line + 'X'
elif board[x][y] == 2:
line = line + 'O'
print(line)
def who_won(board):
result = 0
for y in range(0, HEIGHT):
for x in range(0, WIDTH - 4 + 1):
result = check_winning(board[x][y], board[x + 1][y], board[x + 2][y], board[x + 3][y])
if result > 0:
return result
for x in range(0, WIDTH):
for y in range(0, HEIGHT - 4 + 1):
result = check_winning(board[x][y], board[x][y + 1], board[x][y + 2], board[x][y + 3])
if result > 0:
return result
for x in range(0, WIDTH - 4 + 1):
for y in range(0, HEIGHT - 4 + 1):
result = check_winning(board[x][y], board[x + 1][y + 1], board[x + 2][y + 2], board[x + 3][y + 3])
if result > 0:
return result
for x in range(WIDTH - 4, WIDTH):
for y in range(0, HEIGHT - 4 + 1):
result = check_winning(board[x - 3][y + 3], board[x - 2][y + 2], board[x - 1][y + 1], board[x][y])
if result > 0:
return result
return result
def check_winning(a, b, c, d):
if a == 1 and b == 1 and (c == 1) and (d == 1):
return 1
elif a == 2 and b == 2 and (c == 2) and (d == 2):
return 2
else:
return 0
def print_line():
print('')
def is_full(board):
result = True
for y in range(0, HEIGHT):
for x in range(0, WIDTH):
if board[x][y] == 0:
result = False
break
return result
def input_player_move(board, player_number):
input_valid = False
while input_valid is False:
x = input('Player {0}, enter your move X:'.format(player_number))
x = int(x)
if x >= 0 and x <= WIDTH - 1:
input_valid = True
if input_valid:
y = find_top_of_column(board, x)
return (x, y)
def find_top_of_column(board, x):
result = -1
for y in range(0, HEIGHT):
if board[x][y] == 0:
result = y
return result
def main():
board = init_board()
won = 0
turn = 1
while won == 0 and is_full(board) is False:
print_board(board)
print_line()
(x, y) = input_player_move(board, turn)
if turn == 1:
player1_move(board, x, y)
if turn == 2:
player2_move(board, x, y)
won = who_won(board)
if turn == 1:
turn = 2
else:
turn = 1
print_board(board)
print_line()
if won > 0:
print('Player {0} has won!!'.format(won))
else:
print('It is a tie.')
'\n print(board)\n print(board[0][0])\n print(board[0][1])\n print_board(board)\n print_line()\n player1_move(board, 1, 1)\n print_board(board)\n print_line()\n player2_move(board, 1, 0)\n print_board(board)\n print_line()\n player1_move(board, 0, 0)\n x, y = input_player_move(1)\n print("{0}, {1}".format(x, y))\n'
if __name__ == '__main__':
main()
|
class _BaseStateError(BaseException):
'''Base class for state-related exceptions.
Accepts only one param which must be a list of strings.'''
def __init__(self, message=None):
message = message or []
if not isinstance(message, list):
raise TypeError('{} takes a list of errors not {}'.format(
self.__class__,
type(message)
))
super(_BaseStateError, self).__init__(message)
def __str__(self):
return '\n'.join([str(msg) for msg in self.args[0]])
class TransitionError(_BaseStateError):
pass
class StateValidationError(_BaseStateError):
pass
class BasicValidationError(BaseException):
def __init__(self, message=''):
super(BasicValidationError, self).__init__(message)
|
class _Basestateerror(BaseException):
"""Base class for state-related exceptions.
Accepts only one param which must be a list of strings."""
def __init__(self, message=None):
message = message or []
if not isinstance(message, list):
raise type_error('{} takes a list of errors not {}'.format(self.__class__, type(message)))
super(_BaseStateError, self).__init__(message)
def __str__(self):
return '\n'.join([str(msg) for msg in self.args[0]])
class Transitionerror(_BaseStateError):
pass
class Statevalidationerror(_BaseStateError):
pass
class Basicvalidationerror(BaseException):
def __init__(self, message=''):
super(BasicValidationError, self).__init__(message)
|
#
# PySNMP MIB module EATON-EPDU-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/EATON-EPDU-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:44:24 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint")
pduAgent, = mibBuilder.importSymbols("EATON-OIDS", "pduAgent")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, TimeTicks, Bits, Counter64, ObjectIdentity, IpAddress, Unsigned32, Counter32, MibIdentifier, Gauge32, Integer32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "TimeTicks", "Bits", "Counter64", "ObjectIdentity", "IpAddress", "Unsigned32", "Counter32", "MibIdentifier", "Gauge32", "Integer32", "ModuleIdentity")
DisplayString, DateAndTime, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "DateAndTime", "TextualConvention")
eatonEpdu = ModuleIdentity((1, 3, 6, 1, 4, 1, 534, 6, 6, 7))
eatonEpdu.setRevisions(('2014-09-29 12:00', '2013-12-18 12:00', '2013-09-02 12:00', '2013-05-29 12:00', '2013-02-21 12:00', '2011-11-21 12:00', '2011-10-24 12:00', '2011-02-07 15:29',))
if mibBuilder.loadTexts: eatonEpdu.setLastUpdated('201312181200Z')
if mibBuilder.loadTexts: eatonEpdu.setOrganization('Eaton Corporation')
class UnixTimeStamp(TextualConvention, Counter32):
status = 'current'
notifications = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0))
units = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1))
inputs = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3))
groups = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5))
outlets = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6))
environmental = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7))
conformance = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25))
objectGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5))
notifyUserLogin = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 1)).setObjects(("EATON-EPDU-MIB", "userName"), ("EATON-EPDU-MIB", "commInterface"))
if mibBuilder.loadTexts: notifyUserLogin.setStatus('current')
notifyUserLogout = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 2)).setObjects(("EATON-EPDU-MIB", "userName"), ("EATON-EPDU-MIB", "commInterface"))
if mibBuilder.loadTexts: notifyUserLogout.setStatus('current')
notifyFailedLogin = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 3)).setObjects(("EATON-EPDU-MIB", "userName"), ("EATON-EPDU-MIB", "commInterface"))
if mibBuilder.loadTexts: notifyFailedLogin.setStatus('current')
notifyBootUp = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 4)).setObjects(("EATON-EPDU-MIB", "strappingIndex"))
if mibBuilder.loadTexts: notifyBootUp.setStatus('current')
notifyInputVoltageThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 11)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "inputIndex"), ("EATON-EPDU-MIB", "inputVoltageIndex"), ("EATON-EPDU-MIB", "inputVoltage"), ("EATON-EPDU-MIB", "inputVoltageThStatus"))
if mibBuilder.loadTexts: notifyInputVoltageThStatus.setStatus('current')
notifyInputCurrentThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 12)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "inputIndex"), ("EATON-EPDU-MIB", "inputCurrentIndex"), ("EATON-EPDU-MIB", "inputCurrent"), ("EATON-EPDU-MIB", "inputCurrentThStatus"))
if mibBuilder.loadTexts: notifyInputCurrentThStatus.setStatus('current')
notifyInputFrequencyStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 13)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "inputIndex"), ("EATON-EPDU-MIB", "inputFrequency"), ("EATON-EPDU-MIB", "inputFrequencyStatus"))
if mibBuilder.loadTexts: notifyInputFrequencyStatus.setStatus('current')
notifyGroupVoltageThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 21)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "groupIndex"), ("EATON-EPDU-MIB", "groupVoltage"), ("EATON-EPDU-MIB", "groupVoltageThStatus"))
if mibBuilder.loadTexts: notifyGroupVoltageThStatus.setStatus('current')
notifyGroupCurrentThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 22)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "groupIndex"), ("EATON-EPDU-MIB", "groupCurrent"), ("EATON-EPDU-MIB", "groupCurrentThStatus"))
if mibBuilder.loadTexts: notifyGroupCurrentThStatus.setStatus('current')
notifyGroupBreakerStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 23)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "groupIndex"), ("EATON-EPDU-MIB", "groupBreakerStatus"))
if mibBuilder.loadTexts: notifyGroupBreakerStatus.setStatus('current')
notifyOutletVoltageThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 31)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "outletIndex"), ("EATON-EPDU-MIB", "outletVoltage"), ("EATON-EPDU-MIB", "outletVoltageThStatus"))
if mibBuilder.loadTexts: notifyOutletVoltageThStatus.setStatus('current')
notifyOutletCurrentThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 32)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "outletIndex"), ("EATON-EPDU-MIB", "outletCurrent"), ("EATON-EPDU-MIB", "outletCurrentThStatus"))
if mibBuilder.loadTexts: notifyOutletCurrentThStatus.setStatus('current')
notifyOutletControlStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 33)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "outletIndex"), ("EATON-EPDU-MIB", "outletControlStatus"))
if mibBuilder.loadTexts: notifyOutletControlStatus.setStatus('current')
notifyTemperatureThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 41)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "temperatureIndex"), ("EATON-EPDU-MIB", "temperatureValue"), ("EATON-EPDU-MIB", "temperatureThStatus"))
if mibBuilder.loadTexts: notifyTemperatureThStatus.setStatus('current')
notifyHumidityThStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 42)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "humidityIndex"), ("EATON-EPDU-MIB", "humidityValue"), ("EATON-EPDU-MIB", "humidityThStatus"))
if mibBuilder.loadTexts: notifyHumidityThStatus.setStatus('current')
notifyContactState = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 43)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "contactIndex"), ("EATON-EPDU-MIB", "contactState"))
if mibBuilder.loadTexts: notifyContactState.setStatus('current')
notifyProbeStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 44)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "temperatureIndex"), ("EATON-EPDU-MIB", "temperatureProbeStatus"))
if mibBuilder.loadTexts: notifyProbeStatus.setStatus('current')
notifyCommunicationStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 51)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "communicationStatus"))
if mibBuilder.loadTexts: notifyCommunicationStatus.setStatus('current')
notifyInternalStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 52)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "internalStatus"))
if mibBuilder.loadTexts: notifyInternalStatus.setStatus('current')
notifyTest = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 53))
if mibBuilder.loadTexts: notifyTest.setStatus('current')
notifyStrappingStatus = NotificationType((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 54)).setObjects(("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "strappingStatus"))
if mibBuilder.loadTexts: notifyStrappingStatus.setStatus('current')
unitsPresent = MibScalar((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: unitsPresent.setStatus('current')
unitTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2), )
if mibBuilder.loadTexts: unitTable.setStatus('current')
unitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"))
if mibBuilder.loadTexts: unitEntry.setStatus('current')
strappingIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: strappingIndex.setStatus('current')
productName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: productName.setStatus('current')
partNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: partNumber.setStatus('current')
serialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: serialNumber.setStatus('current')
firmwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: firmwareVersion.setStatus('current')
unitName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 63))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: unitName.setStatus('current')
lcdControl = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("notApplicable", 0), ("lcdScreenOff", 1), ("lcdKeyLock", 2), ("lcdScreenOffAndKeyLock", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: lcdControl.setStatus('current')
clockValue = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 8), DateAndTime()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: clockValue.setStatus('current')
temperatureScale = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("celsius", 0), ("fahrenheit", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: temperatureScale.setStatus('current')
unitType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 0), ("switched", 1), ("advancedMonitored", 2), ("managed", 3), ("monitored", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: unitType.setStatus('current')
inputCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCount.setStatus('current')
groupCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupCount.setStatus('current')
outletCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 22), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletCount.setStatus('current')
temperatureCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 23), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: temperatureCount.setStatus('current')
humidityCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 24), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: humidityCount.setStatus('current')
contactCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 25), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: contactCount.setStatus('current')
communicationStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("good", 0), ("communicationLost", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: communicationStatus.setStatus('current')
internalStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("good", 0), ("internalFailure", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: internalStatus.setStatus('current')
strappingStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("good", 0), ("communicationLost", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: strappingStatus.setStatus('current')
userName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 40), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: userName.setStatus('current')
commInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("serial", 0), ("usb", 1), ("telnet", 2), ("web", 3), ("ftp", 4), ("xml", 5)))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: commInterface.setStatus('current')
unitControlTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3), )
if mibBuilder.loadTexts: unitControlTable.setStatus('current')
unitControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"))
if mibBuilder.loadTexts: unitControlEntry.setStatus('current')
unitControlOffCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: unitControlOffCmd.setStatus('current')
unitControlOnCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: unitControlOnCmd.setStatus('current')
inputTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1), )
if mibBuilder.loadTexts: inputTable.setStatus('current')
inputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "inputIndex"))
if mibBuilder.loadTexts: inputEntry.setStatus('current')
inputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: inputIndex.setStatus('current')
inputType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("singlePhase", 1), ("splitPhase", 2), ("threePhaseDelta", 3), ("threePhaseWye", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputType.setStatus('current')
inputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputFrequency.setStatus('current')
inputFrequencyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("good", 0), ("outOfRange", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputFrequencyStatus.setStatus('current')
inputVoltageCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputVoltageCount.setStatus('current')
inputCurrentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrentCount.setStatus('current')
inputPowerCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputPowerCount.setStatus('current')
inputPlugType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(100, 200, 300, 101, 102, 103, 104, 105, 106, 107, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 150, 151, 152, 201, 202, 301, 302, 303, 304, 306, 320, 321, 322, 323, 324, 325, 326, 350, 351))).clone(namedValues=NamedValues(("other1Phase", 100), ("other2Phase", 200), ("other3Phase", 300), ("iecC14Inlet", 101), ("iecC20Inlet", 102), ("iec316P6", 103), ("iec332P6", 104), ("iec360P6", 105), ("iecC14Plug", 106), ("iecC20Plug", 107), ("nema515", 120), ("nemaL515", 121), ("nema520", 122), ("nemaL520", 123), ("nema615", 124), ("nemaL615", 125), ("nemaL530", 126), ("nema620", 127), ("nemaL620", 128), ("nemaL630", 129), ("cs8265", 130), ("french", 150), ("schuko", 151), ("uk", 152), ("nemaL1420", 201), ("nemaL1430", 202), ("iec516P6", 301), ("iec460P9", 302), ("iec560P9", 303), ("iec532P6", 304), ("iec563P6", 306), ("nemaL1520", 320), ("nemaL2120", 321), ("nemaL1530", 322), ("nemaL2130", 323), ("cs8365", 324), ("nemaL2220", 325), ("nemaL2230", 326), ("bladeUps208V", 350), ("bladeUps400V", 351)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputPlugType.setStatus('current')
inputVoltageTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2), )
if mibBuilder.loadTexts: inputVoltageTable.setStatus('current')
inputVoltageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "inputIndex"), (0, "EATON-EPDU-MIB", "inputVoltageIndex"))
if mibBuilder.loadTexts: inputVoltageEntry.setStatus('current')
inputVoltageIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: inputVoltageIndex.setStatus('current')
inputVoltageMeasType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("singlePhase", 1), ("phase1toN", 2), ("phase2toN", 3), ("phase3toN", 4), ("phase1to2", 5), ("phase2to3", 6), ("phase3to1", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputVoltageMeasType.setStatus('current')
inputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputVoltage.setStatus('current')
inputVoltageThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputVoltageThStatus.setStatus('current')
inputVoltageThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputVoltageThLowerWarning.setStatus('current')
inputVoltageThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputVoltageThLowerCritical.setStatus('current')
inputVoltageThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputVoltageThUpperWarning.setStatus('current')
inputVoltageThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputVoltageThUpperCritical.setStatus('current')
inputCurrentTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3), )
if mibBuilder.loadTexts: inputCurrentTable.setStatus('current')
inputCurrentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "inputIndex"), (0, "EATON-EPDU-MIB", "inputCurrentIndex"))
if mibBuilder.loadTexts: inputCurrentEntry.setStatus('current')
inputCurrentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: inputCurrentIndex.setStatus('current')
inputCurrentMeasType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("singlePhase", 1), ("neutral", 2), ("phase1", 3), ("phase2", 4), ("phase3", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrentMeasType.setStatus('current')
inputCurrentCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrentCapacity.setStatus('current')
inputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrent.setStatus('current')
inputCurrentThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrentThStatus.setStatus('current')
inputCurrentThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputCurrentThLowerWarning.setStatus('current')
inputCurrentThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputCurrentThLowerCritical.setStatus('current')
inputCurrentThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputCurrentThUpperWarning.setStatus('current')
inputCurrentThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputCurrentThUpperCritical.setStatus('current')
inputCurrentCrestFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrentCrestFactor.setStatus('current')
inputCurrentPercentLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputCurrentPercentLoad.setStatus('current')
inputPowerTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4), )
if mibBuilder.loadTexts: inputPowerTable.setStatus('current')
inputPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "inputIndex"), (0, "EATON-EPDU-MIB", "inputPowerIndex"))
if mibBuilder.loadTexts: inputPowerEntry.setStatus('current')
inputPowerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12)))
if mibBuilder.loadTexts: inputPowerIndex.setStatus('current')
inputPowerMeasType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("total", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputPowerMeasType.setStatus('current')
inputVA = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputVA.setStatus('current')
inputWatts = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputWatts.setStatus('current')
inputWh = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputWh.setStatus('current')
inputWhTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 6), UnixTimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputWhTimer.setStatus('current')
inputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputPowerFactor.setStatus('current')
inputVAR = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputVAR.setStatus('current')
inputTotalPowerTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5), )
if mibBuilder.loadTexts: inputTotalPowerTable.setStatus('current')
inputTotalPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "inputIndex"))
if mibBuilder.loadTexts: inputTotalPowerEntry.setStatus('current')
inputTotalVA = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputTotalVA.setStatus('current')
inputTotalWatts = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputTotalWatts.setStatus('current')
inputTotalWh = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: inputTotalWh.setStatus('current')
inputTotalWhTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 6), UnixTimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputTotalWhTimer.setStatus('current')
inputTotalPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputTotalPowerFactor.setStatus('current')
inputTotalVAR = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: inputTotalVAR.setStatus('current')
groupTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1), )
if mibBuilder.loadTexts: groupTable.setStatus('current')
groupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "groupIndex"))
if mibBuilder.loadTexts: groupEntry.setStatus('current')
groupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: groupIndex.setStatus('current')
groupID = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(2, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupID.setStatus('current')
groupName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupName.setStatus('current')
groupType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 0), ("breaker1pole", 1), ("breaker2pole", 2), ("breaker3pole", 3), ("outletSection", 4), ("userDefined", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupType.setStatus('current')
groupBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("notApplicable", 0), ("breakerOn", 1), ("breakerOff", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupBreakerStatus.setStatus('current')
groupChildCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupChildCount.setStatus('current')
groupChildTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2), )
if mibBuilder.loadTexts: groupChildTable.setStatus('current')
groupChildEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "groupIndex"), (0, "EATON-EPDU-MIB", "groupChildIndex"))
if mibBuilder.loadTexts: groupChildEntry.setStatus('current')
groupChildIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32)))
if mibBuilder.loadTexts: groupChildIndex.setStatus('current')
groupChildType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 0), ("section", 2), ("custom", 3), ("outlet", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupChildType.setStatus('current')
groupChildOID = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1, 3), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupChildOID.setStatus('current')
groupVoltageTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3), )
if mibBuilder.loadTexts: groupVoltageTable.setStatus('current')
groupVoltageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "groupIndex"))
if mibBuilder.loadTexts: groupVoltageEntry.setStatus('current')
groupVoltageMeasType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("unknown", 0), ("singlePhase", 1), ("phase1toN", 2), ("phase2toN", 3), ("phase3toN", 4), ("phase1to2", 5), ("phase2to3", 6), ("phase3to1", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupVoltageMeasType.setStatus('current')
groupVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupVoltage.setStatus('current')
groupVoltageThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupVoltageThStatus.setStatus('current')
groupVoltageThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupVoltageThLowerWarning.setStatus('current')
groupVoltageThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupVoltageThLowerCritical.setStatus('current')
groupVoltageThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupVoltageThUpperWarning.setStatus('current')
groupVoltageThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupVoltageThUpperCritical.setStatus('current')
groupCurrentTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4), )
if mibBuilder.loadTexts: groupCurrentTable.setStatus('current')
groupCurrentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "groupIndex"))
if mibBuilder.loadTexts: groupCurrentEntry.setStatus('current')
groupCurrentCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupCurrentCapacity.setStatus('current')
groupCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupCurrent.setStatus('current')
groupCurrentThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupCurrentThStatus.setStatus('current')
groupCurrentThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupCurrentThLowerWarning.setStatus('current')
groupCurrentThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupCurrentThLowerCritical.setStatus('current')
groupCurrentThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupCurrentThUpperWarning.setStatus('current')
groupCurrentThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupCurrentThUpperCritical.setStatus('current')
groupCurrentCrestFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupCurrentCrestFactor.setStatus('current')
groupCurrentPercentLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupCurrentPercentLoad.setStatus('current')
groupPowerTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5), )
if mibBuilder.loadTexts: groupPowerTable.setStatus('current')
groupPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "groupIndex"))
if mibBuilder.loadTexts: groupPowerEntry.setStatus('current')
groupVA = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupVA.setStatus('current')
groupWatts = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupWatts.setStatus('current')
groupWh = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupWh.setStatus('current')
groupWhTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 5), UnixTimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupWhTimer.setStatus('current')
groupPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupPowerFactor.setStatus('current')
groupVAR = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupVAR.setStatus('current')
groupControlTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6), )
if mibBuilder.loadTexts: groupControlTable.setStatus('current')
groupControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "groupIndex"))
if mibBuilder.loadTexts: groupControlEntry.setStatus('current')
groupControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("off", 0), ("on", 1), ("rebooting", 2), ("mixed", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: groupControlStatus.setStatus('current')
groupControlOffCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupControlOffCmd.setStatus('current')
groupControl0nCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupControl0nCmd.setStatus('current')
groupControlRebootCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 0))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: groupControlRebootCmd.setStatus('current')
outletTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1), )
if mibBuilder.loadTexts: outletTable.setStatus('current')
outletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "outletIndex"))
if mibBuilder.loadTexts: outletEntry.setStatus('current')
outletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: outletIndex.setStatus('current')
outletID = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(2, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletID.setStatus('current')
outletName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletName.setStatus('current')
outletParentCount = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletParentCount.setStatus('current')
outletType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 10, 11, 12, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30))).clone(namedValues=NamedValues(("unknown", 0), ("iecC13", 1), ("iecC19", 2), ("uk", 10), ("french", 11), ("schuko", 12), ("nema515", 20), ("nema51520", 21), ("nema520", 22), ("nemaL520", 23), ("nemaL530", 24), ("nema615", 25), ("nema620", 26), ("nemaL620", 27), ("nemaL630", 28), ("nemaL715", 29), ("rf203p277", 30)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletType.setStatus('current')
outletParentTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2), )
if mibBuilder.loadTexts: outletParentTable.setStatus('current')
outletParentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "outletIndex"), (0, "EATON-EPDU-MIB", "outletParentIndex"))
if mibBuilder.loadTexts: outletParentEntry.setStatus('current')
outletParentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32)))
if mibBuilder.loadTexts: outletParentIndex.setStatus('current')
outletParentType = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("breaker", 1), ("section", 2), ("custom", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletParentType.setStatus('current')
outletParentOID = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1, 3), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletParentOID.setStatus('current')
outletVoltageTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3), )
if mibBuilder.loadTexts: outletVoltageTable.setStatus('current')
outletVoltageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "outletIndex"))
if mibBuilder.loadTexts: outletVoltageEntry.setStatus('current')
outletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletVoltage.setStatus('current')
outletVoltageThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletVoltageThStatus.setStatus('current')
outletVoltageThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletVoltageThLowerWarning.setStatus('current')
outletVoltageThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletVoltageThLowerCritical.setStatus('current')
outletVoltageThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletVoltageThUpperWarning.setStatus('current')
outletVoltageThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 500000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletVoltageThUpperCritical.setStatus('current')
outletCurrentTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4), )
if mibBuilder.loadTexts: outletCurrentTable.setStatus('current')
outletCurrentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "outletIndex"))
if mibBuilder.loadTexts: outletCurrentEntry.setStatus('current')
outletCurrentCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletCurrentCapacity.setStatus('current')
outletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletCurrent.setStatus('current')
outletCurrentThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletCurrentThStatus.setStatus('current')
outletCurrentThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletCurrentThLowerWarning.setStatus('current')
outletCurrentThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletCurrentThLowerCritical.setStatus('current')
outletCurrentThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletCurrentThUpperWarning.setStatus('current')
outletCurrentThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletCurrentThUpperCritical.setStatus('current')
outletCurrentCrestFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletCurrentCrestFactor.setStatus('current')
outletCurrentPercentLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletCurrentPercentLoad.setStatus('current')
outletPowerTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5), )
if mibBuilder.loadTexts: outletPowerTable.setStatus('current')
outletPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "outletIndex"))
if mibBuilder.loadTexts: outletPowerEntry.setStatus('current')
outletVA = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletVA.setStatus('current')
outletWatts = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletWatts.setStatus('current')
outletWh = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletWh.setStatus('current')
outletWhTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 5), UnixTimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletWhTimer.setStatus('current')
outletPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletPowerFactor.setStatus('current')
outletVAR = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletVAR.setStatus('current')
outletControlTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6), )
if mibBuilder.loadTexts: outletControlTable.setStatus('current')
outletControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "outletIndex"))
if mibBuilder.loadTexts: outletControlEntry.setStatus('current')
outletControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("off", 0), ("on", 1), ("pendingOff", 2), ("pendingOn", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: outletControlStatus.setStatus('current')
outletControlOffCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlOffCmd.setStatus('current')
outletControlOnCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlOnCmd.setStatus('current')
outletControlRebootCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlRebootCmd.setStatus('current')
outletControlPowerOnState = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("off", 0), ("on", 1), ("lastState", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlPowerOnState.setStatus('current')
outletControlSequenceDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlSequenceDelay.setStatus('current')
outletControlRebootOffTime = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlRebootOffTime.setStatus('current')
outletControlSwitchable = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("switchable", 1), ("notSwitchable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlSwitchable.setStatus('current')
outletControlShutoffDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 99999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: outletControlShutoffDelay.setStatus('current')
temperatureTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1), )
if mibBuilder.loadTexts: temperatureTable.setStatus('current')
temperatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "temperatureIndex"))
if mibBuilder.loadTexts: temperatureEntry.setStatus('current')
temperatureIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: temperatureIndex.setStatus('current')
temperatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: temperatureName.setStatus('current')
temperatureProbeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(-1, 0, 1))).clone(namedValues=NamedValues(("bad", -1), ("disconnected", 0), ("connected", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: temperatureProbeStatus.setStatus('current')
temperatureValue = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: temperatureValue.setStatus('current')
temperatureThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: temperatureThStatus.setStatus('current')
temperatureThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 150000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: temperatureThLowerWarning.setStatus('current')
temperatureThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 150000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: temperatureThLowerCritical.setStatus('current')
temperatureThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 150000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: temperatureThUpperWarning.setStatus('current')
temperatureThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 150000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: temperatureThUpperCritical.setStatus('current')
humidityTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2), )
if mibBuilder.loadTexts: humidityTable.setStatus('current')
humidityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "humidityIndex"))
if mibBuilder.loadTexts: humidityEntry.setStatus('current')
humidityIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: humidityIndex.setStatus('current')
humidityName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: humidityName.setStatus('current')
humidityProbeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(-1, 0, 1))).clone(namedValues=NamedValues(("bad", -1), ("disconnected", 0), ("connected", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: humidityProbeStatus.setStatus('current')
humidityValue = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: humidityValue.setStatus('current')
humidityThStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("good", 0), ("lowWarning", 1), ("lowCritical", 2), ("highWarning", 3), ("highCritical", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: humidityThStatus.setStatus('current')
humidityThLowerWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: humidityThLowerWarning.setStatus('current')
humidityThLowerCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: humidityThLowerCritical.setStatus('current')
humidityThUpperWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: humidityThUpperWarning.setStatus('current')
humidityThUpperCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: humidityThUpperCritical.setStatus('current')
contactTable = MibTable((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3), )
if mibBuilder.loadTexts: contactTable.setStatus('current')
contactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1), ).setIndexNames((0, "EATON-EPDU-MIB", "strappingIndex"), (0, "EATON-EPDU-MIB", "contactIndex"))
if mibBuilder.loadTexts: contactEntry.setStatus('current')
contactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3))).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: contactIndex.setStatus('current')
contactName = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: contactName.setStatus('current')
contactProbeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(-1, 0, 1))).clone(namedValues=NamedValues(("bad", -1), ("disconnected", 0), ("connected", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: contactProbeStatus.setStatus('current')
contactState = MibTableColumn((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(-1, 0, 1))).clone(namedValues=NamedValues(("contactBad", -1), ("contactOpen", 0), ("contactClosed", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: contactState.setStatus('current')
eatonEpduCompliances = ModuleCompliance((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 1)).setObjects(("EATON-EPDU-MIB", "epduRequiredGroup"), ("EATON-EPDU-MIB", "epduOptionalGroup"), ("EATON-EPDU-MIB", "epduNotifyGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
eatonEpduCompliances = eatonEpduCompliances.setStatus('current')
epduRequiredGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5, 1)).setObjects(("EATON-EPDU-MIB", "unitName"), ("EATON-EPDU-MIB", "firmwareVersion"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
epduRequiredGroup = epduRequiredGroup.setStatus('current')
epduOptionalGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5, 2)).setObjects(("EATON-EPDU-MIB", "clockValue"), ("EATON-EPDU-MIB", "commInterface"), ("EATON-EPDU-MIB", "communicationStatus"), ("EATON-EPDU-MIB", "contactCount"), ("EATON-EPDU-MIB", "contactIndex"), ("EATON-EPDU-MIB", "contactName"), ("EATON-EPDU-MIB", "contactProbeStatus"), ("EATON-EPDU-MIB", "contactState"), ("EATON-EPDU-MIB", "groupChildCount"), ("EATON-EPDU-MIB", "groupChildOID"), ("EATON-EPDU-MIB", "groupChildType"), ("EATON-EPDU-MIB", "groupControl0nCmd"), ("EATON-EPDU-MIB", "groupControlOffCmd"), ("EATON-EPDU-MIB", "groupControlRebootCmd"), ("EATON-EPDU-MIB", "groupControlStatus"), ("EATON-EPDU-MIB", "groupCount"), ("EATON-EPDU-MIB", "groupCurrent"), ("EATON-EPDU-MIB", "groupCurrentCapacity"), ("EATON-EPDU-MIB", "groupCurrentCrestFactor"), ("EATON-EPDU-MIB", "groupCurrentPercentLoad"), ("EATON-EPDU-MIB", "groupCurrentThLowerCritical"), ("EATON-EPDU-MIB", "groupCurrentThLowerWarning"), ("EATON-EPDU-MIB", "groupCurrentThStatus"), ("EATON-EPDU-MIB", "groupCurrentThUpperCritical"), ("EATON-EPDU-MIB", "groupCurrentThUpperWarning"), ("EATON-EPDU-MIB", "groupID"), ("EATON-EPDU-MIB", "groupIndex"), ("EATON-EPDU-MIB", "groupName"), ("EATON-EPDU-MIB", "groupBreakerStatus"), ("EATON-EPDU-MIB", "groupPowerFactor"), ("EATON-EPDU-MIB", "groupType"), ("EATON-EPDU-MIB", "groupVA"), ("EATON-EPDU-MIB", "groupVAR"), ("EATON-EPDU-MIB", "groupVoltage"), ("EATON-EPDU-MIB", "groupVoltageMeasType"), ("EATON-EPDU-MIB", "groupVoltageThLowerCritical"), ("EATON-EPDU-MIB", "groupVoltageThLowerWarning"), ("EATON-EPDU-MIB", "groupVoltageThStatus"), ("EATON-EPDU-MIB", "groupVoltageThUpperCritical"), ("EATON-EPDU-MIB", "groupVoltageThUpperWarning"), ("EATON-EPDU-MIB", "groupWatts"), ("EATON-EPDU-MIB", "groupWh"), ("EATON-EPDU-MIB", "groupWhTimer"), ("EATON-EPDU-MIB", "humidityCount"), ("EATON-EPDU-MIB", "humidityIndex"), ("EATON-EPDU-MIB", "humidityName"), ("EATON-EPDU-MIB", "humidityProbeStatus"), ("EATON-EPDU-MIB", "humidityThLowerCritical"), ("EATON-EPDU-MIB", "humidityThLowerWarning"), ("EATON-EPDU-MIB", "humidityThStatus"), ("EATON-EPDU-MIB", "humidityThUpperCritical"), ("EATON-EPDU-MIB", "humidityThUpperWarning"), ("EATON-EPDU-MIB", "humidityValue"), ("EATON-EPDU-MIB", "inputCount"), ("EATON-EPDU-MIB", "inputCurrent"), ("EATON-EPDU-MIB", "inputCurrentCapacity"), ("EATON-EPDU-MIB", "inputCurrentCount"), ("EATON-EPDU-MIB", "inputCurrentCrestFactor"), ("EATON-EPDU-MIB", "inputCurrentIndex"), ("EATON-EPDU-MIB", "inputCurrentMeasType"), ("EATON-EPDU-MIB", "inputCurrentPercentLoad"), ("EATON-EPDU-MIB", "inputCurrentThLowerCritical"), ("EATON-EPDU-MIB", "inputCurrentThLowerWarning"), ("EATON-EPDU-MIB", "inputCurrentThStatus"), ("EATON-EPDU-MIB", "inputCurrentThUpperCritical"), ("EATON-EPDU-MIB", "inputCurrentThUpperWarning"), ("EATON-EPDU-MIB", "inputFrequency"), ("EATON-EPDU-MIB", "inputFrequencyStatus"), ("EATON-EPDU-MIB", "inputIndex"), ("EATON-EPDU-MIB", "inputPlugType"), ("EATON-EPDU-MIB", "inputPowerCount"), ("EATON-EPDU-MIB", "inputPowerFactor"), ("EATON-EPDU-MIB", "inputPowerMeasType"), ("EATON-EPDU-MIB", "inputType"), ("EATON-EPDU-MIB", "inputVA"), ("EATON-EPDU-MIB", "inputVAR"), ("EATON-EPDU-MIB", "inputVoltage"), ("EATON-EPDU-MIB", "inputVoltageCount"), ("EATON-EPDU-MIB", "inputVoltageIndex"), ("EATON-EPDU-MIB", "inputVoltageMeasType"), ("EATON-EPDU-MIB", "inputVoltageThLowerCritical"), ("EATON-EPDU-MIB", "inputVoltageThLowerWarning"), ("EATON-EPDU-MIB", "inputVoltageThStatus"), ("EATON-EPDU-MIB", "inputVoltageThUpperCritical"), ("EATON-EPDU-MIB", "inputVoltageThUpperWarning"), ("EATON-EPDU-MIB", "inputWatts"), ("EATON-EPDU-MIB", "inputWh"), ("EATON-EPDU-MIB", "inputWhTimer"), ("EATON-EPDU-MIB", "inputTotalVA"), ("EATON-EPDU-MIB", "inputTotalWatts"), ("EATON-EPDU-MIB", "inputTotalWh"), ("EATON-EPDU-MIB", "inputTotalWhTimer"), ("EATON-EPDU-MIB", "inputTotalPowerFactor"), ("EATON-EPDU-MIB", "inputTotalVAR"), ("EATON-EPDU-MIB", "internalStatus"), ("EATON-EPDU-MIB", "lcdControl"), ("EATON-EPDU-MIB", "outletControlSwitchable"), ("EATON-EPDU-MIB", "outletControlShutoffDelay"), ("EATON-EPDU-MIB", "outletControlOffCmd"), ("EATON-EPDU-MIB", "outletControlOnCmd"), ("EATON-EPDU-MIB", "outletControlPowerOnState"), ("EATON-EPDU-MIB", "outletControlRebootCmd"), ("EATON-EPDU-MIB", "outletControlRebootOffTime"), ("EATON-EPDU-MIB", "outletControlSequenceDelay"), ("EATON-EPDU-MIB", "outletControlStatus"), ("EATON-EPDU-MIB", "outletCount"), ("EATON-EPDU-MIB", "outletCurrent"), ("EATON-EPDU-MIB", "outletCurrentCapacity"), ("EATON-EPDU-MIB", "outletCurrentCrestFactor"), ("EATON-EPDU-MIB", "outletCurrentPercentLoad"), ("EATON-EPDU-MIB", "outletCurrentThLowerCritical"), ("EATON-EPDU-MIB", "outletCurrentThLowerWarning"), ("EATON-EPDU-MIB", "outletCurrentThStatus"), ("EATON-EPDU-MIB", "outletCurrentThUpperCritical"), ("EATON-EPDU-MIB", "outletCurrentThUpperWarning"), ("EATON-EPDU-MIB", "outletID"), ("EATON-EPDU-MIB", "outletIndex"), ("EATON-EPDU-MIB", "outletName"), ("EATON-EPDU-MIB", "outletParentCount"), ("EATON-EPDU-MIB", "outletParentOID"), ("EATON-EPDU-MIB", "outletParentType"), ("EATON-EPDU-MIB", "outletPowerFactor"), ("EATON-EPDU-MIB", "outletType"), ("EATON-EPDU-MIB", "outletVA"), ("EATON-EPDU-MIB", "outletVAR"), ("EATON-EPDU-MIB", "outletVoltage"), ("EATON-EPDU-MIB", "outletVoltageThLowerCritical"), ("EATON-EPDU-MIB", "outletVoltageThLowerWarning"), ("EATON-EPDU-MIB", "outletVoltageThStatus"), ("EATON-EPDU-MIB", "outletVoltageThUpperCritical"), ("EATON-EPDU-MIB", "outletVoltageThUpperWarning"), ("EATON-EPDU-MIB", "outletWatts"), ("EATON-EPDU-MIB", "outletWh"), ("EATON-EPDU-MIB", "outletWhTimer"), ("EATON-EPDU-MIB", "partNumber"), ("EATON-EPDU-MIB", "productName"), ("EATON-EPDU-MIB", "serialNumber"), ("EATON-EPDU-MIB", "strappingIndex"), ("EATON-EPDU-MIB", "strappingStatus"), ("EATON-EPDU-MIB", "temperatureCount"), ("EATON-EPDU-MIB", "temperatureIndex"), ("EATON-EPDU-MIB", "temperatureName"), ("EATON-EPDU-MIB", "temperatureProbeStatus"), ("EATON-EPDU-MIB", "temperatureScale"), ("EATON-EPDU-MIB", "unitType"), ("EATON-EPDU-MIB", "temperatureThLowerCritical"), ("EATON-EPDU-MIB", "temperatureThLowerWarning"), ("EATON-EPDU-MIB", "temperatureThStatus"), ("EATON-EPDU-MIB", "temperatureThUpperCritical"), ("EATON-EPDU-MIB", "temperatureThUpperWarning"), ("EATON-EPDU-MIB", "temperatureValue"), ("EATON-EPDU-MIB", "unitControlOffCmd"), ("EATON-EPDU-MIB", "unitControlOnCmd"), ("EATON-EPDU-MIB", "unitName"), ("EATON-EPDU-MIB", "unitsPresent"), ("EATON-EPDU-MIB", "userName"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
epduOptionalGroup = epduOptionalGroup.setStatus('current')
epduNotifyGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5, 3)).setObjects(("EATON-EPDU-MIB", "notifyBootUp"), ("EATON-EPDU-MIB", "notifyCommunicationStatus"), ("EATON-EPDU-MIB", "notifyContactState"), ("EATON-EPDU-MIB", "notifyFailedLogin"), ("EATON-EPDU-MIB", "notifyGroupCurrentThStatus"), ("EATON-EPDU-MIB", "notifyGroupVoltageThStatus"), ("EATON-EPDU-MIB", "notifyGroupBreakerStatus"), ("EATON-EPDU-MIB", "notifyHumidityThStatus"), ("EATON-EPDU-MIB", "notifyInputCurrentThStatus"), ("EATON-EPDU-MIB", "notifyInputFrequencyStatus"), ("EATON-EPDU-MIB", "notifyInputVoltageThStatus"), ("EATON-EPDU-MIB", "notifyInternalStatus"), ("EATON-EPDU-MIB", "notifyOutletControlStatus"), ("EATON-EPDU-MIB", "notifyOutletCurrentThStatus"), ("EATON-EPDU-MIB", "notifyOutletVoltageThStatus"), ("EATON-EPDU-MIB", "notifyProbeStatus"), ("EATON-EPDU-MIB", "notifyStrappingStatus"), ("EATON-EPDU-MIB", "notifyTemperatureThStatus"), ("EATON-EPDU-MIB", "notifyTest"), ("EATON-EPDU-MIB", "notifyUserLogin"), ("EATON-EPDU-MIB", "notifyUserLogout"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
epduNotifyGroup = epduNotifyGroup.setStatus('current')
mibBuilder.exportSymbols("EATON-EPDU-MIB", outletCurrent=outletCurrent, notifyGroupVoltageThStatus=notifyGroupVoltageThStatus, inputTotalWhTimer=inputTotalWhTimer, partNumber=partNumber, outletID=outletID, inputVoltageEntry=inputVoltageEntry, outletControlOffCmd=outletControlOffCmd, humidityEntry=humidityEntry, notifyOutletCurrentThStatus=notifyOutletCurrentThStatus, humidityIndex=humidityIndex, humidityValue=humidityValue, inputCount=inputCount, conformance=conformance, outletCurrentTable=outletCurrentTable, commInterface=commInterface, temperatureValue=temperatureValue, inputVoltageThUpperWarning=inputVoltageThUpperWarning, strappingStatus=strappingStatus, groupVoltageThStatus=groupVoltageThStatus, inputVoltageThLowerCritical=inputVoltageThLowerCritical, notifyBootUp=notifyBootUp, groupChildCount=groupChildCount, inputCurrentThStatus=inputCurrentThStatus, groupChildTable=groupChildTable, notifyStrappingStatus=notifyStrappingStatus, inputCurrentMeasType=inputCurrentMeasType, contactEntry=contactEntry, groupCount=groupCount, inputCurrentCapacity=inputCurrentCapacity, inputType=inputType, notifyProbeStatus=notifyProbeStatus, humidityCount=humidityCount, outletControlOnCmd=outletControlOnCmd, contactState=contactState, notifyInternalStatus=notifyInternalStatus, inputTotalPowerTable=inputTotalPowerTable, groupEntry=groupEntry, lcdControl=lcdControl, inputVoltage=inputVoltage, outletCurrentThLowerWarning=outletCurrentThLowerWarning, inputCurrentThUpperWarning=inputCurrentThUpperWarning, unitsPresent=unitsPresent, temperatureTable=temperatureTable, epduNotifyGroup=epduNotifyGroup, inputTotalPowerEntry=inputTotalPowerEntry, notifyUserLogout=notifyUserLogout, outletVoltage=outletVoltage, inputCurrentEntry=inputCurrentEntry, inputTotalVAR=inputTotalVAR, unitType=unitType, notifyOutletVoltageThStatus=notifyOutletVoltageThStatus, groupCurrentThLowerCritical=groupCurrentThLowerCritical, outletVoltageThLowerCritical=outletVoltageThLowerCritical, outletCurrentEntry=outletCurrentEntry, groupVoltageThLowerCritical=groupVoltageThLowerCritical, humidityThLowerWarning=humidityThLowerWarning, groupControl0nCmd=groupControl0nCmd, inputCurrentThLowerWarning=inputCurrentThLowerWarning, inputTable=inputTable, strappingIndex=strappingIndex, userName=userName, outletCurrentThLowerCritical=outletCurrentThLowerCritical, temperatureThLowerWarning=temperatureThLowerWarning, objectGroups=objectGroups, inputPlugType=inputPlugType, inputVoltageMeasType=inputVoltageMeasType, inputCurrentIndex=inputCurrentIndex, groupPowerTable=groupPowerTable, outletVA=outletVA, groupCurrentThUpperWarning=groupCurrentThUpperWarning, groups=groups, inputCurrentThLowerCritical=inputCurrentThLowerCritical, outletVoltageTable=outletVoltageTable, inputVoltageCount=inputVoltageCount, outletEntry=outletEntry, outletControlSequenceDelay=outletControlSequenceDelay, humidityThUpperCritical=humidityThUpperCritical, inputCurrentCrestFactor=inputCurrentCrestFactor, temperatureName=temperatureName, outletIndex=outletIndex, unitControlEntry=unitControlEntry, notifyUserLogin=notifyUserLogin, outletParentEntry=outletParentEntry, outletTable=outletTable, inputFrequency=inputFrequency, unitControlOffCmd=unitControlOffCmd, outletVoltageThLowerWarning=outletVoltageThLowerWarning, notifyInputFrequencyStatus=notifyInputFrequencyStatus, outletControlRebootCmd=outletControlRebootCmd, inputTotalWatts=inputTotalWatts, unitTable=unitTable, clockValue=clockValue, groupControlEntry=groupControlEntry, groupCurrentCapacity=groupCurrentCapacity, outletControlRebootOffTime=outletControlRebootOffTime, temperatureThUpperCritical=temperatureThUpperCritical, groupCurrentEntry=groupCurrentEntry, groupCurrent=groupCurrent, notifyGroupCurrentThStatus=notifyGroupCurrentThStatus, outletPowerTable=outletPowerTable, outletParentIndex=outletParentIndex, contactCount=contactCount, outletControlShutoffDelay=outletControlShutoffDelay, inputTotalVA=inputTotalVA, groupType=groupType, outletControlPowerOnState=outletControlPowerOnState, outletParentTable=outletParentTable, humidityProbeStatus=humidityProbeStatus, groupCurrentTable=groupCurrentTable, groupName=groupName, temperatureProbeStatus=temperatureProbeStatus, eatonEpduCompliances=eatonEpduCompliances, outletControlTable=outletControlTable, outletParentType=outletParentType, inputVoltageThLowerWarning=inputVoltageThLowerWarning, PYSNMP_MODULE_ID=eatonEpdu, groupPowerEntry=groupPowerEntry, outletType=outletType, unitName=unitName, contactName=contactName, temperatureScale=temperatureScale, groupCurrentPercentLoad=groupCurrentPercentLoad, firmwareVersion=firmwareVersion, notifications=notifications, UnixTimeStamp=UnixTimeStamp, outletCount=outletCount, inputCurrentThUpperCritical=inputCurrentThUpperCritical, groupID=groupID, groupChildEntry=groupChildEntry, humidityThUpperWarning=humidityThUpperWarning, unitEntry=unitEntry, outletParentCount=outletParentCount, inputVAR=inputVAR, temperatureThLowerCritical=temperatureThLowerCritical, outlets=outlets, inputCurrentCount=inputCurrentCount, inputVA=inputVA, outletCurrentThUpperWarning=outletCurrentThUpperWarning, outletPowerFactor=outletPowerFactor, inputWh=inputWh, outletName=outletName, inputPowerIndex=inputPowerIndex, temperatureEntry=temperatureEntry, groupVoltageThUpperWarning=groupVoltageThUpperWarning, outletWhTimer=outletWhTimer, groupChildOID=groupChildOID, temperatureThUpperWarning=temperatureThUpperWarning, notifyGroupBreakerStatus=notifyGroupBreakerStatus, outletParentOID=outletParentOID, humidityName=humidityName, groupChildType=groupChildType, groupIndex=groupIndex, inputPowerTable=inputPowerTable, inputVoltageIndex=inputVoltageIndex, inputWatts=inputWatts, inputs=inputs, notifyContactState=notifyContactState, groupPowerFactor=groupPowerFactor, outletCurrentCrestFactor=outletCurrentCrestFactor, outletControlEntry=outletControlEntry, temperatureIndex=temperatureIndex, outletWh=outletWh, notifyOutletControlStatus=notifyOutletControlStatus, contactIndex=contactIndex, inputPowerCount=inputPowerCount, outletControlSwitchable=outletControlSwitchable, groupVoltageThLowerWarning=groupVoltageThLowerWarning, inputCurrentTable=inputCurrentTable, outletVAR=outletVAR, groupVA=groupVA, inputEntry=inputEntry, inputVoltageTable=inputVoltageTable, inputWhTimer=inputWhTimer, outletPowerEntry=outletPowerEntry, outletControlStatus=outletControlStatus, groupWatts=groupWatts, outletCurrentCapacity=outletCurrentCapacity, inputPowerFactor=inputPowerFactor, groupVoltageEntry=groupVoltageEntry, temperatureCount=temperatureCount, humidityThLowerCritical=humidityThLowerCritical, inputTotalPowerFactor=inputTotalPowerFactor, epduOptionalGroup=epduOptionalGroup, notifyHumidityThStatus=notifyHumidityThStatus, outletVoltageThUpperCritical=outletVoltageThUpperCritical, groupVAR=groupVAR, environmental=environmental, groupCurrentThUpperCritical=groupCurrentThUpperCritical, groupControlStatus=groupControlStatus, notifyTest=notifyTest, humidityTable=humidityTable, inputIndex=inputIndex, inputTotalWh=inputTotalWh, unitControlOnCmd=unitControlOnCmd, unitControlTable=unitControlTable, outletVoltageThStatus=outletVoltageThStatus, outletWatts=outletWatts, groupBreakerStatus=groupBreakerStatus, eatonEpdu=eatonEpdu, notifyFailedLogin=notifyFailedLogin, temperatureThStatus=temperatureThStatus, inputPowerEntry=inputPowerEntry, groupVoltageTable=groupVoltageTable, productName=productName, outletCurrentThUpperCritical=outletCurrentThUpperCritical, outletVoltageEntry=outletVoltageEntry, inputPowerMeasType=inputPowerMeasType, groupTable=groupTable, groupWhTimer=groupWhTimer, groupVoltage=groupVoltage, groupCurrentThLowerWarning=groupCurrentThLowerWarning, epduRequiredGroup=epduRequiredGroup, inputFrequencyStatus=inputFrequencyStatus, groupCurrentThStatus=groupCurrentThStatus, contactProbeStatus=contactProbeStatus, groupControlRebootCmd=groupControlRebootCmd, inputCurrentPercentLoad=inputCurrentPercentLoad, outletCurrentPercentLoad=outletCurrentPercentLoad, humidityThStatus=humidityThStatus, serialNumber=serialNumber, notifyInputVoltageThStatus=notifyInputVoltageThStatus, groupControlTable=groupControlTable, outletVoltageThUpperWarning=outletVoltageThUpperWarning, groupControlOffCmd=groupControlOffCmd, groupVoltageMeasType=groupVoltageMeasType, contactTable=contactTable, inputVoltageThStatus=inputVoltageThStatus, inputVoltageThUpperCritical=inputVoltageThUpperCritical, groupWh=groupWh, notifyTemperatureThStatus=notifyTemperatureThStatus, internalStatus=internalStatus, outletCurrentThStatus=outletCurrentThStatus, notifyCommunicationStatus=notifyCommunicationStatus, notifyInputCurrentThStatus=notifyInputCurrentThStatus, communicationStatus=communicationStatus, groupChildIndex=groupChildIndex, groupVoltageThUpperCritical=groupVoltageThUpperCritical, groupCurrentCrestFactor=groupCurrentCrestFactor, units=units, inputCurrent=inputCurrent)
|
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, single_value_constraint, value_size_constraint, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint')
(pdu_agent,) = mibBuilder.importSymbols('EATON-OIDS', 'pduAgent')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, time_ticks, bits, counter64, object_identity, ip_address, unsigned32, counter32, mib_identifier, gauge32, integer32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'TimeTicks', 'Bits', 'Counter64', 'ObjectIdentity', 'IpAddress', 'Unsigned32', 'Counter32', 'MibIdentifier', 'Gauge32', 'Integer32', 'ModuleIdentity')
(display_string, date_and_time, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'DateAndTime', 'TextualConvention')
eaton_epdu = module_identity((1, 3, 6, 1, 4, 1, 534, 6, 6, 7))
eatonEpdu.setRevisions(('2014-09-29 12:00', '2013-12-18 12:00', '2013-09-02 12:00', '2013-05-29 12:00', '2013-02-21 12:00', '2011-11-21 12:00', '2011-10-24 12:00', '2011-02-07 15:29'))
if mibBuilder.loadTexts:
eatonEpdu.setLastUpdated('201312181200Z')
if mibBuilder.loadTexts:
eatonEpdu.setOrganization('Eaton Corporation')
class Unixtimestamp(TextualConvention, Counter32):
status = 'current'
notifications = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0))
units = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1))
inputs = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3))
groups = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5))
outlets = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6))
environmental = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7))
conformance = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25))
object_groups = mib_identifier((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5))
notify_user_login = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 1)).setObjects(('EATON-EPDU-MIB', 'userName'), ('EATON-EPDU-MIB', 'commInterface'))
if mibBuilder.loadTexts:
notifyUserLogin.setStatus('current')
notify_user_logout = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 2)).setObjects(('EATON-EPDU-MIB', 'userName'), ('EATON-EPDU-MIB', 'commInterface'))
if mibBuilder.loadTexts:
notifyUserLogout.setStatus('current')
notify_failed_login = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 3)).setObjects(('EATON-EPDU-MIB', 'userName'), ('EATON-EPDU-MIB', 'commInterface'))
if mibBuilder.loadTexts:
notifyFailedLogin.setStatus('current')
notify_boot_up = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 4)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'))
if mibBuilder.loadTexts:
notifyBootUp.setStatus('current')
notify_input_voltage_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 11)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'inputIndex'), ('EATON-EPDU-MIB', 'inputVoltageIndex'), ('EATON-EPDU-MIB', 'inputVoltage'), ('EATON-EPDU-MIB', 'inputVoltageThStatus'))
if mibBuilder.loadTexts:
notifyInputVoltageThStatus.setStatus('current')
notify_input_current_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 12)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'inputIndex'), ('EATON-EPDU-MIB', 'inputCurrentIndex'), ('EATON-EPDU-MIB', 'inputCurrent'), ('EATON-EPDU-MIB', 'inputCurrentThStatus'))
if mibBuilder.loadTexts:
notifyInputCurrentThStatus.setStatus('current')
notify_input_frequency_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 13)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'inputIndex'), ('EATON-EPDU-MIB', 'inputFrequency'), ('EATON-EPDU-MIB', 'inputFrequencyStatus'))
if mibBuilder.loadTexts:
notifyInputFrequencyStatus.setStatus('current')
notify_group_voltage_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 21)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'groupIndex'), ('EATON-EPDU-MIB', 'groupVoltage'), ('EATON-EPDU-MIB', 'groupVoltageThStatus'))
if mibBuilder.loadTexts:
notifyGroupVoltageThStatus.setStatus('current')
notify_group_current_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 22)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'groupIndex'), ('EATON-EPDU-MIB', 'groupCurrent'), ('EATON-EPDU-MIB', 'groupCurrentThStatus'))
if mibBuilder.loadTexts:
notifyGroupCurrentThStatus.setStatus('current')
notify_group_breaker_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 23)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'groupIndex'), ('EATON-EPDU-MIB', 'groupBreakerStatus'))
if mibBuilder.loadTexts:
notifyGroupBreakerStatus.setStatus('current')
notify_outlet_voltage_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 31)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'outletIndex'), ('EATON-EPDU-MIB', 'outletVoltage'), ('EATON-EPDU-MIB', 'outletVoltageThStatus'))
if mibBuilder.loadTexts:
notifyOutletVoltageThStatus.setStatus('current')
notify_outlet_current_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 32)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'outletIndex'), ('EATON-EPDU-MIB', 'outletCurrent'), ('EATON-EPDU-MIB', 'outletCurrentThStatus'))
if mibBuilder.loadTexts:
notifyOutletCurrentThStatus.setStatus('current')
notify_outlet_control_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 33)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'outletIndex'), ('EATON-EPDU-MIB', 'outletControlStatus'))
if mibBuilder.loadTexts:
notifyOutletControlStatus.setStatus('current')
notify_temperature_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 41)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'temperatureIndex'), ('EATON-EPDU-MIB', 'temperatureValue'), ('EATON-EPDU-MIB', 'temperatureThStatus'))
if mibBuilder.loadTexts:
notifyTemperatureThStatus.setStatus('current')
notify_humidity_th_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 42)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'humidityIndex'), ('EATON-EPDU-MIB', 'humidityValue'), ('EATON-EPDU-MIB', 'humidityThStatus'))
if mibBuilder.loadTexts:
notifyHumidityThStatus.setStatus('current')
notify_contact_state = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 43)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'contactIndex'), ('EATON-EPDU-MIB', 'contactState'))
if mibBuilder.loadTexts:
notifyContactState.setStatus('current')
notify_probe_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 44)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'temperatureIndex'), ('EATON-EPDU-MIB', 'temperatureProbeStatus'))
if mibBuilder.loadTexts:
notifyProbeStatus.setStatus('current')
notify_communication_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 51)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'communicationStatus'))
if mibBuilder.loadTexts:
notifyCommunicationStatus.setStatus('current')
notify_internal_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 52)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'internalStatus'))
if mibBuilder.loadTexts:
notifyInternalStatus.setStatus('current')
notify_test = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 53))
if mibBuilder.loadTexts:
notifyTest.setStatus('current')
notify_strapping_status = notification_type((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 0, 54)).setObjects(('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'strappingStatus'))
if mibBuilder.loadTexts:
notifyStrappingStatus.setStatus('current')
units_present = mib_scalar((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
unitsPresent.setStatus('current')
unit_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2))
if mibBuilder.loadTexts:
unitTable.setStatus('current')
unit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'))
if mibBuilder.loadTexts:
unitEntry.setStatus('current')
strapping_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
strappingIndex.setStatus('current')
product_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
productName.setStatus('current')
part_number = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
partNumber.setStatus('current')
serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
serialNumber.setStatus('current')
firmware_version = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
firmwareVersion.setStatus('current')
unit_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(1, 63))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
unitName.setStatus('current')
lcd_control = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('notApplicable', 0), ('lcdScreenOff', 1), ('lcdKeyLock', 2), ('lcdScreenOffAndKeyLock', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
lcdControl.setStatus('current')
clock_value = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 8), date_and_time()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
clockValue.setStatus('current')
temperature_scale = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('celsius', 0), ('fahrenheit', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
temperatureScale.setStatus('current')
unit_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 0), ('switched', 1), ('advancedMonitored', 2), ('managed', 3), ('monitored', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
unitType.setStatus('current')
input_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCount.setStatus('current')
group_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupCount.setStatus('current')
outlet_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 22), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletCount.setStatus('current')
temperature_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 23), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
temperatureCount.setStatus('current')
humidity_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 24), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
humidityCount.setStatus('current')
contact_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 25), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
contactCount.setStatus('current')
communication_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('good', 0), ('communicationLost', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
communicationStatus.setStatus('current')
internal_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('good', 0), ('internalFailure', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
internalStatus.setStatus('current')
strapping_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('good', 0), ('communicationLost', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
strappingStatus.setStatus('current')
user_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 40), octet_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
userName.setStatus('current')
comm_interface = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('serial', 0), ('usb', 1), ('telnet', 2), ('web', 3), ('ftp', 4), ('xml', 5)))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
commInterface.setStatus('current')
unit_control_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3))
if mibBuilder.loadTexts:
unitControlTable.setStatus('current')
unit_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'))
if mibBuilder.loadTexts:
unitControlEntry.setStatus('current')
unit_control_off_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
unitControlOffCmd.setStatus('current')
unit_control_on_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
unitControlOnCmd.setStatus('current')
input_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1))
if mibBuilder.loadTexts:
inputTable.setStatus('current')
input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'inputIndex'))
if mibBuilder.loadTexts:
inputEntry.setStatus('current')
input_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
inputIndex.setStatus('current')
input_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('singlePhase', 1), ('splitPhase', 2), ('threePhaseDelta', 3), ('threePhaseWye', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputType.setStatus('current')
input_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputFrequency.setStatus('current')
input_frequency_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('good', 0), ('outOfRange', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputFrequencyStatus.setStatus('current')
input_voltage_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputVoltageCount.setStatus('current')
input_current_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrentCount.setStatus('current')
input_power_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputPowerCount.setStatus('current')
input_plug_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(100, 200, 300, 101, 102, 103, 104, 105, 106, 107, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 150, 151, 152, 201, 202, 301, 302, 303, 304, 306, 320, 321, 322, 323, 324, 325, 326, 350, 351))).clone(namedValues=named_values(('other1Phase', 100), ('other2Phase', 200), ('other3Phase', 300), ('iecC14Inlet', 101), ('iecC20Inlet', 102), ('iec316P6', 103), ('iec332P6', 104), ('iec360P6', 105), ('iecC14Plug', 106), ('iecC20Plug', 107), ('nema515', 120), ('nemaL515', 121), ('nema520', 122), ('nemaL520', 123), ('nema615', 124), ('nemaL615', 125), ('nemaL530', 126), ('nema620', 127), ('nemaL620', 128), ('nemaL630', 129), ('cs8265', 130), ('french', 150), ('schuko', 151), ('uk', 152), ('nemaL1420', 201), ('nemaL1430', 202), ('iec516P6', 301), ('iec460P9', 302), ('iec560P9', 303), ('iec532P6', 304), ('iec563P6', 306), ('nemaL1520', 320), ('nemaL2120', 321), ('nemaL1530', 322), ('nemaL2130', 323), ('cs8365', 324), ('nemaL2220', 325), ('nemaL2230', 326), ('bladeUps208V', 350), ('bladeUps400V', 351)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputPlugType.setStatus('current')
input_voltage_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2))
if mibBuilder.loadTexts:
inputVoltageTable.setStatus('current')
input_voltage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'inputIndex'), (0, 'EATON-EPDU-MIB', 'inputVoltageIndex'))
if mibBuilder.loadTexts:
inputVoltageEntry.setStatus('current')
input_voltage_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 3))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
inputVoltageIndex.setStatus('current')
input_voltage_meas_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('singlePhase', 1), ('phase1toN', 2), ('phase2toN', 3), ('phase3toN', 4), ('phase1to2', 5), ('phase2to3', 6), ('phase3to1', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputVoltageMeasType.setStatus('current')
input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputVoltage.setStatus('current')
input_voltage_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputVoltageThStatus.setStatus('current')
input_voltage_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputVoltageThLowerWarning.setStatus('current')
input_voltage_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputVoltageThLowerCritical.setStatus('current')
input_voltage_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputVoltageThUpperWarning.setStatus('current')
input_voltage_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputVoltageThUpperCritical.setStatus('current')
input_current_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3))
if mibBuilder.loadTexts:
inputCurrentTable.setStatus('current')
input_current_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'inputIndex'), (0, 'EATON-EPDU-MIB', 'inputCurrentIndex'))
if mibBuilder.loadTexts:
inputCurrentEntry.setStatus('current')
input_current_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
inputCurrentIndex.setStatus('current')
input_current_meas_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('singlePhase', 1), ('neutral', 2), ('phase1', 3), ('phase2', 4), ('phase3', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrentMeasType.setStatus('current')
input_current_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrentCapacity.setStatus('current')
input_current = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrent.setStatus('current')
input_current_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrentThStatus.setStatus('current')
input_current_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputCurrentThLowerWarning.setStatus('current')
input_current_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputCurrentThLowerCritical.setStatus('current')
input_current_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputCurrentThUpperWarning.setStatus('current')
input_current_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputCurrentThUpperCritical.setStatus('current')
input_current_crest_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrentCrestFactor.setStatus('current')
input_current_percent_load = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 3, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputCurrentPercentLoad.setStatus('current')
input_power_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4))
if mibBuilder.loadTexts:
inputPowerTable.setStatus('current')
input_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'inputIndex'), (0, 'EATON-EPDU-MIB', 'inputPowerIndex'))
if mibBuilder.loadTexts:
inputPowerEntry.setStatus('current')
input_power_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12)))
if mibBuilder.loadTexts:
inputPowerIndex.setStatus('current')
input_power_meas_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('total', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputPowerMeasType.setStatus('current')
input_va = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputVA.setStatus('current')
input_watts = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputWatts.setStatus('current')
input_wh = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputWh.setStatus('current')
input_wh_timer = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 6), unix_time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputWhTimer.setStatus('current')
input_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputPowerFactor.setStatus('current')
input_var = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputVAR.setStatus('current')
input_total_power_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5))
if mibBuilder.loadTexts:
inputTotalPowerTable.setStatus('current')
input_total_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'inputIndex'))
if mibBuilder.loadTexts:
inputTotalPowerEntry.setStatus('current')
input_total_va = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputTotalVA.setStatus('current')
input_total_watts = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputTotalWatts.setStatus('current')
input_total_wh = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
inputTotalWh.setStatus('current')
input_total_wh_timer = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 6), unix_time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputTotalWhTimer.setStatus('current')
input_total_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputTotalPowerFactor.setStatus('current')
input_total_var = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 3, 5, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
inputTotalVAR.setStatus('current')
group_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1))
if mibBuilder.loadTexts:
groupTable.setStatus('current')
group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'groupIndex'))
if mibBuilder.loadTexts:
groupEntry.setStatus('current')
group_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
groupIndex.setStatus('current')
group_id = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(2, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupID.setStatus('current')
group_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupName.setStatus('current')
group_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('unknown', 0), ('breaker1pole', 1), ('breaker2pole', 2), ('breaker3pole', 3), ('outletSection', 4), ('userDefined', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupType.setStatus('current')
group_breaker_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('notApplicable', 0), ('breakerOn', 1), ('breakerOff', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupBreakerStatus.setStatus('current')
group_child_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupChildCount.setStatus('current')
group_child_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2))
if mibBuilder.loadTexts:
groupChildTable.setStatus('current')
group_child_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'groupIndex'), (0, 'EATON-EPDU-MIB', 'groupChildIndex'))
if mibBuilder.loadTexts:
groupChildEntry.setStatus('current')
group_child_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 32)))
if mibBuilder.loadTexts:
groupChildIndex.setStatus('current')
group_child_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4))).clone(namedValues=named_values(('unknown', 0), ('section', 2), ('custom', 3), ('outlet', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupChildType.setStatus('current')
group_child_oid = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 2, 1, 3), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupChildOID.setStatus('current')
group_voltage_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3))
if mibBuilder.loadTexts:
groupVoltageTable.setStatus('current')
group_voltage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'groupIndex'))
if mibBuilder.loadTexts:
groupVoltageEntry.setStatus('current')
group_voltage_meas_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('unknown', 0), ('singlePhase', 1), ('phase1toN', 2), ('phase2toN', 3), ('phase3toN', 4), ('phase1to2', 5), ('phase2to3', 6), ('phase3to1', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupVoltageMeasType.setStatus('current')
group_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupVoltage.setStatus('current')
group_voltage_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupVoltageThStatus.setStatus('current')
group_voltage_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupVoltageThLowerWarning.setStatus('current')
group_voltage_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupVoltageThLowerCritical.setStatus('current')
group_voltage_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupVoltageThUpperWarning.setStatus('current')
group_voltage_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupVoltageThUpperCritical.setStatus('current')
group_current_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4))
if mibBuilder.loadTexts:
groupCurrentTable.setStatus('current')
group_current_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'groupIndex'))
if mibBuilder.loadTexts:
groupCurrentEntry.setStatus('current')
group_current_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupCurrentCapacity.setStatus('current')
group_current = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupCurrent.setStatus('current')
group_current_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupCurrentThStatus.setStatus('current')
group_current_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupCurrentThLowerWarning.setStatus('current')
group_current_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupCurrentThLowerCritical.setStatus('current')
group_current_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupCurrentThUpperWarning.setStatus('current')
group_current_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupCurrentThUpperCritical.setStatus('current')
group_current_crest_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupCurrentCrestFactor.setStatus('current')
group_current_percent_load = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 4, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupCurrentPercentLoad.setStatus('current')
group_power_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5))
if mibBuilder.loadTexts:
groupPowerTable.setStatus('current')
group_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'groupIndex'))
if mibBuilder.loadTexts:
groupPowerEntry.setStatus('current')
group_va = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupVA.setStatus('current')
group_watts = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupWatts.setStatus('current')
group_wh = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupWh.setStatus('current')
group_wh_timer = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 5), unix_time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupWhTimer.setStatus('current')
group_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupPowerFactor.setStatus('current')
group_var = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupVAR.setStatus('current')
group_control_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6))
if mibBuilder.loadTexts:
groupControlTable.setStatus('current')
group_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'groupIndex'))
if mibBuilder.loadTexts:
groupControlEntry.setStatus('current')
group_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('off', 0), ('on', 1), ('rebooting', 2), ('mixed', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
groupControlStatus.setStatus('current')
group_control_off_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupControlOffCmd.setStatus('current')
group_control0n_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupControl0nCmd.setStatus('current')
group_control_reboot_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 5, 6, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 0))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
groupControlRebootCmd.setStatus('current')
outlet_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1))
if mibBuilder.loadTexts:
outletTable.setStatus('current')
outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'outletIndex'))
if mibBuilder.loadTexts:
outletEntry.setStatus('current')
outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
outletIndex.setStatus('current')
outlet_id = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(2, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletID.setStatus('current')
outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletName.setStatus('current')
outlet_parent_count = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletParentCount.setStatus('current')
outlet_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 10, 11, 12, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30))).clone(namedValues=named_values(('unknown', 0), ('iecC13', 1), ('iecC19', 2), ('uk', 10), ('french', 11), ('schuko', 12), ('nema515', 20), ('nema51520', 21), ('nema520', 22), ('nemaL520', 23), ('nemaL530', 24), ('nema615', 25), ('nema620', 26), ('nemaL620', 27), ('nemaL630', 28), ('nemaL715', 29), ('rf203p277', 30)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletType.setStatus('current')
outlet_parent_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2))
if mibBuilder.loadTexts:
outletParentTable.setStatus('current')
outlet_parent_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'outletIndex'), (0, 'EATON-EPDU-MIB', 'outletParentIndex'))
if mibBuilder.loadTexts:
outletParentEntry.setStatus('current')
outlet_parent_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 32)))
if mibBuilder.loadTexts:
outletParentIndex.setStatus('current')
outlet_parent_type = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('breaker', 1), ('section', 2), ('custom', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletParentType.setStatus('current')
outlet_parent_oid = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 2, 1, 3), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletParentOID.setStatus('current')
outlet_voltage_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3))
if mibBuilder.loadTexts:
outletVoltageTable.setStatus('current')
outlet_voltage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'outletIndex'))
if mibBuilder.loadTexts:
outletVoltageEntry.setStatus('current')
outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletVoltage.setStatus('current')
outlet_voltage_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletVoltageThStatus.setStatus('current')
outlet_voltage_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletVoltageThLowerWarning.setStatus('current')
outlet_voltage_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletVoltageThLowerCritical.setStatus('current')
outlet_voltage_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletVoltageThUpperWarning.setStatus('current')
outlet_voltage_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 3, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 500000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletVoltageThUpperCritical.setStatus('current')
outlet_current_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4))
if mibBuilder.loadTexts:
outletCurrentTable.setStatus('current')
outlet_current_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'outletIndex'))
if mibBuilder.loadTexts:
outletCurrentEntry.setStatus('current')
outlet_current_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletCurrentCapacity.setStatus('current')
outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletCurrent.setStatus('current')
outlet_current_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletCurrentThStatus.setStatus('current')
outlet_current_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletCurrentThLowerWarning.setStatus('current')
outlet_current_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletCurrentThLowerCritical.setStatus('current')
outlet_current_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletCurrentThUpperWarning.setStatus('current')
outlet_current_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletCurrentThUpperCritical.setStatus('current')
outlet_current_crest_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletCurrentCrestFactor.setStatus('current')
outlet_current_percent_load = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 4, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletCurrentPercentLoad.setStatus('current')
outlet_power_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5))
if mibBuilder.loadTexts:
outletPowerTable.setStatus('current')
outlet_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'outletIndex'))
if mibBuilder.loadTexts:
outletPowerEntry.setStatus('current')
outlet_va = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletVA.setStatus('current')
outlet_watts = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletWatts.setStatus('current')
outlet_wh = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletWh.setStatus('current')
outlet_wh_timer = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 5), unix_time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletWhTimer.setStatus('current')
outlet_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletPowerFactor.setStatus('current')
outlet_var = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletVAR.setStatus('current')
outlet_control_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6))
if mibBuilder.loadTexts:
outletControlTable.setStatus('current')
outlet_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'outletIndex'))
if mibBuilder.loadTexts:
outletControlEntry.setStatus('current')
outlet_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('off', 0), ('on', 1), ('pendingOff', 2), ('pendingOn', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
outletControlStatus.setStatus('current')
outlet_control_off_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlOffCmd.setStatus('current')
outlet_control_on_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlOnCmd.setStatus('current')
outlet_control_reboot_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlRebootCmd.setStatus('current')
outlet_control_power_on_state = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('off', 0), ('on', 1), ('lastState', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlPowerOnState.setStatus('current')
outlet_control_sequence_delay = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlSequenceDelay.setStatus('current')
outlet_control_reboot_off_time = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlRebootOffTime.setStatus('current')
outlet_control_switchable = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('switchable', 1), ('notSwitchable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlSwitchable.setStatus('current')
outlet_control_shutoff_delay = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 6, 6, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(-1, 99999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
outletControlShutoffDelay.setStatus('current')
temperature_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1))
if mibBuilder.loadTexts:
temperatureTable.setStatus('current')
temperature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'temperatureIndex'))
if mibBuilder.loadTexts:
temperatureEntry.setStatus('current')
temperature_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
temperatureIndex.setStatus('current')
temperature_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
temperatureName.setStatus('current')
temperature_probe_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(-1, 0, 1))).clone(namedValues=named_values(('bad', -1), ('disconnected', 0), ('connected', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
temperatureProbeStatus.setStatus('current')
temperature_value = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
temperatureValue.setStatus('current')
temperature_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
temperatureThStatus.setStatus('current')
temperature_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 150000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
temperatureThLowerWarning.setStatus('current')
temperature_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 150000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
temperatureThLowerCritical.setStatus('current')
temperature_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 150000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
temperatureThUpperWarning.setStatus('current')
temperature_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 150000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
temperatureThUpperCritical.setStatus('current')
humidity_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2))
if mibBuilder.loadTexts:
humidityTable.setStatus('current')
humidity_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'humidityIndex'))
if mibBuilder.loadTexts:
humidityEntry.setStatus('current')
humidity_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
humidityIndex.setStatus('current')
humidity_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
humidityName.setStatus('current')
humidity_probe_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(-1, 0, 1))).clone(namedValues=named_values(('bad', -1), ('disconnected', 0), ('connected', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
humidityProbeStatus.setStatus('current')
humidity_value = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
humidityValue.setStatus('current')
humidity_th_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('good', 0), ('lowWarning', 1), ('lowCritical', 2), ('highWarning', 3), ('highCritical', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
humidityThStatus.setStatus('current')
humidity_th_lower_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
humidityThLowerWarning.setStatus('current')
humidity_th_lower_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
humidityThLowerCritical.setStatus('current')
humidity_th_upper_warning = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
humidityThUpperWarning.setStatus('current')
humidity_th_upper_critical = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
humidityThUpperCritical.setStatus('current')
contact_table = mib_table((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3))
if mibBuilder.loadTexts:
contactTable.setStatus('current')
contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1)).setIndexNames((0, 'EATON-EPDU-MIB', 'strappingIndex'), (0, 'EATON-EPDU-MIB', 'contactIndex'))
if mibBuilder.loadTexts:
contactEntry.setStatus('current')
contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 3))).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
contactIndex.setStatus('current')
contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
contactName.setStatus('current')
contact_probe_status = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(-1, 0, 1))).clone(namedValues=named_values(('bad', -1), ('disconnected', 0), ('connected', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
contactProbeStatus.setStatus('current')
contact_state = mib_table_column((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 7, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(-1, 0, 1))).clone(namedValues=named_values(('contactBad', -1), ('contactOpen', 0), ('contactClosed', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
contactState.setStatus('current')
eaton_epdu_compliances = module_compliance((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 1)).setObjects(('EATON-EPDU-MIB', 'epduRequiredGroup'), ('EATON-EPDU-MIB', 'epduOptionalGroup'), ('EATON-EPDU-MIB', 'epduNotifyGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
eaton_epdu_compliances = eatonEpduCompliances.setStatus('current')
epdu_required_group = object_group((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5, 1)).setObjects(('EATON-EPDU-MIB', 'unitName'), ('EATON-EPDU-MIB', 'firmwareVersion'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
epdu_required_group = epduRequiredGroup.setStatus('current')
epdu_optional_group = object_group((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5, 2)).setObjects(('EATON-EPDU-MIB', 'clockValue'), ('EATON-EPDU-MIB', 'commInterface'), ('EATON-EPDU-MIB', 'communicationStatus'), ('EATON-EPDU-MIB', 'contactCount'), ('EATON-EPDU-MIB', 'contactIndex'), ('EATON-EPDU-MIB', 'contactName'), ('EATON-EPDU-MIB', 'contactProbeStatus'), ('EATON-EPDU-MIB', 'contactState'), ('EATON-EPDU-MIB', 'groupChildCount'), ('EATON-EPDU-MIB', 'groupChildOID'), ('EATON-EPDU-MIB', 'groupChildType'), ('EATON-EPDU-MIB', 'groupControl0nCmd'), ('EATON-EPDU-MIB', 'groupControlOffCmd'), ('EATON-EPDU-MIB', 'groupControlRebootCmd'), ('EATON-EPDU-MIB', 'groupControlStatus'), ('EATON-EPDU-MIB', 'groupCount'), ('EATON-EPDU-MIB', 'groupCurrent'), ('EATON-EPDU-MIB', 'groupCurrentCapacity'), ('EATON-EPDU-MIB', 'groupCurrentCrestFactor'), ('EATON-EPDU-MIB', 'groupCurrentPercentLoad'), ('EATON-EPDU-MIB', 'groupCurrentThLowerCritical'), ('EATON-EPDU-MIB', 'groupCurrentThLowerWarning'), ('EATON-EPDU-MIB', 'groupCurrentThStatus'), ('EATON-EPDU-MIB', 'groupCurrentThUpperCritical'), ('EATON-EPDU-MIB', 'groupCurrentThUpperWarning'), ('EATON-EPDU-MIB', 'groupID'), ('EATON-EPDU-MIB', 'groupIndex'), ('EATON-EPDU-MIB', 'groupName'), ('EATON-EPDU-MIB', 'groupBreakerStatus'), ('EATON-EPDU-MIB', 'groupPowerFactor'), ('EATON-EPDU-MIB', 'groupType'), ('EATON-EPDU-MIB', 'groupVA'), ('EATON-EPDU-MIB', 'groupVAR'), ('EATON-EPDU-MIB', 'groupVoltage'), ('EATON-EPDU-MIB', 'groupVoltageMeasType'), ('EATON-EPDU-MIB', 'groupVoltageThLowerCritical'), ('EATON-EPDU-MIB', 'groupVoltageThLowerWarning'), ('EATON-EPDU-MIB', 'groupVoltageThStatus'), ('EATON-EPDU-MIB', 'groupVoltageThUpperCritical'), ('EATON-EPDU-MIB', 'groupVoltageThUpperWarning'), ('EATON-EPDU-MIB', 'groupWatts'), ('EATON-EPDU-MIB', 'groupWh'), ('EATON-EPDU-MIB', 'groupWhTimer'), ('EATON-EPDU-MIB', 'humidityCount'), ('EATON-EPDU-MIB', 'humidityIndex'), ('EATON-EPDU-MIB', 'humidityName'), ('EATON-EPDU-MIB', 'humidityProbeStatus'), ('EATON-EPDU-MIB', 'humidityThLowerCritical'), ('EATON-EPDU-MIB', 'humidityThLowerWarning'), ('EATON-EPDU-MIB', 'humidityThStatus'), ('EATON-EPDU-MIB', 'humidityThUpperCritical'), ('EATON-EPDU-MIB', 'humidityThUpperWarning'), ('EATON-EPDU-MIB', 'humidityValue'), ('EATON-EPDU-MIB', 'inputCount'), ('EATON-EPDU-MIB', 'inputCurrent'), ('EATON-EPDU-MIB', 'inputCurrentCapacity'), ('EATON-EPDU-MIB', 'inputCurrentCount'), ('EATON-EPDU-MIB', 'inputCurrentCrestFactor'), ('EATON-EPDU-MIB', 'inputCurrentIndex'), ('EATON-EPDU-MIB', 'inputCurrentMeasType'), ('EATON-EPDU-MIB', 'inputCurrentPercentLoad'), ('EATON-EPDU-MIB', 'inputCurrentThLowerCritical'), ('EATON-EPDU-MIB', 'inputCurrentThLowerWarning'), ('EATON-EPDU-MIB', 'inputCurrentThStatus'), ('EATON-EPDU-MIB', 'inputCurrentThUpperCritical'), ('EATON-EPDU-MIB', 'inputCurrentThUpperWarning'), ('EATON-EPDU-MIB', 'inputFrequency'), ('EATON-EPDU-MIB', 'inputFrequencyStatus'), ('EATON-EPDU-MIB', 'inputIndex'), ('EATON-EPDU-MIB', 'inputPlugType'), ('EATON-EPDU-MIB', 'inputPowerCount'), ('EATON-EPDU-MIB', 'inputPowerFactor'), ('EATON-EPDU-MIB', 'inputPowerMeasType'), ('EATON-EPDU-MIB', 'inputType'), ('EATON-EPDU-MIB', 'inputVA'), ('EATON-EPDU-MIB', 'inputVAR'), ('EATON-EPDU-MIB', 'inputVoltage'), ('EATON-EPDU-MIB', 'inputVoltageCount'), ('EATON-EPDU-MIB', 'inputVoltageIndex'), ('EATON-EPDU-MIB', 'inputVoltageMeasType'), ('EATON-EPDU-MIB', 'inputVoltageThLowerCritical'), ('EATON-EPDU-MIB', 'inputVoltageThLowerWarning'), ('EATON-EPDU-MIB', 'inputVoltageThStatus'), ('EATON-EPDU-MIB', 'inputVoltageThUpperCritical'), ('EATON-EPDU-MIB', 'inputVoltageThUpperWarning'), ('EATON-EPDU-MIB', 'inputWatts'), ('EATON-EPDU-MIB', 'inputWh'), ('EATON-EPDU-MIB', 'inputWhTimer'), ('EATON-EPDU-MIB', 'inputTotalVA'), ('EATON-EPDU-MIB', 'inputTotalWatts'), ('EATON-EPDU-MIB', 'inputTotalWh'), ('EATON-EPDU-MIB', 'inputTotalWhTimer'), ('EATON-EPDU-MIB', 'inputTotalPowerFactor'), ('EATON-EPDU-MIB', 'inputTotalVAR'), ('EATON-EPDU-MIB', 'internalStatus'), ('EATON-EPDU-MIB', 'lcdControl'), ('EATON-EPDU-MIB', 'outletControlSwitchable'), ('EATON-EPDU-MIB', 'outletControlShutoffDelay'), ('EATON-EPDU-MIB', 'outletControlOffCmd'), ('EATON-EPDU-MIB', 'outletControlOnCmd'), ('EATON-EPDU-MIB', 'outletControlPowerOnState'), ('EATON-EPDU-MIB', 'outletControlRebootCmd'), ('EATON-EPDU-MIB', 'outletControlRebootOffTime'), ('EATON-EPDU-MIB', 'outletControlSequenceDelay'), ('EATON-EPDU-MIB', 'outletControlStatus'), ('EATON-EPDU-MIB', 'outletCount'), ('EATON-EPDU-MIB', 'outletCurrent'), ('EATON-EPDU-MIB', 'outletCurrentCapacity'), ('EATON-EPDU-MIB', 'outletCurrentCrestFactor'), ('EATON-EPDU-MIB', 'outletCurrentPercentLoad'), ('EATON-EPDU-MIB', 'outletCurrentThLowerCritical'), ('EATON-EPDU-MIB', 'outletCurrentThLowerWarning'), ('EATON-EPDU-MIB', 'outletCurrentThStatus'), ('EATON-EPDU-MIB', 'outletCurrentThUpperCritical'), ('EATON-EPDU-MIB', 'outletCurrentThUpperWarning'), ('EATON-EPDU-MIB', 'outletID'), ('EATON-EPDU-MIB', 'outletIndex'), ('EATON-EPDU-MIB', 'outletName'), ('EATON-EPDU-MIB', 'outletParentCount'), ('EATON-EPDU-MIB', 'outletParentOID'), ('EATON-EPDU-MIB', 'outletParentType'), ('EATON-EPDU-MIB', 'outletPowerFactor'), ('EATON-EPDU-MIB', 'outletType'), ('EATON-EPDU-MIB', 'outletVA'), ('EATON-EPDU-MIB', 'outletVAR'), ('EATON-EPDU-MIB', 'outletVoltage'), ('EATON-EPDU-MIB', 'outletVoltageThLowerCritical'), ('EATON-EPDU-MIB', 'outletVoltageThLowerWarning'), ('EATON-EPDU-MIB', 'outletVoltageThStatus'), ('EATON-EPDU-MIB', 'outletVoltageThUpperCritical'), ('EATON-EPDU-MIB', 'outletVoltageThUpperWarning'), ('EATON-EPDU-MIB', 'outletWatts'), ('EATON-EPDU-MIB', 'outletWh'), ('EATON-EPDU-MIB', 'outletWhTimer'), ('EATON-EPDU-MIB', 'partNumber'), ('EATON-EPDU-MIB', 'productName'), ('EATON-EPDU-MIB', 'serialNumber'), ('EATON-EPDU-MIB', 'strappingIndex'), ('EATON-EPDU-MIB', 'strappingStatus'), ('EATON-EPDU-MIB', 'temperatureCount'), ('EATON-EPDU-MIB', 'temperatureIndex'), ('EATON-EPDU-MIB', 'temperatureName'), ('EATON-EPDU-MIB', 'temperatureProbeStatus'), ('EATON-EPDU-MIB', 'temperatureScale'), ('EATON-EPDU-MIB', 'unitType'), ('EATON-EPDU-MIB', 'temperatureThLowerCritical'), ('EATON-EPDU-MIB', 'temperatureThLowerWarning'), ('EATON-EPDU-MIB', 'temperatureThStatus'), ('EATON-EPDU-MIB', 'temperatureThUpperCritical'), ('EATON-EPDU-MIB', 'temperatureThUpperWarning'), ('EATON-EPDU-MIB', 'temperatureValue'), ('EATON-EPDU-MIB', 'unitControlOffCmd'), ('EATON-EPDU-MIB', 'unitControlOnCmd'), ('EATON-EPDU-MIB', 'unitName'), ('EATON-EPDU-MIB', 'unitsPresent'), ('EATON-EPDU-MIB', 'userName'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
epdu_optional_group = epduOptionalGroup.setStatus('current')
epdu_notify_group = notification_group((1, 3, 6, 1, 4, 1, 534, 6, 6, 7, 25, 5, 3)).setObjects(('EATON-EPDU-MIB', 'notifyBootUp'), ('EATON-EPDU-MIB', 'notifyCommunicationStatus'), ('EATON-EPDU-MIB', 'notifyContactState'), ('EATON-EPDU-MIB', 'notifyFailedLogin'), ('EATON-EPDU-MIB', 'notifyGroupCurrentThStatus'), ('EATON-EPDU-MIB', 'notifyGroupVoltageThStatus'), ('EATON-EPDU-MIB', 'notifyGroupBreakerStatus'), ('EATON-EPDU-MIB', 'notifyHumidityThStatus'), ('EATON-EPDU-MIB', 'notifyInputCurrentThStatus'), ('EATON-EPDU-MIB', 'notifyInputFrequencyStatus'), ('EATON-EPDU-MIB', 'notifyInputVoltageThStatus'), ('EATON-EPDU-MIB', 'notifyInternalStatus'), ('EATON-EPDU-MIB', 'notifyOutletControlStatus'), ('EATON-EPDU-MIB', 'notifyOutletCurrentThStatus'), ('EATON-EPDU-MIB', 'notifyOutletVoltageThStatus'), ('EATON-EPDU-MIB', 'notifyProbeStatus'), ('EATON-EPDU-MIB', 'notifyStrappingStatus'), ('EATON-EPDU-MIB', 'notifyTemperatureThStatus'), ('EATON-EPDU-MIB', 'notifyTest'), ('EATON-EPDU-MIB', 'notifyUserLogin'), ('EATON-EPDU-MIB', 'notifyUserLogout'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
epdu_notify_group = epduNotifyGroup.setStatus('current')
mibBuilder.exportSymbols('EATON-EPDU-MIB', outletCurrent=outletCurrent, notifyGroupVoltageThStatus=notifyGroupVoltageThStatus, inputTotalWhTimer=inputTotalWhTimer, partNumber=partNumber, outletID=outletID, inputVoltageEntry=inputVoltageEntry, outletControlOffCmd=outletControlOffCmd, humidityEntry=humidityEntry, notifyOutletCurrentThStatus=notifyOutletCurrentThStatus, humidityIndex=humidityIndex, humidityValue=humidityValue, inputCount=inputCount, conformance=conformance, outletCurrentTable=outletCurrentTable, commInterface=commInterface, temperatureValue=temperatureValue, inputVoltageThUpperWarning=inputVoltageThUpperWarning, strappingStatus=strappingStatus, groupVoltageThStatus=groupVoltageThStatus, inputVoltageThLowerCritical=inputVoltageThLowerCritical, notifyBootUp=notifyBootUp, groupChildCount=groupChildCount, inputCurrentThStatus=inputCurrentThStatus, groupChildTable=groupChildTable, notifyStrappingStatus=notifyStrappingStatus, inputCurrentMeasType=inputCurrentMeasType, contactEntry=contactEntry, groupCount=groupCount, inputCurrentCapacity=inputCurrentCapacity, inputType=inputType, notifyProbeStatus=notifyProbeStatus, humidityCount=humidityCount, outletControlOnCmd=outletControlOnCmd, contactState=contactState, notifyInternalStatus=notifyInternalStatus, inputTotalPowerTable=inputTotalPowerTable, groupEntry=groupEntry, lcdControl=lcdControl, inputVoltage=inputVoltage, outletCurrentThLowerWarning=outletCurrentThLowerWarning, inputCurrentThUpperWarning=inputCurrentThUpperWarning, unitsPresent=unitsPresent, temperatureTable=temperatureTable, epduNotifyGroup=epduNotifyGroup, inputTotalPowerEntry=inputTotalPowerEntry, notifyUserLogout=notifyUserLogout, outletVoltage=outletVoltage, inputCurrentEntry=inputCurrentEntry, inputTotalVAR=inputTotalVAR, unitType=unitType, notifyOutletVoltageThStatus=notifyOutletVoltageThStatus, groupCurrentThLowerCritical=groupCurrentThLowerCritical, outletVoltageThLowerCritical=outletVoltageThLowerCritical, outletCurrentEntry=outletCurrentEntry, groupVoltageThLowerCritical=groupVoltageThLowerCritical, humidityThLowerWarning=humidityThLowerWarning, groupControl0nCmd=groupControl0nCmd, inputCurrentThLowerWarning=inputCurrentThLowerWarning, inputTable=inputTable, strappingIndex=strappingIndex, userName=userName, outletCurrentThLowerCritical=outletCurrentThLowerCritical, temperatureThLowerWarning=temperatureThLowerWarning, objectGroups=objectGroups, inputPlugType=inputPlugType, inputVoltageMeasType=inputVoltageMeasType, inputCurrentIndex=inputCurrentIndex, groupPowerTable=groupPowerTable, outletVA=outletVA, groupCurrentThUpperWarning=groupCurrentThUpperWarning, groups=groups, inputCurrentThLowerCritical=inputCurrentThLowerCritical, outletVoltageTable=outletVoltageTable, inputVoltageCount=inputVoltageCount, outletEntry=outletEntry, outletControlSequenceDelay=outletControlSequenceDelay, humidityThUpperCritical=humidityThUpperCritical, inputCurrentCrestFactor=inputCurrentCrestFactor, temperatureName=temperatureName, outletIndex=outletIndex, unitControlEntry=unitControlEntry, notifyUserLogin=notifyUserLogin, outletParentEntry=outletParentEntry, outletTable=outletTable, inputFrequency=inputFrequency, unitControlOffCmd=unitControlOffCmd, outletVoltageThLowerWarning=outletVoltageThLowerWarning, notifyInputFrequencyStatus=notifyInputFrequencyStatus, outletControlRebootCmd=outletControlRebootCmd, inputTotalWatts=inputTotalWatts, unitTable=unitTable, clockValue=clockValue, groupControlEntry=groupControlEntry, groupCurrentCapacity=groupCurrentCapacity, outletControlRebootOffTime=outletControlRebootOffTime, temperatureThUpperCritical=temperatureThUpperCritical, groupCurrentEntry=groupCurrentEntry, groupCurrent=groupCurrent, notifyGroupCurrentThStatus=notifyGroupCurrentThStatus, outletPowerTable=outletPowerTable, outletParentIndex=outletParentIndex, contactCount=contactCount, outletControlShutoffDelay=outletControlShutoffDelay, inputTotalVA=inputTotalVA, groupType=groupType, outletControlPowerOnState=outletControlPowerOnState, outletParentTable=outletParentTable, humidityProbeStatus=humidityProbeStatus, groupCurrentTable=groupCurrentTable, groupName=groupName, temperatureProbeStatus=temperatureProbeStatus, eatonEpduCompliances=eatonEpduCompliances, outletControlTable=outletControlTable, outletParentType=outletParentType, inputVoltageThLowerWarning=inputVoltageThLowerWarning, PYSNMP_MODULE_ID=eatonEpdu, groupPowerEntry=groupPowerEntry, outletType=outletType, unitName=unitName, contactName=contactName, temperatureScale=temperatureScale, groupCurrentPercentLoad=groupCurrentPercentLoad, firmwareVersion=firmwareVersion, notifications=notifications, UnixTimeStamp=UnixTimeStamp, outletCount=outletCount, inputCurrentThUpperCritical=inputCurrentThUpperCritical, groupID=groupID, groupChildEntry=groupChildEntry, humidityThUpperWarning=humidityThUpperWarning, unitEntry=unitEntry, outletParentCount=outletParentCount, inputVAR=inputVAR, temperatureThLowerCritical=temperatureThLowerCritical, outlets=outlets, inputCurrentCount=inputCurrentCount, inputVA=inputVA, outletCurrentThUpperWarning=outletCurrentThUpperWarning, outletPowerFactor=outletPowerFactor, inputWh=inputWh, outletName=outletName, inputPowerIndex=inputPowerIndex, temperatureEntry=temperatureEntry, groupVoltageThUpperWarning=groupVoltageThUpperWarning, outletWhTimer=outletWhTimer, groupChildOID=groupChildOID, temperatureThUpperWarning=temperatureThUpperWarning, notifyGroupBreakerStatus=notifyGroupBreakerStatus, outletParentOID=outletParentOID, humidityName=humidityName, groupChildType=groupChildType, groupIndex=groupIndex, inputPowerTable=inputPowerTable, inputVoltageIndex=inputVoltageIndex, inputWatts=inputWatts, inputs=inputs, notifyContactState=notifyContactState, groupPowerFactor=groupPowerFactor, outletCurrentCrestFactor=outletCurrentCrestFactor, outletControlEntry=outletControlEntry, temperatureIndex=temperatureIndex, outletWh=outletWh, notifyOutletControlStatus=notifyOutletControlStatus, contactIndex=contactIndex, inputPowerCount=inputPowerCount, outletControlSwitchable=outletControlSwitchable, groupVoltageThLowerWarning=groupVoltageThLowerWarning, inputCurrentTable=inputCurrentTable, outletVAR=outletVAR, groupVA=groupVA, inputEntry=inputEntry, inputVoltageTable=inputVoltageTable, inputWhTimer=inputWhTimer, outletPowerEntry=outletPowerEntry, outletControlStatus=outletControlStatus, groupWatts=groupWatts, outletCurrentCapacity=outletCurrentCapacity, inputPowerFactor=inputPowerFactor, groupVoltageEntry=groupVoltageEntry, temperatureCount=temperatureCount, humidityThLowerCritical=humidityThLowerCritical, inputTotalPowerFactor=inputTotalPowerFactor, epduOptionalGroup=epduOptionalGroup, notifyHumidityThStatus=notifyHumidityThStatus, outletVoltageThUpperCritical=outletVoltageThUpperCritical, groupVAR=groupVAR, environmental=environmental, groupCurrentThUpperCritical=groupCurrentThUpperCritical, groupControlStatus=groupControlStatus, notifyTest=notifyTest, humidityTable=humidityTable, inputIndex=inputIndex, inputTotalWh=inputTotalWh, unitControlOnCmd=unitControlOnCmd, unitControlTable=unitControlTable, outletVoltageThStatus=outletVoltageThStatus, outletWatts=outletWatts, groupBreakerStatus=groupBreakerStatus, eatonEpdu=eatonEpdu, notifyFailedLogin=notifyFailedLogin, temperatureThStatus=temperatureThStatus, inputPowerEntry=inputPowerEntry, groupVoltageTable=groupVoltageTable, productName=productName, outletCurrentThUpperCritical=outletCurrentThUpperCritical, outletVoltageEntry=outletVoltageEntry, inputPowerMeasType=inputPowerMeasType, groupTable=groupTable, groupWhTimer=groupWhTimer, groupVoltage=groupVoltage, groupCurrentThLowerWarning=groupCurrentThLowerWarning, epduRequiredGroup=epduRequiredGroup, inputFrequencyStatus=inputFrequencyStatus, groupCurrentThStatus=groupCurrentThStatus, contactProbeStatus=contactProbeStatus, groupControlRebootCmd=groupControlRebootCmd, inputCurrentPercentLoad=inputCurrentPercentLoad, outletCurrentPercentLoad=outletCurrentPercentLoad, humidityThStatus=humidityThStatus, serialNumber=serialNumber, notifyInputVoltageThStatus=notifyInputVoltageThStatus, groupControlTable=groupControlTable, outletVoltageThUpperWarning=outletVoltageThUpperWarning, groupControlOffCmd=groupControlOffCmd, groupVoltageMeasType=groupVoltageMeasType, contactTable=contactTable, inputVoltageThStatus=inputVoltageThStatus, inputVoltageThUpperCritical=inputVoltageThUpperCritical, groupWh=groupWh, notifyTemperatureThStatus=notifyTemperatureThStatus, internalStatus=internalStatus, outletCurrentThStatus=outletCurrentThStatus, notifyCommunicationStatus=notifyCommunicationStatus, notifyInputCurrentThStatus=notifyInputCurrentThStatus, communicationStatus=communicationStatus, groupChildIndex=groupChildIndex, groupVoltageThUpperCritical=groupVoltageThUpperCritical, groupCurrentCrestFactor=groupCurrentCrestFactor, units=units, inputCurrent=inputCurrent)
|
# -*- coding: utf-8 -*-
# URI Judge - Problema 1013
a, b, c = map(int, input().split())
if a > (b and c):
print(str(a) + " eh o maior")
elif b > c:
print(str(b) + " eh o maior")
else:
print(str(c) + " eh o maior")
|
(a, b, c) = map(int, input().split())
if a > (b and c):
print(str(a) + ' eh o maior')
elif b > c:
print(str(b) + ' eh o maior')
else:
print(str(c) + ' eh o maior')
|
#reg add HKEY_CURRENT_USER\Console /v VirtualTerminalLevel /t REG_DWORD /d 0x00000001 /f
colors = {\
'OKBLUE' : '\033[94m',
'OKGREEN' : '\033[92m',
'WARNING' : '\033[93m',
'RED' : '\033[1;31;40m',
}
def colorText(text):
for color in colors:
text = text.replace("[[" + color + "]]", colors[color])
return text
hola = '''
[[OKGREEN]]
_ _ ____ _ _ ____
/ )( ( _ \/ )( ( _ \
\ /\ /) /\ /\ /) /
[[RED]]_/\_|__\_)(_/\_|__\_)
'''
banner='''
[[RED]] )
( /( )
)\()) ( ( ( /( ) ( ) (
((_)\ )( )\ )\()) ( ( ( ( ( /( )( ( )\ )
_)((_)(()\((_)((_)\ )\ )\ )\ )\ )(_))(()\ )\ '(()/(
[[OKGREEN]]| |/ / [[RED]]((_)[[OKGREEN]](_)[[RED]]| |(_)((_)((_) ((_)((_) ((_)_ ((_) _((_)) )(_))
[[OKGREEN]]| ' < | '_|| || / // _ \(_-</ _ \(_-< / _` || '_|| ' \()| || |
[[OKGREEN]]|_|\_\ |_| |_||_\_\\\___//__/\___//__/ \__,_||_| |_|_|_| \_, |
|__/
'''
xd = '''
[[WARNING]] ) )
[[WARNING]] ( /( ( ( ( /( ) ( ) (
[[WARNING]] )\()))( )\ )\()) ( ( ( ( ( /( )( ( )\ )
[[WARNING]]((_)\(()\((_)((_)\ )\ )\ )\ )\ )(_))(()\ )\ '(()/(
[[OKGREEN]]| |[[WARNING]](_)((_)(_)[[OKGREEN]]| |[[WARNING]](_)((_)((_) ((_)((_) ((_)_ ((_) _((_)) )(_))
[[OKGREEN]]| / /| '_|| || / // _ \(_-</ _ \(_-< / _` || '_|| ' \[[WARNING]]()[[OKGREEN]]| || |
[[OKGREEN]]|_\_\|_| |_||_\_\\___//__/\___/ /__/ \__,_||_| |_|_|_| \_, |
|__/
[[OKBLUE]]
'''
print(colorText(banner))
print(colorText(xd))
print(colorText(hola))
|
colors = {'OKBLUE': '\x1b[94m', 'OKGREEN': '\x1b[92m', 'WARNING': '\x1b[93m', 'RED': '\x1b[1;31;40m'}
def color_text(text):
for color in colors:
text = text.replace('[[' + color + ']]', colors[color])
return text
hola = '\n\n\n[[OKGREEN]] \n_ _ ____ _ _ ____ \n/ )( ( _ \\/ )( ( _ \\ /\\ /) /\\ /\\ /) /\n[[RED]]_/\\_|__\\_)(_/\\_|__\\_)\n\n\n'
banner = "\n[[RED]] ) \n ( /( ) \n )\\()) ( ( ( /( ) ( ) ( \n((_)\\ )( )\\ )\\()) ( ( ( ( ( /( )( ( )\\ ) \n_)((_)(()\\((_)((_)\\ )\\ )\\ )\\ )\\ )(_))(()\\ )\\ '(()/( \n[[OKGREEN]]| |/ / [[RED]]((_)[[OKGREEN]](_)[[RED]]| |(_)((_)((_) ((_)((_) ((_)_ ((_) _((_)) )(_)) \n[[OKGREEN]]| ' < | '_|| || / // _ \\(_-</ _ \\(_-< / _` || '_|| ' \\()| || | \n[[OKGREEN]]|_|\\_\\ |_| |_||_\\_\\\\___//__/\\___//__/ \\__,_||_| |_|_|_| \\_, | \n |__/ \n "
xd = "\n\n\n \n[[WARNING]] ) ) \n[[WARNING]] ( /( ( ( ( /( ) ( ) ( \n[[WARNING]] )\\()))( )\\ )\\()) ( ( ( ( ( /( )( ( )\\ ) \n[[WARNING]]((_)\\(()\\((_)((_)\\ )\\ )\\ )\\ )\\ )(_))(()\\ )\\ '(()/( \n[[OKGREEN]]| |[[WARNING]](_)((_)(_)[[OKGREEN]]| |[[WARNING]](_)((_)((_) ((_)((_) ((_)_ ((_) _((_)) )(_)) \n[[OKGREEN]]| / /| '_|| || / // _ \\(_-</ _ \\(_-< / _` || '_|| ' \\[[WARNING]]()[[OKGREEN]]| || | \n[[OKGREEN]]|_\\_\\|_| |_||_\\_\\___//__/\\___/ /__/ \\__,_||_| |_|_|_| \\_, | \n |__/ \n\n[[OKBLUE]]\n"
print(color_text(banner))
print(color_text(xd))
print(color_text(hola))
|
#function to check whether a number is in a given range.
def test_range(n):
if n in range(3,9):
print( " %s is in the range"%str(n))
else :
print("The number is outside the given range.")
test_range(5)
|
def test_range(n):
if n in range(3, 9):
print(' %s is in the range' % str(n))
else:
print('The number is outside the given range.')
test_range(5)
|
ans = 0
for _ in range(5):
a, b, c = sorted([int(x) for x in input().split()])
if a + b > c:
ans += 1
print(ans)
|
ans = 0
for _ in range(5):
(a, b, c) = sorted([int(x) for x in input().split()])
if a + b > c:
ans += 1
print(ans)
|
def move_cars(current, final):
if len(current) <= 1:
return 0
if len(current) == 2 and current[0] == final[0]:
return 0
moves = 0
for i, car in enumerate(current):
if car == final[i]:
if car == '_':
# need to move car to this spot first
moves += 1
else:
moves += 1
# if there are two spots, only needs 1 move not 2 moves
return moves - 1
if __name__ == '__main__':
current = ['A', 'B', 'C', '_']
final = ['_', 'B', 'A', 'C']
print(move_cars(current, final)) # 2
current = ['A', 'B', '_']
final = ['B', 'A', '_']
print(move_cars(current, final)) # 2
current = ['A', '_', 'B', 'C']
final = ['B', '_', 'C', 'A']
print(move_cars(current, final)) # 3
current = ['A', '_']
final = ['_', 'A']
print(move_cars(current, final)) # 1
current = ['_', 'A']
final = ['_', 'A']
print(move_cars(current, final)) # 0
|
def move_cars(current, final):
if len(current) <= 1:
return 0
if len(current) == 2 and current[0] == final[0]:
return 0
moves = 0
for (i, car) in enumerate(current):
if car == final[i]:
if car == '_':
moves += 1
else:
moves += 1
return moves - 1
if __name__ == '__main__':
current = ['A', 'B', 'C', '_']
final = ['_', 'B', 'A', 'C']
print(move_cars(current, final))
current = ['A', 'B', '_']
final = ['B', 'A', '_']
print(move_cars(current, final))
current = ['A', '_', 'B', 'C']
final = ['B', '_', 'C', 'A']
print(move_cars(current, final))
current = ['A', '_']
final = ['_', 'A']
print(move_cars(current, final))
current = ['_', 'A']
final = ['_', 'A']
print(move_cars(current, final))
|
def get_letter_frequency(word):
chars_dict = {}
for letter in word:
if letter in chars_dict:
chars_dict[letter] += 1
else:
chars_dict[letter] = 1
return chars_dict
def number_of_deletions(a, b):
count = 0
chars_of_a = get_letter_frequency(a)
chars_of_b = get_letter_frequency(b)
for k, v in chars_of_a.items():
if k not in chars_of_b:
count += v
else:
count += abs(v - chars_of_b[k])
for k, v in chars_of_b.items():
if k not in chars_of_a:
count += v
return count
a = input().strip()
b = input().strip()
print(number_of_deletions(a, b))
|
def get_letter_frequency(word):
chars_dict = {}
for letter in word:
if letter in chars_dict:
chars_dict[letter] += 1
else:
chars_dict[letter] = 1
return chars_dict
def number_of_deletions(a, b):
count = 0
chars_of_a = get_letter_frequency(a)
chars_of_b = get_letter_frequency(b)
for (k, v) in chars_of_a.items():
if k not in chars_of_b:
count += v
else:
count += abs(v - chars_of_b[k])
for (k, v) in chars_of_b.items():
if k not in chars_of_a:
count += v
return count
a = input().strip()
b = input().strip()
print(number_of_deletions(a, b))
|
# -*- coding: utf-8 -*-
# Created at 03/10/2020
__author__ = 'raniys'
class HomeData:
home_url = "https://www.python.org/"
search_text = "pycon"
|
__author__ = 'raniys'
class Homedata:
home_url = 'https://www.python.org/'
search_text = 'pycon'
|
def get_db_uri(dbinfo):
username = dbinfo.get('user') or "root"
password = dbinfo.get('pwd') or "123456"
host = dbinfo.get('host') or "localhost"
port = dbinfo.get('port') or "3306"
database = dbinfo.get('dbname') or "pythonixf"
driver = dbinfo.get('driver') or "pymysql"
dialect = dbinfo.get('dialect') or "mysql"
return "{}+{}://{}:{}@{}:{}/{}".format(dialect,driver,username,password,host,port,database)
class Config():
DEBUG = False
TESTING = False
SECRET_KEY = '110'
SESSION_TYPE = 'redis'
SQLALCHEMY_TRACK_MODIFICATIONS = False
DEBUG_TB_INTERCEPT_REDIRECTS = False
class DevelopConfig(Config):
DEBUG = True
DATABASE = {
"user": "root",
"pwd": "123456",
"host": "127.0.0.1",
"port": "3306",
"dialect": "mysql",
"driver": "pymysql",
"dbname": "pythonixf",
}
SQLALCHEMY_DATABASE_URI = get_db_uri(DATABASE)
class TestingConfig(Config):
TESTING = True
DATABASE = {
"user": "root",
"pwd": "123456",
"host": "127.0.0.1",
"port": "3306",
"dialect": "mysql",
"driver": "pymysql",
"dbname": "pythonixf",
}
SQLALCHEMY_DATABASE_URI = get_db_uri(DATABASE)
class ShowConfig(Config):
DEBUG = True
DATABASE = {
"user": "root",
"pwd": "123456",
"host": "127.0.0.1",
"port": "3306",
"dialect": "mysql",
"driver": "pymysql",
"dbname": "pythonixf",
}
SQLALCHEMY_DATABASE_URI = get_db_uri(DATABASE)
class ProductConfig(Config):
DEBUG = True
DATABASE = {
"user": "root",
"pwd": "123456",
"host": "127.0.0.1",
"port": "3306",
"dialect": "mysql",
"driver": "pymysql",
"dbname": "pythonixf",
}
SQLALCHEMY_DATABASE_URI = get_db_uri(DATABASE)
config = {
"developConfig" : DevelopConfig,
"testingConfig" : TestingConfig,
"showConfig" : ShowConfig,
"productConfig" : ProductConfig,
"default" : DevelopConfig,
}
|
def get_db_uri(dbinfo):
username = dbinfo.get('user') or 'root'
password = dbinfo.get('pwd') or '123456'
host = dbinfo.get('host') or 'localhost'
port = dbinfo.get('port') or '3306'
database = dbinfo.get('dbname') or 'pythonixf'
driver = dbinfo.get('driver') or 'pymysql'
dialect = dbinfo.get('dialect') or 'mysql'
return '{}+{}://{}:{}@{}:{}/{}'.format(dialect, driver, username, password, host, port, database)
class Config:
debug = False
testing = False
secret_key = '110'
session_type = 'redis'
sqlalchemy_track_modifications = False
debug_tb_intercept_redirects = False
class Developconfig(Config):
debug = True
database = {'user': 'root', 'pwd': '123456', 'host': '127.0.0.1', 'port': '3306', 'dialect': 'mysql', 'driver': 'pymysql', 'dbname': 'pythonixf'}
sqlalchemy_database_uri = get_db_uri(DATABASE)
class Testingconfig(Config):
testing = True
database = {'user': 'root', 'pwd': '123456', 'host': '127.0.0.1', 'port': '3306', 'dialect': 'mysql', 'driver': 'pymysql', 'dbname': 'pythonixf'}
sqlalchemy_database_uri = get_db_uri(DATABASE)
class Showconfig(Config):
debug = True
database = {'user': 'root', 'pwd': '123456', 'host': '127.0.0.1', 'port': '3306', 'dialect': 'mysql', 'driver': 'pymysql', 'dbname': 'pythonixf'}
sqlalchemy_database_uri = get_db_uri(DATABASE)
class Productconfig(Config):
debug = True
database = {'user': 'root', 'pwd': '123456', 'host': '127.0.0.1', 'port': '3306', 'dialect': 'mysql', 'driver': 'pymysql', 'dbname': 'pythonixf'}
sqlalchemy_database_uri = get_db_uri(DATABASE)
config = {'developConfig': DevelopConfig, 'testingConfig': TestingConfig, 'showConfig': ShowConfig, 'productConfig': ProductConfig, 'default': DevelopConfig}
|
expected_output = {
"vrf": {
"L3VPN-1538": {
"index": {1: {"address_type": "Interface", "ip_address": "192.168.10.254"}}
}
}
}
|
expected_output = {'vrf': {'L3VPN-1538': {'index': {1: {'address_type': 'Interface', 'ip_address': '192.168.10.254'}}}}}
|
fib = {1: 1, 2: 1, 3: 2, 4: 3}
print(fib.get(4, 0) + fib.get(7, 5))
## get(4,0) is 3 because as you can see, 4:3, in the key 4, you can 3.
## Since there is not key 7, this will just equivalent to 5.
## 3 + 5 = 8
## output is 8
|
fib = {1: 1, 2: 1, 3: 2, 4: 3}
print(fib.get(4, 0) + fib.get(7, 5))
|
contPares = 0
print('Numeros pares: ',end='')
for i in range(1,51):
if i % 2 == 0:
print(i, end=' ')
|
cont_pares = 0
print('Numeros pares: ', end='')
for i in range(1, 51):
if i % 2 == 0:
print(i, end=' ')
|
__author__ = 'Meemaw'
def isPalindrome(x, i):
zacetek = 0
konec = len(x)-1
while zacetek <= konec:
if x[zacetek] != x[konec]:
return 0
zacetek+=1
konec-=1
return 1
vsota = 0
print("Please insert upper bound:")
x = int(input())
for i in range(1,x+1):
if isPalindrome(str(i),10) and isPalindrome(str(bin(i)[2:]),2):
vsota+=i
print("Sum of all numbers below " + str(x) + " which are palindromic in base 10 and 2 is:")
print(vsota)
|
__author__ = 'Meemaw'
def is_palindrome(x, i):
zacetek = 0
konec = len(x) - 1
while zacetek <= konec:
if x[zacetek] != x[konec]:
return 0
zacetek += 1
konec -= 1
return 1
vsota = 0
print('Please insert upper bound:')
x = int(input())
for i in range(1, x + 1):
if is_palindrome(str(i), 10) and is_palindrome(str(bin(i)[2:]), 2):
vsota += i
print('Sum of all numbers below ' + str(x) + ' which are palindromic in base 10 and 2 is:')
print(vsota)
|
class NestedIterator:
def __init__(self, nestedList):
self.l = []
self.i = 0
def search(l):
for e in l:
if e.isInteger():
self.l.append(e.getInteger())
else:
search(e.getList())
search(nestedList)
def next(self) -> int:
ret = self.l[self.i]
self.i += 1
return ret
def hasNext(self) -> bool:
return self.i < len(self.l)
|
class Nestediterator:
def __init__(self, nestedList):
self.l = []
self.i = 0
def search(l):
for e in l:
if e.isInteger():
self.l.append(e.getInteger())
else:
search(e.getList())
search(nestedList)
def next(self) -> int:
ret = self.l[self.i]
self.i += 1
return ret
def has_next(self) -> bool:
return self.i < len(self.l)
|
#https://www.hackerrank.com/challenges/quicksort1
def partition(a, first, last):
pivot = a[first]
wall = last+1
for j in range(last, first,-1):
if a[j] > pivot:
wall -= 1
if j!=wall: a[j],a[wall] = a[wall], a[j] #saves time. in case lik [3,2,4,1] do its partition and see
a[wall-1],a[first] = a[first], a[wall-1]
return a
n = int(input())
a = [int(x) for x in input().strip().split(' ')]
partition(a,0,n-1)
print(" ".join(map(str,a)))
|
def partition(a, first, last):
pivot = a[first]
wall = last + 1
for j in range(last, first, -1):
if a[j] > pivot:
wall -= 1
if j != wall:
(a[j], a[wall]) = (a[wall], a[j])
(a[wall - 1], a[first]) = (a[first], a[wall - 1])
return a
n = int(input())
a = [int(x) for x in input().strip().split(' ')]
partition(a, 0, n - 1)
print(' '.join(map(str, a)))
|
prompt = input('Enter the file name: ')
try:
prompt = open(prompt)
except:
print('File cannot be opened:', prompt)
exit()
total = 0
count = 0
# reading through the file
for line in prompt:
if line.startswith("X-DSPAM-Confidence:"):
# removes lines after and before a sentence
line = line.strip()
pos = line.index(":")
f_num = float(line[pos + 1:])
count += 1
total = total + f_num
average = total/count
print(f'Average Spam Confidence {average}')
|
prompt = input('Enter the file name: ')
try:
prompt = open(prompt)
except:
print('File cannot be opened:', prompt)
exit()
total = 0
count = 0
for line in prompt:
if line.startswith('X-DSPAM-Confidence:'):
line = line.strip()
pos = line.index(':')
f_num = float(line[pos + 1:])
count += 1
total = total + f_num
average = total / count
print(f'Average Spam Confidence {average}')
|
SOLUTIONS = {
"LC": [
[0, 0, 1, 0, 0],
[0, 0, 1, 0, 0],
[0, 0, 0, 1, 1],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
],
"WASTE": [
[0, 0, 0, 1, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 1, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 1, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 1],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 1, 0, 1],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
],
}
|
solutions = {'LC': [[0, 0, 1, 0, 0], [0, 0, 1, 0, 0], [0, 0, 0, 1, 1], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]], 'WASTE': [[0, 0, 0, 1, 0, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0]]}
|
number = [1,3,6,2,7,5,8,9,0]
result = filter(lambda x:x>5,number)
print("Number List",number)
print("Number Smaller than 5 in the list are:",list(result))
|
number = [1, 3, 6, 2, 7, 5, 8, 9, 0]
result = filter(lambda x: x > 5, number)
print('Number List', number)
print('Number Smaller than 5 in the list are:', list(result))
|
#
# PySNMP MIB module NETGEAR-REF-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NETGEAR-REF-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:19:33 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, Bits, iso, MibIdentifier, IpAddress, Integer32, Counter32, Unsigned32, Gauge32, ObjectIdentity, Counter64, TimeTicks, enterprises, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "Bits", "iso", "MibIdentifier", "IpAddress", "Integer32", "Counter32", "Unsigned32", "Gauge32", "ObjectIdentity", "Counter64", "TimeTicks", "enterprises", "NotificationType")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
netgear = ModuleIdentity((1, 3, 6, 1, 4, 1, 4526))
netgear.setRevisions(('2005-02-23 12:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: netgear.setRevisionsDescriptions(('Initial revision.',))
if mibBuilder.loadTexts: netgear.setLastUpdated('200502231200Z')
if mibBuilder.loadTexts: netgear.setOrganization('Netgear')
if mibBuilder.loadTexts: netgear.setContactInfo('')
if mibBuilder.loadTexts: netgear.setDescription('')
managedSwitch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1))
fsm726s = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 1))
fsm750s = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 2))
gsm712 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 3))
fsm726 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 4))
gsm712f = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 5))
fsm726v3 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 10))
gsm7312 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 6))
gsm7324 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 7))
gsm7224 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 8))
fsm7326p = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 1, 9))
ng7000Switch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 10))
ng700Switch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 11))
ngrouter = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 12))
ngfirewall = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 13))
ngap = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 14))
ngwlan = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 15))
ng9000chassisswitch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 16))
productID = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100))
stackswitch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1))
l2switch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 2))
l3switch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 3))
smartswitch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 4))
router = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 5))
firewall = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 6))
accesspoint = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 7))
wirelessLAN = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 8))
chassisswitch = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 9))
fsm7328s = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 1))
fsm7352s = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 2))
gsm7328s = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 3))
gsm7352s = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 4))
fsm7352sp = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 5))
fsm7328sp = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 6))
gsm7312v2 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 1))
gsm7324v2 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 2))
xsm7312 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 3))
gsm7324p = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 4))
gsm7248 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 2, 1))
gsm7212 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 2, 2))
gcm9600 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 9, 1))
gs748t = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 1))
fs726t = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 2))
gs716t = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 3))
fs750t = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 4))
gs724t = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 5))
fvx538 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 5, 1))
fvs338 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 5, 2))
fwag114 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 6, 3))
wag302 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 7, 1))
wapc538 = MibIdentifier((1, 3, 6, 1, 4, 1, 4526, 100, 8, 1))
class AgentPortMask(TextualConvention, OctetString):
description = "Each octet within this value specifies a set of eight ports, with the first octet specifying ports 1 through 8, the second octet specifying ports 9 through 16, etc. Within each octet, the most significant bit represents the lowest numbered port, and the least significant bit represents the highest numbered port. Thus, each port of the bridge is represented by a single bit within the value of this object. If that bit has a value of '1' then that port is included in the set of ports; the port is not included if its bit has a value of '0' When setting this value, the system will ignore configuration for ports not between the first and last valid ports. Configuration of any port numbers between this range that are not valid ports return a failure message, but will still apply configuration for valid ports."
status = 'current'
mibBuilder.exportSymbols("NETGEAR-REF-MIB", gsm7224=gsm7224, fsm7326p=fsm7326p, router=router, wapc538=wapc538, fsm726=fsm726, smartswitch=smartswitch, chassisswitch=chassisswitch, gs724t=gs724t, fsm750s=fsm750s, gsm712=gsm712, gsm7352s=gsm7352s, gcm9600=gcm9600, productID=productID, xsm7312=xsm7312, fsm7352s=fsm7352s, stackswitch=stackswitch, l2switch=l2switch, ngwlan=ngwlan, ng9000chassisswitch=ng9000chassisswitch, fwag114=fwag114, accesspoint=accesspoint, fsm7328s=fsm7328s, gsm7248=gsm7248, gsm7312=gsm7312, fs750t=fs750t, gsm7324=gsm7324, gsm7312v2=gsm7312v2, firewall=firewall, fsm726s=fsm726s, wirelessLAN=wirelessLAN, netgear=netgear, fsm726v3=fsm726v3, ngap=ngap, gsm7328s=gsm7328s, ng700Switch=ng700Switch, fsm7352sp=fsm7352sp, fvs338=fvs338, l3switch=l3switch, managedSwitch=managedSwitch, gs716t=gs716t, AgentPortMask=AgentPortMask, ngfirewall=ngfirewall, gsm7212=gsm7212, gsm7324v2=gsm7324v2, fs726t=fs726t, fvx538=fvx538, fsm7328sp=fsm7328sp, wag302=wag302, gsm712f=gsm712f, ng7000Switch=ng7000Switch, PYSNMP_MODULE_ID=netgear, ngrouter=ngrouter, gs748t=gs748t, gsm7324p=gsm7324p)
|
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, bits, iso, mib_identifier, ip_address, integer32, counter32, unsigned32, gauge32, object_identity, counter64, time_ticks, enterprises, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'Bits', 'iso', 'MibIdentifier', 'IpAddress', 'Integer32', 'Counter32', 'Unsigned32', 'Gauge32', 'ObjectIdentity', 'Counter64', 'TimeTicks', 'enterprises', 'NotificationType')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
netgear = module_identity((1, 3, 6, 1, 4, 1, 4526))
netgear.setRevisions(('2005-02-23 12:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
netgear.setRevisionsDescriptions(('Initial revision.',))
if mibBuilder.loadTexts:
netgear.setLastUpdated('200502231200Z')
if mibBuilder.loadTexts:
netgear.setOrganization('Netgear')
if mibBuilder.loadTexts:
netgear.setContactInfo('')
if mibBuilder.loadTexts:
netgear.setDescription('')
managed_switch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1))
fsm726s = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 1))
fsm750s = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 2))
gsm712 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 3))
fsm726 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 4))
gsm712f = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 5))
fsm726v3 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 10))
gsm7312 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 6))
gsm7324 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 7))
gsm7224 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 8))
fsm7326p = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 1, 9))
ng7000_switch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 10))
ng700_switch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 11))
ngrouter = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 12))
ngfirewall = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 13))
ngap = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 14))
ngwlan = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 15))
ng9000chassisswitch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 16))
product_id = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100))
stackswitch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1))
l2switch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 2))
l3switch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 3))
smartswitch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 4))
router = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 5))
firewall = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 6))
accesspoint = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 7))
wireless_lan = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 8))
chassisswitch = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 9))
fsm7328s = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 1))
fsm7352s = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 2))
gsm7328s = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 3))
gsm7352s = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 4))
fsm7352sp = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 5))
fsm7328sp = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 1, 6))
gsm7312v2 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 1))
gsm7324v2 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 2))
xsm7312 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 3))
gsm7324p = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 3, 4))
gsm7248 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 2, 1))
gsm7212 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 2, 2))
gcm9600 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 9, 1))
gs748t = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 1))
fs726t = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 2))
gs716t = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 3))
fs750t = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 4))
gs724t = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 4, 5))
fvx538 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 5, 1))
fvs338 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 5, 2))
fwag114 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 6, 3))
wag302 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 7, 1))
wapc538 = mib_identifier((1, 3, 6, 1, 4, 1, 4526, 100, 8, 1))
class Agentportmask(TextualConvention, OctetString):
description = "Each octet within this value specifies a set of eight ports, with the first octet specifying ports 1 through 8, the second octet specifying ports 9 through 16, etc. Within each octet, the most significant bit represents the lowest numbered port, and the least significant bit represents the highest numbered port. Thus, each port of the bridge is represented by a single bit within the value of this object. If that bit has a value of '1' then that port is included in the set of ports; the port is not included if its bit has a value of '0' When setting this value, the system will ignore configuration for ports not between the first and last valid ports. Configuration of any port numbers between this range that are not valid ports return a failure message, but will still apply configuration for valid ports."
status = 'current'
mibBuilder.exportSymbols('NETGEAR-REF-MIB', gsm7224=gsm7224, fsm7326p=fsm7326p, router=router, wapc538=wapc538, fsm726=fsm726, smartswitch=smartswitch, chassisswitch=chassisswitch, gs724t=gs724t, fsm750s=fsm750s, gsm712=gsm712, gsm7352s=gsm7352s, gcm9600=gcm9600, productID=productID, xsm7312=xsm7312, fsm7352s=fsm7352s, stackswitch=stackswitch, l2switch=l2switch, ngwlan=ngwlan, ng9000chassisswitch=ng9000chassisswitch, fwag114=fwag114, accesspoint=accesspoint, fsm7328s=fsm7328s, gsm7248=gsm7248, gsm7312=gsm7312, fs750t=fs750t, gsm7324=gsm7324, gsm7312v2=gsm7312v2, firewall=firewall, fsm726s=fsm726s, wirelessLAN=wirelessLAN, netgear=netgear, fsm726v3=fsm726v3, ngap=ngap, gsm7328s=gsm7328s, ng700Switch=ng700Switch, fsm7352sp=fsm7352sp, fvs338=fvs338, l3switch=l3switch, managedSwitch=managedSwitch, gs716t=gs716t, AgentPortMask=AgentPortMask, ngfirewall=ngfirewall, gsm7212=gsm7212, gsm7324v2=gsm7324v2, fs726t=fs726t, fvx538=fvx538, fsm7328sp=fsm7328sp, wag302=wag302, gsm712f=gsm712f, ng7000Switch=ng7000Switch, PYSNMP_MODULE_ID=netgear, ngrouter=ngrouter, gs748t=gs748t, gsm7324p=gsm7324p)
|
my_host = 'localhost'
my_port = 10000
is_emulation = False
emulator_host = '0.0.0.0'
emulator_port = 4390
apis_web_host = '0.0.0.0'
apis_web_budo_emulator_port = 43830
apis_web_api_server_port = 9999
#apis_log_group_address = 'FF02:0:0:0:0:0:0:1'
apis_log_group_address = '224.2.2.4'
apis_log_port = 8888
units = [
{
'id' : 'E001',
'name' : 'E001',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
{
'id' : 'E002',
'name' : 'E002',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
{
'id' : 'E003',
'name' : 'E003',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
{
'id' : 'E004',
'name' : 'E004',
'host' : '0.0.0.0',
'dcdc_port' : 4380,
'emu_port' : 8080,
},
]
default_control_dcdc_command = 'MODE'
default_control_dcdc_mode = 'WAIT'
default_grid_voltage_v = 350
default_grid_current_a = 2.3
default_droop_ratio = 0
default_deal_grid_current_a = 2
default_deal_amount_wh = 100
default_point_per_wh = 10
default_efficient_grid_voltage_v = 330
default_error_level = 'ERROR'
default_error_extent = 'LOCAL'
default_error_category = 'HARDWARE'
default_wait_log_timeout_s = 30
default_wait_duration_s = 5
default_apis_global_operation_mode = 'Run'
default_apis_local_operation_mode = None
|
my_host = 'localhost'
my_port = 10000
is_emulation = False
emulator_host = '0.0.0.0'
emulator_port = 4390
apis_web_host = '0.0.0.0'
apis_web_budo_emulator_port = 43830
apis_web_api_server_port = 9999
apis_log_group_address = '224.2.2.4'
apis_log_port = 8888
units = [{'id': 'E001', 'name': 'E001', 'host': '0.0.0.0', 'dcdc_port': 4380, 'emu_port': 8080}, {'id': 'E002', 'name': 'E002', 'host': '0.0.0.0', 'dcdc_port': 4380, 'emu_port': 8080}, {'id': 'E003', 'name': 'E003', 'host': '0.0.0.0', 'dcdc_port': 4380, 'emu_port': 8080}, {'id': 'E004', 'name': 'E004', 'host': '0.0.0.0', 'dcdc_port': 4380, 'emu_port': 8080}]
default_control_dcdc_command = 'MODE'
default_control_dcdc_mode = 'WAIT'
default_grid_voltage_v = 350
default_grid_current_a = 2.3
default_droop_ratio = 0
default_deal_grid_current_a = 2
default_deal_amount_wh = 100
default_point_per_wh = 10
default_efficient_grid_voltage_v = 330
default_error_level = 'ERROR'
default_error_extent = 'LOCAL'
default_error_category = 'HARDWARE'
default_wait_log_timeout_s = 30
default_wait_duration_s = 5
default_apis_global_operation_mode = 'Run'
default_apis_local_operation_mode = None
|
def primes():
i, f = 2, 1
while True:
if (f + 1) % i == 0:
yield i
f, i = f * i, i + 1
|
def primes():
(i, f) = (2, 1)
while True:
if (f + 1) % i == 0:
yield i
(f, i) = (f * i, i + 1)
|
mypass = input()
if ("1234" or "qwerty" in mypass) or (len(mypass) < 8):
print("Bad password")
elif ("1" or "2" or "3" or "4" or "5" or "6" or "7" or "8" or "9" or "0") not in mypass:
print("Bad password")
else:
print("Good password")
|
mypass = input()
if ('1234' or 'qwerty' in mypass) or len(mypass) < 8:
print('Bad password')
elif ('1' or '2' or '3' or '4' or '5' or '6' or '7' or '8' or '9' or '0') not in mypass:
print('Bad password')
else:
print('Good password')
|
n, m = map(int, input().split())
matches = []
for i in range(m):
matches.append(list(map(int, input().split())))
matches.sort(key=lambda container: container[1], reverse=True)
count = 0
i = 0
j = 0
while i <= n and j < m:
if matches[j][0] < n - i:
i += matches[j][0]
count += matches[j][0] * matches[j][1]
else:
count += (n - i) * matches[j][1]
i = n
j += 1
print(count)
|
(n, m) = map(int, input().split())
matches = []
for i in range(m):
matches.append(list(map(int, input().split())))
matches.sort(key=lambda container: container[1], reverse=True)
count = 0
i = 0
j = 0
while i <= n and j < m:
if matches[j][0] < n - i:
i += matches[j][0]
count += matches[j][0] * matches[j][1]
else:
count += (n - i) * matches[j][1]
i = n
j += 1
print(count)
|
# 'guinea pig' is appended to the animals list
animals.append('guinea pig')
# Updated animals list
print('Updated animals list: ', animals)
|
animals.append('guinea pig')
print('Updated animals list: ', animals)
|
maze = ' ******* * **** * **** * *** *# *** *** *** *********'
g = ''
s = ''
for i in range(0, len(maze)):
g += maze[i]
if (i+1)%8==0:
g += s + '\n'
s = ''
print(g)
|
maze = ' ******* * **** * **** * *** *# *** *** *** *********'
g = ''
s = ''
for i in range(0, len(maze)):
g += maze[i]
if (i + 1) % 8 == 0:
g += s + '\n'
s = ''
print(g)
|
class Error(Exception):
pass
class FieldLookupError(Error):
pass
class BadValueError(Error):
pass
class DocumentClassRequiredError(Error):
pass
class FieldError(Error):
pass
|
class Error(Exception):
pass
class Fieldlookuperror(Error):
pass
class Badvalueerror(Error):
pass
class Documentclassrequirederror(Error):
pass
class Fielderror(Error):
pass
|
# pylint: disable=missing-docstring,too-few-public-methods
class AbstractFoo:
def kwonly_1(self, first, *, second, third):
"Normal positional with two positional only params."
def kwonly_2(self, *, first, second):
"Two positional only parameter."
def kwonly_3(self, *, first, second):
"Two positional only params."
def kwonly_4(self, *, first, second=None):
"One positional only and another with a default."
def kwonly_5(self, *, first, **kwargs):
"Keyword only and keyword variadics."
def kwonly_6(self, first, second, *, third):
"Two positional and one keyword"
class Foo(AbstractFoo):
def kwonly_1(self, first, *, second): # [arguments-differ]
"One positional and only one positional only param."
def kwonly_2(self, first): # [arguments-differ]
"Only one positional parameter instead of two positional only parameters."
def kwonly_3(self, first, second): # [arguments-differ]
"Two positional params."
def kwonly_4(self, first, second): # [arguments-differ]
"Two positional params."
def kwonly_5(self, *, first): # [arguments-differ]
"Keyword only, but no variadics."
def kwonly_6(self, *args, **kwargs): # valid override
"Positional and keyword variadics to pass through parent params"
class Foo2(AbstractFoo):
def kwonly_6(self, first, *args, **kwargs): # valid override
"One positional with the rest variadics to pass through parent params"
|
class Abstractfoo:
def kwonly_1(self, first, *, second, third):
"""Normal positional with two positional only params."""
def kwonly_2(self, *, first, second):
"""Two positional only parameter."""
def kwonly_3(self, *, first, second):
"""Two positional only params."""
def kwonly_4(self, *, first, second=None):
"""One positional only and another with a default."""
def kwonly_5(self, *, first, **kwargs):
"""Keyword only and keyword variadics."""
def kwonly_6(self, first, second, *, third):
"""Two positional and one keyword"""
class Foo(AbstractFoo):
def kwonly_1(self, first, *, second):
"""One positional and only one positional only param."""
def kwonly_2(self, first):
"""Only one positional parameter instead of two positional only parameters."""
def kwonly_3(self, first, second):
"""Two positional params."""
def kwonly_4(self, first, second):
"""Two positional params."""
def kwonly_5(self, *, first):
"""Keyword only, but no variadics."""
def kwonly_6(self, *args, **kwargs):
"""Positional and keyword variadics to pass through parent params"""
class Foo2(AbstractFoo):
def kwonly_6(self, first, *args, **kwargs):
"""One positional with the rest variadics to pass through parent params"""
|
#paste your api_hash and api_id from my.telegram.org
api_hash = "exxxxxxxxxx"
api_id = xxxx
entity = "tgcloud"
|
api_hash = 'exxxxxxxxxx'
api_id = xxxx
entity = 'tgcloud'
|
# Server Specific Configurations
server = {
'port': '8558',
'host': '0.0.0.0'
}
# Pecan Application Configurations
app = {
'root': 'vouch.controllers.root.RootController',
'modules': ['vouch'],
'debug': False,
# this 'guess' also strips off the extension from the resource path.
'guess_content_type_from_ext': False
}
logging = {
'loggers': {
'vouch': {'level': 'DEBUG', 'handlers': ['console']},
'keystonemiddleware': {'level': 'DEBUG', 'handlers': ['console']},
'__force_dict__': True
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple'
}
},
'formatters': {
'simple': {
'format': ('%(asctime)s %(levelname)s [%(name)s]'
'[%(threadName)s] %(message)s')
}
}
}
|
server = {'port': '8558', 'host': '0.0.0.0'}
app = {'root': 'vouch.controllers.root.RootController', 'modules': ['vouch'], 'debug': False, 'guess_content_type_from_ext': False}
logging = {'loggers': {'vouch': {'level': 'DEBUG', 'handlers': ['console']}, 'keystonemiddleware': {'level': 'DEBUG', 'handlers': ['console']}, '__force_dict__': True}, 'handlers': {'console': {'level': 'DEBUG', 'class': 'logging.StreamHandler', 'formatter': 'simple'}}, 'formatters': {'simple': {'format': '%(asctime)s %(levelname)s [%(name)s][%(threadName)s] %(message)s'}}}
|
def shakehand():
rest()
i01.startedGesture()
##move arm and hand
i01.setHandSpeed("left", 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed("right", 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setArmSpeed("right", 0.75, 0.85, 0.95, 0.85)
i01.setArmSpeed("left", 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(39,70)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,55,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",50,50,40,20,20,90)
i01.moveTorso(95,95,90)
sleep(3)
##close the hand
i01.setHandSpeed("left", 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed("right", 0.85, 0.85, 0.85, 0.85, 0.85, 1.0)
i01.setArmSpeed("right", 0.75, 0.85, 0.95, 0.85)
i01.setArmSpeed("left", 0.75, 0.85, 0.75, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(39,70)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,48,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,125,135,145,168,77)
i01.moveTorso(95,95,90)
sleep(3)
##shake hand up
i01.setHandSpeed("left", 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed("right", 0.85, 0.85, 0.85, 0.85, 0.85, 1.0)
i01.setArmSpeed("right", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(90,90)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,60,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,125,135,145,168,77)
i01.moveTorso(95,95,90)
sleep(1)
##shake hand down
x = (random.randint(1, 7))
if x == 1:
i01.mouth.speak("please to meet you")
if x == 2:
i01.mouth.speak("carefull my hand is made out of plastic")
if x == 3:
i01.mouth.speak("I am happy to shake a human hand")
if x == 4:
i01.mouth.speak("it is a pleasure to meet you")
if x == 5:
i01.mouth.speak("very nice to meet you")
if x == 6:
i01.mouth.speak("shaking a human hand, feels strange. please to meet you")
if x == 7:
i01.mouth.speak("I am glad you don't shake me like trump does")
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(0.75, 0.75)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(70,53)
sleep(0.5)
i01.moveHead(39,70)
sleep(0.5)
i01.moveHead(70,53)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,48,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,125,135,145,168,77)
i01.moveTorso(95,95,90)
sleep(1.5)
##shake hand up
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(80,53)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,60,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,125,135,145,168,77)
i01.moveTorso(95,95,90)
sleep(1)
##shake hand down
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(80,88)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,48,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,125,135,145,168,77)
i01.moveTorso(95,95,90)
sleep(1.5)
## release hand
i01.setHandSpeed("left", 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 0.95, 0.95, 0.95, 0.85)
i01.setArmSpeed("left", 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(39,70)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,45,16)
i01.moveHand("left",50,50,40,20,20,77)
i01.moveHand("right",20,30,30,20,20,90)
i01.moveTorso(95,95,90)
sleep(1)
rest()
relax()
i01.moveHead(90,90)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,70,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,126,120,145,168,77)
i01.moveTorso(101,100,90)
sleep(1)
##shake hand down
x = (random.randint(1, 5))
if x == 1:
i01.mouth.speak("please to meet you")
if x == 2:
i01.mouth.speak("carefull my hand is made out of plastic")
if x == 3:
i01.mouth.speak("I am happy to shake a human hand")
if x == 4:
i01.mouth.speak("it is a pleasure to meet you")
if x == 5:
i01.mouth.speak("very nice to meet you")
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 0.75, 0.75, 0.95, 0.85)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(80,53)
sleep(2)
i01.moveHead(39,70)
sleep(2)
i01.moveHead(80,53)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,60,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,126,120,145,168,77)
i01.moveTorso(101,100,90)
sleep(1)
##shake hand up
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 0.75, 0.75, 0.95, 0.85)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(80,53)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,75,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,126,120,145,168,77)
i01.moveTorso(101,100,90)
sleep(1)
##shake hand down
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("left", 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 0.75, 0.75, 0.95, 0.85)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(82,88)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,62,16)
i01.moveHand("left",50,50,40,20,20,90)
i01.moveHand("right",180,126,120,145,168,77)
i01.moveTorso(101,100,90)
sleep(2)
## release hand
i01.setHandSpeed("left", 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 0.95, 0.95, 0.95, 0.85)
i01.setArmSpeed("left", 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(39,70)
i01.moveArm("left",5,84,16,15)
i01.moveArm("right",6,73,62,16)
i01.moveHand("left",50,50,40,20,20,77)
i01.moveHand("right",20,30,30,20,20,90)
i01.moveTorso(101,100,90)
sleep(1)
relax()
i01.finishedGesture()
|
def shakehand():
rest()
i01.startedGesture()
i01.setHandSpeed('left', 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed('right', 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setArmSpeed('right', 0.75, 0.85, 0.95, 0.85)
i01.setArmSpeed('left', 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(39, 70)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 55, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 50, 50, 40, 20, 20, 90)
i01.moveTorso(95, 95, 90)
sleep(3)
i01.setHandSpeed('left', 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed('right', 0.85, 0.85, 0.85, 0.85, 0.85, 1.0)
i01.setArmSpeed('right', 0.75, 0.85, 0.95, 0.85)
i01.setArmSpeed('left', 0.75, 0.85, 0.75, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(39, 70)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 48, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 125, 135, 145, 168, 77)
i01.moveTorso(95, 95, 90)
sleep(3)
i01.setHandSpeed('left', 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed('right', 0.85, 0.85, 0.85, 0.85, 0.85, 1.0)
i01.setArmSpeed('right', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(90, 90)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 60, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 125, 135, 145, 168, 77)
i01.moveTorso(95, 95, 90)
sleep(1)
x = random.randint(1, 7)
if x == 1:
i01.mouth.speak('please to meet you')
if x == 2:
i01.mouth.speak('carefull my hand is made out of plastic')
if x == 3:
i01.mouth.speak('I am happy to shake a human hand')
if x == 4:
i01.mouth.speak('it is a pleasure to meet you')
if x == 5:
i01.mouth.speak('very nice to meet you')
if x == 6:
i01.mouth.speak('shaking a human hand, feels strange. please to meet you')
if x == 7:
i01.mouth.speak("I am glad you don't shake me like trump does")
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(0.75, 0.75)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(70, 53)
sleep(0.5)
i01.moveHead(39, 70)
sleep(0.5)
i01.moveHead(70, 53)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 48, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 125, 135, 145, 168, 77)
i01.moveTorso(95, 95, 90)
sleep(1.5)
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(80, 53)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 60, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 125, 135, 145, 168, 77)
i01.moveTorso(95, 95, 90)
sleep(1)
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 1.0, 1.0, 1.0, 1.0)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(80, 88)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 48, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 125, 135, 145, 168, 77)
i01.moveTorso(95, 95, 90)
sleep(1.5)
i01.setHandSpeed('left', 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 0.95, 0.95, 0.95, 0.85)
i01.setArmSpeed('left', 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.65, 0.55, 1.0)
i01.moveHead(39, 70)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 45, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 77)
i01.moveHand('right', 20, 30, 30, 20, 20, 90)
i01.moveTorso(95, 95, 90)
sleep(1)
rest()
relax()
i01.moveHead(90, 90)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 70, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 126, 120, 145, 168, 77)
i01.moveTorso(101, 100, 90)
sleep(1)
x = random.randint(1, 5)
if x == 1:
i01.mouth.speak('please to meet you')
if x == 2:
i01.mouth.speak('carefull my hand is made out of plastic')
if x == 3:
i01.mouth.speak('I am happy to shake a human hand')
if x == 4:
i01.mouth.speak('it is a pleasure to meet you')
if x == 5:
i01.mouth.speak('very nice to meet you')
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 0.75, 0.75, 0.95, 0.85)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(80, 53)
sleep(2)
i01.moveHead(39, 70)
sleep(2)
i01.moveHead(80, 53)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 60, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 126, 120, 145, 168, 77)
i01.moveTorso(101, 100, 90)
sleep(1)
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 0.75, 0.75, 0.95, 0.85)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(80, 53)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 75, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 126, 120, 145, 168, 77)
i01.moveTorso(101, 100, 90)
sleep(1)
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 0.75, 0.75, 0.95, 0.85)
i01.setHeadSpeed(0.85, 0.85)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(82, 88)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 62, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 90)
i01.moveHand('right', 180, 126, 120, 145, 168, 77)
i01.moveTorso(101, 100, 90)
sleep(2)
i01.setHandSpeed('left', 0.65, 0.65, 0.65, 0.65, 0.65, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 0.95, 0.95, 0.95, 0.85)
i01.setArmSpeed('left', 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(1.0, 1.0)
i01.setTorsoSpeed(0.75, 0.55, 1.0)
i01.moveHead(39, 70)
i01.moveArm('left', 5, 84, 16, 15)
i01.moveArm('right', 6, 73, 62, 16)
i01.moveHand('left', 50, 50, 40, 20, 20, 77)
i01.moveHand('right', 20, 30, 30, 20, 20, 90)
i01.moveTorso(101, 100, 90)
sleep(1)
relax()
i01.finishedGesture()
|
# Copyright (c) 2013 Huan Do, http://huan.do
class FrameContextManager(object):
def __init__(self, frame, visitor):
self.frame = frame
self.visitor = visitor
def __enter__(self):
self.visitor.current_frame = self.frame
return self.frame
def __exit__(self, *_):
self.visitor.withdraw_frame()
|
class Framecontextmanager(object):
def __init__(self, frame, visitor):
self.frame = frame
self.visitor = visitor
def __enter__(self):
self.visitor.current_frame = self.frame
return self.frame
def __exit__(self, *_):
self.visitor.withdraw_frame()
|
# wczytanie napisow
with open('../dane/NAPIS.TXT') as f:
data = []
for word in f.readlines():
data.append(word[:-1])
# zbior slow rosnacych
growing = []
# przejscie po slowach
for word in data:
# przejscie po literach i sprawdzenie czy aktualna wartosc ASCII litery jest wieksza niz poprzednej
isgrowing = True
prevnum = 0
for char in word:
if prevnum >= ord(char):
isgrowing = False
break
prevnum = ord(char)
if isgrowing:
growing.append(word)
# wyswietlenie odpowiedzi
nl = '\n'
answer = f'5 b) Slowa rosnace: {nl}{nl.join(growing)}'
print(answer)
|
with open('../dane/NAPIS.TXT') as f:
data = []
for word in f.readlines():
data.append(word[:-1])
growing = []
for word in data:
isgrowing = True
prevnum = 0
for char in word:
if prevnum >= ord(char):
isgrowing = False
break
prevnum = ord(char)
if isgrowing:
growing.append(word)
nl = '\n'
answer = f'5 b) Slowa rosnace: {nl}{nl.join(growing)}'
print(answer)
|
sum = lambda a, b : a + b
print(sum(3,4))
def sum1(a, b):
return a + b
print(sum1(4, 5))
myList = [lambda a, b : a + b, lambda a, b : a * b]
print(myList)
print(myList[0])
print(myList[0](3, 4))
print(myList[1](3, 4))
|
sum = lambda a, b: a + b
print(sum(3, 4))
def sum1(a, b):
return a + b
print(sum1(4, 5))
my_list = [lambda a, b: a + b, lambda a, b: a * b]
print(myList)
print(myList[0])
print(myList[0](3, 4))
print(myList[1](3, 4))
|
# pylint: disable=missing-docstring
def baz(): # [disallowed-name]
pass
|
def baz():
pass
|
# c:\Users\i341972\Desktop\git_repos\enaml\enaml\core\parse_tab\parsetab.py
# This file is automatically generated. Do not edit.
_tabversion = '3.2'
_lr_method = 'LALR'
_lr_signature = '\x7f\xdd\xc1Pb\x9c\xa9\xeb\xac\xc9\xad\xb5=\x06\x80j'
_lr_action_items = {'LPAR':([0,1,6,7,9,13,14,16,18,24,28,29,30,31,33,35,39,42,43,44,47,49,52,54,55,57,61,63,64,65,67,72,73,74,82,83,85,86,89,90,95,96,97,102,103,104,106,109,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,137,138,140,144,147,148,150,155,157,160,161,163,165,166,168,169,170,171,177,183,185,186,187,188,189,191,193,194,195,196,199,201,202,205,210,211,213,215,216,218,219,220,228,233,234,244,246,248,251,253,256,258,260,262,263,265,270,271,272,274,277,278,279,281,282,291,292,293,296,299,300,301,303,306,307,308,309,310,312,314,315,316,318,319,321,324,328,330,333,341,343,346,347,350,353,354,355,356,360,364,365,367,368,370,374,375,377,378,379,383,391,394,401,404,410,414,417,418,420,428,429,430,432,435,437,440,442,444,447,450,453,459,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,512,518,523,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[1,1,-140,1,1,1,-55,-143,-139,-137,-141,1,-297,1,1,-298,1,-56,1,-9,-7,1,165,171,1,1,1,-8,-142,1,-295,-296,1,1,1,1,-144,1,-138,-288,-57,1,-58,1,1,1,1,-215,1,1,-125,-116,-120,-115,1,-118,-122,-117,-121,-124,-126,-123,-119,1,1,-181,-180,242,1,-299,1,1,251,1,1,1,-293,1,1,1,165,1,1,-286,171,1,-291,-241,1,-237,-236,-244,-239,-242,-240,-238,-6,1,1,314,316,-290,1,1,-289,1,1,1,1,-216,1,1,1,1,1,171,1,1,-51,1,-294,1,1,1,-314,1,1,1,-287,-317,1,1,1,171,1,1,1,-292,1,1,-245,1,-243,1,1,1,1,1,1,1,408,411,1,-168,1,-217,1,1,1,1,1,1,-163,-158,1,1,-315,1,1,1,-371,1,1,1,-316,171,171,-153,1,-177,-145,483,1,-169,-218,1,-174,1,1,-162,1,1,1,1,-372,1,1,171,171,1,1,1,1,-150,1,-146,-147,-155,-52,1,1,-164,1,1,1,-157,1,1,1,1,1,171,1,171,-178,1,1,-149,-148,1,-10,-159,-160,-165,1,-371,1,-154,1,1,1,-179,1,-152,-11,1,1,1,1,1,-372,1,1,-151,-12,-156,1,-166,-167,1,-14,-15,1,1,1,1,1,-13,-161,-16,-17,-18,-19,]),'ENDMARKER':([0,6,8,14,16,18,24,28,41,42,44,47,63,64,73,85,89,95,97,135,136,153,196,258,328,354,355,391,401,404,417,428,432,472,475,476,488,490,493,497,524,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[2,-140,100,-55,-143,-139,-137,-141,152,-56,-9,-7,-8,-142,-5,-144,-138,-57,-58,-181,-180,255,-6,-51,-168,-163,-158,-153,-177,-145,-169,-174,-162,-150,-146,-147,-155,-52,-164,-157,-178,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'NOTEQUAL':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,185,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,185,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'AMPEREQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,120,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'CIRCUMFLEX':([10,12,23,30,35,37,38,51,52,67,72,90,101,105,107,113,131,132,140,149,151,160,162,164,166,170,181,183,210,215,222,223,224,225,226,232,239,240,241,254,262,267,268,269,271,278,279,280,300,336,351,364,371,378,],[-270,112,-264,-297,-298,-278,-254,-258,-282,-295,-296,-288,-279,-272,-271,233,-265,-266,-299,-255,-280,-293,-260,-259,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-253,-257,-315,-285,-316,]),'WITH':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,97,135,136,196,258,328,353,354,355,391,401,404,417,428,430,432,472,475,476,488,490,493,497,524,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[7,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,7,-144,-138,-57,-58,-181,-180,-6,-51,-168,7,-163,-158,-153,-177,-145,-169,-174,7,-162,-150,-146,-147,-155,-52,-164,-157,-178,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'MINUS':([0,1,6,7,9,10,13,14,16,18,23,24,28,29,30,31,33,35,37,39,42,43,44,47,49,52,55,57,61,63,64,65,67,72,73,74,82,83,85,86,89,90,95,96,97,101,102,103,104,105,106,107,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,136,138,140,144,147,150,151,155,157,160,161,163,165,166,168,169,170,177,181,183,185,186,187,188,189,191,193,194,195,196,199,201,210,211,213,215,216,218,219,220,222,223,224,225,226,233,234,239,240,241,244,246,248,253,256,258,260,262,263,265,270,271,272,274,277,278,279,280,281,282,291,293,296,299,300,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,364,365,367,368,370,371,374,375,377,378,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[39,39,-140,39,39,-270,39,-55,-143,-139,134,-137,-141,39,-297,39,39,-298,-278,39,-56,39,-9,-7,39,-282,39,39,39,-8,-142,39,-295,-296,39,39,39,39,-144,39,-138,-288,-57,39,-58,-279,39,39,39,-272,39,-271,39,39,-125,-116,-120,-115,39,-118,-122,-117,-121,-124,-126,-123,-119,134,-266,39,39,-181,-180,39,-299,39,39,39,-280,39,39,-293,39,39,39,-284,39,39,-286,39,-281,-291,-241,39,-237,-236,-244,-239,-242,-240,-238,-6,39,39,-290,39,39,-289,39,39,39,39,-274,-276,-277,-275,-273,39,39,-267,-268,-269,39,39,39,39,39,-51,39,-294,39,39,39,-314,39,39,39,-287,-317,-283,39,39,39,39,39,39,-292,39,39,-245,39,-243,39,39,39,39,39,39,39,39,-168,39,39,39,39,39,39,39,-163,-158,39,39,-315,39,39,39,-371,-285,39,39,39,-316,-153,39,-177,-145,39,-169,39,-174,39,39,-162,39,39,39,39,-372,39,39,39,39,39,39,-150,39,-146,-147,-155,-52,39,39,-164,39,39,39,-157,39,39,39,39,39,39,-178,39,39,-149,-148,39,-10,-159,-160,-165,39,-371,39,-154,39,39,39,-179,39,-152,-11,39,39,39,39,39,-372,39,39,-151,-12,-156,39,-166,-167,39,-14,-15,39,39,39,39,39,-13,-161,-16,-17,-18,-19,]),'LESS':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,188,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,188,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'EXCEPT':([95,97,258,259,354,490,493,549,617,618,],[-57,-58,-51,356,356,-52,-164,-165,-166,-167,]),'PLUS':([0,1,6,7,9,10,13,14,16,18,23,24,28,29,30,31,33,35,37,39,42,43,44,47,49,52,55,57,61,63,64,65,67,72,73,74,82,83,85,86,89,90,95,96,97,101,102,103,104,105,106,107,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,133,134,135,136,138,140,144,147,150,151,155,157,160,161,163,165,166,168,169,170,177,181,183,185,186,187,188,189,191,193,194,195,196,199,201,210,211,213,215,216,218,219,220,222,223,224,225,226,233,234,239,240,241,244,246,248,253,256,258,260,262,263,265,270,271,272,274,277,278,279,280,281,282,291,293,296,299,300,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,364,365,367,368,370,371,374,375,377,378,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[9,9,-140,9,9,-270,9,-55,-143,-139,133,-137,-141,9,-297,9,9,-298,-278,9,-56,9,-9,-7,9,-282,9,9,9,-8,-142,9,-295,-296,9,9,9,9,-144,9,-138,-288,-57,9,-58,-279,9,9,9,-272,9,-271,9,9,-125,-116,-120,-115,9,-118,-122,-117,-121,-124,-126,-123,-119,133,-266,9,9,-181,-180,9,-299,9,9,9,-280,9,9,-293,9,9,9,-284,9,9,-286,9,-281,-291,-241,9,-237,-236,-244,-239,-242,-240,-238,-6,9,9,-290,9,9,-289,9,9,9,9,-274,-276,-277,-275,-273,9,9,-267,-268,-269,9,9,9,9,9,-51,9,-294,9,9,9,-314,9,9,9,-287,-317,-283,9,9,9,9,9,9,-292,9,9,-245,9,-243,9,9,9,9,9,9,9,9,-168,9,9,9,9,9,9,9,-163,-158,9,9,-315,9,9,9,-371,-285,9,9,9,-316,-153,9,-177,-145,9,-169,9,-174,9,9,-162,9,9,9,9,-372,9,9,9,9,9,9,-150,9,-146,-147,-155,-52,9,9,-164,9,9,9,-157,9,9,9,9,9,9,-178,9,9,-149,-148,9,-10,-159,-160,-165,9,-371,9,-154,9,9,9,-179,9,-152,-11,9,9,9,9,9,-372,9,9,-151,-12,-156,9,-166,-167,9,-14,-15,9,9,9,9,9,-13,-161,-16,-17,-18,-19,]),'PERCENTEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,125,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'IMPORT':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,109,135,136,155,196,207,208,209,216,219,228,258,299,315,318,320,322,328,330,333,350,353,354,355,391,401,404,417,418,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[11,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,11,-144,-138,-57,11,-58,-215,-181,-180,11,-6,319,321,-199,11,11,-216,-51,11,11,11,410,-200,-168,11,-217,11,11,-163,-158,-153,-177,-145,-169,-218,-174,11,11,-162,11,11,11,-150,-146,-147,-155,-52,11,11,-164,11,-157,11,-178,11,11,-149,-148,-10,-159,-160,-165,-154,-179,11,-152,-11,11,11,11,-151,-12,-156,11,-166,-167,-14,-15,11,-13,-161,-16,-17,-18,-19,]),'EQEQUAL':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,195,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,195,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'RBRACE':([10,12,19,23,27,30,32,35,37,38,46,48,49,51,52,67,68,72,75,90,101,105,107,113,131,132,140,143,149,151,156,158,160,162,164,166,170,181,183,190,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,263,264,266,267,268,269,271,278,279,280,295,300,305,311,336,344,351,358,359,360,361,364,371,378,388,395,397,422,438,439,440,441,485,498,521,522,537,538,539,579,588,601,603,619,627,],[-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,160,-258,-282,-295,-232,-296,-226,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,262,-293,-260,-259,-284,-286,-281,-291,-233,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-350,-351,-349,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-253,-249,-257,-225,-355,-352,-345,-315,-285,-316,-398,-235,-229,-220,-356,-347,-346,-344,-382,-348,-394,-393,-385,-384,-383,-386,-353,-395,-387,-354,-396,]),'EXEC':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[13,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,13,-144,-138,-57,13,-58,-181,-180,13,-6,13,13,-51,13,13,13,-168,13,13,13,-163,-158,-153,-177,-145,-169,-174,13,13,-162,13,13,13,-150,-146,-147,-155,-52,13,13,-164,13,-157,13,-178,13,13,-149,-148,-10,-159,-160,-165,-154,-179,13,-152,-11,13,13,13,-151,-12,-156,13,-166,-167,-14,-15,13,-13,-161,-16,-17,-18,-19,]),'SLASH':([10,30,35,37,52,67,72,90,101,105,107,140,151,160,166,170,181,183,210,215,222,223,224,225,226,262,271,278,279,280,300,364,371,378,],[106,-297,-298,-278,-282,-295,-296,-288,-279,-272,106,-299,-280,-293,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-294,-314,-287,-317,-283,-292,-315,-285,-316,]),'PASS':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,487,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,580,581,582,583,585,586,602,604,606,607,608,609,611,613,615,616,617,618,628,629,631,632,633,634,638,641,642,643,644,648,649,650,651,653,654,661,663,664,666,667,668,670,672,673,674,675,676,677,678,679,680,681,683,685,686,687,689,690,692,693,694,696,697,698,699,700,],[20,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,20,-144,-138,-57,20,-58,-181,-180,20,-6,20,20,-51,20,20,20,-168,20,20,20,-163,-158,-153,-177,-145,-169,-174,20,20,-162,20,20,20,-150,-146,-147,544,-155,-52,20,20,-164,20,-157,20,-178,20,20,-149,-148,-10,-159,-160,-165,-154,-179,20,-152,610,614,-11,20,20,20,-151,-24,-22,-20,-23,610,610,-12,-156,20,-166,-167,610,-14,-21,-25,-15,610,-45,662,20,-13,-161,610,610,662,-16,-26,-28,-32,-31,-50,-17,-18,610,-49,-48,-46,-47,-30,684,691,-33,-19,-27,-29,-35,-34,-42,691,-40,-43,691,-36,-37,-41,-44,-38,691,-39,]),'NAME':([0,1,6,7,9,11,13,14,16,18,24,26,28,29,31,33,34,39,42,43,44,47,49,54,55,56,57,61,63,64,65,73,74,80,82,83,84,85,86,87,89,95,96,97,102,103,104,106,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,138,144,147,150,155,157,161,163,165,167,168,169,171,172,176,177,185,186,187,188,189,191,193,194,195,196,199,201,208,209,211,213,216,218,219,220,227,229,230,233,234,242,244,246,248,251,253,256,258,260,263,265,270,272,274,277,281,282,291,292,293,296,298,299,301,303,306,307,308,309,310,312,314,315,316,318,319,321,322,324,328,330,332,335,341,343,346,347,350,353,354,355,356,360,365,367,368,370,374,375,377,379,383,385,387,391,394,401,404,408,410,411,414,417,420,428,429,430,432,435,437,440,442,444,447,450,453,454,455,457,459,461,463,466,468,472,473,475,476,477,479,483,487,488,490,491,492,493,494,495,496,497,498,501,502,505,510,512,513,514,518,523,524,525,528,529,530,532,540,543,546,547,549,552,553,556,560,561,564,565,569,570,573,574,575,576,580,582,583,585,586,587,589,590,592,599,600,602,604,606,607,608,609,611,612,613,615,616,617,618,621,624,628,629,630,631,632,633,634,635,637,638,639,640,641,642,643,644,646,648,649,650,651,653,654,655,661,663,664,666,667,668,670,672,673,674,675,676,677,678,679,680,681,683,685,686,687,689,690,692,693,694,696,697,698,699,700,],[67,67,-140,67,67,109,67,-55,-143,-139,-137,137,-141,67,67,67,148,67,-56,67,-9,-7,67,173,67,179,67,67,-8,-142,67,67,67,202,67,67,109,-144,67,109,-138,-57,67,-58,67,67,67,67,67,67,-125,-116,-120,-115,67,-118,-122,-117,-121,-124,-126,-123,-119,67,67,-181,-180,67,67,67,67,67,67,67,67,67,279,67,67,173,289,294,67,-241,67,-237,-236,-244,-239,-242,-240,-238,-6,67,67,109,-199,67,67,67,67,67,67,331,333,109,67,67,340,67,67,67,173,67,67,-51,67,67,67,67,67,67,67,67,67,67,173,67,67,390,67,67,67,-245,67,-243,67,67,67,67,67,67,67,407,407,-200,67,-168,67,418,109,67,67,67,67,67,67,-163,-158,67,67,67,67,67,-371,67,67,67,173,173,460,462,-153,67,-177,-145,407,407,407,67,-169,67,-174,67,67,-162,67,67,67,67,-372,67,67,173,508,509,511,173,67,67,67,67,-150,67,-146,-147,407,533,407,542,-155,-52,67,67,-164,67,67,67,-157,67,67,67,67,67,173,562,563,67,173,-178,67,67,-149,-148,407,67,-10,-159,-160,-165,67,-371,67,593,594,596,-154,67,67,67,-179,67,-152,612,-11,67,67,67,67,67,-372,622,67,67,-151,-24,-22,-20,-23,630,630,636,-12,-156,67,-166,-167,67,647,612,-14,636,-21,-25,-15,630,67,67,-45,67,67,659,67,-13,-161,665,630,630,669,-16,-26,-28,671,-32,-31,-50,-17,-18,630,-49,-48,-46,-47,-30,682,688,-33,-19,-27,-29,-35,-34,-42,695,-40,-43,695,-36,-37,-41,-44,-38,695,-39,]),'INDENT':([257,541,660,],[353,580,677,]),'MINUSEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,119,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'ENAMLDEF':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,97,135,136,196,258,328,354,355,391,401,404,417,428,432,472,475,476,488,490,493,497,524,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[26,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,26,-144,-138,-57,-58,-181,-180,-6,-51,-168,-163,-158,-153,-177,-145,-169,-174,-162,-150,-146,-147,-155,-52,-164,-157,-178,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'DEDENT':([6,14,16,18,24,28,42,64,85,89,95,97,135,136,258,328,354,355,391,401,404,417,428,430,431,432,472,475,476,488,489,490,493,497,524,529,530,546,547,549,565,574,576,602,604,606,607,608,609,611,615,617,618,631,632,634,638,644,648,649,653,654,661,663,664,668,670,672,673,674,675,678,680,681,683,685,686,687,689,690,692,693,694,696,697,698,699,700,],[-140,-55,-143,-139,-137,-141,-56,-142,-144,-138,-57,-58,-181,-180,-51,-168,-163,-158,-153,-177,-145,-169,-174,-54,490,-162,-150,-146,-147,-155,-53,-52,-164,-157,-178,-149,-148,-159,-160,-165,-154,-179,-152,-151,-24,-22,-20,-23,629,633,-156,-166,-167,-21,-25,651,-45,-161,666,667,-26,-28,-32,-31,-50,679,-49,-48,-46,-47,-30,-33,-27,-29,-35,-34,-42,694,-40,-43,698,-36,-37,-41,-44,-38,700,-39,]),'RETURN':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[29,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,29,-144,-138,-57,29,-58,-181,-180,29,-6,29,29,-51,29,29,29,-168,29,29,29,-163,-158,-153,-177,-145,-169,-174,29,29,-162,29,29,29,-150,-146,-147,-155,-52,29,29,-164,29,-157,29,-178,29,29,-149,-148,-10,-159,-160,-165,-154,-179,29,-152,-11,29,29,29,-151,-12,-156,29,-166,-167,-14,-15,29,-13,-161,-16,-17,-18,-19,]),'DEL':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[31,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,31,-144,-138,-57,31,-58,-181,-180,31,-6,31,31,-51,31,31,31,-168,31,31,31,-163,-158,-153,-177,-145,-169,-174,31,31,-162,31,31,31,-150,-146,-147,-155,-52,31,31,-164,31,-157,31,-178,31,31,-149,-148,-10,-159,-160,-165,-154,-179,31,-152,-11,31,31,31,-151,-12,-156,31,-166,-167,-14,-15,31,-13,-161,-16,-17,-18,-19,]),'PRINT':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[33,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,33,-144,-138,-57,33,-58,-181,-180,33,-6,33,33,-51,33,33,33,-168,33,33,33,-163,-158,-153,-177,-145,-169,-174,33,33,-162,33,33,33,-150,-146,-147,-155,-52,33,33,-164,33,-157,33,-178,33,33,-149,-148,-10,-159,-160,-165,-154,-179,33,-152,-11,33,33,33,-151,-12,-156,33,-166,-167,-14,-15,33,-13,-161,-16,-17,-18,-19,]),'DOUBLESTAR':([30,35,52,54,67,72,90,140,160,165,166,170,183,210,215,251,262,271,274,278,279,292,300,316,364,370,378,382,383,442,444,459,503,512,515,523,553,558,590,595,623,],[-297,-298,168,176,-295,-296,-288,-299,-293,272,277,-286,-291,-290,-289,176,-294,-314,367,-287,-317,387,-292,272,-315,-371,-316,454,457,501,-372,514,556,561,564,176,589,592,621,624,646,]),'DEF':([0,6,14,16,18,22,24,25,28,42,44,47,63,64,73,85,89,95,97,130,135,136,196,258,317,328,353,354,355,391,401,404,417,428,430,432,470,472,475,476,488,490,493,497,524,526,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[34,-140,-55,-143,-139,-183,-137,34,-141,-56,-9,-7,-8,-142,34,-144,-138,-57,-58,-182,-181,-180,-6,-51,-184,-168,34,-163,-158,-153,-177,-145,-169,-174,34,-162,-185,-150,-146,-147,-155,-52,-164,-157,-178,-186,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'CIRCUMFLEXEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,118,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'COLON':([10,12,19,23,27,30,32,35,37,38,45,46,48,51,52,54,67,68,72,75,77,90,98,99,101,105,107,113,131,132,140,143,149,151,156,159,160,162,164,166,169,170,173,174,175,180,181,183,190,198,200,201,202,204,206,210,215,221,222,223,224,225,226,232,239,240,241,247,252,254,261,262,267,268,269,271,278,279,280,283,289,290,292,294,295,300,305,311,312,313,327,329,336,344,348,351,352,356,357,358,364,371,372,377,378,381,383,384,386,388,395,397,398,399,416,421,422,427,433,434,436,448,450,456,458,459,460,462,465,469,474,499,508,509,511,512,516,523,527,542,545,548,550,551,559,562,563,572,584,593,594,596,612,622,630,636,647,659,665,669,688,695,],[-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,155,-222,-230,-258,-282,177,-295,-232,-296,-226,-131,-288,-170,219,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,265,-293,-260,-259,-284,281,-286,-426,-402,293,299,-281,-291,-233,-227,-133,-132,315,-231,318,-290,-289,330,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,350,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,374,-419,-407,-403,-421,-397,-292,-234,-228,-134,-135,-171,-173,-253,-249,-175,-257,429,435,437,-225,-315,-285,447,281,-316,-427,-408,-412,-422,-398,-235,-229,-136,468,-172,487,-220,-176,491,492,495,505,281,-424,-417,-413,-399,-401,518,525,528,552,-420,-404,-406,-418,-423,573,575,581,583,585,586,587,-425,-409,-411,600,616,-414,-416,-400,641,-405,650,655,-410,676,-415,676,641,650,]),'DOUBLECOLON':([10,12,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,169,170,181,183,190,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,283,295,300,305,311,336,344,351,358,364,371,377,378,388,395,397,422,450,612,630,636,659,669,671,682,688,695,],[-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,282,-286,-281,-291,-233,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,375,-397,-292,-234,-228,-253,-249,-257,-225,-315,-285,282,-316,-398,-235,-229,-220,282,642,642,642,642,642,642,642,642,642,]),'$end':([2,71,100,152,255,],[-4,0,-3,-2,-1,]),'FOR':([0,6,10,12,14,16,18,19,23,24,27,28,30,32,35,37,38,42,44,46,47,48,51,52,63,64,67,68,72,73,75,85,89,90,92,95,97,101,105,107,113,131,132,135,136,140,143,149,151,156,159,160,162,164,166,170,181,183,184,190,196,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,258,261,262,267,268,269,271,275,278,279,280,295,300,305,311,328,336,344,351,353,354,355,358,361,364,371,378,388,391,395,397,401,404,417,422,428,430,432,472,475,476,485,488,490,493,497,519,520,521,522,524,529,530,543,546,547,549,565,571,574,576,579,582,597,598,599,601,602,613,615,617,618,626,627,629,633,643,644,651,666,667,679,],[43,-140,-270,-250,-55,-143,-139,-221,-264,-137,-219,-141,-297,-246,-298,-278,-254,-56,-9,-222,-7,-230,-258,-282,-8,-142,-295,-232,-296,43,-226,-144,-138,-288,211,-57,-58,-279,-272,-271,-251,-265,-266,-181,-180,-299,-247,-255,-280,-223,211,-293,-260,-259,-284,-286,-281,-291,301,-233,-6,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-51,-224,-294,-262,-263,-261,-314,211,-287,-317,-283,-397,-292,-234,-228,-168,-253,-249,-257,43,-163,-158,-225,211,-315,-285,-316,-398,-153,-235,-229,-177,-145,-169,-220,-174,43,-162,-150,-146,-147,211,-155,-52,-164,-157,301,-388,-394,-393,-178,-149,-148,-10,-159,-160,-165,-154,-389,-179,-152,211,-11,301,-391,-390,-395,-151,-12,-156,-166,-167,-392,-396,-14,-15,-13,-161,-16,-17,-18,-19,]),'DOUBLESTAREQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,122,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'ELSE':([10,12,23,30,32,35,37,38,46,48,51,52,67,68,72,75,90,95,97,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,204,210,215,222,223,224,225,226,232,239,240,241,243,247,254,258,261,262,267,268,269,271,278,279,280,300,305,311,336,344,351,354,355,358,364,371,378,391,395,397,404,432,472,475,488,490,493,529,549,602,617,618,],[-270,-250,-264,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-288,-57,-58,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,341,-248,-256,-51,-224,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-228,-253,-249,-257,-163,433,-225,-315,-285,-316,465,-235,-229,474,-162,-150,474,545,-52,-164,-149,-165,-151,-166,-167,]),'TRY':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,97,135,136,196,258,328,353,354,355,391,401,404,417,428,430,432,472,475,476,488,490,493,497,524,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[45,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,45,-144,-138,-57,-58,-181,-180,-6,-51,-168,45,-163,-158,-153,-177,-145,-169,-174,45,-162,-150,-146,-147,-155,-52,-164,-157,-178,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'AND':([10,12,23,30,32,35,37,38,48,51,52,67,68,72,75,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,311,336,344,351,364,371,378,395,397,],[-270,-250,-264,-297,-246,-298,-278,-254,-230,-258,-282,-295,-232,-296,199,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,-233,310,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-228,-253,-249,-257,-315,-285,-316,-235,-229,]),'LBRACE':([0,1,6,7,9,13,14,16,18,24,28,29,31,33,39,42,43,44,47,49,55,57,61,63,64,65,73,74,82,83,85,86,89,95,96,97,102,103,104,106,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,138,144,147,150,155,157,161,163,165,168,169,177,185,186,187,188,189,191,193,194,195,196,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,258,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,365,367,368,370,374,375,377,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[49,49,-140,49,49,49,-55,-143,-139,-137,-141,49,49,49,49,-56,49,-9,-7,49,49,49,49,-8,-142,49,49,49,49,49,-144,49,-138,-57,49,-58,49,49,49,49,49,49,-125,-116,-120,-115,49,-118,-122,-117,-121,-124,-126,-123,-119,49,49,-181,-180,49,49,49,49,49,49,49,49,49,49,49,49,-241,49,-237,-236,-244,-239,-242,-240,-238,-6,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,-51,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,-245,49,-243,49,49,49,49,49,49,49,49,-168,49,49,49,49,49,49,49,-163,-158,49,49,49,49,49,-371,49,49,49,-153,49,-177,-145,49,-169,49,-174,49,49,-162,49,49,49,49,-372,49,49,49,49,49,49,-150,49,-146,-147,-155,-52,49,49,-164,49,49,49,-157,49,49,49,49,49,49,-178,49,49,-149,-148,49,-10,-159,-160,-165,49,-371,49,-154,49,49,49,-179,49,-152,-11,49,49,49,49,49,-372,49,49,-151,-12,-156,49,-166,-167,49,-14,-15,49,49,49,49,49,-13,-161,-16,-17,-18,-19,]),'AS':([10,12,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,90,98,101,105,107,108,109,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,204,210,215,222,223,224,225,226,228,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,333,336,344,351,358,364,371,378,388,395,397,407,418,422,436,],[-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-288,218,-279,-272,-271,227,-215,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-231,-290,-289,-274,-276,-277,-275,-273,-216,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-217,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,479,-218,-220,494,]),'OR':([10,12,23,30,32,35,37,38,46,48,51,52,67,68,72,75,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,300,305,311,336,344,351,358,364,371,378,395,397,],[-270,-250,-264,-297,-246,-298,-278,-254,157,-230,-258,-282,-295,-232,-296,-226,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,260,-293,-260,-259,-284,-286,-281,-291,-233,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-228,-253,-249,-257,-225,-315,-285,-316,-235,-229,]),'LEFTSHIFT':([10,23,30,35,37,51,52,67,72,90,101,105,107,131,132,140,151,160,162,164,166,170,181,183,210,215,222,223,224,225,226,239,240,241,262,267,268,269,271,278,279,280,300,364,371,378,612,630,636,659,669,671,682,688,695,],[-270,-264,-297,-298,-278,161,-282,-295,-296,-288,-279,-272,-271,-265,-266,-299,-280,-293,-260,161,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-267,-268,-269,-294,-262,-263,-261,-314,-287,-317,-283,-292,-315,-285,-316,640,640,640,640,640,640,640,640,640,]),'CONTINUE':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[53,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,53,-144,-138,-57,53,-58,-181,-180,53,-6,53,53,-51,53,53,53,-168,53,53,53,-163,-158,-153,-177,-145,-169,-174,53,53,-162,53,53,53,-150,-146,-147,-155,-52,53,53,-164,53,-157,53,-178,53,53,-149,-148,-10,-159,-160,-165,-154,-179,53,-152,-11,53,53,53,-151,-12,-156,53,-166,-167,-14,-15,53,-13,-161,-16,-17,-18,-19,]),'NOT':([0,1,6,7,10,12,14,16,18,23,24,28,29,30,32,33,35,37,38,42,44,47,49,51,52,55,57,63,64,65,67,68,72,73,74,82,83,85,86,89,90,95,96,97,101,105,107,113,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,132,135,136,138,140,143,147,149,151,155,157,160,162,164,165,166,169,170,177,181,183,189,190,196,199,201,210,213,215,216,219,220,222,223,224,225,226,232,234,239,240,241,247,248,254,256,258,260,262,263,265,267,268,269,270,271,272,274,278,279,280,281,282,291,293,296,299,300,303,305,309,310,312,314,315,316,318,324,328,330,336,341,344,346,347,350,351,353,354,355,356,360,364,365,367,368,370,371,374,375,377,378,391,394,395,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[83,83,-140,83,-270,-250,-55,-143,-139,-264,-137,-141,83,-297,-246,83,-298,-278,-254,-56,-9,-7,83,-258,-282,83,83,-8,-142,83,-295,192,-296,83,83,83,83,-144,83,-138,-288,-57,83,-58,-279,-272,-271,-251,83,-125,-116,-120,-115,83,-118,-122,-117,-121,-124,-126,-123,-119,-265,-266,-181,-180,83,-299,-247,83,-255,-280,83,83,-293,-260,-259,83,-284,83,-286,83,-281,-291,306,192,-6,83,83,-290,83,-289,83,83,83,-274,-276,-277,-275,-273,-252,83,-267,-268,-269,-248,83,-256,83,-51,83,-294,83,83,-262,-263,-261,83,-314,83,83,-287,-317,-283,83,83,83,83,83,83,-292,83,-234,83,83,83,83,83,83,83,83,-168,83,-253,83,-249,83,83,83,-257,83,-163,-158,83,83,-315,83,83,83,-371,-285,83,83,83,-316,-153,83,-235,-177,-145,83,-169,83,-174,83,83,-162,83,83,83,83,-372,83,83,83,83,83,83,-150,83,-146,-147,-155,-52,83,83,-164,83,83,83,-157,83,83,83,83,83,83,-178,83,83,-149,-148,83,-10,-159,-160,-165,83,-371,83,-154,83,83,83,-179,83,-152,-11,83,83,83,83,83,-372,83,83,-151,-12,-156,83,-166,-167,83,-14,-15,83,83,83,83,83,-13,-161,-16,-17,-18,-19,]),'LAMBDA':([0,1,6,7,14,16,18,24,28,29,33,42,44,47,49,55,57,63,64,65,73,74,82,85,86,89,95,96,97,116,117,118,119,120,121,122,123,124,125,126,127,128,129,135,136,147,155,165,169,177,196,201,213,216,219,220,234,248,256,258,263,265,270,272,274,281,282,291,293,296,299,303,309,312,314,315,316,318,324,328,330,341,346,347,350,353,354,355,356,360,365,367,368,370,374,375,377,391,394,401,404,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[54,54,-140,54,-55,-143,-139,-137,-141,54,54,-56,-9,-7,54,54,54,-8,-142,54,54,54,54,-144,54,-138,-57,54,-58,54,-125,-116,-120,-115,54,-118,-122,-117,-121,-124,-126,-123,-119,-181,-180,54,54,54,54,54,-6,54,54,54,54,54,54,54,54,-51,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,-168,54,54,54,54,54,54,-163,-158,54,54,54,54,54,-371,54,54,54,-153,54,-177,-145,-169,54,-174,54,54,-162,54,54,54,54,-372,54,54,54,54,523,54,-150,54,-146,-147,-155,-52,54,54,-164,54,54,54,-157,54,54,54,54,54,54,-178,54,54,-149,-148,523,-10,-159,-160,-165,54,-371,54,-154,523,523,523,-179,54,-152,-11,54,54,54,54,54,-372,523,523,-151,-12,-156,54,-166,-167,54,-14,-15,54,54,54,54,54,-13,-161,-16,-17,-18,-19,]),'NEWLINE':([0,3,4,5,6,10,12,14,15,16,17,18,19,20,21,23,24,27,28,29,30,32,33,35,36,37,38,40,41,42,44,46,47,48,50,51,52,53,55,58,59,60,62,63,64,66,67,68,69,70,72,73,75,76,77,78,79,81,82,85,88,89,90,94,95,96,97,101,105,107,108,109,110,111,113,114,115,131,132,135,136,139,140,141,142,143,145,146,149,151,155,156,160,162,164,166,170,178,179,181,183,190,196,197,198,200,201,203,204,205,210,215,216,217,219,222,223,224,225,226,228,231,232,235,236,237,238,239,240,241,244,245,247,248,249,250,254,258,261,262,267,268,269,271,278,279,280,295,297,299,300,305,311,312,313,315,318,326,328,330,331,333,334,336,337,338,339,342,343,344,345,346,350,351,354,355,358,364,371,378,388,389,390,391,395,396,397,398,401,402,404,405,406,407,409,412,413,417,418,419,422,423,424,425,426,428,429,432,435,437,464,468,471,472,475,476,477,478,481,482,486,487,488,490,491,492,493,495,497,517,518,524,525,528,529,530,531,532,533,534,536,543,544,546,547,549,565,574,575,576,577,578,581,582,583,585,586,602,605,610,613,614,615,616,617,618,629,633,636,641,642,643,644,650,651,652,656,657,658,659,662,666,667,671,676,679,684,691,],[8,95,-188,97,-140,-270,-250,-55,-111,-143,-72,-139,-221,-85,-64,-264,-137,-219,-141,-93,-297,-246,-73,-298,-68,-278,-254,-71,153,-56,-9,-222,-7,-230,-67,-258,-282,-92,-95,-88,-69,-87,-65,-8,-142,-89,-295,-232,-91,-90,-296,-5,-226,-86,-131,-70,-187,-99,-100,-144,-66,-138,-288,-60,-57,-59,-58,-279,-272,-271,-203,-215,-189,-211,-251,-106,-114,-265,-266,-181,-180,-94,-299,-84,-338,-247,-75,-74,-255,-280,257,-223,-293,-260,-259,-284,-286,-96,-102,-281,-291,-233,-6,-109,-227,-133,-132,-101,-231,317,-290,-289,-61,-62,257,-274,-276,-277,-275,-273,-216,-212,-252,-113,-112,-128,-127,-267,-268,-269,-339,-340,-248,-79,-80,-76,-256,-51,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-103,257,-292,-234,-228,-134,-135,257,257,-63,-168,257,-204,-217,-213,-253,-107,-130,-129,-342,-341,-249,-82,-81,257,-257,-163,-158,-225,-315,-285,-316,-398,-97,-105,-153,-235,-110,-229,-136,-177,470,-145,-205,-190,-201,-191,-196,-197,-169,-218,-214,-220,-343,-83,-78,-77,-174,257,-162,257,257,-104,257,526,-150,-146,-147,-206,-207,-194,-193,-108,541,-155,-52,257,257,-164,257,-157,-98,257,-178,257,257,-149,-148,-209,-208,-202,-192,-198,-10,582,-159,-160,-165,-154,-179,257,-152,-210,-195,541,-11,257,257,257,-151,628,632,-12,643,-156,257,-166,-167,-14,-15,653,660,257,-13,-161,660,-16,670,672,673,674,675,678,-17,-18,680,660,-19,693,697,]),'RAISE':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[55,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,55,-144,-138,-57,55,-58,-181,-180,55,-6,55,55,-51,55,55,55,-168,55,55,55,-163,-158,-153,-177,-145,-169,-174,55,55,-162,55,55,55,-150,-146,-147,-155,-52,55,55,-164,55,-157,55,-178,55,55,-149,-148,-10,-159,-160,-165,-154,-179,55,-152,-11,55,55,55,-151,-12,-156,55,-166,-167,-14,-15,55,-13,-161,-16,-17,-18,-19,]),'GLOBAL':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[56,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,56,-144,-138,-57,56,-58,-181,-180,56,-6,56,56,-51,56,56,56,-168,56,56,56,-163,-158,-153,-177,-145,-169,-174,56,56,-162,56,56,56,-150,-146,-147,-155,-52,56,56,-164,56,-157,56,-178,56,56,-149,-148,-10,-159,-160,-165,-154,-179,56,-152,-11,56,56,56,-151,-12,-156,56,-166,-167,-14,-15,56,-13,-161,-16,-17,-18,-19,]),'WHILE':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,97,135,136,196,258,328,353,354,355,391,401,404,417,428,430,432,472,475,476,488,490,493,497,524,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[57,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,57,-144,-138,-57,-58,-181,-180,-6,-51,-168,57,-163,-158,-153,-177,-145,-169,-174,57,-162,-150,-146,-147,-155,-52,-164,-157,-178,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'VBAR':([10,12,23,30,32,35,37,38,51,52,67,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,336,344,351,364,371,378,],[-270,-250,-264,-297,144,-298,-278,-254,-258,-282,-295,-296,-288,-279,-272,-271,-251,-265,-266,-299,246,-255,-280,-293,-260,-259,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-253,-249,-257,-315,-285,-316,]),'STAR':([10,30,35,37,52,54,67,72,90,101,105,107,140,151,160,165,166,170,181,183,210,215,222,223,224,225,226,251,262,271,274,278,279,280,292,300,316,319,321,364,370,371,378,383,410,444,459,512,523,],[102,-297,-298,-278,-282,172,-295,-296,-288,-279,-272,102,-299,-280,-293,270,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,172,-294,-314,365,-287,-317,-283,385,-292,270,406,412,-315,-371,-285,-316,455,482,-372,513,560,172,]),'DOT':([30,35,52,67,72,87,90,109,140,160,166,170,183,208,209,210,215,228,262,271,278,279,300,322,333,364,378,418,],[-297,-298,167,-295,-296,209,-288,229,-299,-293,167,-286,-291,322,-199,-290,-289,332,-294,-314,-287,-317,-292,-200,-217,-315,-316,-218,]),'LEFTSHIFTEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,129,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'TILDE':([0,1,6,7,9,13,14,16,18,24,28,29,31,33,39,42,43,44,47,49,55,57,61,63,64,65,73,74,82,83,85,86,89,95,96,97,102,103,104,106,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,138,144,147,150,155,157,161,163,165,168,169,177,185,186,187,188,189,191,193,194,195,196,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,258,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,365,367,368,370,374,375,377,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[61,61,-140,61,61,61,-55,-143,-139,-137,-141,61,61,61,61,-56,61,-9,-7,61,61,61,61,-8,-142,61,61,61,61,61,-144,61,-138,-57,61,-58,61,61,61,61,61,61,-125,-116,-120,-115,61,-118,-122,-117,-121,-124,-126,-123,-119,61,61,-181,-180,61,61,61,61,61,61,61,61,61,61,61,61,-241,61,-237,-236,-244,-239,-242,-240,-238,-6,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,-51,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,-245,61,-243,61,61,61,61,61,61,61,61,-168,61,61,61,61,61,61,61,-163,-158,61,61,61,61,61,-371,61,61,61,-153,61,-177,-145,61,-169,61,-174,61,61,-162,61,61,61,61,-372,61,61,61,61,61,61,-150,61,-146,-147,-155,-52,61,61,-164,61,61,61,-157,61,61,61,61,61,61,-178,61,61,-149,-148,61,-10,-159,-160,-165,61,-371,61,-154,61,61,61,-179,61,-152,-11,61,61,61,61,61,-372,61,61,-151,-12,-156,61,-166,-167,61,-14,-15,61,61,61,61,61,-13,-161,-16,-17,-18,-19,]),'RSQB':([10,12,19,23,27,30,32,35,37,38,46,48,51,52,65,67,68,72,75,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,182,183,184,190,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,281,282,283,284,285,286,295,300,302,303,304,305,311,336,344,351,358,364,371,372,373,374,375,376,377,378,388,393,394,395,397,422,447,448,449,450,451,467,504,505,506,519,520,521,522,557,566,567,568,571,597,598,599,601,625,626,627,],[-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,183,-295,-232,-296,-226,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,300,-291,-301,-233,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-326,-327,-325,-318,378,-324,-397,-292,-300,-302,-303,-234,-228,-253,-249,-257,-225,-315,-285,-330,-332,-328,-329,-320,-319,-316,-398,-305,-304,-235,-229,-220,-331,-333,-337,-321,-322,-306,-335,-334,-323,-376,-388,-394,-393,-336,-377,-379,-378,-389,-380,-391,-390,-395,-381,-392,-396,]),'PERCENT':([10,30,35,37,52,67,72,90,101,105,107,140,151,160,166,170,181,183,210,215,222,223,224,225,226,262,271,278,279,280,300,364,371,378,],[103,-297,-298,-278,-282,-295,-296,-288,-279,-272,103,-299,-280,-293,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-294,-314,-287,-317,-283,-292,-315,-285,-316,]),'DOUBLESLASH':([10,30,35,37,52,67,72,90,101,105,107,140,151,160,166,170,181,183,210,215,222,223,224,225,226,262,271,278,279,280,300,364,371,378,],[104,-297,-298,-278,-282,-295,-296,-288,-279,-272,104,-299,-280,-293,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-294,-314,-287,-317,-283,-292,-315,-285,-316,]),'EQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,82,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,173,174,181,183,190,198,200,201,203,204,210,215,222,223,224,225,226,232,237,238,239,240,241,247,254,261,262,267,268,269,271,275,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,381,386,388,395,397,398,422,456,612,630,636,659,669,671,682,688,695,],[-270,-250,121,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-100,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-426,291,-281,-291,-233,-227,-133,-132,-101,-231,-290,-289,-274,-276,-277,-275,-273,-252,121,121,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,368,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-427,461,-398,-235,-229,-136,-220,510,639,639,639,639,639,639,639,639,639,]),'PLUSEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,123,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'ELLIPSIS':([169,377,450,],[286,286,286,]),'LESSEQUAL':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,194,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,194,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'LSQB':([0,1,6,7,9,13,14,16,18,24,28,29,30,31,33,35,39,42,43,44,47,49,52,55,57,61,63,64,65,67,72,73,74,82,83,85,86,89,90,95,96,97,102,103,104,106,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,138,140,144,147,150,155,157,160,161,163,165,166,168,169,170,177,183,185,186,187,188,189,191,193,194,195,196,199,201,210,211,213,215,216,218,219,220,233,234,244,246,248,253,256,258,260,262,263,265,270,271,272,274,277,278,279,281,282,291,293,296,299,300,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,364,365,367,368,370,374,375,377,378,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[65,65,-140,65,65,65,-55,-143,-139,-137,-141,65,-297,65,65,-298,65,-56,65,-9,-7,65,169,65,65,65,-8,-142,65,-295,-296,65,65,65,65,-144,65,-138,-288,-57,65,-58,65,65,65,65,65,65,-125,-116,-120,-115,65,-118,-122,-117,-121,-124,-126,-123,-119,65,65,-181,-180,65,-299,65,65,65,65,65,-293,65,65,65,169,65,65,-286,65,-291,-241,65,-237,-236,-244,-239,-242,-240,-238,-6,65,65,-290,65,65,-289,65,65,65,65,65,65,65,65,65,65,65,-51,65,-294,65,65,65,-314,65,65,65,-287,-317,65,65,65,65,65,65,-292,65,65,-245,65,-243,65,65,65,65,65,65,65,65,-168,65,65,65,65,65,65,65,-163,-158,65,65,-315,65,65,65,-371,65,65,65,-316,-153,65,-177,-145,65,-169,65,-174,65,65,-162,65,65,65,65,-372,65,65,65,65,65,65,-150,65,-146,-147,-155,-52,65,65,-164,65,65,65,-157,65,65,65,65,65,65,-178,65,65,-149,-148,65,-10,-159,-160,-165,65,-371,65,-154,65,65,65,-179,65,-152,-11,65,65,65,65,65,-372,65,65,-151,-12,-156,65,-166,-167,65,-14,-15,65,65,65,65,65,-13,-161,-16,-17,-18,-19,]),'GREATER':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,187,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,187,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'VBAREQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,127,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'BREAK':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[69,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,69,-144,-138,-57,69,-58,-181,-180,69,-6,69,69,-51,69,69,69,-168,69,69,69,-163,-158,-153,-177,-145,-169,-174,69,69,-162,69,69,69,-150,-146,-147,-155,-52,69,69,-164,69,-157,69,-178,69,69,-149,-148,-10,-159,-160,-165,-154,-179,69,-152,-11,69,69,69,-151,-12,-156,69,-166,-167,-14,-15,69,-13,-161,-16,-17,-18,-19,]),'STAREQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,117,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'ELIF':([95,97,258,404,472,475,490,529,602,],[-57,-58,-51,473,-150,473,-52,-149,-151,]),'SLASHEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,126,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'NUMBER':([0,1,6,7,9,13,14,16,18,24,28,29,31,33,39,42,43,44,47,49,55,57,61,63,64,65,73,74,82,83,85,86,89,95,96,97,102,103,104,106,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,138,144,147,150,155,157,161,163,165,168,169,177,185,186,187,188,189,191,193,194,195,196,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,258,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,365,367,368,370,374,375,377,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[72,72,-140,72,72,72,-55,-143,-139,-137,-141,72,72,72,72,-56,72,-9,-7,72,72,72,72,-8,-142,72,72,72,72,72,-144,72,-138,-57,72,-58,72,72,72,72,72,72,-125,-116,-120,-115,72,-118,-122,-117,-121,-124,-126,-123,-119,72,72,-181,-180,72,72,72,72,72,72,72,72,72,72,72,72,-241,72,-237,-236,-244,-239,-242,-240,-238,-6,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,-51,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,-245,72,-243,72,72,72,72,72,72,72,72,-168,72,72,72,72,72,72,72,-163,-158,72,72,72,72,72,-371,72,72,72,-153,72,-177,-145,72,-169,72,-174,72,72,-162,72,72,72,72,-372,72,72,72,72,72,72,-150,72,-146,-147,-155,-52,72,72,-164,72,72,72,-157,72,72,72,72,72,72,-178,72,72,-149,-148,72,-10,-159,-160,-165,72,-371,72,-154,72,72,72,-179,72,-152,-11,72,72,72,72,72,-372,72,72,-151,-12,-156,72,-166,-167,72,-14,-15,72,72,72,72,72,-13,-161,-16,-17,-18,-19,]),'RPAR':([1,10,12,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,82,90,91,92,93,101,105,107,113,131,132,140,143,149,151,156,160,162,164,165,166,170,173,174,181,183,190,198,200,201,203,204,210,212,213,214,215,222,223,224,225,226,232,239,240,241,247,251,254,261,262,267,268,269,271,273,275,276,278,279,280,287,288,289,290,292,294,295,300,305,311,312,313,314,316,324,325,336,340,344,349,351,358,362,363,364,366,369,370,371,378,379,380,381,383,384,386,388,395,397,398,400,403,405,407,415,422,443,444,445,446,452,453,456,458,459,460,462,477,478,480,484,485,500,507,508,509,511,512,516,521,522,531,532,533,535,537,538,539,554,555,559,562,563,577,579,591,593,594,596,601,603,620,622,627,645,647,665,],[90,-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-100,-288,210,-308,215,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,271,-284,-286,-426,-402,-281,-291,-233,-227,-133,-132,-101,-231,-290,-310,-309,-307,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,348,-256,-224,-294,-262,-263,-261,-314,364,-373,-357,-287,-317,-283,-428,381,-419,-407,-403,-421,-397,-292,-234,-228,-134,-135,399,402,-311,-312,-253,421,-249,427,-257,-225,-359,-361,-315,-362,-374,-358,-285,-316,-429,-430,-427,-408,-412,-422,-398,-235,-229,-136,469,471,-205,-201,-313,-220,-364,-363,-366,-375,-432,-431,-424,-417,-413,-399,-401,-206,-207,534,536,-382,-367,-433,-420,-404,-406,-418,-423,-394,-393,-209,-208,-202,578,-385,-384,-383,-360,-369,-425,-409,-411,-210,-386,-365,-414,-416,-400,-395,-387,-368,-405,-396,-370,-410,-415,]),'ASSERT':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[74,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,74,-144,-138,-57,74,-58,-181,-180,74,-6,74,74,-51,74,74,74,-168,74,74,74,-163,-158,-153,-177,-145,-169,-174,74,74,-162,74,74,74,-150,-146,-147,-155,-52,74,74,-164,74,-157,74,-178,74,74,-149,-148,-10,-159,-160,-165,-154,-179,74,-152,-11,74,74,74,-151,-12,-156,74,-166,-167,-14,-15,74,-13,-161,-16,-17,-18,-19,]),'RIGHTSHIFTEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,128,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'GREATEREQUAL':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,191,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,191,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'SEMI':([3,4,10,12,15,17,19,20,21,23,27,29,30,32,33,35,36,37,38,40,46,48,50,51,52,53,55,58,59,60,62,66,67,68,69,70,72,75,76,77,78,79,81,82,88,90,94,101,105,107,108,109,110,111,113,114,115,131,132,139,140,141,142,143,145,146,149,151,156,160,162,164,166,170,178,179,181,183,190,197,198,200,201,203,204,210,215,217,222,223,224,225,226,228,231,232,235,236,237,238,239,240,241,244,245,247,248,249,250,254,261,262,267,268,269,271,278,279,280,295,297,300,305,311,312,313,326,331,333,334,336,337,338,339,342,343,344,345,346,351,358,364,371,378,388,389,390,395,396,397,398,405,406,407,409,412,413,418,419,422,423,424,425,426,464,477,478,481,482,486,517,531,532,533,534,536,577,578,],[96,-188,-270,-250,-111,-72,-221,-85,-64,-264,-219,-93,-297,-246,-73,-298,-68,-278,-254,-71,-222,-230,-67,-258,-282,-92,-95,-88,-69,-87,-65,-89,-295,-232,-91,-90,-296,-226,-86,-131,-70,-187,-99,-100,-66,-288,216,-279,-272,-271,-203,-215,-189,-211,-251,-106,-114,-265,-266,-94,-299,-84,-338,-247,-75,-74,-255,-280,-223,-293,-260,-259,-284,-286,-96,-102,-281,-291,-233,-109,-227,-133,-132,-101,-231,-290,-289,-62,-274,-276,-277,-275,-273,-216,-212,-252,-113,-112,-128,-127,-267,-268,-269,-339,-340,-248,-79,-80,-76,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-103,-292,-234,-228,-134,-135,-63,-204,-217,-213,-253,-107,-130,-129,-342,-341,-249,-82,-81,-257,-225,-315,-285,-316,-398,-97,-105,-235,-110,-229,-136,-205,-190,-201,-191,-196,-197,-218,-214,-220,-343,-83,-78,-77,-104,-206,-207,-194,-193,-108,-98,-209,-208,-202,-192,-198,-210,-195,]),'DOUBLESLASHEQUAL':([10,12,15,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,101,105,107,113,131,132,140,143,149,151,156,160,162,164,166,170,181,183,190,198,200,201,204,210,215,222,223,224,225,226,232,239,240,241,247,254,261,262,267,268,269,271,278,279,280,295,300,305,311,312,313,336,344,351,358,364,371,378,388,395,397,398,422,],[-270,-250,124,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,-131,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-227,-133,-132,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-224,-294,-262,-263,-261,-314,-287,-317,-283,-397,-292,-234,-228,-134,-135,-253,-249,-257,-225,-315,-285,-316,-398,-235,-229,-136,-220,]),'COMMA':([10,12,19,23,27,30,32,35,37,38,46,48,51,52,67,68,72,75,77,90,92,98,99,101,105,107,108,109,111,113,131,132,140,142,143,146,149,151,156,159,160,162,164,166,170,173,174,178,179,181,183,184,190,197,198,200,204,210,212,215,222,223,224,225,226,228,231,232,239,240,241,245,247,249,250,254,261,262,264,267,268,269,271,275,276,278,279,280,281,282,283,284,286,287,289,290,295,300,304,305,311,313,325,327,329,331,333,334,336,337,342,344,345,351,358,359,361,362,364,366,369,371,372,373,374,375,376,378,380,381,384,386,388,389,390,393,395,397,398,405,407,415,418,419,422,423,424,426,436,438,439,443,446,447,448,449,451,452,456,458,460,467,478,485,500,504,505,506,507,509,516,520,521,522,531,533,537,538,539,555,557,559,562,571,577,579,588,593,598,601,603,619,626,627,],[-270,-250,-221,-264,-219,-297,-246,-298,-278,-254,-222,-230,-258,-282,-295,-232,-296,-226,201,-288,213,-170,220,-279,-272,-271,-203,-215,230,-251,-265,-266,-299,244,-247,248,-255,-280,-223,263,-293,-260,-259,-284,-286,-426,292,296,298,-281,-291,303,-233,309,-227,312,-231,-290,324,-289,-274,-276,-277,-275,-273,-216,335,-252,-267,-268,-269,343,-248,346,347,-256,-224,-294,360,-262,-263,-261,-314,-373,370,-287,-317,-283,-326,-327,-325,377,-324,379,382,383,-397,-292,394,-234,-228,-135,-312,-171,220,-204,-217,-213,-253,420,-342,-249,-82,-257,-225,-355,440,442,-315,444,-374,-285,-330,-332,-328,-329,450,-316,453,-427,459,-422,-398,463,298,-305,-235,-229,-136,477,-201,-313,-218,-214,-220,-343,-83,248,496,-356,498,503,-375,-331,-333,-337,-322,-432,-424,512,515,-306,532,-382,553,-335,-334,-323,-433,558,-423,570,-394,-393,-209,-202,-385,-384,-383,590,-336,-425,595,599,-210,-386,-353,623,-391,-395,-387,-354,-392,-396,]),'CLASS':([0,6,14,16,18,22,24,25,28,42,44,47,63,64,73,85,89,95,97,130,135,136,196,258,317,328,353,354,355,391,401,404,417,428,430,432,470,472,475,476,488,490,493,497,524,526,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[80,-140,-55,-143,-139,-183,-137,80,-141,-56,-9,-7,-8,-142,80,-144,-138,-57,-58,-182,-181,-180,-6,-51,-184,-168,80,-163,-158,-153,-177,-145,-169,-174,80,-162,-185,-150,-146,-147,-155,-52,-164,-157,-178,-186,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'RIGHTSHIFT':([10,23,30,33,35,37,51,52,67,72,90,101,105,107,131,132,140,151,160,162,164,166,170,181,183,210,215,222,223,224,225,226,239,240,241,262,267,268,269,271,278,279,280,300,364,371,378,612,630,636,659,669,671,682,688,695,],[-270,-264,-297,147,-298,-278,163,-282,-295,-296,-288,-279,-272,-271,-265,-266,-299,-280,-293,-260,163,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-267,-268,-269,-294,-262,-263,-261,-314,-287,-317,-283,-292,-315,-285,-316,635,635,635,635,635,635,635,635,635,]),'STRING':([0,1,6,7,9,13,14,16,18,24,28,29,30,31,33,35,39,42,43,44,47,49,55,57,61,63,64,65,73,74,82,83,85,86,89,95,96,97,102,103,104,106,112,116,117,118,119,120,121,122,123,124,125,126,127,128,129,133,134,135,136,138,140,144,147,150,155,157,161,163,165,168,169,177,185,186,187,188,189,191,193,194,195,196,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,258,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,306,307,308,309,310,312,314,315,316,318,324,328,330,341,343,346,347,350,353,354,355,356,360,365,367,368,370,374,375,377,391,394,401,404,414,417,420,428,429,430,432,435,437,440,442,444,447,450,461,463,466,468,472,473,475,476,488,490,491,492,493,494,495,496,497,498,501,502,505,510,518,524,525,528,529,530,540,543,546,547,549,552,553,556,565,569,570,573,574,575,576,580,582,583,585,586,587,589,590,599,600,602,613,615,616,617,618,621,629,633,635,637,639,640,642,643,644,651,666,667,679,],[35,35,-140,35,35,35,-55,-143,-139,-137,-141,35,140,35,35,-298,35,-56,35,-9,-7,35,35,35,35,-8,-142,35,35,35,35,35,-144,35,-138,-57,35,-58,35,35,35,35,35,35,-125,-116,-120,-115,35,-118,-122,-117,-121,-124,-126,-123,-119,35,35,-181,-180,35,-299,35,35,35,35,35,35,35,35,35,35,35,-241,35,-237,-236,-244,-239,-242,-240,-238,-6,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,-51,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,-245,35,-243,35,35,35,35,35,35,35,35,-168,35,35,35,35,35,35,35,-163,-158,35,35,35,35,35,-371,35,35,35,-153,35,-177,-145,35,-169,35,-174,35,35,-162,35,35,35,35,-372,35,35,35,35,35,35,-150,35,-146,-147,-155,-52,35,35,-164,35,35,35,-157,35,35,35,35,35,35,-178,35,35,-149,-148,35,-10,-159,-160,-165,35,-371,35,-154,35,35,35,-179,35,-152,605,-11,35,35,35,35,35,-372,35,35,-151,-12,-156,35,-166,-167,35,-14,-15,35,35,35,35,35,-13,-161,-16,-17,-18,-19,]),'COLONEQUAL':([612,630,636,659,669,671,682,688,695,],[637,637,637,637,637,637,637,637,637,]),'IS':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,131,132,140,143,149,151,160,162,164,166,170,181,183,190,210,215,222,223,224,225,226,232,239,240,241,247,254,262,267,268,269,271,278,279,280,300,305,336,344,351,364,371,378,395,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,189,-296,-288,-279,-272,-271,-251,-265,-266,-299,-247,-255,-280,-293,-260,-259,-284,-286,-281,-291,189,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-253,-249,-257,-315,-285,-316,-235,]),'YIELD':([0,1,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,116,117,118,119,120,121,122,123,124,125,126,127,128,129,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[82,82,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,82,-144,-138,-57,82,-58,82,-125,-116,-120,-115,82,-118,-122,-117,-121,-124,-126,-123,-119,-181,-180,82,-6,82,82,-51,82,82,82,-168,82,82,82,-163,-158,-153,-177,-145,-169,-174,82,82,-162,82,82,82,-150,-146,-147,-155,-52,82,82,-164,82,-157,82,-178,82,82,-149,-148,-10,-159,-160,-165,-154,-179,82,-152,-11,82,82,82,-151,-12,-156,82,-166,-167,-14,-15,82,-13,-161,-16,-17,-18,-19,]),'FINALLY':([95,97,258,259,354,355,432,490,493,546,549,617,618,],[-57,-58,-51,357,-163,434,-162,-52,-164,584,-165,-166,-167,]),'AT':([0,6,14,16,18,22,24,28,42,44,47,63,64,73,85,89,95,97,135,136,196,258,317,328,353,354,355,391,401,404,417,428,430,432,470,472,475,476,488,490,493,497,524,526,529,530,543,546,547,549,565,574,576,582,602,613,615,617,618,629,633,643,644,651,666,667,679,],[84,-140,-55,-143,-139,84,-137,-141,-56,-9,-7,-8,-142,84,-144,-138,-57,-58,-181,-180,-6,-51,-184,-168,84,-163,-158,-153,-177,-145,-169,-174,84,-162,-185,-150,-146,-147,-155,-52,-164,-157,-178,-186,-149,-148,-10,-159,-160,-165,-154,-179,-152,-11,-151,-12,-156,-166,-167,-14,-15,-13,-161,-16,-17,-18,-19,]),'AMPER':([10,23,30,35,37,38,51,52,67,72,90,101,105,107,131,132,140,149,151,160,162,164,166,170,181,183,210,215,222,223,224,225,226,239,240,241,254,262,267,268,269,271,278,279,280,300,351,364,371,378,],[-270,-264,-297,-298,-278,150,-258,-282,-295,-296,-288,-279,-272,-271,-265,-266,-299,253,-280,-293,-260,-259,-284,-286,-281,-291,-290,-289,-274,-276,-277,-275,-273,-267,-268,-269,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-257,-315,-285,-316,]),'IN':([10,12,23,30,32,35,37,38,51,52,67,68,72,90,101,105,107,113,114,131,132,140,142,143,149,151,154,160,162,164,166,170,181,183,190,192,210,215,222,223,224,225,226,232,239,240,241,244,245,247,254,262,267,268,269,271,278,279,280,300,305,323,336,342,343,344,351,364,371,378,392,395,423,],[-270,-250,-264,-297,-246,-298,-278,-254,-258,-282,-295,193,-296,-288,-279,-272,-271,-251,234,-265,-266,-299,-338,-247,-255,-280,256,-293,-260,-259,-284,-286,-281,-291,193,308,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-339,-340,-248,-256,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,414,-253,-342,-341,-249,-257,-315,-285,-316,466,-235,-343,]),'IF':([0,6,10,12,14,16,18,23,24,27,28,30,32,35,37,38,42,44,46,47,48,51,52,63,64,67,68,72,73,75,85,89,90,95,97,101,105,107,113,131,132,135,136,140,143,149,151,156,160,162,164,166,170,181,183,190,196,198,204,210,215,222,223,224,225,226,232,239,240,241,247,254,258,261,262,267,268,269,271,278,279,280,300,305,311,328,336,344,351,353,354,355,358,364,371,378,391,395,397,401,404,417,428,430,432,472,475,476,485,488,490,493,497,519,520,521,522,524,529,530,543,546,547,549,565,571,574,576,579,582,597,598,599,601,602,613,615,617,618,626,627,629,633,643,644,651,666,667,679,],[86,-140,-270,-250,-55,-143,-139,-264,-137,138,-141,-297,-246,-298,-278,-254,-56,-9,-222,-7,-230,-258,-282,-8,-142,-295,-232,-296,86,-226,-144,-138,-288,-57,-58,-279,-272,-271,-251,-265,-266,-181,-180,-299,-247,-255,-280,-223,-293,-260,-259,-284,-286,-281,-291,-233,-6,-227,-231,-290,-289,-274,-276,-277,-275,-273,-252,-267,-268,-269,-248,-256,-51,-224,-294,-262,-263,-261,-314,-287,-317,-283,-292,-234,-228,-168,-253,-249,-257,86,-163,-158,-225,-315,-285,-316,-153,-235,-229,-177,-145,-169,-174,86,-162,-150,-146,-147,540,-155,-52,-164,-157,569,-388,-394,-393,-178,-149,-148,-10,-159,-160,-165,-154,-389,-179,-152,540,-11,569,-391,-390,-395,-151,-12,-156,-166,-167,-392,-396,-14,-15,-13,-161,-16,-17,-18,-19,]),'FROM':([0,6,14,16,18,24,28,42,44,47,63,64,73,85,89,95,96,97,135,136,155,196,216,219,258,299,315,318,328,330,350,353,354,355,391,401,404,417,428,429,430,432,435,437,468,472,475,476,488,490,491,492,493,495,497,518,524,525,528,529,530,543,546,547,549,565,574,575,576,582,583,585,586,602,613,615,616,617,618,629,633,642,643,644,651,666,667,679,],[87,-140,-55,-143,-139,-137,-141,-56,-9,-7,-8,-142,87,-144,-138,-57,87,-58,-181,-180,87,-6,87,87,-51,87,87,87,-168,87,87,87,-163,-158,-153,-177,-145,-169,-174,87,87,-162,87,87,87,-150,-146,-147,-155,-52,87,87,-164,87,-157,87,-178,87,87,-149,-148,-10,-159,-160,-165,-154,-179,87,-152,-11,87,87,87,-151,-12,-156,87,-166,-167,-14,-15,87,-13,-161,-16,-17,-18,-19,]),}
_lr_action = { }
for _k, _v in _lr_action_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_action: _lr_action[_x] = { }
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'import_as_name':([319,321,408,410,411,477,483,532,],[405,405,405,481,405,531,405,577,]),'try_stmt':([0,73,353,430,],[6,6,6,6,]),'small_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[3,3,217,3,326,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,]),'augassign':([15,],[116,]),'import_from':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,]),'small_stmt_list':([0,73,155,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,]),'import_as_names':([319,321,408,411,483,],[409,413,480,484,535,]),'else_stmt':([404,475,],[476,530,]),'comp_op':([68,190,],[186,307,]),'parameters':([148,],[252,]),'factor':([0,1,7,9,13,29,31,33,39,43,49,55,57,61,65,73,74,82,83,86,96,102,103,104,106,112,116,121,133,134,138,144,147,150,155,157,161,163,165,168,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[10,10,10,101,10,10,10,10,151,10,10,10,10,181,10,10,10,10,10,10,10,222,223,224,225,10,10,10,10,10,10,10,10,10,10,10,10,10,10,280,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,371,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,]),'suite':([155,219,299,315,318,330,350,429,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[259,328,391,401,404,417,428,488,493,497,524,546,547,549,565,574,576,602,615,617,618,644,664,]),'globals_list':([179,390,],[297,464,]),'exec_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,]),'and_expr_list':([38,],[149,]),'or_test_list':([46,],[156,]),'simple_stmt':([0,73,155,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[14,14,258,258,258,258,258,258,258,14,258,14,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,]),'dotted_as_names_list':([111,],[231,]),'subscriptlist':([169,],[285,]),'testlist':([0,29,73,82,96,116,121,155,216,219,256,299,314,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[15,139,15,203,15,236,238,15,15,15,352,15,400,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,]),'classdef':([0,25,73,353,430,],[16,135,16,16,16,]),'assert_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,]),'for_stmt':([0,73,353,430,],[18,18,18,18,]),'lambdef':([0,1,7,29,33,49,55,57,65,73,74,82,86,96,116,121,147,155,165,169,177,201,213,216,219,220,234,248,256,263,265,270,272,274,281,282,291,293,296,299,303,309,312,314,315,316,318,324,330,341,346,347,350,353,356,360,365,367,368,374,375,377,394,420,429,430,435,437,440,442,447,450,461,463,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,552,556,575,583,585,586,587,589,616,621,635,637,639,640,642,],[19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,]),'expr_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,]),'decorator':([0,22,73,353,430,],[22,22,22,22,22,]),'arith_op':([23,131,],[132,239,]),'term':([0,1,7,13,29,31,33,43,49,55,57,65,73,74,82,83,86,96,112,116,121,133,134,138,144,147,150,155,157,161,163,165,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,240,241,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,]),'if_stmt':([0,73,353,430,],[24,24,24,24,]),'enaml_module':([0,],[41,]),'or_test':([0,1,7,29,33,49,55,57,65,73,74,82,86,96,116,121,138,147,155,165,169,177,201,213,216,219,220,234,248,256,263,265,270,272,274,281,282,291,293,296,299,303,309,312,314,315,316,318,324,330,341,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,243,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,485,27,27,27,27,27,27,27,27,27,27,27,522,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,522,27,27,522,522,522,27,27,27,27,27,27,522,522,27,27,27,27,27,27,27,]),'with_stmt':([0,73,353,430,],[28,28,28,28,]),'comp_for':([92,159,275,361,485,579,],[214,266,369,441,538,538,]),'and_test_list':([75,],[198,]),'identifier':([580,628,677,],[611,649,692,]),'trailer':([52,166,],[170,278,]),'with_item_list':([99,329,],[221,416,]),'instantiation_body_items':([677,692,],[687,699,]),'expr_list':([32,],[143,]),'varargslist_list':([174,384,],[290,458,]),'atom_string_list':([0,1,7,9,13,29,31,33,39,43,49,55,57,61,65,73,74,82,83,86,96,102,103,104,106,112,116,121,133,134,138,144,147,150,155,157,161,163,165,168,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,]),'listmaker':([65,],[182,]),'arglist':([165,316,],[273,403,]),'exprlist_list':([142,],[245,]),'flow_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,]),'comp_if':([485,579,],[537,537,]),'shift_expr':([0,1,7,13,29,31,33,43,49,55,57,65,73,74,82,83,86,96,112,116,121,138,144,147,150,155,157,165,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,254,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,351,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,]),'import_from_dots':([87,],[208,]),'arglist_list':([165,316,442,],[274,274,502,]),'list_iter':([519,597,],[566,625,]),'dictorsetmaker':([49,],[158,]),'list_for':([184,519,597,],[302,568,568,]),'subscript':([169,377,450,],[284,451,506,]),'decorators':([0,22,73,353,430,],[25,130,25,25,25,]),'compound_stmt':([0,73,353,430,],[42,42,42,42,]),'dosm_comma_list':([159,],[264,]),'dotted_name':([11,84,87,208,230,335,],[108,205,207,320,108,108,]),'power':([0,1,7,9,13,29,31,33,39,43,49,55,57,61,65,73,74,82,83,86,96,102,103,104,106,112,116,121,133,134,138,144,147,150,155,157,161,163,165,168,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,]),'xor_expr_list':([12,],[113,]),'stmt':([0,73,353,430,],[44,44,430,430,]),'fplist_list':([287,],[380,]),'xor_expr':([0,1,7,13,29,31,33,43,49,55,57,65,73,74,82,83,86,96,116,121,138,144,147,155,157,165,169,177,186,199,201,211,213,216,218,219,220,234,244,246,248,256,260,263,265,270,272,274,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,247,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,344,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,]),'term_list':([10,],[107,]),'comparison':([0,1,7,29,33,49,55,57,65,73,74,82,83,86,96,116,121,138,147,155,157,165,169,177,199,201,213,216,219,220,234,248,256,260,263,265,270,272,274,281,282,291,293,296,299,303,309,310,312,314,315,316,318,324,330,341,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,]),'pass_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,]),'arith_expr':([0,1,7,13,29,31,33,43,49,55,57,65,73,74,82,83,86,96,112,116,121,138,144,147,150,155,157,161,163,165,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,267,268,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,]),'declaration_body_item':([580,609,611,628,634,648,649,668,],[607,631,607,607,631,631,607,631,]),'instantiation_body_item':([677,687,692,699,],[689,696,689,696,]),'atom':([0,1,7,9,13,29,31,33,39,43,49,55,57,61,65,73,74,82,83,86,96,102,103,104,106,112,116,121,133,134,138,144,147,150,155,157,161,163,165,168,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,253,256,260,263,265,270,272,274,277,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,]),'import_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,]),'elif_stmts':([404,],[475,]),'comp_iter':([485,579,],[539,603,]),'print_list_list':([146,426,],[249,249,]),'dotted_as_names':([11,],[110,]),'shift_op':([51,164,],[162,269,]),'attribute_declaration':([580,609,611,628,634,648,649,668,],[606,606,606,606,606,606,606,606,]),'return_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,]),'testlist_comp':([1,],[91,]),'old_test':([466,540,569,570,573,599,600,],[520,579,597,598,601,626,627,]),'testlist_safe_list':([520,],[571,]),'instantiation':([580,609,611,628,634,648,649,668,677,687,692,699,],[604,604,604,604,604,604,604,604,686,686,686,686,]),'enaml_module_item':([0,73,],[47,196,]),'continue_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,]),'testlist_list':([77,],[200,]),'attribute_binding':([580,609,611,628,634,641,648,649,650,668,676,677,687,692,699,],[608,608,608,608,608,661,608,608,661,608,683,690,690,690,690,]),'dotted_as_name':([11,230,335,],[111,334,419,]),'equal_list':([15,237,238,],[115,338,339,]),'print_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,]),'binding':([612,630,636,659,669,671,682,688,695,],[638,638,654,638,638,681,638,638,638,]),'term_op':([10,107,],[105,226,]),'declaration':([0,73,],[63,63,]),'funcdef':([0,25,73,353,430,],[64,136,64,64,64,]),'raise_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,]),'old_lambdef':([466,540,569,570,573,599,600,],[521,521,521,521,521,521,521,]),'exprlist':([31,43,211,301,],[141,154,323,392,]),'expr':([0,1,7,13,29,31,33,43,49,55,57,65,73,74,82,83,86,96,116,121,138,147,155,157,165,169,177,186,199,201,211,213,216,218,219,220,234,244,248,256,260,263,265,270,272,274,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[68,68,68,114,68,142,68,142,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,305,68,68,142,68,68,327,68,68,68,342,68,68,68,68,68,68,68,68,68,68,68,68,68,68,142,68,395,68,68,68,68,68,68,68,68,68,68,423,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,]),'declaration_body':([487,581,],[543,613,]),'except_clause':([259,354,],[354,354,]),'and_expr':([0,1,7,13,29,31,33,43,49,55,57,65,73,74,82,83,86,96,112,116,121,138,144,147,155,157,165,169,177,186,199,201,211,213,216,218,219,220,233,234,244,246,248,256,260,263,265,270,272,274,281,282,291,293,296,299,301,303,307,309,310,312,314,315,316,318,324,330,341,343,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,232,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,336,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,]),'instantiation_body':([641,650,676,],[663,663,685,]),'yield_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,]),'arith_expr_list':([23,],[131,]),'shift_list':([51,],[164,]),'enaml':([0,],[71,]),'subscriptlist_list':([284,],[376,]),'argument':([165,274,316,442,502,],[276,366,276,500,555,]),'enaml_module_body':([0,],[73,]),'fplist':([171,],[288,]),'testlist_safe':([466,],[519,]),'not_test':([0,1,7,29,33,49,55,57,65,73,74,82,83,86,96,116,121,138,147,155,157,165,169,177,199,201,213,216,219,220,234,248,256,260,263,265,270,272,274,281,282,291,293,296,299,303,309,310,312,314,315,316,318,324,330,341,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[75,75,75,75,75,75,75,75,75,75,75,75,204,75,75,75,75,75,75,75,75,75,75,75,311,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,397,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,]),'print_list':([33,347,],[145,425,]),'break_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,]),'del_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,]),'fpdef':([54,171,251,292,379,383,453,459,512,523,],[174,287,174,386,452,456,507,386,456,174,]),'testlist_comp_list':([92,],[212,]),'small_stmt_list_list':([3,],[94,]),'list_if':([519,597,],[567,567,]),'test':([0,1,7,29,33,49,55,57,65,73,74,82,86,96,116,121,147,155,165,169,177,201,213,216,219,220,234,248,256,263,265,270,272,274,281,282,291,293,296,299,303,309,312,314,315,316,318,324,330,341,346,347,350,353,356,360,365,367,368,374,375,377,394,420,429,430,435,437,440,442,447,450,461,463,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,552,556,575,583,585,586,587,589,616,621,635,637,639,640,642,],[77,92,98,77,146,159,178,180,184,77,197,77,206,77,77,77,250,77,275,283,295,313,325,77,77,98,337,345,77,359,361,362,363,275,372,373,384,388,389,77,393,396,398,77,77,275,77,415,77,422,424,426,77,77,436,438,443,445,446,448,449,283,467,486,77,77,77,77,499,275,504,283,516,517,77,527,77,77,548,77,550,551,554,275,557,559,77,77,77,588,591,77,77,77,77,619,620,77,645,652,656,657,658,77,]),'global_stmt':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,]),'import_as_names_list':([405,],[478,]),'with_item':([7,220,],[99,329,]),'import_name':([0,73,96,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,]),'yield_expr':([0,1,73,96,116,121,155,216,219,299,315,318,330,350,353,429,430,435,437,468,491,492,495,518,525,528,575,583,585,586,616,642,],[81,93,81,81,235,237,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,]),'except_clauses':([259,354,],[355,432,]),'comparison_list':([68,],[190,]),'and_test':([0,1,7,29,33,49,55,57,65,73,74,82,86,96,116,121,138,147,155,157,165,169,177,201,213,216,219,220,234,248,256,260,263,265,270,272,274,281,282,291,293,296,299,303,309,312,314,315,316,318,324,330,341,346,347,350,353,356,360,365,367,368,374,375,377,394,414,420,429,430,435,437,440,442,447,450,461,463,466,468,473,491,492,494,495,496,498,501,502,505,510,518,525,528,540,552,556,569,570,573,575,583,585,586,587,589,599,600,616,621,635,637,639,640,642,],[46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,261,46,46,46,46,46,46,46,46,46,46,46,358,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,]),'declaration_body_items':([580,611,628,649,],[609,634,648,668,]),'decorated':([0,73,353,430,],[85,85,85,85,]),'stmt_list':([353,430,],[431,489,]),'elif_stmt':([404,475,],[472,529,]),'dosm_colon_list':([361,],[439,]),'power_list':([52,],[166,]),'while_stmt':([0,73,353,430,],[89,89,89,89,]),'varargslist':([54,251,523,],[175,349,572,]),'dotted_name_list':([109,],[228,]),'listmaker_list':([184,],[304,]),}
_lr_goto = { }
for _k, _v in _lr_goto_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_goto: _lr_goto[_x] = { }
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [
("S' -> enaml","S'",1,None,None,None),
('enaml -> enaml_module NEWLINE ENDMARKER','enaml',3,'p_enaml1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',351),
('enaml -> enaml_module ENDMARKER','enaml',2,'p_enaml1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',352),
('enaml -> NEWLINE ENDMARKER','enaml',2,'p_enaml2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',357),
('enaml -> ENDMARKER','enaml',1,'p_enaml2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',358),
('enaml_module -> enaml_module_body','enaml_module',1,'p_enaml_module','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',363),
('enaml_module_body -> enaml_module_body enaml_module_item','enaml_module_body',2,'p_enaml_module_body1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',384),
('enaml_module_body -> enaml_module_item','enaml_module_body',1,'p_enaml_module_body2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',389),
('enaml_module_item -> declaration','enaml_module_item',1,'p_enaml_module_item2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',394),
('enaml_module_item -> stmt','enaml_module_item',1,'p_enaml_module_item1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',399),
('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON declaration_body','declaration',7,'p_declaration1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',407),
('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON PASS NEWLINE','declaration',8,'p_declaration2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',414),
('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON NAME COLON declaration_body','declaration',9,'p_declaration3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',424),
('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON NAME COLON PASS NEWLINE','declaration',10,'p_declaration4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',438),
('declaration_body -> NEWLINE INDENT declaration_body_items DEDENT','declaration_body',4,'p_declaration_body1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',448),
('declaration_body -> NEWLINE INDENT identifier DEDENT','declaration_body',4,'p_declaration_body2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',455),
('declaration_body -> NEWLINE INDENT identifier declaration_body_items DEDENT','declaration_body',5,'p_declaration_body3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',460),
('declaration_body -> NEWLINE INDENT STRING NEWLINE declaration_body_items DEDENT','declaration_body',6,'p_declaration_body4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',467),
('declaration_body -> NEWLINE INDENT STRING NEWLINE identifier DEDENT','declaration_body',6,'p_declaration_body5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',474),
('declaration_body -> NEWLINE INDENT STRING NEWLINE identifier declaration_body_items DEDENT','declaration_body',7,'p_declaration_body6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',479),
('declaration_body_items -> declaration_body_item','declaration_body_items',1,'p_declaration_body_items1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',486),
('declaration_body_items -> declaration_body_items declaration_body_item','declaration_body_items',2,'p_declaration_body_items2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',491),
('declaration_body_item -> attribute_declaration','declaration_body_item',1,'p_declaration_body_item1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',496),
('declaration_body_item -> attribute_binding','declaration_body_item',1,'p_declaration_body_item2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',501),
('declaration_body_item -> instantiation','declaration_body_item',1,'p_declaration_body_item3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',506),
('declaration_body_item -> PASS NEWLINE','declaration_body_item',2,'p_declaration_body_item4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',511),
('attribute_declaration -> NAME NAME NEWLINE','attribute_declaration',3,'p_attribute_declaration1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',519),
('attribute_declaration -> NAME NAME COLON NAME NEWLINE','attribute_declaration',5,'p_attribute_declaration2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',524),
('attribute_declaration -> NAME NAME binding','attribute_declaration',3,'p_attribute_declaration3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',529),
('attribute_declaration -> NAME NAME COLON NAME binding','attribute_declaration',5,'p_attribute_declaration4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',537),
('identifier -> NAME COLON NAME NEWLINE','identifier',4,'p_identifier','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',548),
('instantiation -> NAME COLON instantiation_body','instantiation',3,'p_instantiation1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',560),
('instantiation -> NAME COLON attribute_binding','instantiation',3,'p_instantiation2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',566),
('instantiation -> NAME COLON PASS NEWLINE','instantiation',4,'p_instantiation3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',571),
('instantiation -> NAME COLON NAME COLON instantiation_body','instantiation',5,'p_instantiation4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',576),
('instantiation -> NAME COLON NAME COLON attribute_binding','instantiation',5,'p_instantiation5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',585),
('instantiation -> NAME COLON NAME COLON PASS NEWLINE','instantiation',6,'p_instantiation6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',590),
('instantiation_body -> NEWLINE INDENT instantiation_body_items DEDENT','instantiation_body',4,'p_instantiation_body1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',595),
('instantiation_body -> NEWLINE INDENT identifier DEDENT','instantiation_body',4,'p_instantiation_body2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',602),
('instantiation_body -> NEWLINE INDENT identifier instantiation_body_items DEDENT','instantiation_body',5,'p_instantiation_body3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',607),
('instantiation_body_items -> instantiation_body_item','instantiation_body_items',1,'p_instantiation_body_items1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',614),
('instantiation_body_items -> instantiation_body_items instantiation_body_item','instantiation_body_items',2,'p_instantiation_body_items2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',619),
('instantiation_body_item -> instantiation','instantiation_body_item',1,'p_instantiation_body_item1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',624),
('instantiation_body_item -> attribute_binding','instantiation_body_item',1,'p_instantiation_body_item2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',629),
('instantiation_body_item -> PASS NEWLINE','instantiation_body_item',2,'p_instantiation_body_item3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',634),
('attribute_binding -> NAME binding','attribute_binding',2,'p_attribute_binding','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',642),
('binding -> EQUAL test NEWLINE','binding',3,'p_binding1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',647),
('binding -> LEFTSHIFT test NEWLINE','binding',3,'p_binding1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',648),
('binding -> COLONEQUAL test NEWLINE','binding',3,'p_binding2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',659),
('binding -> RIGHTSHIFT test NEWLINE','binding',3,'p_binding2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',660),
('binding -> DOUBLECOLON suite','binding',2,'p_binding3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',672),
('suite -> simple_stmt','suite',1,'p_suite1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',690),
('suite -> NEWLINE INDENT stmt_list DEDENT','suite',4,'p_suite2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',702),
('stmt_list -> stmt stmt_list','stmt_list',2,'p_stmt_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',707),
('stmt_list -> stmt','stmt_list',1,'p_stmt_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',719),
('stmt -> simple_stmt','stmt',1,'p_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',731),
('stmt -> compound_stmt','stmt',1,'p_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',732),
('simple_stmt -> small_stmt NEWLINE','simple_stmt',2,'p_simple_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',737),
('simple_stmt -> small_stmt_list NEWLINE','simple_stmt',2,'p_simple_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',745),
('small_stmt_list -> small_stmt SEMI','small_stmt_list',2,'p_small_stmt_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',755),
('small_stmt_list -> small_stmt small_stmt_list_list','small_stmt_list',2,'p_small_stmt_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',760),
('small_stmt_list -> small_stmt small_stmt_list_list SEMI','small_stmt_list',3,'p_small_stmt_list3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',765),
('small_stmt_list_list -> SEMI small_stmt','small_stmt_list_list',2,'p_small_stmt_list_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',770),
('small_stmt_list_list -> small_stmt_list_list SEMI small_stmt','small_stmt_list_list',3,'p_small_stmt_list_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',775),
('small_stmt -> expr_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',780),
('small_stmt -> print_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',781),
('small_stmt -> del_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',782),
('small_stmt -> pass_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',783),
('small_stmt -> flow_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',784),
('small_stmt -> import_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',785),
('small_stmt -> global_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',786),
('small_stmt -> exec_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',787),
('small_stmt -> assert_stmt','small_stmt',1,'p_small_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',788),
('print_stmt -> PRINT','print_stmt',1,'p_print_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',793),
('print_stmt -> PRINT test','print_stmt',2,'p_print_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',802),
('print_stmt -> PRINT print_list','print_stmt',2,'p_print_stmt3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',811),
('print_stmt -> PRINT RIGHTSHIFT test','print_stmt',3,'p_print_stmt4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',826),
('print_stmt -> PRINT RIGHTSHIFT test COMMA test','print_stmt',5,'p_print_stmt5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',835),
('print_stmt -> PRINT RIGHTSHIFT test COMMA print_list','print_stmt',5,'p_print_stmt6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',844),
('print_list -> test COMMA','print_list',2,'p_print_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',859),
('print_list -> test print_list_list','print_list',2,'p_print_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',864),
('print_list -> test print_list_list COMMA','print_list',3,'p_print_list3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',869),
('print_list_list -> COMMA test','print_list_list',2,'p_print_list_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',874),
('print_list_list -> print_list_list COMMA test','print_list_list',3,'p_print_list_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',879),
('del_stmt -> DEL exprlist','del_stmt',2,'p_del_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',884),
('pass_stmt -> PASS','pass_stmt',1,'p_pass_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',893),
('flow_stmt -> break_stmt','flow_stmt',1,'p_flow_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',900),
('flow_stmt -> continue_stmt','flow_stmt',1,'p_flow_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',901),
('flow_stmt -> return_stmt','flow_stmt',1,'p_flow_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',902),
('flow_stmt -> raise_stmt','flow_stmt',1,'p_flow_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',903),
('flow_stmt -> yield_stmt','flow_stmt',1,'p_flow_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',904),
('break_stmt -> BREAK','break_stmt',1,'p_break_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',909),
('continue_stmt -> CONTINUE','continue_stmt',1,'p_continue_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',916),
('return_stmt -> RETURN','return_stmt',1,'p_return_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',923),
('return_stmt -> RETURN testlist','return_stmt',2,'p_return_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',930),
('raise_stmt -> RAISE','raise_stmt',1,'p_raise_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',938),
('raise_stmt -> RAISE test','raise_stmt',2,'p_raise_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',947),
('raise_stmt -> RAISE test COMMA test','raise_stmt',4,'p_raise_stmt3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',956),
('raise_stmt -> RAISE test COMMA test COMMA test','raise_stmt',6,'p_raise_stmt4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',965),
('yield_stmt -> yield_expr','yield_stmt',1,'p_yield_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',974),
('yield_expr -> YIELD','yield_expr',1,'p_yield_expr1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',979),
('yield_expr -> YIELD testlist','yield_expr',2,'p_yield_expr2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',984),
('global_stmt -> GLOBAL NAME','global_stmt',2,'p_global_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',990),
('global_stmt -> GLOBAL NAME globals_list','global_stmt',3,'p_global_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',998),
('globals_list -> COMMA NAME globals_list','globals_list',3,'p_globals_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1006),
('globals_list -> COMMA NAME','globals_list',2,'p_globals_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1011),
('exec_stmt -> EXEC expr','exec_stmt',2,'p_exec_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1016),
('exec_stmt -> EXEC expr IN test','exec_stmt',4,'p_exec_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1025),
('exec_stmt -> EXEC expr IN test COMMA test','exec_stmt',6,'p_exec_stmt3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1034),
('assert_stmt -> ASSERT test','assert_stmt',2,'p_assert_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1043),
('assert_stmt -> ASSERT test COMMA test','assert_stmt',4,'p_assert_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1051),
('expr_stmt -> testlist','expr_stmt',1,'p_expr_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1059),
('expr_stmt -> testlist augassign testlist','expr_stmt',3,'p_expr_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1066),
('expr_stmt -> testlist augassign yield_expr','expr_stmt',3,'p_expr_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1067),
('expr_stmt -> testlist equal_list','expr_stmt',2,'p_expr_stmt3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1083),
('augassign -> AMPEREQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1099),
('augassign -> CIRCUMFLEXEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1100),
('augassign -> DOUBLESLASHEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1101),
('augassign -> DOUBLESTAREQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1102),
('augassign -> LEFTSHIFTEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1103),
('augassign -> MINUSEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1104),
('augassign -> PERCENTEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1105),
('augassign -> PLUSEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1106),
('augassign -> RIGHTSHIFTEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1107),
('augassign -> SLASHEQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1108),
('augassign -> STAREQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1109),
('augassign -> VBAREQUAL','augassign',1,'p_augassign','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1110),
('equal_list -> EQUAL testlist','equal_list',2,'p_equal_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1117),
('equal_list -> EQUAL yield_expr','equal_list',2,'p_equal_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1118),
('equal_list -> EQUAL testlist equal_list','equal_list',3,'p_equal_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1123),
('equal_list -> EQUAL yield_expr equal_list','equal_list',3,'p_equal_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1124),
('testlist -> test','testlist',1,'p_testlist1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1129),
('testlist -> test COMMA','testlist',2,'p_testlist2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1134),
('testlist -> test testlist_list','testlist',2,'p_testlist3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1139),
('testlist -> test testlist_list COMMA','testlist',3,'p_testlist4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1144),
('testlist_list -> COMMA test','testlist_list',2,'p_testlist_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1149),
('testlist_list -> testlist_list COMMA test','testlist_list',3,'p_testlist_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1154),
('compound_stmt -> if_stmt','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1159),
('compound_stmt -> while_stmt','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1160),
('compound_stmt -> for_stmt','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1161),
('compound_stmt -> try_stmt','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1162),
('compound_stmt -> with_stmt','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1163),
('compound_stmt -> funcdef','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1164),
('compound_stmt -> classdef','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1165),
('compound_stmt -> decorated','compound_stmt',1,'p_compound_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1166),
('if_stmt -> IF test COLON suite','if_stmt',4,'p_if_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1171),
('if_stmt -> IF test COLON suite elif_stmts','if_stmt',5,'p_if_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1182),
('if_stmt -> IF test COLON suite else_stmt','if_stmt',5,'p_if_stmt3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1193),
('if_stmt -> IF test COLON suite elif_stmts else_stmt','if_stmt',6,'p_if_stmt4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1204),
('elif_stmts -> elif_stmts elif_stmt','elif_stmts',2,'p_elif_stmts1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1220),
('elif_stmts -> elif_stmt','elif_stmts',1,'p_elif_stmts2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1227),
('elif_stmt -> ELIF test COLON suite','elif_stmt',4,'p_elif_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1232),
('else_stmt -> ELSE COLON suite','else_stmt',3,'p_else_stmt','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1243),
('while_stmt -> WHILE test COLON suite','while_stmt',4,'p_while_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1248),
('while_stmt -> WHILE test COLON suite ELSE COLON suite','while_stmt',7,'p_while_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1259),
('for_stmt -> FOR exprlist IN testlist COLON suite','for_stmt',6,'p_for_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1270),
('for_stmt -> FOR exprlist IN testlist COLON suite ELSE COLON suite','for_stmt',9,'p_for_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1284),
('try_stmt -> TRY COLON suite FINALLY COLON suite','try_stmt',6,'p_try_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1298),
('try_stmt -> TRY COLON suite except_clauses','try_stmt',4,'p_try_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1308),
('try_stmt -> TRY COLON suite except_clauses ELSE COLON suite','try_stmt',7,'p_try_stmt3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1319),
('try_stmt -> TRY COLON suite except_clauses FINALLY COLON suite','try_stmt',7,'p_try_stmt4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1330),
('try_stmt -> TRY COLON suite except_clauses ELSE COLON suite FINALLY COLON suite','try_stmt',10,'p_try_stmt5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1347),
('except_clauses -> except_clause except_clauses','except_clauses',2,'p_except_clauses1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1364),
('except_clauses -> except_clause','except_clauses',1,'p_except_clauses2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1369),
('except_clause -> EXCEPT COLON suite','except_clause',3,'p_except_clause1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1374),
('except_clause -> EXCEPT test COLON suite','except_clause',4,'p_except_clause2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1385),
('except_clause -> EXCEPT test AS test COLON suite','except_clause',6,'p_except_clause3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1396),
('except_clause -> EXCEPT test COMMA test COLON suite','except_clause',6,'p_except_clause3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1397),
('with_stmt -> WITH with_item COLON suite','with_stmt',4,'p_with_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1410),
('with_stmt -> WITH with_item with_item_list COLON suite','with_stmt',5,'p_with_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1422),
('with_item -> test','with_item',1,'p_with_item1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1442),
('with_item -> test AS expr','with_item',3,'p_with_item2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1447),
('with_item_list -> COMMA with_item with_item_list','with_item_list',3,'p_with_item_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1454),
('with_item_list -> COMMA with_item','with_item_list',2,'p_with_item_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1459),
('funcdef -> DEF NAME parameters COLON suite','funcdef',5,'p_funcdef','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1464),
('parameters -> LPAR RPAR','parameters',2,'p_parameters1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1476),
('parameters -> LPAR varargslist RPAR','parameters',3,'p_parameters2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1481),
('classdef -> CLASS NAME COLON suite','classdef',4,'p_classdef1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1486),
('classdef -> CLASS NAME LPAR RPAR COLON suite','classdef',6,'p_classdef2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1498),
('classdef -> CLASS NAME LPAR testlist RPAR COLON suite','classdef',7,'p_classdef3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1510),
('decorated -> decorators funcdef','decorated',2,'p_decorated','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1525),
('decorated -> decorators classdef','decorated',2,'p_decorated','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1526),
('decorators -> decorator decorators','decorators',2,'p_decorators1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1534),
('decorators -> decorator','decorators',1,'p_decorators2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1539),
('decorator -> AT dotted_name NEWLINE','decorator',3,'p_decorator1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1544),
('decorator -> AT dotted_name LPAR RPAR NEWLINE','decorator',5,'p_decorator2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1552),
('decorator -> AT dotted_name LPAR arglist RPAR NEWLINE','decorator',6,'p_decorator3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1565),
('import_stmt -> import_name','import_stmt',1,'p_import_stmt1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1579),
('import_stmt -> import_from','import_stmt',1,'p_import_stmt2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1584),
('import_name -> IMPORT dotted_as_names','import_name',2,'p_import_name','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1588),
('import_from -> FROM dotted_name IMPORT STAR','import_from',4,'p_import_from1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1595),
('import_from -> FROM dotted_name IMPORT import_as_names','import_from',4,'p_import_from2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1603),
('import_from -> FROM dotted_name IMPORT LPAR import_as_names RPAR','import_from',6,'p_import_from3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1610),
('import_from -> FROM import_from_dots dotted_name IMPORT STAR','import_from',5,'p_import_from4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1617),
('import_from -> FROM import_from_dots dotted_name IMPORT import_as_name','import_from',5,'p_import_from5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1625),
('import_from -> FROM import_from_dots dotted_name IMPORT LPAR import_as_names RPAR','import_from',7,'p_import_from6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1632),
('import_from -> FROM import_from_dots IMPORT STAR','import_from',4,'p_import_from7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1639),
('import_from -> FROM import_from_dots IMPORT import_as_names','import_from',4,'p_import_from8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1647),
('import_from -> FROM import_from_dots IMPORT LPAR import_as_names RPAR','import_from',6,'p_import_from9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1654),
('import_from_dots -> DOT','import_from_dots',1,'p_import_from_dots1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1661),
('import_from_dots -> import_from_dots DOT','import_from_dots',2,'p_import_from_dots2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1666),
('import_as_name -> NAME','import_as_name',1,'p_import_as_name1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1671),
('import_as_name -> NAME AS NAME','import_as_name',3,'p_import_as_name2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1676),
('dotted_as_name -> dotted_name','dotted_as_name',1,'p_dotted_as_name1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1681),
('dotted_as_name -> dotted_name AS NAME','dotted_as_name',3,'p_dotted_as_name2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1687),
('import_as_names -> import_as_name','import_as_names',1,'p_import_as_names1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1693),
('import_as_names -> import_as_name COMMA','import_as_names',2,'p_import_as_names2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1698),
('import_as_names -> import_as_name import_as_names_list','import_as_names',2,'p_import_as_names3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1703),
('import_as_names -> import_as_name import_as_names_list COMMA','import_as_names',3,'p_import_as_names4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1708),
('import_as_names_list -> COMMA import_as_name','import_as_names_list',2,'p_import_as_names_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1713),
('import_as_names_list -> import_as_names_list COMMA import_as_name','import_as_names_list',3,'p_import_as_names_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1718),
('dotted_as_names -> dotted_as_name','dotted_as_names',1,'p_dotted_as_names1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1723),
('dotted_as_names -> dotted_as_name dotted_as_names_list','dotted_as_names',2,'p_dotted_as_names2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1728),
('dotted_as_names_list -> COMMA dotted_as_name','dotted_as_names_list',2,'p_dotted_as_names_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1733),
('dotted_as_names_list -> dotted_as_names_list COMMA dotted_as_name','dotted_as_names_list',3,'p_dotted_as_names_star_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1738),
('dotted_name -> NAME','dotted_name',1,'p_dotted_name1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1743),
('dotted_name -> NAME dotted_name_list','dotted_name',2,'p_dotted_name2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1748),
('dotted_name_list -> DOT NAME','dotted_name_list',2,'p_dotted_name_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1753),
('dotted_name_list -> dotted_name_list DOT NAME','dotted_name_list',3,'p_dotted_name_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1758),
('test -> or_test','test',1,'p_test1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1763),
('test -> or_test IF or_test ELSE test','test',5,'p_test2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1768),
('test -> lambdef','test',1,'p_test3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1774),
('or_test -> and_test','or_test',1,'p_or_test1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1779),
('or_test -> and_test or_test_list','or_test',2,'p_or_test2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1784),
('or_test_list -> OR and_test','or_test_list',2,'p_or_test_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1791),
('or_test_list -> or_test_list OR and_test','or_test_list',3,'p_or_test_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1796),
('and_test -> not_test','and_test',1,'p_and_test1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1801),
('and_test -> not_test and_test_list','and_test',2,'p_and_test2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1806),
('and_test_list -> AND not_test','and_test_list',2,'p_and_test_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1813),
('and_test_list -> and_test_list AND not_test','and_test_list',3,'p_and_test_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1818),
('not_test -> comparison','not_test',1,'p_not_test','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1823),
('not_test -> NOT not_test','not_test',2,'p_not_test2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1828),
('comparison -> expr','comparison',1,'p_comparison1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1834),
('comparison -> expr comparison_list','comparison',2,'p_comparison2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1839),
('comparison_list -> comp_op expr','comparison_list',2,'p_comparison_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1847),
('comparison_list -> comparison_list comp_op expr','comparison_list',3,'p_comparison_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1852),
('comp_op -> LESS','comp_op',1,'p_comp_op1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1857),
('comp_op -> GREATER','comp_op',1,'p_comp_op2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1862),
('comp_op -> EQEQUAL','comp_op',1,'p_comp_op3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1867),
('comp_op -> GREATEREQUAL','comp_op',1,'p_comp_op4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1872),
('comp_op -> LESSEQUAL','comp_op',1,'p_comp_op5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1877),
('comp_op -> NOTEQUAL','comp_op',1,'p_comp_op6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1882),
('comp_op -> IN','comp_op',1,'p_comp_op7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1887),
('comp_op -> NOT IN','comp_op',2,'p_comp_op8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1892),
('comp_op -> IS','comp_op',1,'p_comp_op9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1897),
('comp_op -> IS NOT','comp_op',2,'p_comp_op10','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1902),
('expr -> xor_expr','expr',1,'p_expr1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1907),
('expr -> xor_expr expr_list','expr',2,'p_expr2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1912),
('expr_list -> VBAR xor_expr','expr_list',2,'p_expr_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1920),
('expr_list -> expr_list VBAR xor_expr','expr_list',3,'p_expr_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1925),
('xor_expr -> and_expr','xor_expr',1,'p_xor_expr1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1930),
('xor_expr -> and_expr xor_expr_list','xor_expr',2,'p_xor_expr2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1935),
('xor_expr_list -> CIRCUMFLEX and_expr','xor_expr_list',2,'p_xor_expr_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1943),
('xor_expr_list -> xor_expr_list CIRCUMFLEX and_expr','xor_expr_list',3,'p_xor_expr_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1948),
('and_expr -> shift_expr','and_expr',1,'p_and_expr1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1953),
('and_expr -> shift_expr and_expr_list','and_expr',2,'p_and_expr2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1958),
('and_expr_list -> AMPER shift_expr','and_expr_list',2,'p_and_expr_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1966),
('and_expr_list -> and_expr_list AMPER shift_expr','and_expr_list',3,'p_and_expr_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1971),
('shift_expr -> arith_expr','shift_expr',1,'p_shift_expr1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1976),
('shift_expr -> arith_expr shift_list','shift_expr',2,'p_shift_expr2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1981),
('shift_list -> shift_op','shift_list',1,'p_shift_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1989),
('shift_list -> shift_list shift_op','shift_list',2,'p_shift_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1994),
('shift_op -> LEFTSHIFT arith_expr','shift_op',2,'p_shift_op1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',1999),
('shift_op -> RIGHTSHIFT arith_expr','shift_op',2,'p_shift_op2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2004),
('arith_expr -> term','arith_expr',1,'p_arith_expr1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2009),
('arith_expr -> term arith_expr_list','arith_expr',2,'p_arith_expr2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2014),
('arith_expr_list -> arith_op','arith_expr_list',1,'p_arith_expr_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2022),
('arith_expr_list -> arith_expr_list arith_op','arith_expr_list',2,'p_arith_expr_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2027),
('arith_op -> PLUS term','arith_op',2,'p_arith_op1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2032),
('arith_op -> MINUS term','arith_op',2,'p_arith_op2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2038),
('term -> factor','term',1,'p_term1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2043),
('term -> factor term_list','term',2,'p_term2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2048),
('term_list -> term_op','term_list',1,'p_term_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2056),
('term_list -> term_list term_op','term_list',2,'p_term_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2061),
('term_op -> STAR factor','term_op',2,'p_term_op1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2066),
('term_op -> SLASH factor','term_op',2,'p_term_op2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2071),
('term_op -> PERCENT factor','term_op',2,'p_term_op3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2076),
('term_op -> DOUBLESLASH factor','term_op',2,'p_term_op4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2081),
('factor -> power','factor',1,'p_factor1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2086),
('factor -> PLUS factor','factor',2,'p_factor2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2091),
('factor -> MINUS factor','factor',2,'p_factor3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2099),
('factor -> TILDE factor','factor',2,'p_factor4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2107),
('power -> atom','power',1,'p_power1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2115),
('power -> atom DOUBLESTAR factor','power',3,'p_power2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2120),
('power -> atom power_list','power',2,'p_power3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2126),
('power -> atom power_list DOUBLESTAR factor','power',4,'p_power4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2142),
('power_list -> trailer','power_list',1,'p_power_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2159),
('power_list -> power_list trailer','power_list',2,'p_power_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2164),
('atom -> LPAR RPAR','atom',2,'p_atom1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2169),
('atom -> LPAR yield_expr RPAR','atom',3,'p_atom2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2174),
('atom -> LPAR testlist_comp RPAR','atom',3,'p_atom3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2179),
('atom -> LSQB RSQB','atom',2,'p_atom4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2193),
('atom -> LSQB listmaker RSQB','atom',3,'p_atom5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2198),
('atom -> LBRACE RBRACE','atom',2,'p_atom6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2210),
('atom -> LBRACE dictorsetmaker RBRACE','atom',3,'p_atom7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2215),
('atom -> NAME','atom',1,'p_atom8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2236),
('atom -> NUMBER','atom',1,'p_atom9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2241),
('atom -> atom_string_list','atom',1,'p_atom10','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2247),
('atom_string_list -> STRING','atom_string_list',1,'p_atom_string_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2253),
('atom_string_list -> atom_string_list STRING','atom_string_list',2,'p_atom_string_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2258),
('listmaker -> test list_for','listmaker',2,'p_listmaker1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2268),
('listmaker -> test','listmaker',1,'p_listmaker2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2273),
('listmaker -> test COMMA','listmaker',2,'p_listmaker3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2278),
('listmaker -> test listmaker_list','listmaker',2,'p_listmaker4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2283),
('listmaker -> test listmaker_list COMMA','listmaker',3,'p_listmaker5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2289),
('listmaker_list -> COMMA test','listmaker_list',2,'p_listmaker_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2295),
('listmaker_list -> listmaker_list COMMA test','listmaker_list',3,'p_listmaker_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2300),
('testlist_comp -> test comp_for','testlist_comp',2,'p_testlist_comp1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2305),
('testlist_comp -> test','testlist_comp',1,'p_testlist_comp2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2310),
('testlist_comp -> test COMMA','testlist_comp',2,'p_testlist_comp3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2315),
('testlist_comp -> test testlist_comp_list','testlist_comp',2,'p_testlist_comp4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2320),
('testlist_comp -> test testlist_comp_list COMMA','testlist_comp',3,'p_testlist_comp5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2326),
('testlist_comp_list -> COMMA test','testlist_comp_list',2,'p_testlist_comp_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2332),
('testlist_comp_list -> testlist_comp_list COMMA test','testlist_comp_list',3,'p_testlist_comp_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2337),
('trailer -> LPAR RPAR','trailer',2,'p_trailer1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2342),
('trailer -> LPAR arglist RPAR','trailer',3,'p_trailer2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2347),
('trailer -> LSQB subscriptlist RSQB','trailer',3,'p_trailer3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2354),
('trailer -> DOT NAME','trailer',2,'p_trailer4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2359),
('subscriptlist -> subscript','subscriptlist',1,'p_subscriptlist1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2364),
('subscriptlist -> subscript COMMA','subscriptlist',2,'p_subscriptlist2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2369),
('subscriptlist -> subscript subscriptlist_list','subscriptlist',2,'p_subscriptlist3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2375),
('subscriptlist -> subscript subscriptlist_list COMMA','subscriptlist',3,'p_subscriptlist4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2381),
('subscriptlist_list -> COMMA subscript','subscriptlist_list',2,'p_subscriptlist_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2387),
('subscriptlist_list -> subscriptlist_list COMMA subscript','subscriptlist_list',3,'p_subscript_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2392),
('subscript -> ELLIPSIS','subscript',1,'p_subscript1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2397),
('subscript -> test','subscript',1,'p_subcript2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2402),
('subscript -> COLON','subscript',1,'p_subscript3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2407),
('subscript -> DOUBLECOLON','subscript',1,'p_subscript4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2412),
('subscript -> test COLON','subscript',2,'p_subscript5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2418),
('subscript -> test DOUBLECOLON','subscript',2,'p_subscrip6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2423),
('subscript -> COLON test','subscript',2,'p_subscript7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2429),
('subscript -> COLON test COLON','subscript',3,'p_subscript8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2434),
('subscript -> DOUBLECOLON test','subscript',2,'p_subscript9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2440),
('subscript -> test COLON test','subscript',3,'p_subscript10','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2445),
('subscript -> test COLON test COLON','subscript',4,'p_subscript11','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2450),
('subscript -> COLON test COLON test','subscript',4,'p_subscript12','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2456),
('subscript -> test COLON test COLON test','subscript',5,'p_subscript13','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2461),
('subscript -> test DOUBLECOLON test','subscript',3,'p_subscript14','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2466),
('exprlist -> expr','exprlist',1,'p_exprlist1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2471),
('exprlist -> expr COMMA','exprlist',2,'p_exprlist2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2476),
('exprlist -> expr exprlist_list','exprlist',2,'p_exprlist3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2483),
('exprlist -> expr exprlist_list COMMA','exprlist',3,'p_exprlist4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2490),
('exprlist_list -> COMMA expr','exprlist_list',2,'p_exprlist_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2497),
('exprlist_list -> exprlist_list COMMA expr','exprlist_list',3,'p_exprlist_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2502),
('dictorsetmaker -> test COLON test comp_for','dictorsetmaker',4,'p_dictorsetmaker1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2507),
('dictorsetmaker -> test COLON test','dictorsetmaker',3,'p_dictorsetmaker2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2512),
('dictorsetmaker -> test COLON test COMMA','dictorsetmaker',4,'p_dictorsetmaker3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2518),
('dictorsetmaker -> test COLON test dosm_colon_list','dictorsetmaker',4,'p_dictorsetmaker4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2524),
('dictorsetmaker -> test COLON test dosm_colon_list COMMA','dictorsetmaker',5,'p_dictorsetmaker5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2530),
('dictorsetmaker -> test comp_for','dictorsetmaker',2,'p_dictorsetmaker6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2536),
('dictorsetmaker -> test COMMA','dictorsetmaker',2,'p_dictorsetmaker7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2541),
('dictorsetmaker -> test dosm_comma_list','dictorsetmaker',2,'p_dictorsetmaker8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2547),
('dictorsetmaker -> test dosm_comma_list COMMA','dictorsetmaker',3,'p_dictorsetmaker9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2553),
('dosm_colon_list -> COMMA test COLON test','dosm_colon_list',4,'p_dosm_colon_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2559),
('dosm_colon_list -> dosm_colon_list COMMA test COLON test','dosm_colon_list',5,'p_dosm_colon_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2564),
('dosm_comma_list -> COMMA test','dosm_comma_list',2,'p_dosm_comma_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2569),
('dosm_comma_list -> dosm_comma_list COMMA test','dosm_comma_list',3,'p_dosm_comma_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2574),
('arglist -> argument','arglist',1,'p_arglist1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2579),
('arglist -> argument COMMA','arglist',2,'p_arglist2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2587),
('arglist -> STAR test','arglist',2,'p_arglist3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2595),
('arglist -> STAR test COMMA DOUBLESTAR test','arglist',5,'p_arglist4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2600),
('arglist -> DOUBLESTAR test','arglist',2,'p_arglist5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2605),
('arglist -> arglist_list argument','arglist',2,'p_arglist6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2610),
('arglist -> arglist_list argument COMMA','arglist',3,'p_arglist7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2622),
('arglist -> arglist_list STAR test','arglist',3,'p_arglist8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2634),
('arglist -> arglist_list STAR test COMMA DOUBLESTAR test','arglist',6,'p_arglist9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2646),
('arglist -> arglist_list DOUBLESTAR test','arglist',3,'p_arglist10','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2658),
('arglist -> STAR test COMMA argument','arglist',4,'p_arglist11','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2670),
('arglist -> STAR test COMMA argument COMMA DOUBLESTAR test','arglist',7,'p_arglist12','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2681),
('arglist -> STAR test COMMA arglist_list argument','arglist',5,'p_arglist13','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2692),
('arglist -> STAR test COMMA arglist_list argument COMMA DOUBLESTAR test','arglist',8,'p_arglist14','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2703),
('arglist_list -> argument COMMA','arglist_list',2,'p_arglist_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2714),
('arglist_list -> arglist_list argument COMMA','arglist_list',3,'p_arglist_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2719),
('argument -> test','argument',1,'p_argument1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2724),
('argument -> test comp_for','argument',2,'p_argument2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2729),
('argument -> test EQUAL test','argument',3,'p_argument3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2736),
('list_for -> FOR exprlist IN testlist_safe','list_for',4,'p_list_for1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2744),
('list_for -> FOR exprlist IN testlist_safe list_iter','list_for',5,'p_list_for2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2751),
('list_iter -> list_for','list_iter',1,'p_list_iter1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2765),
('list_iter -> list_if','list_iter',1,'p_list_iter2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2770),
('list_if -> IF old_test','list_if',2,'p_list_if1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2775),
('list_if -> IF old_test list_iter','list_if',3,'p_list_if2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2780),
('comp_for -> FOR exprlist IN or_test','comp_for',4,'p_comp_for1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2785),
('comp_for -> FOR exprlist IN or_test comp_iter','comp_for',5,'p_comp_for2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2792),
('comp_iter -> comp_for','comp_iter',1,'p_comp_iter1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2806),
('comp_iter -> comp_if','comp_iter',1,'p_comp_iter2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2811),
('comp_if -> IF old_test','comp_if',2,'p_comp_if1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2816),
('comp_if -> IF old_test comp_iter','comp_if',3,'p_comp_if2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2821),
('testlist_safe -> old_test','testlist_safe',1,'p_testlist_safe1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2826),
('testlist_safe -> old_test testlist_safe_list','testlist_safe',2,'p_testlist_safe2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2831),
('testlist_safe -> old_test testlist_safe_list COMMA','testlist_safe',3,'p_testlist_safe3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2837),
('testlist_safe_list -> COMMA old_test','testlist_safe_list',2,'p_testlist_safe_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2843),
('testlist_safe_list -> testlist_safe_list COMMA old_test','testlist_safe_list',3,'p_testlist_safe_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2848),
('old_test -> or_test','old_test',1,'p_old_test1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2853),
('old_test -> old_lambdef','old_test',1,'p_old_test2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2858),
('old_lambdef -> LAMBDA COLON old_test','old_lambdef',3,'p_old_lambdef1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2863),
('old_lambdef -> LAMBDA varargslist COLON old_test','old_lambdef',4,'p_old_lambdef2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2870),
('lambdef -> LAMBDA COLON test','lambdef',3,'p_lambdef1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2877),
('lambdef -> LAMBDA varargslist COLON test','lambdef',4,'p_lambdef2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2884),
('varargslist -> fpdef COMMA STAR NAME','varargslist',4,'p_varargslist1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2891),
('varargslist -> fpdef COMMA STAR NAME COMMA DOUBLESTAR NAME','varargslist',7,'p_varargslist2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2898),
('varargslist -> fpdef COMMA DOUBLESTAR NAME','varargslist',4,'p_varargslist3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2905),
('varargslist -> fpdef','varargslist',1,'p_varargslist4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2912),
('varargslist -> fpdef COMMA','varargslist',2,'p_varargslist5','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2919),
('varargslist -> fpdef varargslist_list COMMA STAR NAME','varargslist',5,'p_varargslist6','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2926),
('varargslist -> fpdef varargslist_list COMMA STAR NAME COMMA DOUBLESTAR NAME','varargslist',8,'p_varargslist7','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2935),
('varargslist -> fpdef varargslist_list COMMA DOUBLESTAR NAME','varargslist',5,'p_varargslist8','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2944),
('varargslist -> fpdef varargslist_list','varargslist',2,'p_varargslist9','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2953),
('varargslist -> fpdef varargslist_list COMMA','varargslist',3,'p_varargslist10','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2962),
('varargslist -> fpdef EQUAL test COMMA STAR NAME','varargslist',6,'p_varargslist11','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2971),
('varargslist -> fpdef EQUAL test COMMA STAR NAME COMMA DOUBLESTAR NAME','varargslist',9,'p_varargslist12','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2978),
('varargslist -> fpdef EQUAL test COMMA DOUBLESTAR NAME','varargslist',6,'p_varargslist13','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2985),
('varargslist -> fpdef EQUAL test','varargslist',3,'p_varargslist14','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2992),
('varargslist -> fpdef EQUAL test COMMA','varargslist',4,'p_varargslist15','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',2999),
('varargslist -> fpdef EQUAL test varargslist_list COMMA STAR NAME','varargslist',7,'p_varargslist16','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3006),
('varargslist -> fpdef EQUAL test varargslist_list COMMA STAR NAME COMMA DOUBLESTAR NAME','varargslist',10,'p_varargslist17','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3019),
('varargslist -> fpdef EQUAL test varargslist_list COMMA DOUBLESTAR NAME','varargslist',7,'p_varargslist18','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3032),
('varargslist -> fpdef EQUAL test varargslist_list','varargslist',4,'p_varargslist19','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3045),
('varargslist -> fpdef EQUAL test varargslist_list COMMA','varargslist',5,'p_varargslist20','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3058),
('varargslist -> STAR NAME','varargslist',2,'p_varargslist21','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3071),
('varargslist -> STAR NAME COMMA DOUBLESTAR NAME','varargslist',5,'p_varargslist22','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3077),
('varargslist -> DOUBLESTAR NAME','varargslist',2,'p_varargslist23','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3083),
('varargslist_list -> COMMA fpdef','varargslist_list',2,'p_varargslist_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3090),
('varargslist_list -> COMMA fpdef EQUAL test','varargslist_list',4,'p_varargslist_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3095),
('varargslist_list -> varargslist_list COMMA fpdef','varargslist_list',3,'p_varargslist_list3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3100),
('varargslist_list -> varargslist_list COMMA fpdef EQUAL test','varargslist_list',5,'p_varargslist_list4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3111),
('fpdef -> NAME','fpdef',1,'p_fpdef1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3119),
('fpdef -> LPAR fplist RPAR','fpdef',3,'p_fpdef2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3124),
('fplist -> fpdef','fplist',1,'p_fplist1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3131),
('fplist -> fpdef COMMA','fplist',2,'p_fplist2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3136),
('fplist -> fpdef fplist_list','fplist',2,'p_fplist3','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3144),
('fplist -> fpdef fplist_list COMMA','fplist',3,'p_fplist4','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3153),
('fplist_list -> COMMA fpdef','fplist_list',2,'p_fplist_list1','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3162),
('fplist_list -> fplist_list COMMA fpdef','fplist_list',3,'p_fplist_list2','c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py',3167),
]
|
_tabversion = '3.2'
_lr_method = 'LALR'
_lr_signature = '\x7fÝÁPb\x9c©ë¬É\xadµ=\x06\x80j'
_lr_action_items = {'LPAR': ([0, 1, 6, 7, 9, 13, 14, 16, 18, 24, 28, 29, 30, 31, 33, 35, 39, 42, 43, 44, 47, 49, 52, 54, 55, 57, 61, 63, 64, 65, 67, 72, 73, 74, 82, 83, 85, 86, 89, 90, 95, 96, 97, 102, 103, 104, 106, 109, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 137, 138, 140, 144, 147, 148, 150, 155, 157, 160, 161, 163, 165, 166, 168, 169, 170, 171, 177, 183, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 202, 205, 210, 211, 213, 215, 216, 218, 219, 220, 228, 233, 234, 244, 246, 248, 251, 253, 256, 258, 260, 262, 263, 265, 270, 271, 272, 274, 277, 278, 279, 281, 282, 291, 292, 293, 296, 299, 300, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 319, 321, 324, 328, 330, 333, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 364, 365, 367, 368, 370, 374, 375, 377, 378, 379, 383, 391, 394, 401, 404, 410, 414, 417, 418, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 453, 459, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 512, 518, 523, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [1, 1, -140, 1, 1, 1, -55, -143, -139, -137, -141, 1, -297, 1, 1, -298, 1, -56, 1, -9, -7, 1, 165, 171, 1, 1, 1, -8, -142, 1, -295, -296, 1, 1, 1, 1, -144, 1, -138, -288, -57, 1, -58, 1, 1, 1, 1, -215, 1, 1, -125, -116, -120, -115, 1, -118, -122, -117, -121, -124, -126, -123, -119, 1, 1, -181, -180, 242, 1, -299, 1, 1, 251, 1, 1, 1, -293, 1, 1, 1, 165, 1, 1, -286, 171, 1, -291, -241, 1, -237, -236, -244, -239, -242, -240, -238, -6, 1, 1, 314, 316, -290, 1, 1, -289, 1, 1, 1, 1, -216, 1, 1, 1, 1, 1, 171, 1, 1, -51, 1, -294, 1, 1, 1, -314, 1, 1, 1, -287, -317, 1, 1, 1, 171, 1, 1, 1, -292, 1, 1, -245, 1, -243, 1, 1, 1, 1, 1, 1, 1, 408, 411, 1, -168, 1, -217, 1, 1, 1, 1, 1, 1, -163, -158, 1, 1, -315, 1, 1, 1, -371, 1, 1, 1, -316, 171, 171, -153, 1, -177, -145, 483, 1, -169, -218, 1, -174, 1, 1, -162, 1, 1, 1, 1, -372, 1, 1, 171, 171, 1, 1, 1, 1, -150, 1, -146, -147, -155, -52, 1, 1, -164, 1, 1, 1, -157, 1, 1, 1, 1, 1, 171, 1, 171, -178, 1, 1, -149, -148, 1, -10, -159, -160, -165, 1, -371, 1, -154, 1, 1, 1, -179, 1, -152, -11, 1, 1, 1, 1, 1, -372, 1, 1, -151, -12, -156, 1, -166, -167, 1, -14, -15, 1, 1, 1, 1, 1, -13, -161, -16, -17, -18, -19]), 'ENDMARKER': ([0, 6, 8, 14, 16, 18, 24, 28, 41, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 135, 136, 153, 196, 258, 328, 354, 355, 391, 401, 404, 417, 428, 432, 472, 475, 476, 488, 490, 493, 497, 524, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [2, -140, 100, -55, -143, -139, -137, -141, 152, -56, -9, -7, -8, -142, -5, -144, -138, -57, -58, -181, -180, 255, -6, -51, -168, -163, -158, -153, -177, -145, -169, -174, -162, -150, -146, -147, -155, -52, -164, -157, -178, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'NOTEQUAL': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 185, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 185, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'AMPEREQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 120, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'CIRCUMFLEX': ([10, 12, 23, 30, 35, 37, 38, 51, 52, 67, 72, 90, 101, 105, 107, 113, 131, 132, 140, 149, 151, 160, 162, 164, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 336, 351, 364, 371, 378], [-270, 112, -264, -297, -298, -278, -254, -258, -282, -295, -296, -288, -279, -272, -271, 233, -265, -266, -299, -255, -280, -293, -260, -259, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -253, -257, -315, -285, -316]), 'WITH': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 135, 136, 196, 258, 328, 353, 354, 355, 391, 401, 404, 417, 428, 430, 432, 472, 475, 476, 488, 490, 493, 497, 524, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [7, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 7, -144, -138, -57, -58, -181, -180, -6, -51, -168, 7, -163, -158, -153, -177, -145, -169, -174, 7, -162, -150, -146, -147, -155, -52, -164, -157, -178, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'MINUS': ([0, 1, 6, 7, 9, 10, 13, 14, 16, 18, 23, 24, 28, 29, 30, 31, 33, 35, 37, 39, 42, 43, 44, 47, 49, 52, 55, 57, 61, 63, 64, 65, 67, 72, 73, 74, 82, 83, 85, 86, 89, 90, 95, 96, 97, 101, 102, 103, 104, 105, 106, 107, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 138, 140, 144, 147, 150, 151, 155, 157, 160, 161, 163, 165, 166, 168, 169, 170, 177, 181, 183, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 210, 211, 213, 215, 216, 218, 219, 220, 222, 223, 224, 225, 226, 233, 234, 239, 240, 241, 244, 246, 248, 253, 256, 258, 260, 262, 263, 265, 270, 271, 272, 274, 277, 278, 279, 280, 281, 282, 291, 293, 296, 299, 300, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 364, 365, 367, 368, 370, 371, 374, 375, 377, 378, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [39, 39, -140, 39, 39, -270, 39, -55, -143, -139, 134, -137, -141, 39, -297, 39, 39, -298, -278, 39, -56, 39, -9, -7, 39, -282, 39, 39, 39, -8, -142, 39, -295, -296, 39, 39, 39, 39, -144, 39, -138, -288, -57, 39, -58, -279, 39, 39, 39, -272, 39, -271, 39, 39, -125, -116, -120, -115, 39, -118, -122, -117, -121, -124, -126, -123, -119, 134, -266, 39, 39, -181, -180, 39, -299, 39, 39, 39, -280, 39, 39, -293, 39, 39, 39, -284, 39, 39, -286, 39, -281, -291, -241, 39, -237, -236, -244, -239, -242, -240, -238, -6, 39, 39, -290, 39, 39, -289, 39, 39, 39, 39, -274, -276, -277, -275, -273, 39, 39, -267, -268, -269, 39, 39, 39, 39, 39, -51, 39, -294, 39, 39, 39, -314, 39, 39, 39, -287, -317, -283, 39, 39, 39, 39, 39, 39, -292, 39, 39, -245, 39, -243, 39, 39, 39, 39, 39, 39, 39, 39, -168, 39, 39, 39, 39, 39, 39, 39, -163, -158, 39, 39, -315, 39, 39, 39, -371, -285, 39, 39, 39, -316, -153, 39, -177, -145, 39, -169, 39, -174, 39, 39, -162, 39, 39, 39, 39, -372, 39, 39, 39, 39, 39, 39, -150, 39, -146, -147, -155, -52, 39, 39, -164, 39, 39, 39, -157, 39, 39, 39, 39, 39, 39, -178, 39, 39, -149, -148, 39, -10, -159, -160, -165, 39, -371, 39, -154, 39, 39, 39, -179, 39, -152, -11, 39, 39, 39, 39, 39, -372, 39, 39, -151, -12, -156, 39, -166, -167, 39, -14, -15, 39, 39, 39, 39, 39, -13, -161, -16, -17, -18, -19]), 'LESS': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 188, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 188, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'EXCEPT': ([95, 97, 258, 259, 354, 490, 493, 549, 617, 618], [-57, -58, -51, 356, 356, -52, -164, -165, -166, -167]), 'PLUS': ([0, 1, 6, 7, 9, 10, 13, 14, 16, 18, 23, 24, 28, 29, 30, 31, 33, 35, 37, 39, 42, 43, 44, 47, 49, 52, 55, 57, 61, 63, 64, 65, 67, 72, 73, 74, 82, 83, 85, 86, 89, 90, 95, 96, 97, 101, 102, 103, 104, 105, 106, 107, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 133, 134, 135, 136, 138, 140, 144, 147, 150, 151, 155, 157, 160, 161, 163, 165, 166, 168, 169, 170, 177, 181, 183, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 210, 211, 213, 215, 216, 218, 219, 220, 222, 223, 224, 225, 226, 233, 234, 239, 240, 241, 244, 246, 248, 253, 256, 258, 260, 262, 263, 265, 270, 271, 272, 274, 277, 278, 279, 280, 281, 282, 291, 293, 296, 299, 300, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 364, 365, 367, 368, 370, 371, 374, 375, 377, 378, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [9, 9, -140, 9, 9, -270, 9, -55, -143, -139, 133, -137, -141, 9, -297, 9, 9, -298, -278, 9, -56, 9, -9, -7, 9, -282, 9, 9, 9, -8, -142, 9, -295, -296, 9, 9, 9, 9, -144, 9, -138, -288, -57, 9, -58, -279, 9, 9, 9, -272, 9, -271, 9, 9, -125, -116, -120, -115, 9, -118, -122, -117, -121, -124, -126, -123, -119, 133, -266, 9, 9, -181, -180, 9, -299, 9, 9, 9, -280, 9, 9, -293, 9, 9, 9, -284, 9, 9, -286, 9, -281, -291, -241, 9, -237, -236, -244, -239, -242, -240, -238, -6, 9, 9, -290, 9, 9, -289, 9, 9, 9, 9, -274, -276, -277, -275, -273, 9, 9, -267, -268, -269, 9, 9, 9, 9, 9, -51, 9, -294, 9, 9, 9, -314, 9, 9, 9, -287, -317, -283, 9, 9, 9, 9, 9, 9, -292, 9, 9, -245, 9, -243, 9, 9, 9, 9, 9, 9, 9, 9, -168, 9, 9, 9, 9, 9, 9, 9, -163, -158, 9, 9, -315, 9, 9, 9, -371, -285, 9, 9, 9, -316, -153, 9, -177, -145, 9, -169, 9, -174, 9, 9, -162, 9, 9, 9, 9, -372, 9, 9, 9, 9, 9, 9, -150, 9, -146, -147, -155, -52, 9, 9, -164, 9, 9, 9, -157, 9, 9, 9, 9, 9, 9, -178, 9, 9, -149, -148, 9, -10, -159, -160, -165, 9, -371, 9, -154, 9, 9, 9, -179, 9, -152, -11, 9, 9, 9, 9, 9, -372, 9, 9, -151, -12, -156, 9, -166, -167, 9, -14, -15, 9, 9, 9, 9, 9, -13, -161, -16, -17, -18, -19]), 'PERCENTEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 125, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'IMPORT': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 109, 135, 136, 155, 196, 207, 208, 209, 216, 219, 228, 258, 299, 315, 318, 320, 322, 328, 330, 333, 350, 353, 354, 355, 391, 401, 404, 417, 418, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [11, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 11, -144, -138, -57, 11, -58, -215, -181, -180, 11, -6, 319, 321, -199, 11, 11, -216, -51, 11, 11, 11, 410, -200, -168, 11, -217, 11, 11, -163, -158, -153, -177, -145, -169, -218, -174, 11, 11, -162, 11, 11, 11, -150, -146, -147, -155, -52, 11, 11, -164, 11, -157, 11, -178, 11, 11, -149, -148, -10, -159, -160, -165, -154, -179, 11, -152, -11, 11, 11, 11, -151, -12, -156, 11, -166, -167, -14, -15, 11, -13, -161, -16, -17, -18, -19]), 'EQEQUAL': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 195, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 195, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'RBRACE': ([10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 49, 51, 52, 67, 68, 72, 75, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 158, 160, 162, 164, 166, 170, 181, 183, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 263, 264, 266, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 336, 344, 351, 358, 359, 360, 361, 364, 371, 378, 388, 395, 397, 422, 438, 439, 440, 441, 485, 498, 521, 522, 537, 538, 539, 579, 588, 601, 603, 619, 627], [-270, -250, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, 160, -258, -282, -295, -232, -296, -226, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, 262, -293, -260, -259, -284, -286, -281, -291, -233, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -350, -351, -349, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -253, -249, -257, -225, -355, -352, -345, -315, -285, -316, -398, -235, -229, -220, -356, -347, -346, -344, -382, -348, -394, -393, -385, -384, -383, -386, -353, -395, -387, -354, -396]), 'EXEC': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [13, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 13, -144, -138, -57, 13, -58, -181, -180, 13, -6, 13, 13, -51, 13, 13, 13, -168, 13, 13, 13, -163, -158, -153, -177, -145, -169, -174, 13, 13, -162, 13, 13, 13, -150, -146, -147, -155, -52, 13, 13, -164, 13, -157, 13, -178, 13, 13, -149, -148, -10, -159, -160, -165, -154, -179, 13, -152, -11, 13, 13, 13, -151, -12, -156, 13, -166, -167, -14, -15, 13, -13, -161, -16, -17, -18, -19]), 'SLASH': ([10, 30, 35, 37, 52, 67, 72, 90, 101, 105, 107, 140, 151, 160, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 262, 271, 278, 279, 280, 300, 364, 371, 378], [106, -297, -298, -278, -282, -295, -296, -288, -279, -272, 106, -299, -280, -293, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -294, -314, -287, -317, -283, -292, -315, -285, -316]), 'PASS': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 487, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 580, 581, 582, 583, 585, 586, 602, 604, 606, 607, 608, 609, 611, 613, 615, 616, 617, 618, 628, 629, 631, 632, 633, 634, 638, 641, 642, 643, 644, 648, 649, 650, 651, 653, 654, 661, 663, 664, 666, 667, 668, 670, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 683, 685, 686, 687, 689, 690, 692, 693, 694, 696, 697, 698, 699, 700], [20, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 20, -144, -138, -57, 20, -58, -181, -180, 20, -6, 20, 20, -51, 20, 20, 20, -168, 20, 20, 20, -163, -158, -153, -177, -145, -169, -174, 20, 20, -162, 20, 20, 20, -150, -146, -147, 544, -155, -52, 20, 20, -164, 20, -157, 20, -178, 20, 20, -149, -148, -10, -159, -160, -165, -154, -179, 20, -152, 610, 614, -11, 20, 20, 20, -151, -24, -22, -20, -23, 610, 610, -12, -156, 20, -166, -167, 610, -14, -21, -25, -15, 610, -45, 662, 20, -13, -161, 610, 610, 662, -16, -26, -28, -32, -31, -50, -17, -18, 610, -49, -48, -46, -47, -30, 684, 691, -33, -19, -27, -29, -35, -34, -42, 691, -40, -43, 691, -36, -37, -41, -44, -38, 691, -39]), 'NAME': ([0, 1, 6, 7, 9, 11, 13, 14, 16, 18, 24, 26, 28, 29, 31, 33, 34, 39, 42, 43, 44, 47, 49, 54, 55, 56, 57, 61, 63, 64, 65, 73, 74, 80, 82, 83, 84, 85, 86, 87, 89, 95, 96, 97, 102, 103, 104, 106, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 138, 144, 147, 150, 155, 157, 161, 163, 165, 167, 168, 169, 171, 172, 176, 177, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 208, 209, 211, 213, 216, 218, 219, 220, 227, 229, 230, 233, 234, 242, 244, 246, 248, 251, 253, 256, 258, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 292, 293, 296, 298, 299, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 319, 321, 322, 324, 328, 330, 332, 335, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 365, 367, 368, 370, 374, 375, 377, 379, 383, 385, 387, 391, 394, 401, 404, 408, 410, 411, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 453, 454, 455, 457, 459, 461, 463, 466, 468, 472, 473, 475, 476, 477, 479, 483, 487, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 512, 513, 514, 518, 523, 524, 525, 528, 529, 530, 532, 540, 543, 546, 547, 549, 552, 553, 556, 560, 561, 564, 565, 569, 570, 573, 574, 575, 576, 580, 582, 583, 585, 586, 587, 589, 590, 592, 599, 600, 602, 604, 606, 607, 608, 609, 611, 612, 613, 615, 616, 617, 618, 621, 624, 628, 629, 630, 631, 632, 633, 634, 635, 637, 638, 639, 640, 641, 642, 643, 644, 646, 648, 649, 650, 651, 653, 654, 655, 661, 663, 664, 666, 667, 668, 670, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 683, 685, 686, 687, 689, 690, 692, 693, 694, 696, 697, 698, 699, 700], [67, 67, -140, 67, 67, 109, 67, -55, -143, -139, -137, 137, -141, 67, 67, 67, 148, 67, -56, 67, -9, -7, 67, 173, 67, 179, 67, 67, -8, -142, 67, 67, 67, 202, 67, 67, 109, -144, 67, 109, -138, -57, 67, -58, 67, 67, 67, 67, 67, 67, -125, -116, -120, -115, 67, -118, -122, -117, -121, -124, -126, -123, -119, 67, 67, -181, -180, 67, 67, 67, 67, 67, 67, 67, 67, 67, 279, 67, 67, 173, 289, 294, 67, -241, 67, -237, -236, -244, -239, -242, -240, -238, -6, 67, 67, 109, -199, 67, 67, 67, 67, 67, 67, 331, 333, 109, 67, 67, 340, 67, 67, 67, 173, 67, 67, -51, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 173, 67, 67, 390, 67, 67, 67, -245, 67, -243, 67, 67, 67, 67, 67, 67, 67, 407, 407, -200, 67, -168, 67, 418, 109, 67, 67, 67, 67, 67, 67, -163, -158, 67, 67, 67, 67, 67, -371, 67, 67, 67, 173, 173, 460, 462, -153, 67, -177, -145, 407, 407, 407, 67, -169, 67, -174, 67, 67, -162, 67, 67, 67, 67, -372, 67, 67, 173, 508, 509, 511, 173, 67, 67, 67, 67, -150, 67, -146, -147, 407, 533, 407, 542, -155, -52, 67, 67, -164, 67, 67, 67, -157, 67, 67, 67, 67, 67, 173, 562, 563, 67, 173, -178, 67, 67, -149, -148, 407, 67, -10, -159, -160, -165, 67, -371, 67, 593, 594, 596, -154, 67, 67, 67, -179, 67, -152, 612, -11, 67, 67, 67, 67, 67, -372, 622, 67, 67, -151, -24, -22, -20, -23, 630, 630, 636, -12, -156, 67, -166, -167, 67, 647, 612, -14, 636, -21, -25, -15, 630, 67, 67, -45, 67, 67, 659, 67, -13, -161, 665, 630, 630, 669, -16, -26, -28, 671, -32, -31, -50, -17, -18, 630, -49, -48, -46, -47, -30, 682, 688, -33, -19, -27, -29, -35, -34, -42, 695, -40, -43, 695, -36, -37, -41, -44, -38, 695, -39]), 'INDENT': ([257, 541, 660], [353, 580, 677]), 'MINUSEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 119, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'ENAMLDEF': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 135, 136, 196, 258, 328, 354, 355, 391, 401, 404, 417, 428, 432, 472, 475, 476, 488, 490, 493, 497, 524, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [26, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 26, -144, -138, -57, -58, -181, -180, -6, -51, -168, -163, -158, -153, -177, -145, -169, -174, -162, -150, -146, -147, -155, -52, -164, -157, -178, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'DEDENT': ([6, 14, 16, 18, 24, 28, 42, 64, 85, 89, 95, 97, 135, 136, 258, 328, 354, 355, 391, 401, 404, 417, 428, 430, 431, 432, 472, 475, 476, 488, 489, 490, 493, 497, 524, 529, 530, 546, 547, 549, 565, 574, 576, 602, 604, 606, 607, 608, 609, 611, 615, 617, 618, 631, 632, 634, 638, 644, 648, 649, 653, 654, 661, 663, 664, 668, 670, 672, 673, 674, 675, 678, 680, 681, 683, 685, 686, 687, 689, 690, 692, 693, 694, 696, 697, 698, 699, 700], [-140, -55, -143, -139, -137, -141, -56, -142, -144, -138, -57, -58, -181, -180, -51, -168, -163, -158, -153, -177, -145, -169, -174, -54, 490, -162, -150, -146, -147, -155, -53, -52, -164, -157, -178, -149, -148, -159, -160, -165, -154, -179, -152, -151, -24, -22, -20, -23, 629, 633, -156, -166, -167, -21, -25, 651, -45, -161, 666, 667, -26, -28, -32, -31, -50, 679, -49, -48, -46, -47, -30, -33, -27, -29, -35, -34, -42, 694, -40, -43, 698, -36, -37, -41, -44, -38, 700, -39]), 'RETURN': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [29, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 29, -144, -138, -57, 29, -58, -181, -180, 29, -6, 29, 29, -51, 29, 29, 29, -168, 29, 29, 29, -163, -158, -153, -177, -145, -169, -174, 29, 29, -162, 29, 29, 29, -150, -146, -147, -155, -52, 29, 29, -164, 29, -157, 29, -178, 29, 29, -149, -148, -10, -159, -160, -165, -154, -179, 29, -152, -11, 29, 29, 29, -151, -12, -156, 29, -166, -167, -14, -15, 29, -13, -161, -16, -17, -18, -19]), 'DEL': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [31, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 31, -144, -138, -57, 31, -58, -181, -180, 31, -6, 31, 31, -51, 31, 31, 31, -168, 31, 31, 31, -163, -158, -153, -177, -145, -169, -174, 31, 31, -162, 31, 31, 31, -150, -146, -147, -155, -52, 31, 31, -164, 31, -157, 31, -178, 31, 31, -149, -148, -10, -159, -160, -165, -154, -179, 31, -152, -11, 31, 31, 31, -151, -12, -156, 31, -166, -167, -14, -15, 31, -13, -161, -16, -17, -18, -19]), 'PRINT': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [33, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 33, -144, -138, -57, 33, -58, -181, -180, 33, -6, 33, 33, -51, 33, 33, 33, -168, 33, 33, 33, -163, -158, -153, -177, -145, -169, -174, 33, 33, -162, 33, 33, 33, -150, -146, -147, -155, -52, 33, 33, -164, 33, -157, 33, -178, 33, 33, -149, -148, -10, -159, -160, -165, -154, -179, 33, -152, -11, 33, 33, 33, -151, -12, -156, 33, -166, -167, -14, -15, 33, -13, -161, -16, -17, -18, -19]), 'DOUBLESTAR': ([30, 35, 52, 54, 67, 72, 90, 140, 160, 165, 166, 170, 183, 210, 215, 251, 262, 271, 274, 278, 279, 292, 300, 316, 364, 370, 378, 382, 383, 442, 444, 459, 503, 512, 515, 523, 553, 558, 590, 595, 623], [-297, -298, 168, 176, -295, -296, -288, -299, -293, 272, 277, -286, -291, -290, -289, 176, -294, -314, 367, -287, -317, 387, -292, 272, -315, -371, -316, 454, 457, 501, -372, 514, 556, 561, 564, 176, 589, 592, 621, 624, 646]), 'DEF': ([0, 6, 14, 16, 18, 22, 24, 25, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 130, 135, 136, 196, 258, 317, 328, 353, 354, 355, 391, 401, 404, 417, 428, 430, 432, 470, 472, 475, 476, 488, 490, 493, 497, 524, 526, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [34, -140, -55, -143, -139, -183, -137, 34, -141, -56, -9, -7, -8, -142, 34, -144, -138, -57, -58, -182, -181, -180, -6, -51, -184, -168, 34, -163, -158, -153, -177, -145, -169, -174, 34, -162, -185, -150, -146, -147, -155, -52, -164, -157, -178, -186, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'CIRCUMFLEXEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 118, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'COLON': ([10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 45, 46, 48, 51, 52, 54, 67, 68, 72, 75, 77, 90, 98, 99, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 159, 160, 162, 164, 166, 169, 170, 173, 174, 175, 180, 181, 183, 190, 198, 200, 201, 202, 204, 206, 210, 215, 221, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 252, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 283, 289, 290, 292, 294, 295, 300, 305, 311, 312, 313, 327, 329, 336, 344, 348, 351, 352, 356, 357, 358, 364, 371, 372, 377, 378, 381, 383, 384, 386, 388, 395, 397, 398, 399, 416, 421, 422, 427, 433, 434, 436, 448, 450, 456, 458, 459, 460, 462, 465, 469, 474, 499, 508, 509, 511, 512, 516, 523, 527, 542, 545, 548, 550, 551, 559, 562, 563, 572, 584, 593, 594, 596, 612, 622, 630, 636, 647, 659, 665, 669, 688, 695], [-270, -250, -221, -264, -219, -297, -246, -298, -278, -254, 155, -222, -230, -258, -282, 177, -295, -232, -296, -226, -131, -288, -170, 219, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, 265, -293, -260, -259, -284, 281, -286, -426, -402, 293, 299, -281, -291, -233, -227, -133, -132, 315, -231, 318, -290, -289, 330, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, 350, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, 374, -419, -407, -403, -421, -397, -292, -234, -228, -134, -135, -171, -173, -253, -249, -175, -257, 429, 435, 437, -225, -315, -285, 447, 281, -316, -427, -408, -412, -422, -398, -235, -229, -136, 468, -172, 487, -220, -176, 491, 492, 495, 505, 281, -424, -417, -413, -399, -401, 518, 525, 528, 552, -420, -404, -406, -418, -423, 573, 575, 581, 583, 585, 586, 587, -425, -409, -411, 600, 616, -414, -416, -400, 641, -405, 650, 655, -410, 676, -415, 676, 641, 650]), 'DOUBLECOLON': ([10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 169, 170, 181, 183, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 283, 295, 300, 305, 311, 336, 344, 351, 358, 364, 371, 377, 378, 388, 395, 397, 422, 450, 612, 630, 636, 659, 669, 671, 682, 688, 695], [-270, -250, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, 282, -286, -281, -291, -233, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, 375, -397, -292, -234, -228, -253, -249, -257, -225, -315, -285, 282, -316, -398, -235, -229, -220, 282, 642, 642, 642, 642, 642, 642, 642, 642, 642]), '$end': ([2, 71, 100, 152, 255], [-4, 0, -3, -2, -1]), 'FOR': ([0, 6, 10, 12, 14, 16, 18, 19, 23, 24, 27, 28, 30, 32, 35, 37, 38, 42, 44, 46, 47, 48, 51, 52, 63, 64, 67, 68, 72, 73, 75, 85, 89, 90, 92, 95, 97, 101, 105, 107, 113, 131, 132, 135, 136, 140, 143, 149, 151, 156, 159, 160, 162, 164, 166, 170, 181, 183, 184, 190, 196, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 258, 261, 262, 267, 268, 269, 271, 275, 278, 279, 280, 295, 300, 305, 311, 328, 336, 344, 351, 353, 354, 355, 358, 361, 364, 371, 378, 388, 391, 395, 397, 401, 404, 417, 422, 428, 430, 432, 472, 475, 476, 485, 488, 490, 493, 497, 519, 520, 521, 522, 524, 529, 530, 543, 546, 547, 549, 565, 571, 574, 576, 579, 582, 597, 598, 599, 601, 602, 613, 615, 617, 618, 626, 627, 629, 633, 643, 644, 651, 666, 667, 679], [43, -140, -270, -250, -55, -143, -139, -221, -264, -137, -219, -141, -297, -246, -298, -278, -254, -56, -9, -222, -7, -230, -258, -282, -8, -142, -295, -232, -296, 43, -226, -144, -138, -288, 211, -57, -58, -279, -272, -271, -251, -265, -266, -181, -180, -299, -247, -255, -280, -223, 211, -293, -260, -259, -284, -286, -281, -291, 301, -233, -6, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -51, -224, -294, -262, -263, -261, -314, 211, -287, -317, -283, -397, -292, -234, -228, -168, -253, -249, -257, 43, -163, -158, -225, 211, -315, -285, -316, -398, -153, -235, -229, -177, -145, -169, -220, -174, 43, -162, -150, -146, -147, 211, -155, -52, -164, -157, 301, -388, -394, -393, -178, -149, -148, -10, -159, -160, -165, -154, -389, -179, -152, 211, -11, 301, -391, -390, -395, -151, -12, -156, -166, -167, -392, -396, -14, -15, -13, -161, -16, -17, -18, -19]), 'DOUBLESTAREQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 122, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'ELSE': ([10, 12, 23, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 90, 95, 97, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 243, 247, 254, 258, 261, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 311, 336, 344, 351, 354, 355, 358, 364, 371, 378, 391, 395, 397, 404, 432, 472, 475, 488, 490, 493, 529, 549, 602, 617, 618], [-270, -250, -264, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -288, -57, -58, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, 341, -248, -256, -51, -224, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -228, -253, -249, -257, -163, 433, -225, -315, -285, -316, 465, -235, -229, 474, -162, -150, 474, 545, -52, -164, -149, -165, -151, -166, -167]), 'TRY': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 135, 136, 196, 258, 328, 353, 354, 355, 391, 401, 404, 417, 428, 430, 432, 472, 475, 476, 488, 490, 493, 497, 524, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [45, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 45, -144, -138, -57, -58, -181, -180, -6, -51, -168, 45, -163, -158, -153, -177, -145, -169, -174, 45, -162, -150, -146, -147, -155, -52, -164, -157, -178, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'AND': ([10, 12, 23, 30, 32, 35, 37, 38, 48, 51, 52, 67, 68, 72, 75, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 311, 336, 344, 351, 364, 371, 378, 395, 397], [-270, -250, -264, -297, -246, -298, -278, -254, -230, -258, -282, -295, -232, -296, 199, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, -233, 310, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -228, -253, -249, -257, -315, -285, -316, -235, -229]), 'LBRACE': ([0, 1, 6, 7, 9, 13, 14, 16, 18, 24, 28, 29, 31, 33, 39, 42, 43, 44, 47, 49, 55, 57, 61, 63, 64, 65, 73, 74, 82, 83, 85, 86, 89, 95, 96, 97, 102, 103, 104, 106, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 258, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 365, 367, 368, 370, 374, 375, 377, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [49, 49, -140, 49, 49, 49, -55, -143, -139, -137, -141, 49, 49, 49, 49, -56, 49, -9, -7, 49, 49, 49, 49, -8, -142, 49, 49, 49, 49, 49, -144, 49, -138, -57, 49, -58, 49, 49, 49, 49, 49, 49, -125, -116, -120, -115, 49, -118, -122, -117, -121, -124, -126, -123, -119, 49, 49, -181, -180, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -241, 49, -237, -236, -244, -239, -242, -240, -238, -6, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -51, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -245, 49, -243, 49, 49, 49, 49, 49, 49, 49, 49, -168, 49, 49, 49, 49, 49, 49, 49, -163, -158, 49, 49, 49, 49, 49, -371, 49, 49, 49, -153, 49, -177, -145, 49, -169, 49, -174, 49, 49, -162, 49, 49, 49, 49, -372, 49, 49, 49, 49, 49, 49, -150, 49, -146, -147, -155, -52, 49, 49, -164, 49, 49, 49, -157, 49, 49, 49, 49, 49, 49, -178, 49, 49, -149, -148, 49, -10, -159, -160, -165, 49, -371, 49, -154, 49, 49, 49, -179, 49, -152, -11, 49, 49, 49, 49, 49, -372, 49, 49, -151, -12, -156, 49, -166, -167, 49, -14, -15, 49, 49, 49, 49, 49, -13, -161, -16, -17, -18, -19]), 'AS': ([10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 90, 98, 101, 105, 107, 108, 109, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 228, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 333, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 407, 418, 422, 436], [-270, -250, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -288, 218, -279, -272, -271, 227, -215, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -231, -290, -289, -274, -276, -277, -275, -273, -216, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -217, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, 479, -218, -220, 494]), 'OR': ([10, 12, 23, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 311, 336, 344, 351, 358, 364, 371, 378, 395, 397], [-270, -250, -264, -297, -246, -298, -278, -254, 157, -230, -258, -282, -295, -232, -296, -226, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, 260, -293, -260, -259, -284, -286, -281, -291, -233, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -228, -253, -249, -257, -225, -315, -285, -316, -235, -229]), 'LEFTSHIFT': ([10, 23, 30, 35, 37, 51, 52, 67, 72, 90, 101, 105, 107, 131, 132, 140, 151, 160, 162, 164, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 239, 240, 241, 262, 267, 268, 269, 271, 278, 279, 280, 300, 364, 371, 378, 612, 630, 636, 659, 669, 671, 682, 688, 695], [-270, -264, -297, -298, -278, 161, -282, -295, -296, -288, -279, -272, -271, -265, -266, -299, -280, -293, -260, 161, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -267, -268, -269, -294, -262, -263, -261, -314, -287, -317, -283, -292, -315, -285, -316, 640, 640, 640, 640, 640, 640, 640, 640, 640]), 'CONTINUE': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [53, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 53, -144, -138, -57, 53, -58, -181, -180, 53, -6, 53, 53, -51, 53, 53, 53, -168, 53, 53, 53, -163, -158, -153, -177, -145, -169, -174, 53, 53, -162, 53, 53, 53, -150, -146, -147, -155, -52, 53, 53, -164, 53, -157, 53, -178, 53, 53, -149, -148, -10, -159, -160, -165, -154, -179, 53, -152, -11, 53, 53, 53, -151, -12, -156, 53, -166, -167, -14, -15, 53, -13, -161, -16, -17, -18, -19]), 'NOT': ([0, 1, 6, 7, 10, 12, 14, 16, 18, 23, 24, 28, 29, 30, 32, 33, 35, 37, 38, 42, 44, 47, 49, 51, 52, 55, 57, 63, 64, 65, 67, 68, 72, 73, 74, 82, 83, 85, 86, 89, 90, 95, 96, 97, 101, 105, 107, 113, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 131, 132, 135, 136, 138, 140, 143, 147, 149, 151, 155, 157, 160, 162, 164, 165, 166, 169, 170, 177, 181, 183, 189, 190, 196, 199, 201, 210, 213, 215, 216, 219, 220, 222, 223, 224, 225, 226, 232, 234, 239, 240, 241, 247, 248, 254, 256, 258, 260, 262, 263, 265, 267, 268, 269, 270, 271, 272, 274, 278, 279, 280, 281, 282, 291, 293, 296, 299, 300, 303, 305, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 336, 341, 344, 346, 347, 350, 351, 353, 354, 355, 356, 360, 364, 365, 367, 368, 370, 371, 374, 375, 377, 378, 391, 394, 395, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [83, 83, -140, 83, -270, -250, -55, -143, -139, -264, -137, -141, 83, -297, -246, 83, -298, -278, -254, -56, -9, -7, 83, -258, -282, 83, 83, -8, -142, 83, -295, 192, -296, 83, 83, 83, 83, -144, 83, -138, -288, -57, 83, -58, -279, -272, -271, -251, 83, -125, -116, -120, -115, 83, -118, -122, -117, -121, -124, -126, -123, -119, -265, -266, -181, -180, 83, -299, -247, 83, -255, -280, 83, 83, -293, -260, -259, 83, -284, 83, -286, 83, -281, -291, 306, 192, -6, 83, 83, -290, 83, -289, 83, 83, 83, -274, -276, -277, -275, -273, -252, 83, -267, -268, -269, -248, 83, -256, 83, -51, 83, -294, 83, 83, -262, -263, -261, 83, -314, 83, 83, -287, -317, -283, 83, 83, 83, 83, 83, 83, -292, 83, -234, 83, 83, 83, 83, 83, 83, 83, 83, -168, 83, -253, 83, -249, 83, 83, 83, -257, 83, -163, -158, 83, 83, -315, 83, 83, 83, -371, -285, 83, 83, 83, -316, -153, 83, -235, -177, -145, 83, -169, 83, -174, 83, 83, -162, 83, 83, 83, 83, -372, 83, 83, 83, 83, 83, 83, -150, 83, -146, -147, -155, -52, 83, 83, -164, 83, 83, 83, -157, 83, 83, 83, 83, 83, 83, -178, 83, 83, -149, -148, 83, -10, -159, -160, -165, 83, -371, 83, -154, 83, 83, 83, -179, 83, -152, -11, 83, 83, 83, 83, 83, -372, 83, 83, -151, -12, -156, 83, -166, -167, 83, -14, -15, 83, 83, 83, 83, 83, -13, -161, -16, -17, -18, -19]), 'LAMBDA': ([0, 1, 6, 7, 14, 16, 18, 24, 28, 29, 33, 42, 44, 47, 49, 55, 57, 63, 64, 65, 73, 74, 82, 85, 86, 89, 95, 96, 97, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 135, 136, 147, 155, 165, 169, 177, 196, 201, 213, 216, 219, 220, 234, 248, 256, 258, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 312, 314, 315, 316, 318, 324, 328, 330, 341, 346, 347, 350, 353, 354, 355, 356, 360, 365, 367, 368, 370, 374, 375, 377, 391, 394, 401, 404, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [54, 54, -140, 54, -55, -143, -139, -137, -141, 54, 54, -56, -9, -7, 54, 54, 54, -8, -142, 54, 54, 54, 54, -144, 54, -138, -57, 54, -58, 54, -125, -116, -120, -115, 54, -118, -122, -117, -121, -124, -126, -123, -119, -181, -180, 54, 54, 54, 54, 54, -6, 54, 54, 54, 54, 54, 54, 54, 54, -51, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, -168, 54, 54, 54, 54, 54, 54, -163, -158, 54, 54, 54, 54, 54, -371, 54, 54, 54, -153, 54, -177, -145, -169, 54, -174, 54, 54, -162, 54, 54, 54, 54, -372, 54, 54, 54, 54, 523, 54, -150, 54, -146, -147, -155, -52, 54, 54, -164, 54, 54, 54, -157, 54, 54, 54, 54, 54, 54, -178, 54, 54, -149, -148, 523, -10, -159, -160, -165, 54, -371, 54, -154, 523, 523, 523, -179, 54, -152, -11, 54, 54, 54, 54, 54, -372, 523, 523, -151, -12, -156, 54, -166, -167, 54, -14, -15, 54, 54, 54, 54, 54, -13, -161, -16, -17, -18, -19]), 'NEWLINE': ([0, 3, 4, 5, 6, 10, 12, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 27, 28, 29, 30, 32, 33, 35, 36, 37, 38, 40, 41, 42, 44, 46, 47, 48, 50, 51, 52, 53, 55, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 75, 76, 77, 78, 79, 81, 82, 85, 88, 89, 90, 94, 95, 96, 97, 101, 105, 107, 108, 109, 110, 111, 113, 114, 115, 131, 132, 135, 136, 139, 140, 141, 142, 143, 145, 146, 149, 151, 155, 156, 160, 162, 164, 166, 170, 178, 179, 181, 183, 190, 196, 197, 198, 200, 201, 203, 204, 205, 210, 215, 216, 217, 219, 222, 223, 224, 225, 226, 228, 231, 232, 235, 236, 237, 238, 239, 240, 241, 244, 245, 247, 248, 249, 250, 254, 258, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 297, 299, 300, 305, 311, 312, 313, 315, 318, 326, 328, 330, 331, 333, 334, 336, 337, 338, 339, 342, 343, 344, 345, 346, 350, 351, 354, 355, 358, 364, 371, 378, 388, 389, 390, 391, 395, 396, 397, 398, 401, 402, 404, 405, 406, 407, 409, 412, 413, 417, 418, 419, 422, 423, 424, 425, 426, 428, 429, 432, 435, 437, 464, 468, 471, 472, 475, 476, 477, 478, 481, 482, 486, 487, 488, 490, 491, 492, 493, 495, 497, 517, 518, 524, 525, 528, 529, 530, 531, 532, 533, 534, 536, 543, 544, 546, 547, 549, 565, 574, 575, 576, 577, 578, 581, 582, 583, 585, 586, 602, 605, 610, 613, 614, 615, 616, 617, 618, 629, 633, 636, 641, 642, 643, 644, 650, 651, 652, 656, 657, 658, 659, 662, 666, 667, 671, 676, 679, 684, 691], [8, 95, -188, 97, -140, -270, -250, -55, -111, -143, -72, -139, -221, -85, -64, -264, -137, -219, -141, -93, -297, -246, -73, -298, -68, -278, -254, -71, 153, -56, -9, -222, -7, -230, -67, -258, -282, -92, -95, -88, -69, -87, -65, -8, -142, -89, -295, -232, -91, -90, -296, -5, -226, -86, -131, -70, -187, -99, -100, -144, -66, -138, -288, -60, -57, -59, -58, -279, -272, -271, -203, -215, -189, -211, -251, -106, -114, -265, -266, -181, -180, -94, -299, -84, -338, -247, -75, -74, -255, -280, 257, -223, -293, -260, -259, -284, -286, -96, -102, -281, -291, -233, -6, -109, -227, -133, -132, -101, -231, 317, -290, -289, -61, -62, 257, -274, -276, -277, -275, -273, -216, -212, -252, -113, -112, -128, -127, -267, -268, -269, -339, -340, -248, -79, -80, -76, -256, -51, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -103, 257, -292, -234, -228, -134, -135, 257, 257, -63, -168, 257, -204, -217, -213, -253, -107, -130, -129, -342, -341, -249, -82, -81, 257, -257, -163, -158, -225, -315, -285, -316, -398, -97, -105, -153, -235, -110, -229, -136, -177, 470, -145, -205, -190, -201, -191, -196, -197, -169, -218, -214, -220, -343, -83, -78, -77, -174, 257, -162, 257, 257, -104, 257, 526, -150, -146, -147, -206, -207, -194, -193, -108, 541, -155, -52, 257, 257, -164, 257, -157, -98, 257, -178, 257, 257, -149, -148, -209, -208, -202, -192, -198, -10, 582, -159, -160, -165, -154, -179, 257, -152, -210, -195, 541, -11, 257, 257, 257, -151, 628, 632, -12, 643, -156, 257, -166, -167, -14, -15, 653, 660, 257, -13, -161, 660, -16, 670, 672, 673, 674, 675, 678, -17, -18, 680, 660, -19, 693, 697]), 'RAISE': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [55, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 55, -144, -138, -57, 55, -58, -181, -180, 55, -6, 55, 55, -51, 55, 55, 55, -168, 55, 55, 55, -163, -158, -153, -177, -145, -169, -174, 55, 55, -162, 55, 55, 55, -150, -146, -147, -155, -52, 55, 55, -164, 55, -157, 55, -178, 55, 55, -149, -148, -10, -159, -160, -165, -154, -179, 55, -152, -11, 55, 55, 55, -151, -12, -156, 55, -166, -167, -14, -15, 55, -13, -161, -16, -17, -18, -19]), 'GLOBAL': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [56, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 56, -144, -138, -57, 56, -58, -181, -180, 56, -6, 56, 56, -51, 56, 56, 56, -168, 56, 56, 56, -163, -158, -153, -177, -145, -169, -174, 56, 56, -162, 56, 56, 56, -150, -146, -147, -155, -52, 56, 56, -164, 56, -157, 56, -178, 56, 56, -149, -148, -10, -159, -160, -165, -154, -179, 56, -152, -11, 56, 56, 56, -151, -12, -156, 56, -166, -167, -14, -15, 56, -13, -161, -16, -17, -18, -19]), 'WHILE': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 135, 136, 196, 258, 328, 353, 354, 355, 391, 401, 404, 417, 428, 430, 432, 472, 475, 476, 488, 490, 493, 497, 524, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [57, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 57, -144, -138, -57, -58, -181, -180, -6, -51, -168, 57, -163, -158, -153, -177, -145, -169, -174, 57, -162, -150, -146, -147, -155, -52, -164, -157, -178, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'VBAR': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 336, 344, 351, 364, 371, 378], [-270, -250, -264, -297, 144, -298, -278, -254, -258, -282, -295, -296, -288, -279, -272, -271, -251, -265, -266, -299, 246, -255, -280, -293, -260, -259, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -253, -249, -257, -315, -285, -316]), 'STAR': ([10, 30, 35, 37, 52, 54, 67, 72, 90, 101, 105, 107, 140, 151, 160, 165, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 251, 262, 271, 274, 278, 279, 280, 292, 300, 316, 319, 321, 364, 370, 371, 378, 383, 410, 444, 459, 512, 523], [102, -297, -298, -278, -282, 172, -295, -296, -288, -279, -272, 102, -299, -280, -293, 270, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, 172, -294, -314, 365, -287, -317, -283, 385, -292, 270, 406, 412, -315, -371, -285, -316, 455, 482, -372, 513, 560, 172]), 'DOT': ([30, 35, 52, 67, 72, 87, 90, 109, 140, 160, 166, 170, 183, 208, 209, 210, 215, 228, 262, 271, 278, 279, 300, 322, 333, 364, 378, 418], [-297, -298, 167, -295, -296, 209, -288, 229, -299, -293, 167, -286, -291, 322, -199, -290, -289, 332, -294, -314, -287, -317, -292, -200, -217, -315, -316, -218]), 'LEFTSHIFTEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 129, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'TILDE': ([0, 1, 6, 7, 9, 13, 14, 16, 18, 24, 28, 29, 31, 33, 39, 42, 43, 44, 47, 49, 55, 57, 61, 63, 64, 65, 73, 74, 82, 83, 85, 86, 89, 95, 96, 97, 102, 103, 104, 106, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 258, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 365, 367, 368, 370, 374, 375, 377, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [61, 61, -140, 61, 61, 61, -55, -143, -139, -137, -141, 61, 61, 61, 61, -56, 61, -9, -7, 61, 61, 61, 61, -8, -142, 61, 61, 61, 61, 61, -144, 61, -138, -57, 61, -58, 61, 61, 61, 61, 61, 61, -125, -116, -120, -115, 61, -118, -122, -117, -121, -124, -126, -123, -119, 61, 61, -181, -180, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -241, 61, -237, -236, -244, -239, -242, -240, -238, -6, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -51, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -245, 61, -243, 61, 61, 61, 61, 61, 61, 61, 61, -168, 61, 61, 61, 61, 61, 61, 61, -163, -158, 61, 61, 61, 61, 61, -371, 61, 61, 61, -153, 61, -177, -145, 61, -169, 61, -174, 61, 61, -162, 61, 61, 61, 61, -372, 61, 61, 61, 61, 61, 61, -150, 61, -146, -147, -155, -52, 61, 61, -164, 61, 61, 61, -157, 61, 61, 61, 61, 61, 61, -178, 61, 61, -149, -148, 61, -10, -159, -160, -165, 61, -371, 61, -154, 61, 61, 61, -179, 61, -152, -11, 61, 61, 61, 61, 61, -372, 61, 61, -151, -12, -156, 61, -166, -167, 61, -14, -15, 61, 61, 61, 61, 61, -13, -161, -16, -17, -18, -19]), 'RSQB': ([10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 65, 67, 68, 72, 75, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 182, 183, 184, 190, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 281, 282, 283, 284, 285, 286, 295, 300, 302, 303, 304, 305, 311, 336, 344, 351, 358, 364, 371, 372, 373, 374, 375, 376, 377, 378, 388, 393, 394, 395, 397, 422, 447, 448, 449, 450, 451, 467, 504, 505, 506, 519, 520, 521, 522, 557, 566, 567, 568, 571, 597, 598, 599, 601, 625, 626, 627], [-270, -250, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, 183, -295, -232, -296, -226, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, 300, -291, -301, -233, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -326, -327, -325, -318, 378, -324, -397, -292, -300, -302, -303, -234, -228, -253, -249, -257, -225, -315, -285, -330, -332, -328, -329, -320, -319, -316, -398, -305, -304, -235, -229, -220, -331, -333, -337, -321, -322, -306, -335, -334, -323, -376, -388, -394, -393, -336, -377, -379, -378, -389, -380, -391, -390, -395, -381, -392, -396]), 'PERCENT': ([10, 30, 35, 37, 52, 67, 72, 90, 101, 105, 107, 140, 151, 160, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 262, 271, 278, 279, 280, 300, 364, 371, 378], [103, -297, -298, -278, -282, -295, -296, -288, -279, -272, 103, -299, -280, -293, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -294, -314, -287, -317, -283, -292, -315, -285, -316]), 'DOUBLESLASH': ([10, 30, 35, 37, 52, 67, 72, 90, 101, 105, 107, 140, 151, 160, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 262, 271, 278, 279, 280, 300, 364, 371, 378], [104, -297, -298, -278, -282, -295, -296, -288, -279, -272, 104, -299, -280, -293, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -294, -314, -287, -317, -283, -292, -315, -285, -316]), 'EQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 82, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 173, 174, 181, 183, 190, 198, 200, 201, 203, 204, 210, 215, 222, 223, 224, 225, 226, 232, 237, 238, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 275, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 381, 386, 388, 395, 397, 398, 422, 456, 612, 630, 636, 659, 669, 671, 682, 688, 695], [-270, -250, 121, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -100, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -426, 291, -281, -291, -233, -227, -133, -132, -101, -231, -290, -289, -274, -276, -277, -275, -273, -252, 121, 121, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, 368, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -427, 461, -398, -235, -229, -136, -220, 510, 639, 639, 639, 639, 639, 639, 639, 639, 639]), 'PLUSEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 123, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'ELLIPSIS': ([169, 377, 450], [286, 286, 286]), 'LESSEQUAL': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 194, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 194, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'LSQB': ([0, 1, 6, 7, 9, 13, 14, 16, 18, 24, 28, 29, 30, 31, 33, 35, 39, 42, 43, 44, 47, 49, 52, 55, 57, 61, 63, 64, 65, 67, 72, 73, 74, 82, 83, 85, 86, 89, 90, 95, 96, 97, 102, 103, 104, 106, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 138, 140, 144, 147, 150, 155, 157, 160, 161, 163, 165, 166, 168, 169, 170, 177, 183, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 210, 211, 213, 215, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 258, 260, 262, 263, 265, 270, 271, 272, 274, 277, 278, 279, 281, 282, 291, 293, 296, 299, 300, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 364, 365, 367, 368, 370, 374, 375, 377, 378, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [65, 65, -140, 65, 65, 65, -55, -143, -139, -137, -141, 65, -297, 65, 65, -298, 65, -56, 65, -9, -7, 65, 169, 65, 65, 65, -8, -142, 65, -295, -296, 65, 65, 65, 65, -144, 65, -138, -288, -57, 65, -58, 65, 65, 65, 65, 65, 65, -125, -116, -120, -115, 65, -118, -122, -117, -121, -124, -126, -123, -119, 65, 65, -181, -180, 65, -299, 65, 65, 65, 65, 65, -293, 65, 65, 65, 169, 65, 65, -286, 65, -291, -241, 65, -237, -236, -244, -239, -242, -240, -238, -6, 65, 65, -290, 65, 65, -289, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, -51, 65, -294, 65, 65, 65, -314, 65, 65, 65, -287, -317, 65, 65, 65, 65, 65, 65, -292, 65, 65, -245, 65, -243, 65, 65, 65, 65, 65, 65, 65, 65, -168, 65, 65, 65, 65, 65, 65, 65, -163, -158, 65, 65, -315, 65, 65, 65, -371, 65, 65, 65, -316, -153, 65, -177, -145, 65, -169, 65, -174, 65, 65, -162, 65, 65, 65, 65, -372, 65, 65, 65, 65, 65, 65, -150, 65, -146, -147, -155, -52, 65, 65, -164, 65, 65, 65, -157, 65, 65, 65, 65, 65, 65, -178, 65, 65, -149, -148, 65, -10, -159, -160, -165, 65, -371, 65, -154, 65, 65, 65, -179, 65, -152, -11, 65, 65, 65, 65, 65, -372, 65, 65, -151, -12, -156, 65, -166, -167, 65, -14, -15, 65, 65, 65, 65, 65, -13, -161, -16, -17, -18, -19]), 'GREATER': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 187, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 187, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'VBAREQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 127, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'BREAK': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [69, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 69, -144, -138, -57, 69, -58, -181, -180, 69, -6, 69, 69, -51, 69, 69, 69, -168, 69, 69, 69, -163, -158, -153, -177, -145, -169, -174, 69, 69, -162, 69, 69, 69, -150, -146, -147, -155, -52, 69, 69, -164, 69, -157, 69, -178, 69, 69, -149, -148, -10, -159, -160, -165, -154, -179, 69, -152, -11, 69, 69, 69, -151, -12, -156, 69, -166, -167, -14, -15, 69, -13, -161, -16, -17, -18, -19]), 'STAREQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 117, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'ELIF': ([95, 97, 258, 404, 472, 475, 490, 529, 602], [-57, -58, -51, 473, -150, 473, -52, -149, -151]), 'SLASHEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 126, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'NUMBER': ([0, 1, 6, 7, 9, 13, 14, 16, 18, 24, 28, 29, 31, 33, 39, 42, 43, 44, 47, 49, 55, 57, 61, 63, 64, 65, 73, 74, 82, 83, 85, 86, 89, 95, 96, 97, 102, 103, 104, 106, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 258, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 365, 367, 368, 370, 374, 375, 377, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [72, 72, -140, 72, 72, 72, -55, -143, -139, -137, -141, 72, 72, 72, 72, -56, 72, -9, -7, 72, 72, 72, 72, -8, -142, 72, 72, 72, 72, 72, -144, 72, -138, -57, 72, -58, 72, 72, 72, 72, 72, 72, -125, -116, -120, -115, 72, -118, -122, -117, -121, -124, -126, -123, -119, 72, 72, -181, -180, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -241, 72, -237, -236, -244, -239, -242, -240, -238, -6, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -51, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -245, 72, -243, 72, 72, 72, 72, 72, 72, 72, 72, -168, 72, 72, 72, 72, 72, 72, 72, -163, -158, 72, 72, 72, 72, 72, -371, 72, 72, 72, -153, 72, -177, -145, 72, -169, 72, -174, 72, 72, -162, 72, 72, 72, 72, -372, 72, 72, 72, 72, 72, 72, -150, 72, -146, -147, -155, -52, 72, 72, -164, 72, 72, 72, -157, 72, 72, 72, 72, 72, 72, -178, 72, 72, -149, -148, 72, -10, -159, -160, -165, 72, -371, 72, -154, 72, 72, 72, -179, 72, -152, -11, 72, 72, 72, 72, 72, -372, 72, 72, -151, -12, -156, 72, -166, -167, 72, -14, -15, 72, 72, 72, 72, 72, -13, -161, -16, -17, -18, -19]), 'RPAR': ([1, 10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 82, 90, 91, 92, 93, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 165, 166, 170, 173, 174, 181, 183, 190, 198, 200, 201, 203, 204, 210, 212, 213, 214, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 251, 254, 261, 262, 267, 268, 269, 271, 273, 275, 276, 278, 279, 280, 287, 288, 289, 290, 292, 294, 295, 300, 305, 311, 312, 313, 314, 316, 324, 325, 336, 340, 344, 349, 351, 358, 362, 363, 364, 366, 369, 370, 371, 378, 379, 380, 381, 383, 384, 386, 388, 395, 397, 398, 400, 403, 405, 407, 415, 422, 443, 444, 445, 446, 452, 453, 456, 458, 459, 460, 462, 477, 478, 480, 484, 485, 500, 507, 508, 509, 511, 512, 516, 521, 522, 531, 532, 533, 535, 537, 538, 539, 554, 555, 559, 562, 563, 577, 579, 591, 593, 594, 596, 601, 603, 620, 622, 627, 645, 647, 665], [90, -270, -250, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -100, -288, 210, -308, 215, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, 271, -284, -286, -426, -402, -281, -291, -233, -227, -133, -132, -101, -231, -290, -310, -309, -307, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, 348, -256, -224, -294, -262, -263, -261, -314, 364, -373, -357, -287, -317, -283, -428, 381, -419, -407, -403, -421, -397, -292, -234, -228, -134, -135, 399, 402, -311, -312, -253, 421, -249, 427, -257, -225, -359, -361, -315, -362, -374, -358, -285, -316, -429, -430, -427, -408, -412, -422, -398, -235, -229, -136, 469, 471, -205, -201, -313, -220, -364, -363, -366, -375, -432, -431, -424, -417, -413, -399, -401, -206, -207, 534, 536, -382, -367, -433, -420, -404, -406, -418, -423, -394, -393, -209, -208, -202, 578, -385, -384, -383, -360, -369, -425, -409, -411, -210, -386, -365, -414, -416, -400, -395, -387, -368, -405, -396, -370, -410, -415]), 'ASSERT': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [74, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 74, -144, -138, -57, 74, -58, -181, -180, 74, -6, 74, 74, -51, 74, 74, 74, -168, 74, 74, 74, -163, -158, -153, -177, -145, -169, -174, 74, 74, -162, 74, 74, 74, -150, -146, -147, -155, -52, 74, 74, -164, 74, -157, 74, -178, 74, 74, -149, -148, -10, -159, -160, -165, -154, -179, 74, -152, -11, 74, 74, 74, -151, -12, -156, 74, -166, -167, -14, -15, 74, -13, -161, -16, -17, -18, -19]), 'RIGHTSHIFTEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 128, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'GREATEREQUAL': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 191, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 191, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'SEMI': ([3, 4, 10, 12, 15, 17, 19, 20, 21, 23, 27, 29, 30, 32, 33, 35, 36, 37, 38, 40, 46, 48, 50, 51, 52, 53, 55, 58, 59, 60, 62, 66, 67, 68, 69, 70, 72, 75, 76, 77, 78, 79, 81, 82, 88, 90, 94, 101, 105, 107, 108, 109, 110, 111, 113, 114, 115, 131, 132, 139, 140, 141, 142, 143, 145, 146, 149, 151, 156, 160, 162, 164, 166, 170, 178, 179, 181, 183, 190, 197, 198, 200, 201, 203, 204, 210, 215, 217, 222, 223, 224, 225, 226, 228, 231, 232, 235, 236, 237, 238, 239, 240, 241, 244, 245, 247, 248, 249, 250, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 297, 300, 305, 311, 312, 313, 326, 331, 333, 334, 336, 337, 338, 339, 342, 343, 344, 345, 346, 351, 358, 364, 371, 378, 388, 389, 390, 395, 396, 397, 398, 405, 406, 407, 409, 412, 413, 418, 419, 422, 423, 424, 425, 426, 464, 477, 478, 481, 482, 486, 517, 531, 532, 533, 534, 536, 577, 578], [96, -188, -270, -250, -111, -72, -221, -85, -64, -264, -219, -93, -297, -246, -73, -298, -68, -278, -254, -71, -222, -230, -67, -258, -282, -92, -95, -88, -69, -87, -65, -89, -295, -232, -91, -90, -296, -226, -86, -131, -70, -187, -99, -100, -66, -288, 216, -279, -272, -271, -203, -215, -189, -211, -251, -106, -114, -265, -266, -94, -299, -84, -338, -247, -75, -74, -255, -280, -223, -293, -260, -259, -284, -286, -96, -102, -281, -291, -233, -109, -227, -133, -132, -101, -231, -290, -289, -62, -274, -276, -277, -275, -273, -216, -212, -252, -113, -112, -128, -127, -267, -268, -269, -339, -340, -248, -79, -80, -76, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -103, -292, -234, -228, -134, -135, -63, -204, -217, -213, -253, -107, -130, -129, -342, -341, -249, -82, -81, -257, -225, -315, -285, -316, -398, -97, -105, -235, -110, -229, -136, -205, -190, -201, -191, -196, -197, -218, -214, -220, -343, -83, -78, -77, -104, -206, -207, -194, -193, -108, -98, -209, -208, -202, -192, -198, -210, -195]), 'DOUBLESLASHEQUAL': ([10, 12, 15, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 198, 200, 201, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 261, 262, 267, 268, 269, 271, 278, 279, 280, 295, 300, 305, 311, 312, 313, 336, 344, 351, 358, 364, 371, 378, 388, 395, 397, 398, 422], [-270, -250, 124, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, -131, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -227, -133, -132, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -224, -294, -262, -263, -261, -314, -287, -317, -283, -397, -292, -234, -228, -134, -135, -253, -249, -257, -225, -315, -285, -316, -398, -235, -229, -136, -220]), 'COMMA': ([10, 12, 19, 23, 27, 30, 32, 35, 37, 38, 46, 48, 51, 52, 67, 68, 72, 75, 77, 90, 92, 98, 99, 101, 105, 107, 108, 109, 111, 113, 131, 132, 140, 142, 143, 146, 149, 151, 156, 159, 160, 162, 164, 166, 170, 173, 174, 178, 179, 181, 183, 184, 190, 197, 198, 200, 204, 210, 212, 215, 222, 223, 224, 225, 226, 228, 231, 232, 239, 240, 241, 245, 247, 249, 250, 254, 261, 262, 264, 267, 268, 269, 271, 275, 276, 278, 279, 280, 281, 282, 283, 284, 286, 287, 289, 290, 295, 300, 304, 305, 311, 313, 325, 327, 329, 331, 333, 334, 336, 337, 342, 344, 345, 351, 358, 359, 361, 362, 364, 366, 369, 371, 372, 373, 374, 375, 376, 378, 380, 381, 384, 386, 388, 389, 390, 393, 395, 397, 398, 405, 407, 415, 418, 419, 422, 423, 424, 426, 436, 438, 439, 443, 446, 447, 448, 449, 451, 452, 456, 458, 460, 467, 478, 485, 500, 504, 505, 506, 507, 509, 516, 520, 521, 522, 531, 533, 537, 538, 539, 555, 557, 559, 562, 571, 577, 579, 588, 593, 598, 601, 603, 619, 626, 627], [-270, -250, -221, -264, -219, -297, -246, -298, -278, -254, -222, -230, -258, -282, -295, -232, -296, -226, 201, -288, 213, -170, 220, -279, -272, -271, -203, -215, 230, -251, -265, -266, -299, 244, -247, 248, -255, -280, -223, 263, -293, -260, -259, -284, -286, -426, 292, 296, 298, -281, -291, 303, -233, 309, -227, 312, -231, -290, 324, -289, -274, -276, -277, -275, -273, -216, 335, -252, -267, -268, -269, 343, -248, 346, 347, -256, -224, -294, 360, -262, -263, -261, -314, -373, 370, -287, -317, -283, -326, -327, -325, 377, -324, 379, 382, 383, -397, -292, 394, -234, -228, -135, -312, -171, 220, -204, -217, -213, -253, 420, -342, -249, -82, -257, -225, -355, 440, 442, -315, 444, -374, -285, -330, -332, -328, -329, 450, -316, 453, -427, 459, -422, -398, 463, 298, -305, -235, -229, -136, 477, -201, -313, -218, -214, -220, -343, -83, 248, 496, -356, 498, 503, -375, -331, -333, -337, -322, -432, -424, 512, 515, -306, 532, -382, 553, -335, -334, -323, -433, 558, -423, 570, -394, -393, -209, -202, -385, -384, -383, 590, -336, -425, 595, 599, -210, -386, -353, 623, -391, -395, -387, -354, -392, -396]), 'CLASS': ([0, 6, 14, 16, 18, 22, 24, 25, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 130, 135, 136, 196, 258, 317, 328, 353, 354, 355, 391, 401, 404, 417, 428, 430, 432, 470, 472, 475, 476, 488, 490, 493, 497, 524, 526, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [80, -140, -55, -143, -139, -183, -137, 80, -141, -56, -9, -7, -8, -142, 80, -144, -138, -57, -58, -182, -181, -180, -6, -51, -184, -168, 80, -163, -158, -153, -177, -145, -169, -174, 80, -162, -185, -150, -146, -147, -155, -52, -164, -157, -178, -186, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'RIGHTSHIFT': ([10, 23, 30, 33, 35, 37, 51, 52, 67, 72, 90, 101, 105, 107, 131, 132, 140, 151, 160, 162, 164, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 239, 240, 241, 262, 267, 268, 269, 271, 278, 279, 280, 300, 364, 371, 378, 612, 630, 636, 659, 669, 671, 682, 688, 695], [-270, -264, -297, 147, -298, -278, 163, -282, -295, -296, -288, -279, -272, -271, -265, -266, -299, -280, -293, -260, 163, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -267, -268, -269, -294, -262, -263, -261, -314, -287, -317, -283, -292, -315, -285, -316, 635, 635, 635, 635, 635, 635, 635, 635, 635]), 'STRING': ([0, 1, 6, 7, 9, 13, 14, 16, 18, 24, 28, 29, 30, 31, 33, 35, 39, 42, 43, 44, 47, 49, 55, 57, 61, 63, 64, 65, 73, 74, 82, 83, 85, 86, 89, 95, 96, 97, 102, 103, 104, 106, 112, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 133, 134, 135, 136, 138, 140, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 185, 186, 187, 188, 189, 191, 193, 194, 195, 196, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 258, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 306, 307, 308, 309, 310, 312, 314, 315, 316, 318, 324, 328, 330, 341, 343, 346, 347, 350, 353, 354, 355, 356, 360, 365, 367, 368, 370, 374, 375, 377, 391, 394, 401, 404, 414, 417, 420, 428, 429, 430, 432, 435, 437, 440, 442, 444, 447, 450, 461, 463, 466, 468, 472, 473, 475, 476, 488, 490, 491, 492, 493, 494, 495, 496, 497, 498, 501, 502, 505, 510, 518, 524, 525, 528, 529, 530, 540, 543, 546, 547, 549, 552, 553, 556, 565, 569, 570, 573, 574, 575, 576, 580, 582, 583, 585, 586, 587, 589, 590, 599, 600, 602, 613, 615, 616, 617, 618, 621, 629, 633, 635, 637, 639, 640, 642, 643, 644, 651, 666, 667, 679], [35, 35, -140, 35, 35, 35, -55, -143, -139, -137, -141, 35, 140, 35, 35, -298, 35, -56, 35, -9, -7, 35, 35, 35, 35, -8, -142, 35, 35, 35, 35, 35, -144, 35, -138, -57, 35, -58, 35, 35, 35, 35, 35, 35, -125, -116, -120, -115, 35, -118, -122, -117, -121, -124, -126, -123, -119, 35, 35, -181, -180, 35, -299, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, -241, 35, -237, -236, -244, -239, -242, -240, -238, -6, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, -51, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, -245, 35, -243, 35, 35, 35, 35, 35, 35, 35, 35, -168, 35, 35, 35, 35, 35, 35, 35, -163, -158, 35, 35, 35, 35, 35, -371, 35, 35, 35, -153, 35, -177, -145, 35, -169, 35, -174, 35, 35, -162, 35, 35, 35, 35, -372, 35, 35, 35, 35, 35, 35, -150, 35, -146, -147, -155, -52, 35, 35, -164, 35, 35, 35, -157, 35, 35, 35, 35, 35, 35, -178, 35, 35, -149, -148, 35, -10, -159, -160, -165, 35, -371, 35, -154, 35, 35, 35, -179, 35, -152, 605, -11, 35, 35, 35, 35, 35, -372, 35, 35, -151, -12, -156, 35, -166, -167, 35, -14, -15, 35, 35, 35, 35, 35, -13, -161, -16, -17, -18, -19]), 'COLONEQUAL': ([612, 630, 636, 659, 669, 671, 682, 688, 695], [637, 637, 637, 637, 637, 637, 637, 637, 637]), 'IS': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 131, 132, 140, 143, 149, 151, 160, 162, 164, 166, 170, 181, 183, 190, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 336, 344, 351, 364, 371, 378, 395], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 189, -296, -288, -279, -272, -271, -251, -265, -266, -299, -247, -255, -280, -293, -260, -259, -284, -286, -281, -291, 189, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -253, -249, -257, -315, -285, -316, -235]), 'YIELD': ([0, 1, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [82, 82, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 82, -144, -138, -57, 82, -58, 82, -125, -116, -120, -115, 82, -118, -122, -117, -121, -124, -126, -123, -119, -181, -180, 82, -6, 82, 82, -51, 82, 82, 82, -168, 82, 82, 82, -163, -158, -153, -177, -145, -169, -174, 82, 82, -162, 82, 82, 82, -150, -146, -147, -155, -52, 82, 82, -164, 82, -157, 82, -178, 82, 82, -149, -148, -10, -159, -160, -165, -154, -179, 82, -152, -11, 82, 82, 82, -151, -12, -156, 82, -166, -167, -14, -15, 82, -13, -161, -16, -17, -18, -19]), 'FINALLY': ([95, 97, 258, 259, 354, 355, 432, 490, 493, 546, 549, 617, 618], [-57, -58, -51, 357, -163, 434, -162, -52, -164, 584, -165, -166, -167]), 'AT': ([0, 6, 14, 16, 18, 22, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 97, 135, 136, 196, 258, 317, 328, 353, 354, 355, 391, 401, 404, 417, 428, 430, 432, 470, 472, 475, 476, 488, 490, 493, 497, 524, 526, 529, 530, 543, 546, 547, 549, 565, 574, 576, 582, 602, 613, 615, 617, 618, 629, 633, 643, 644, 651, 666, 667, 679], [84, -140, -55, -143, -139, 84, -137, -141, -56, -9, -7, -8, -142, 84, -144, -138, -57, -58, -181, -180, -6, -51, -184, -168, 84, -163, -158, -153, -177, -145, -169, -174, 84, -162, -185, -150, -146, -147, -155, -52, -164, -157, -178, -186, -149, -148, -10, -159, -160, -165, -154, -179, -152, -11, -151, -12, -156, -166, -167, -14, -15, -13, -161, -16, -17, -18, -19]), 'AMPER': ([10, 23, 30, 35, 37, 38, 51, 52, 67, 72, 90, 101, 105, 107, 131, 132, 140, 149, 151, 160, 162, 164, 166, 170, 181, 183, 210, 215, 222, 223, 224, 225, 226, 239, 240, 241, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 351, 364, 371, 378], [-270, -264, -297, -298, -278, 150, -258, -282, -295, -296, -288, -279, -272, -271, -265, -266, -299, 253, -280, -293, -260, -259, -284, -286, -281, -291, -290, -289, -274, -276, -277, -275, -273, -267, -268, -269, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -257, -315, -285, -316]), 'IN': ([10, 12, 23, 30, 32, 35, 37, 38, 51, 52, 67, 68, 72, 90, 101, 105, 107, 113, 114, 131, 132, 140, 142, 143, 149, 151, 154, 160, 162, 164, 166, 170, 181, 183, 190, 192, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 244, 245, 247, 254, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 323, 336, 342, 343, 344, 351, 364, 371, 378, 392, 395, 423], [-270, -250, -264, -297, -246, -298, -278, -254, -258, -282, -295, 193, -296, -288, -279, -272, -271, -251, 234, -265, -266, -299, -338, -247, -255, -280, 256, -293, -260, -259, -284, -286, -281, -291, 193, 308, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -339, -340, -248, -256, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, 414, -253, -342, -341, -249, -257, -315, -285, -316, 466, -235, -343]), 'IF': ([0, 6, 10, 12, 14, 16, 18, 23, 24, 27, 28, 30, 32, 35, 37, 38, 42, 44, 46, 47, 48, 51, 52, 63, 64, 67, 68, 72, 73, 75, 85, 89, 90, 95, 97, 101, 105, 107, 113, 131, 132, 135, 136, 140, 143, 149, 151, 156, 160, 162, 164, 166, 170, 181, 183, 190, 196, 198, 204, 210, 215, 222, 223, 224, 225, 226, 232, 239, 240, 241, 247, 254, 258, 261, 262, 267, 268, 269, 271, 278, 279, 280, 300, 305, 311, 328, 336, 344, 351, 353, 354, 355, 358, 364, 371, 378, 391, 395, 397, 401, 404, 417, 428, 430, 432, 472, 475, 476, 485, 488, 490, 493, 497, 519, 520, 521, 522, 524, 529, 530, 543, 546, 547, 549, 565, 571, 574, 576, 579, 582, 597, 598, 599, 601, 602, 613, 615, 617, 618, 626, 627, 629, 633, 643, 644, 651, 666, 667, 679], [86, -140, -270, -250, -55, -143, -139, -264, -137, 138, -141, -297, -246, -298, -278, -254, -56, -9, -222, -7, -230, -258, -282, -8, -142, -295, -232, -296, 86, -226, -144, -138, -288, -57, -58, -279, -272, -271, -251, -265, -266, -181, -180, -299, -247, -255, -280, -223, -293, -260, -259, -284, -286, -281, -291, -233, -6, -227, -231, -290, -289, -274, -276, -277, -275, -273, -252, -267, -268, -269, -248, -256, -51, -224, -294, -262, -263, -261, -314, -287, -317, -283, -292, -234, -228, -168, -253, -249, -257, 86, -163, -158, -225, -315, -285, -316, -153, -235, -229, -177, -145, -169, -174, 86, -162, -150, -146, -147, 540, -155, -52, -164, -157, 569, -388, -394, -393, -178, -149, -148, -10, -159, -160, -165, -154, -389, -179, -152, 540, -11, 569, -391, -390, -395, -151, -12, -156, -166, -167, -392, -396, -14, -15, -13, -161, -16, -17, -18, -19]), 'FROM': ([0, 6, 14, 16, 18, 24, 28, 42, 44, 47, 63, 64, 73, 85, 89, 95, 96, 97, 135, 136, 155, 196, 216, 219, 258, 299, 315, 318, 328, 330, 350, 353, 354, 355, 391, 401, 404, 417, 428, 429, 430, 432, 435, 437, 468, 472, 475, 476, 488, 490, 491, 492, 493, 495, 497, 518, 524, 525, 528, 529, 530, 543, 546, 547, 549, 565, 574, 575, 576, 582, 583, 585, 586, 602, 613, 615, 616, 617, 618, 629, 633, 642, 643, 644, 651, 666, 667, 679], [87, -140, -55, -143, -139, -137, -141, -56, -9, -7, -8, -142, 87, -144, -138, -57, 87, -58, -181, -180, 87, -6, 87, 87, -51, 87, 87, 87, -168, 87, 87, 87, -163, -158, -153, -177, -145, -169, -174, 87, 87, -162, 87, 87, 87, -150, -146, -147, -155, -52, 87, 87, -164, 87, -157, 87, -178, 87, 87, -149, -148, -10, -159, -160, -165, -154, -179, 87, -152, -11, 87, 87, 87, -151, -12, -156, 87, -166, -167, -14, -15, 87, -13, -161, -16, -17, -18, -19])}
_lr_action = {}
for (_k, _v) in _lr_action_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_action:
_lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'import_as_name': ([319, 321, 408, 410, 411, 477, 483, 532], [405, 405, 405, 481, 405, 531, 405, 577]), 'try_stmt': ([0, 73, 353, 430], [6, 6, 6, 6]), 'small_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [3, 3, 217, 3, 326, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]), 'augassign': ([15], [116]), 'import_from': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]), 'small_stmt_list': ([0, 73, 155, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]), 'import_as_names': ([319, 321, 408, 411, 483], [409, 413, 480, 484, 535]), 'else_stmt': ([404, 475], [476, 530]), 'comp_op': ([68, 190], [186, 307]), 'parameters': ([148], [252]), 'factor': ([0, 1, 7, 9, 13, 29, 31, 33, 39, 43, 49, 55, 57, 61, 65, 73, 74, 82, 83, 86, 96, 102, 103, 104, 106, 112, 116, 121, 133, 134, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [10, 10, 10, 101, 10, 10, 10, 10, 151, 10, 10, 10, 10, 181, 10, 10, 10, 10, 10, 10, 10, 222, 223, 224, 225, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 280, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 371, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]), 'suite': ([155, 219, 299, 315, 318, 330, 350, 429, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [259, 328, 391, 401, 404, 417, 428, 488, 493, 497, 524, 546, 547, 549, 565, 574, 576, 602, 615, 617, 618, 644, 664]), 'globals_list': ([179, 390], [297, 464]), 'exec_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40]), 'and_expr_list': ([38], [149]), 'or_test_list': ([46], [156]), 'simple_stmt': ([0, 73, 155, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [14, 14, 258, 258, 258, 258, 258, 258, 258, 14, 258, 14, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258]), 'dotted_as_names_list': ([111], [231]), 'subscriptlist': ([169], [285]), 'testlist': ([0, 29, 73, 82, 96, 116, 121, 155, 216, 219, 256, 299, 314, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [15, 139, 15, 203, 15, 236, 238, 15, 15, 15, 352, 15, 400, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]), 'classdef': ([0, 25, 73, 353, 430], [16, 135, 16, 16, 16]), 'assert_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]), 'for_stmt': ([0, 73, 353, 430], [18, 18, 18, 18]), 'lambdef': ([0, 1, 7, 29, 33, 49, 55, 57, 65, 73, 74, 82, 86, 96, 116, 121, 147, 155, 165, 169, 177, 201, 213, 216, 219, 220, 234, 248, 256, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 312, 314, 315, 316, 318, 324, 330, 341, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 552, 556, 575, 583, 585, 586, 587, 589, 616, 621, 635, 637, 639, 640, 642], [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]), 'expr_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]), 'decorator': ([0, 22, 73, 353, 430], [22, 22, 22, 22, 22]), 'arith_op': ([23, 131], [132, 239]), 'term': ([0, 1, 7, 13, 29, 31, 33, 43, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 112, 116, 121, 133, 134, 138, 144, 147, 150, 155, 157, 161, 163, 165, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 240, 241, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]), 'if_stmt': ([0, 73, 353, 430], [24, 24, 24, 24]), 'enaml_module': ([0], [41]), 'or_test': ([0, 1, 7, 29, 33, 49, 55, 57, 65, 73, 74, 82, 86, 96, 116, 121, 138, 147, 155, 165, 169, 177, 201, 213, 216, 219, 220, 234, 248, 256, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 312, 314, 315, 316, 318, 324, 330, 341, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 243, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 485, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 522, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 522, 27, 27, 522, 522, 522, 27, 27, 27, 27, 27, 27, 522, 522, 27, 27, 27, 27, 27, 27, 27]), 'with_stmt': ([0, 73, 353, 430], [28, 28, 28, 28]), 'comp_for': ([92, 159, 275, 361, 485, 579], [214, 266, 369, 441, 538, 538]), 'and_test_list': ([75], [198]), 'identifier': ([580, 628, 677], [611, 649, 692]), 'trailer': ([52, 166], [170, 278]), 'with_item_list': ([99, 329], [221, 416]), 'instantiation_body_items': ([677, 692], [687, 699]), 'expr_list': ([32], [143]), 'varargslist_list': ([174, 384], [290, 458]), 'atom_string_list': ([0, 1, 7, 9, 13, 29, 31, 33, 39, 43, 49, 55, 57, 61, 65, 73, 74, 82, 83, 86, 96, 102, 103, 104, 106, 112, 116, 121, 133, 134, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30]), 'listmaker': ([65], [182]), 'arglist': ([165, 316], [273, 403]), 'exprlist_list': ([142], [245]), 'flow_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36]), 'comp_if': ([485, 579], [537, 537]), 'shift_expr': ([0, 1, 7, 13, 29, 31, 33, 43, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 112, 116, 121, 138, 144, 147, 150, 155, 157, 165, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 254, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 351, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38]), 'import_from_dots': ([87], [208]), 'arglist_list': ([165, 316, 442], [274, 274, 502]), 'list_iter': ([519, 597], [566, 625]), 'dictorsetmaker': ([49], [158]), 'list_for': ([184, 519, 597], [302, 568, 568]), 'subscript': ([169, 377, 450], [284, 451, 506]), 'decorators': ([0, 22, 73, 353, 430], [25, 130, 25, 25, 25]), 'compound_stmt': ([0, 73, 353, 430], [42, 42, 42, 42]), 'dosm_comma_list': ([159], [264]), 'dotted_name': ([11, 84, 87, 208, 230, 335], [108, 205, 207, 320, 108, 108]), 'power': ([0, 1, 7, 9, 13, 29, 31, 33, 39, 43, 49, 55, 57, 61, 65, 73, 74, 82, 83, 86, 96, 102, 103, 104, 106, 112, 116, 121, 133, 134, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37]), 'xor_expr_list': ([12], [113]), 'stmt': ([0, 73, 353, 430], [44, 44, 430, 430]), 'fplist_list': ([287], [380]), 'xor_expr': ([0, 1, 7, 13, 29, 31, 33, 43, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 116, 121, 138, 144, 147, 155, 157, 165, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 234, 244, 246, 248, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 247, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 344, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]), 'term_list': ([10], [107]), 'comparison': ([0, 1, 7, 29, 33, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 116, 121, 138, 147, 155, 157, 165, 169, 177, 199, 201, 213, 216, 219, 220, 234, 248, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48]), 'pass_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50]), 'arith_expr': ([0, 1, 7, 13, 29, 31, 33, 43, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 112, 116, 121, 138, 144, 147, 150, 155, 157, 161, 163, 165, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 267, 268, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51]), 'declaration_body_item': ([580, 609, 611, 628, 634, 648, 649, 668], [607, 631, 607, 607, 631, 631, 607, 631]), 'instantiation_body_item': ([677, 687, 692, 699], [689, 696, 689, 696]), 'atom': ([0, 1, 7, 9, 13, 29, 31, 33, 39, 43, 49, 55, 57, 61, 65, 73, 74, 82, 83, 86, 96, 102, 103, 104, 106, 112, 116, 121, 133, 134, 138, 144, 147, 150, 155, 157, 161, 163, 165, 168, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 253, 256, 260, 263, 265, 270, 272, 274, 277, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52]), 'import_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59]), 'elif_stmts': ([404], [475]), 'comp_iter': ([485, 579], [539, 603]), 'print_list_list': ([146, 426], [249, 249]), 'dotted_as_names': ([11], [110]), 'shift_op': ([51, 164], [162, 269]), 'attribute_declaration': ([580, 609, 611, 628, 634, 648, 649, 668], [606, 606, 606, 606, 606, 606, 606, 606]), 'return_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58]), 'testlist_comp': ([1], [91]), 'old_test': ([466, 540, 569, 570, 573, 599, 600], [520, 579, 597, 598, 601, 626, 627]), 'testlist_safe_list': ([520], [571]), 'instantiation': ([580, 609, 611, 628, 634, 648, 649, 668, 677, 687, 692, 699], [604, 604, 604, 604, 604, 604, 604, 604, 686, 686, 686, 686]), 'enaml_module_item': ([0, 73], [47, 196]), 'continue_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60]), 'testlist_list': ([77], [200]), 'attribute_binding': ([580, 609, 611, 628, 634, 641, 648, 649, 650, 668, 676, 677, 687, 692, 699], [608, 608, 608, 608, 608, 661, 608, 608, 661, 608, 683, 690, 690, 690, 690]), 'dotted_as_name': ([11, 230, 335], [111, 334, 419]), 'equal_list': ([15, 237, 238], [115, 338, 339]), 'print_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62]), 'binding': ([612, 630, 636, 659, 669, 671, 682, 688, 695], [638, 638, 654, 638, 638, 681, 638, 638, 638]), 'term_op': ([10, 107], [105, 226]), 'declaration': ([0, 73], [63, 63]), 'funcdef': ([0, 25, 73, 353, 430], [64, 136, 64, 64, 64]), 'raise_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66]), 'old_lambdef': ([466, 540, 569, 570, 573, 599, 600], [521, 521, 521, 521, 521, 521, 521]), 'exprlist': ([31, 43, 211, 301], [141, 154, 323, 392]), 'expr': ([0, 1, 7, 13, 29, 31, 33, 43, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 116, 121, 138, 147, 155, 157, 165, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 234, 244, 248, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [68, 68, 68, 114, 68, 142, 68, 142, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 305, 68, 68, 142, 68, 68, 327, 68, 68, 68, 342, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 142, 68, 395, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 423, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68]), 'declaration_body': ([487, 581], [543, 613]), 'except_clause': ([259, 354], [354, 354]), 'and_expr': ([0, 1, 7, 13, 29, 31, 33, 43, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 112, 116, 121, 138, 144, 147, 155, 157, 165, 169, 177, 186, 199, 201, 211, 213, 216, 218, 219, 220, 233, 234, 244, 246, 248, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 301, 303, 307, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 343, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 232, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 336, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]), 'instantiation_body': ([641, 650, 676], [663, 663, 685]), 'yield_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70]), 'arith_expr_list': ([23], [131]), 'shift_list': ([51], [164]), 'enaml': ([0], [71]), 'subscriptlist_list': ([284], [376]), 'argument': ([165, 274, 316, 442, 502], [276, 366, 276, 500, 555]), 'enaml_module_body': ([0], [73]), 'fplist': ([171], [288]), 'testlist_safe': ([466], [519]), 'not_test': ([0, 1, 7, 29, 33, 49, 55, 57, 65, 73, 74, 82, 83, 86, 96, 116, 121, 138, 147, 155, 157, 165, 169, 177, 199, 201, 213, 216, 219, 220, 234, 248, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 310, 312, 314, 315, 316, 318, 324, 330, 341, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 204, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 311, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 397, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75]), 'print_list': ([33, 347], [145, 425]), 'break_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76]), 'del_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88]), 'fpdef': ([54, 171, 251, 292, 379, 383, 453, 459, 512, 523], [174, 287, 174, 386, 452, 456, 507, 386, 456, 174]), 'testlist_comp_list': ([92], [212]), 'small_stmt_list_list': ([3], [94]), 'list_if': ([519, 597], [567, 567]), 'test': ([0, 1, 7, 29, 33, 49, 55, 57, 65, 73, 74, 82, 86, 96, 116, 121, 147, 155, 165, 169, 177, 201, 213, 216, 219, 220, 234, 248, 256, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 312, 314, 315, 316, 318, 324, 330, 341, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 552, 556, 575, 583, 585, 586, 587, 589, 616, 621, 635, 637, 639, 640, 642], [77, 92, 98, 77, 146, 159, 178, 180, 184, 77, 197, 77, 206, 77, 77, 77, 250, 77, 275, 283, 295, 313, 325, 77, 77, 98, 337, 345, 77, 359, 361, 362, 363, 275, 372, 373, 384, 388, 389, 77, 393, 396, 398, 77, 77, 275, 77, 415, 77, 422, 424, 426, 77, 77, 436, 438, 443, 445, 446, 448, 449, 283, 467, 486, 77, 77, 77, 77, 499, 275, 504, 283, 516, 517, 77, 527, 77, 77, 548, 77, 550, 551, 554, 275, 557, 559, 77, 77, 77, 588, 591, 77, 77, 77, 77, 619, 620, 77, 645, 652, 656, 657, 658, 77]), 'global_stmt': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78]), 'import_as_names_list': ([405], [478]), 'with_item': ([7, 220], [99, 329]), 'import_name': ([0, 73, 96, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79]), 'yield_expr': ([0, 1, 73, 96, 116, 121, 155, 216, 219, 299, 315, 318, 330, 350, 353, 429, 430, 435, 437, 468, 491, 492, 495, 518, 525, 528, 575, 583, 585, 586, 616, 642], [81, 93, 81, 81, 235, 237, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81]), 'except_clauses': ([259, 354], [355, 432]), 'comparison_list': ([68], [190]), 'and_test': ([0, 1, 7, 29, 33, 49, 55, 57, 65, 73, 74, 82, 86, 96, 116, 121, 138, 147, 155, 157, 165, 169, 177, 201, 213, 216, 219, 220, 234, 248, 256, 260, 263, 265, 270, 272, 274, 281, 282, 291, 293, 296, 299, 303, 309, 312, 314, 315, 316, 318, 324, 330, 341, 346, 347, 350, 353, 356, 360, 365, 367, 368, 374, 375, 377, 394, 414, 420, 429, 430, 435, 437, 440, 442, 447, 450, 461, 463, 466, 468, 473, 491, 492, 494, 495, 496, 498, 501, 502, 505, 510, 518, 525, 528, 540, 552, 556, 569, 570, 573, 575, 583, 585, 586, 587, 589, 599, 600, 616, 621, 635, 637, 639, 640, 642], [46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 261, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 358, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46]), 'declaration_body_items': ([580, 611, 628, 649], [609, 634, 648, 668]), 'decorated': ([0, 73, 353, 430], [85, 85, 85, 85]), 'stmt_list': ([353, 430], [431, 489]), 'elif_stmt': ([404, 475], [472, 529]), 'dosm_colon_list': ([361], [439]), 'power_list': ([52], [166]), 'while_stmt': ([0, 73, 353, 430], [89, 89, 89, 89]), 'varargslist': ([54, 251, 523], [175, 349, 572]), 'dotted_name_list': ([109], [228]), 'listmaker_list': ([184], [304])}
_lr_goto = {}
for (_k, _v) in _lr_goto_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_goto:
_lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [("S' -> enaml", "S'", 1, None, None, None), ('enaml -> enaml_module NEWLINE ENDMARKER', 'enaml', 3, 'p_enaml1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 351), ('enaml -> enaml_module ENDMARKER', 'enaml', 2, 'p_enaml1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 352), ('enaml -> NEWLINE ENDMARKER', 'enaml', 2, 'p_enaml2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 357), ('enaml -> ENDMARKER', 'enaml', 1, 'p_enaml2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 358), ('enaml_module -> enaml_module_body', 'enaml_module', 1, 'p_enaml_module', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 363), ('enaml_module_body -> enaml_module_body enaml_module_item', 'enaml_module_body', 2, 'p_enaml_module_body1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 384), ('enaml_module_body -> enaml_module_item', 'enaml_module_body', 1, 'p_enaml_module_body2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 389), ('enaml_module_item -> declaration', 'enaml_module_item', 1, 'p_enaml_module_item2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 394), ('enaml_module_item -> stmt', 'enaml_module_item', 1, 'p_enaml_module_item1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 399), ('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON declaration_body', 'declaration', 7, 'p_declaration1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 407), ('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON PASS NEWLINE', 'declaration', 8, 'p_declaration2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 414), ('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON NAME COLON declaration_body', 'declaration', 9, 'p_declaration3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 424), ('declaration -> ENAMLDEF NAME LPAR NAME RPAR COLON NAME COLON PASS NEWLINE', 'declaration', 10, 'p_declaration4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 438), ('declaration_body -> NEWLINE INDENT declaration_body_items DEDENT', 'declaration_body', 4, 'p_declaration_body1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 448), ('declaration_body -> NEWLINE INDENT identifier DEDENT', 'declaration_body', 4, 'p_declaration_body2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 455), ('declaration_body -> NEWLINE INDENT identifier declaration_body_items DEDENT', 'declaration_body', 5, 'p_declaration_body3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 460), ('declaration_body -> NEWLINE INDENT STRING NEWLINE declaration_body_items DEDENT', 'declaration_body', 6, 'p_declaration_body4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 467), ('declaration_body -> NEWLINE INDENT STRING NEWLINE identifier DEDENT', 'declaration_body', 6, 'p_declaration_body5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 474), ('declaration_body -> NEWLINE INDENT STRING NEWLINE identifier declaration_body_items DEDENT', 'declaration_body', 7, 'p_declaration_body6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 479), ('declaration_body_items -> declaration_body_item', 'declaration_body_items', 1, 'p_declaration_body_items1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 486), ('declaration_body_items -> declaration_body_items declaration_body_item', 'declaration_body_items', 2, 'p_declaration_body_items2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 491), ('declaration_body_item -> attribute_declaration', 'declaration_body_item', 1, 'p_declaration_body_item1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 496), ('declaration_body_item -> attribute_binding', 'declaration_body_item', 1, 'p_declaration_body_item2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 501), ('declaration_body_item -> instantiation', 'declaration_body_item', 1, 'p_declaration_body_item3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 506), ('declaration_body_item -> PASS NEWLINE', 'declaration_body_item', 2, 'p_declaration_body_item4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 511), ('attribute_declaration -> NAME NAME NEWLINE', 'attribute_declaration', 3, 'p_attribute_declaration1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 519), ('attribute_declaration -> NAME NAME COLON NAME NEWLINE', 'attribute_declaration', 5, 'p_attribute_declaration2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 524), ('attribute_declaration -> NAME NAME binding', 'attribute_declaration', 3, 'p_attribute_declaration3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 529), ('attribute_declaration -> NAME NAME COLON NAME binding', 'attribute_declaration', 5, 'p_attribute_declaration4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 537), ('identifier -> NAME COLON NAME NEWLINE', 'identifier', 4, 'p_identifier', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 548), ('instantiation -> NAME COLON instantiation_body', 'instantiation', 3, 'p_instantiation1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 560), ('instantiation -> NAME COLON attribute_binding', 'instantiation', 3, 'p_instantiation2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 566), ('instantiation -> NAME COLON PASS NEWLINE', 'instantiation', 4, 'p_instantiation3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 571), ('instantiation -> NAME COLON NAME COLON instantiation_body', 'instantiation', 5, 'p_instantiation4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 576), ('instantiation -> NAME COLON NAME COLON attribute_binding', 'instantiation', 5, 'p_instantiation5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 585), ('instantiation -> NAME COLON NAME COLON PASS NEWLINE', 'instantiation', 6, 'p_instantiation6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 590), ('instantiation_body -> NEWLINE INDENT instantiation_body_items DEDENT', 'instantiation_body', 4, 'p_instantiation_body1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 595), ('instantiation_body -> NEWLINE INDENT identifier DEDENT', 'instantiation_body', 4, 'p_instantiation_body2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 602), ('instantiation_body -> NEWLINE INDENT identifier instantiation_body_items DEDENT', 'instantiation_body', 5, 'p_instantiation_body3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 607), ('instantiation_body_items -> instantiation_body_item', 'instantiation_body_items', 1, 'p_instantiation_body_items1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 614), ('instantiation_body_items -> instantiation_body_items instantiation_body_item', 'instantiation_body_items', 2, 'p_instantiation_body_items2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 619), ('instantiation_body_item -> instantiation', 'instantiation_body_item', 1, 'p_instantiation_body_item1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 624), ('instantiation_body_item -> attribute_binding', 'instantiation_body_item', 1, 'p_instantiation_body_item2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 629), ('instantiation_body_item -> PASS NEWLINE', 'instantiation_body_item', 2, 'p_instantiation_body_item3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 634), ('attribute_binding -> NAME binding', 'attribute_binding', 2, 'p_attribute_binding', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 642), ('binding -> EQUAL test NEWLINE', 'binding', 3, 'p_binding1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 647), ('binding -> LEFTSHIFT test NEWLINE', 'binding', 3, 'p_binding1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 648), ('binding -> COLONEQUAL test NEWLINE', 'binding', 3, 'p_binding2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 659), ('binding -> RIGHTSHIFT test NEWLINE', 'binding', 3, 'p_binding2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 660), ('binding -> DOUBLECOLON suite', 'binding', 2, 'p_binding3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 672), ('suite -> simple_stmt', 'suite', 1, 'p_suite1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 690), ('suite -> NEWLINE INDENT stmt_list DEDENT', 'suite', 4, 'p_suite2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 702), ('stmt_list -> stmt stmt_list', 'stmt_list', 2, 'p_stmt_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 707), ('stmt_list -> stmt', 'stmt_list', 1, 'p_stmt_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 719), ('stmt -> simple_stmt', 'stmt', 1, 'p_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 731), ('stmt -> compound_stmt', 'stmt', 1, 'p_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 732), ('simple_stmt -> small_stmt NEWLINE', 'simple_stmt', 2, 'p_simple_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 737), ('simple_stmt -> small_stmt_list NEWLINE', 'simple_stmt', 2, 'p_simple_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 745), ('small_stmt_list -> small_stmt SEMI', 'small_stmt_list', 2, 'p_small_stmt_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 755), ('small_stmt_list -> small_stmt small_stmt_list_list', 'small_stmt_list', 2, 'p_small_stmt_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 760), ('small_stmt_list -> small_stmt small_stmt_list_list SEMI', 'small_stmt_list', 3, 'p_small_stmt_list3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 765), ('small_stmt_list_list -> SEMI small_stmt', 'small_stmt_list_list', 2, 'p_small_stmt_list_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 770), ('small_stmt_list_list -> small_stmt_list_list SEMI small_stmt', 'small_stmt_list_list', 3, 'p_small_stmt_list_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 775), ('small_stmt -> expr_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 780), ('small_stmt -> print_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 781), ('small_stmt -> del_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 782), ('small_stmt -> pass_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 783), ('small_stmt -> flow_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 784), ('small_stmt -> import_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 785), ('small_stmt -> global_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 786), ('small_stmt -> exec_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 787), ('small_stmt -> assert_stmt', 'small_stmt', 1, 'p_small_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 788), ('print_stmt -> PRINT', 'print_stmt', 1, 'p_print_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 793), ('print_stmt -> PRINT test', 'print_stmt', 2, 'p_print_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 802), ('print_stmt -> PRINT print_list', 'print_stmt', 2, 'p_print_stmt3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 811), ('print_stmt -> PRINT RIGHTSHIFT test', 'print_stmt', 3, 'p_print_stmt4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 826), ('print_stmt -> PRINT RIGHTSHIFT test COMMA test', 'print_stmt', 5, 'p_print_stmt5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 835), ('print_stmt -> PRINT RIGHTSHIFT test COMMA print_list', 'print_stmt', 5, 'p_print_stmt6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 844), ('print_list -> test COMMA', 'print_list', 2, 'p_print_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 859), ('print_list -> test print_list_list', 'print_list', 2, 'p_print_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 864), ('print_list -> test print_list_list COMMA', 'print_list', 3, 'p_print_list3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 869), ('print_list_list -> COMMA test', 'print_list_list', 2, 'p_print_list_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 874), ('print_list_list -> print_list_list COMMA test', 'print_list_list', 3, 'p_print_list_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 879), ('del_stmt -> DEL exprlist', 'del_stmt', 2, 'p_del_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 884), ('pass_stmt -> PASS', 'pass_stmt', 1, 'p_pass_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 893), ('flow_stmt -> break_stmt', 'flow_stmt', 1, 'p_flow_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 900), ('flow_stmt -> continue_stmt', 'flow_stmt', 1, 'p_flow_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 901), ('flow_stmt -> return_stmt', 'flow_stmt', 1, 'p_flow_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 902), ('flow_stmt -> raise_stmt', 'flow_stmt', 1, 'p_flow_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 903), ('flow_stmt -> yield_stmt', 'flow_stmt', 1, 'p_flow_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 904), ('break_stmt -> BREAK', 'break_stmt', 1, 'p_break_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 909), ('continue_stmt -> CONTINUE', 'continue_stmt', 1, 'p_continue_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 916), ('return_stmt -> RETURN', 'return_stmt', 1, 'p_return_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 923), ('return_stmt -> RETURN testlist', 'return_stmt', 2, 'p_return_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 930), ('raise_stmt -> RAISE', 'raise_stmt', 1, 'p_raise_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 938), ('raise_stmt -> RAISE test', 'raise_stmt', 2, 'p_raise_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 947), ('raise_stmt -> RAISE test COMMA test', 'raise_stmt', 4, 'p_raise_stmt3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 956), ('raise_stmt -> RAISE test COMMA test COMMA test', 'raise_stmt', 6, 'p_raise_stmt4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 965), ('yield_stmt -> yield_expr', 'yield_stmt', 1, 'p_yield_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 974), ('yield_expr -> YIELD', 'yield_expr', 1, 'p_yield_expr1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 979), ('yield_expr -> YIELD testlist', 'yield_expr', 2, 'p_yield_expr2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 984), ('global_stmt -> GLOBAL NAME', 'global_stmt', 2, 'p_global_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 990), ('global_stmt -> GLOBAL NAME globals_list', 'global_stmt', 3, 'p_global_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 998), ('globals_list -> COMMA NAME globals_list', 'globals_list', 3, 'p_globals_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1006), ('globals_list -> COMMA NAME', 'globals_list', 2, 'p_globals_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1011), ('exec_stmt -> EXEC expr', 'exec_stmt', 2, 'p_exec_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1016), ('exec_stmt -> EXEC expr IN test', 'exec_stmt', 4, 'p_exec_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1025), ('exec_stmt -> EXEC expr IN test COMMA test', 'exec_stmt', 6, 'p_exec_stmt3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1034), ('assert_stmt -> ASSERT test', 'assert_stmt', 2, 'p_assert_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1043), ('assert_stmt -> ASSERT test COMMA test', 'assert_stmt', 4, 'p_assert_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1051), ('expr_stmt -> testlist', 'expr_stmt', 1, 'p_expr_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1059), ('expr_stmt -> testlist augassign testlist', 'expr_stmt', 3, 'p_expr_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1066), ('expr_stmt -> testlist augassign yield_expr', 'expr_stmt', 3, 'p_expr_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1067), ('expr_stmt -> testlist equal_list', 'expr_stmt', 2, 'p_expr_stmt3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1083), ('augassign -> AMPEREQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1099), ('augassign -> CIRCUMFLEXEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1100), ('augassign -> DOUBLESLASHEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1101), ('augassign -> DOUBLESTAREQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1102), ('augassign -> LEFTSHIFTEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1103), ('augassign -> MINUSEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1104), ('augassign -> PERCENTEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1105), ('augassign -> PLUSEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1106), ('augassign -> RIGHTSHIFTEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1107), ('augassign -> SLASHEQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1108), ('augassign -> STAREQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1109), ('augassign -> VBAREQUAL', 'augassign', 1, 'p_augassign', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1110), ('equal_list -> EQUAL testlist', 'equal_list', 2, 'p_equal_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1117), ('equal_list -> EQUAL yield_expr', 'equal_list', 2, 'p_equal_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1118), ('equal_list -> EQUAL testlist equal_list', 'equal_list', 3, 'p_equal_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1123), ('equal_list -> EQUAL yield_expr equal_list', 'equal_list', 3, 'p_equal_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1124), ('testlist -> test', 'testlist', 1, 'p_testlist1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1129), ('testlist -> test COMMA', 'testlist', 2, 'p_testlist2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1134), ('testlist -> test testlist_list', 'testlist', 2, 'p_testlist3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1139), ('testlist -> test testlist_list COMMA', 'testlist', 3, 'p_testlist4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1144), ('testlist_list -> COMMA test', 'testlist_list', 2, 'p_testlist_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1149), ('testlist_list -> testlist_list COMMA test', 'testlist_list', 3, 'p_testlist_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1154), ('compound_stmt -> if_stmt', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1159), ('compound_stmt -> while_stmt', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1160), ('compound_stmt -> for_stmt', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1161), ('compound_stmt -> try_stmt', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1162), ('compound_stmt -> with_stmt', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1163), ('compound_stmt -> funcdef', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1164), ('compound_stmt -> classdef', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1165), ('compound_stmt -> decorated', 'compound_stmt', 1, 'p_compound_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1166), ('if_stmt -> IF test COLON suite', 'if_stmt', 4, 'p_if_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1171), ('if_stmt -> IF test COLON suite elif_stmts', 'if_stmt', 5, 'p_if_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1182), ('if_stmt -> IF test COLON suite else_stmt', 'if_stmt', 5, 'p_if_stmt3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1193), ('if_stmt -> IF test COLON suite elif_stmts else_stmt', 'if_stmt', 6, 'p_if_stmt4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1204), ('elif_stmts -> elif_stmts elif_stmt', 'elif_stmts', 2, 'p_elif_stmts1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1220), ('elif_stmts -> elif_stmt', 'elif_stmts', 1, 'p_elif_stmts2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1227), ('elif_stmt -> ELIF test COLON suite', 'elif_stmt', 4, 'p_elif_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1232), ('else_stmt -> ELSE COLON suite', 'else_stmt', 3, 'p_else_stmt', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1243), ('while_stmt -> WHILE test COLON suite', 'while_stmt', 4, 'p_while_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1248), ('while_stmt -> WHILE test COLON suite ELSE COLON suite', 'while_stmt', 7, 'p_while_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1259), ('for_stmt -> FOR exprlist IN testlist COLON suite', 'for_stmt', 6, 'p_for_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1270), ('for_stmt -> FOR exprlist IN testlist COLON suite ELSE COLON suite', 'for_stmt', 9, 'p_for_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1284), ('try_stmt -> TRY COLON suite FINALLY COLON suite', 'try_stmt', 6, 'p_try_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1298), ('try_stmt -> TRY COLON suite except_clauses', 'try_stmt', 4, 'p_try_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1308), ('try_stmt -> TRY COLON suite except_clauses ELSE COLON suite', 'try_stmt', 7, 'p_try_stmt3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1319), ('try_stmt -> TRY COLON suite except_clauses FINALLY COLON suite', 'try_stmt', 7, 'p_try_stmt4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1330), ('try_stmt -> TRY COLON suite except_clauses ELSE COLON suite FINALLY COLON suite', 'try_stmt', 10, 'p_try_stmt5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1347), ('except_clauses -> except_clause except_clauses', 'except_clauses', 2, 'p_except_clauses1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1364), ('except_clauses -> except_clause', 'except_clauses', 1, 'p_except_clauses2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1369), ('except_clause -> EXCEPT COLON suite', 'except_clause', 3, 'p_except_clause1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1374), ('except_clause -> EXCEPT test COLON suite', 'except_clause', 4, 'p_except_clause2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1385), ('except_clause -> EXCEPT test AS test COLON suite', 'except_clause', 6, 'p_except_clause3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1396), ('except_clause -> EXCEPT test COMMA test COLON suite', 'except_clause', 6, 'p_except_clause3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1397), ('with_stmt -> WITH with_item COLON suite', 'with_stmt', 4, 'p_with_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1410), ('with_stmt -> WITH with_item with_item_list COLON suite', 'with_stmt', 5, 'p_with_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1422), ('with_item -> test', 'with_item', 1, 'p_with_item1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1442), ('with_item -> test AS expr', 'with_item', 3, 'p_with_item2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1447), ('with_item_list -> COMMA with_item with_item_list', 'with_item_list', 3, 'p_with_item_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1454), ('with_item_list -> COMMA with_item', 'with_item_list', 2, 'p_with_item_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1459), ('funcdef -> DEF NAME parameters COLON suite', 'funcdef', 5, 'p_funcdef', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1464), ('parameters -> LPAR RPAR', 'parameters', 2, 'p_parameters1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1476), ('parameters -> LPAR varargslist RPAR', 'parameters', 3, 'p_parameters2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1481), ('classdef -> CLASS NAME COLON suite', 'classdef', 4, 'p_classdef1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1486), ('classdef -> CLASS NAME LPAR RPAR COLON suite', 'classdef', 6, 'p_classdef2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1498), ('classdef -> CLASS NAME LPAR testlist RPAR COLON suite', 'classdef', 7, 'p_classdef3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1510), ('decorated -> decorators funcdef', 'decorated', 2, 'p_decorated', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1525), ('decorated -> decorators classdef', 'decorated', 2, 'p_decorated', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1526), ('decorators -> decorator decorators', 'decorators', 2, 'p_decorators1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1534), ('decorators -> decorator', 'decorators', 1, 'p_decorators2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1539), ('decorator -> AT dotted_name NEWLINE', 'decorator', 3, 'p_decorator1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1544), ('decorator -> AT dotted_name LPAR RPAR NEWLINE', 'decorator', 5, 'p_decorator2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1552), ('decorator -> AT dotted_name LPAR arglist RPAR NEWLINE', 'decorator', 6, 'p_decorator3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1565), ('import_stmt -> import_name', 'import_stmt', 1, 'p_import_stmt1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1579), ('import_stmt -> import_from', 'import_stmt', 1, 'p_import_stmt2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1584), ('import_name -> IMPORT dotted_as_names', 'import_name', 2, 'p_import_name', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1588), ('import_from -> FROM dotted_name IMPORT STAR', 'import_from', 4, 'p_import_from1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1595), ('import_from -> FROM dotted_name IMPORT import_as_names', 'import_from', 4, 'p_import_from2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1603), ('import_from -> FROM dotted_name IMPORT LPAR import_as_names RPAR', 'import_from', 6, 'p_import_from3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1610), ('import_from -> FROM import_from_dots dotted_name IMPORT STAR', 'import_from', 5, 'p_import_from4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1617), ('import_from -> FROM import_from_dots dotted_name IMPORT import_as_name', 'import_from', 5, 'p_import_from5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1625), ('import_from -> FROM import_from_dots dotted_name IMPORT LPAR import_as_names RPAR', 'import_from', 7, 'p_import_from6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1632), ('import_from -> FROM import_from_dots IMPORT STAR', 'import_from', 4, 'p_import_from7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1639), ('import_from -> FROM import_from_dots IMPORT import_as_names', 'import_from', 4, 'p_import_from8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1647), ('import_from -> FROM import_from_dots IMPORT LPAR import_as_names RPAR', 'import_from', 6, 'p_import_from9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1654), ('import_from_dots -> DOT', 'import_from_dots', 1, 'p_import_from_dots1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1661), ('import_from_dots -> import_from_dots DOT', 'import_from_dots', 2, 'p_import_from_dots2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1666), ('import_as_name -> NAME', 'import_as_name', 1, 'p_import_as_name1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1671), ('import_as_name -> NAME AS NAME', 'import_as_name', 3, 'p_import_as_name2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1676), ('dotted_as_name -> dotted_name', 'dotted_as_name', 1, 'p_dotted_as_name1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1681), ('dotted_as_name -> dotted_name AS NAME', 'dotted_as_name', 3, 'p_dotted_as_name2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1687), ('import_as_names -> import_as_name', 'import_as_names', 1, 'p_import_as_names1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1693), ('import_as_names -> import_as_name COMMA', 'import_as_names', 2, 'p_import_as_names2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1698), ('import_as_names -> import_as_name import_as_names_list', 'import_as_names', 2, 'p_import_as_names3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1703), ('import_as_names -> import_as_name import_as_names_list COMMA', 'import_as_names', 3, 'p_import_as_names4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1708), ('import_as_names_list -> COMMA import_as_name', 'import_as_names_list', 2, 'p_import_as_names_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1713), ('import_as_names_list -> import_as_names_list COMMA import_as_name', 'import_as_names_list', 3, 'p_import_as_names_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1718), ('dotted_as_names -> dotted_as_name', 'dotted_as_names', 1, 'p_dotted_as_names1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1723), ('dotted_as_names -> dotted_as_name dotted_as_names_list', 'dotted_as_names', 2, 'p_dotted_as_names2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1728), ('dotted_as_names_list -> COMMA dotted_as_name', 'dotted_as_names_list', 2, 'p_dotted_as_names_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1733), ('dotted_as_names_list -> dotted_as_names_list COMMA dotted_as_name', 'dotted_as_names_list', 3, 'p_dotted_as_names_star_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1738), ('dotted_name -> NAME', 'dotted_name', 1, 'p_dotted_name1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1743), ('dotted_name -> NAME dotted_name_list', 'dotted_name', 2, 'p_dotted_name2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1748), ('dotted_name_list -> DOT NAME', 'dotted_name_list', 2, 'p_dotted_name_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1753), ('dotted_name_list -> dotted_name_list DOT NAME', 'dotted_name_list', 3, 'p_dotted_name_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1758), ('test -> or_test', 'test', 1, 'p_test1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1763), ('test -> or_test IF or_test ELSE test', 'test', 5, 'p_test2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1768), ('test -> lambdef', 'test', 1, 'p_test3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1774), ('or_test -> and_test', 'or_test', 1, 'p_or_test1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1779), ('or_test -> and_test or_test_list', 'or_test', 2, 'p_or_test2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1784), ('or_test_list -> OR and_test', 'or_test_list', 2, 'p_or_test_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1791), ('or_test_list -> or_test_list OR and_test', 'or_test_list', 3, 'p_or_test_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1796), ('and_test -> not_test', 'and_test', 1, 'p_and_test1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1801), ('and_test -> not_test and_test_list', 'and_test', 2, 'p_and_test2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1806), ('and_test_list -> AND not_test', 'and_test_list', 2, 'p_and_test_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1813), ('and_test_list -> and_test_list AND not_test', 'and_test_list', 3, 'p_and_test_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1818), ('not_test -> comparison', 'not_test', 1, 'p_not_test', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1823), ('not_test -> NOT not_test', 'not_test', 2, 'p_not_test2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1828), ('comparison -> expr', 'comparison', 1, 'p_comparison1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1834), ('comparison -> expr comparison_list', 'comparison', 2, 'p_comparison2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1839), ('comparison_list -> comp_op expr', 'comparison_list', 2, 'p_comparison_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1847), ('comparison_list -> comparison_list comp_op expr', 'comparison_list', 3, 'p_comparison_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1852), ('comp_op -> LESS', 'comp_op', 1, 'p_comp_op1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1857), ('comp_op -> GREATER', 'comp_op', 1, 'p_comp_op2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1862), ('comp_op -> EQEQUAL', 'comp_op', 1, 'p_comp_op3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1867), ('comp_op -> GREATEREQUAL', 'comp_op', 1, 'p_comp_op4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1872), ('comp_op -> LESSEQUAL', 'comp_op', 1, 'p_comp_op5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1877), ('comp_op -> NOTEQUAL', 'comp_op', 1, 'p_comp_op6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1882), ('comp_op -> IN', 'comp_op', 1, 'p_comp_op7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1887), ('comp_op -> NOT IN', 'comp_op', 2, 'p_comp_op8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1892), ('comp_op -> IS', 'comp_op', 1, 'p_comp_op9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1897), ('comp_op -> IS NOT', 'comp_op', 2, 'p_comp_op10', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1902), ('expr -> xor_expr', 'expr', 1, 'p_expr1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1907), ('expr -> xor_expr expr_list', 'expr', 2, 'p_expr2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1912), ('expr_list -> VBAR xor_expr', 'expr_list', 2, 'p_expr_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1920), ('expr_list -> expr_list VBAR xor_expr', 'expr_list', 3, 'p_expr_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1925), ('xor_expr -> and_expr', 'xor_expr', 1, 'p_xor_expr1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1930), ('xor_expr -> and_expr xor_expr_list', 'xor_expr', 2, 'p_xor_expr2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1935), ('xor_expr_list -> CIRCUMFLEX and_expr', 'xor_expr_list', 2, 'p_xor_expr_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1943), ('xor_expr_list -> xor_expr_list CIRCUMFLEX and_expr', 'xor_expr_list', 3, 'p_xor_expr_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1948), ('and_expr -> shift_expr', 'and_expr', 1, 'p_and_expr1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1953), ('and_expr -> shift_expr and_expr_list', 'and_expr', 2, 'p_and_expr2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1958), ('and_expr_list -> AMPER shift_expr', 'and_expr_list', 2, 'p_and_expr_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1966), ('and_expr_list -> and_expr_list AMPER shift_expr', 'and_expr_list', 3, 'p_and_expr_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1971), ('shift_expr -> arith_expr', 'shift_expr', 1, 'p_shift_expr1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1976), ('shift_expr -> arith_expr shift_list', 'shift_expr', 2, 'p_shift_expr2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1981), ('shift_list -> shift_op', 'shift_list', 1, 'p_shift_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1989), ('shift_list -> shift_list shift_op', 'shift_list', 2, 'p_shift_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1994), ('shift_op -> LEFTSHIFT arith_expr', 'shift_op', 2, 'p_shift_op1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 1999), ('shift_op -> RIGHTSHIFT arith_expr', 'shift_op', 2, 'p_shift_op2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2004), ('arith_expr -> term', 'arith_expr', 1, 'p_arith_expr1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2009), ('arith_expr -> term arith_expr_list', 'arith_expr', 2, 'p_arith_expr2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2014), ('arith_expr_list -> arith_op', 'arith_expr_list', 1, 'p_arith_expr_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2022), ('arith_expr_list -> arith_expr_list arith_op', 'arith_expr_list', 2, 'p_arith_expr_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2027), ('arith_op -> PLUS term', 'arith_op', 2, 'p_arith_op1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2032), ('arith_op -> MINUS term', 'arith_op', 2, 'p_arith_op2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2038), ('term -> factor', 'term', 1, 'p_term1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2043), ('term -> factor term_list', 'term', 2, 'p_term2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2048), ('term_list -> term_op', 'term_list', 1, 'p_term_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2056), ('term_list -> term_list term_op', 'term_list', 2, 'p_term_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2061), ('term_op -> STAR factor', 'term_op', 2, 'p_term_op1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2066), ('term_op -> SLASH factor', 'term_op', 2, 'p_term_op2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2071), ('term_op -> PERCENT factor', 'term_op', 2, 'p_term_op3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2076), ('term_op -> DOUBLESLASH factor', 'term_op', 2, 'p_term_op4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2081), ('factor -> power', 'factor', 1, 'p_factor1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2086), ('factor -> PLUS factor', 'factor', 2, 'p_factor2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2091), ('factor -> MINUS factor', 'factor', 2, 'p_factor3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2099), ('factor -> TILDE factor', 'factor', 2, 'p_factor4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2107), ('power -> atom', 'power', 1, 'p_power1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2115), ('power -> atom DOUBLESTAR factor', 'power', 3, 'p_power2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2120), ('power -> atom power_list', 'power', 2, 'p_power3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2126), ('power -> atom power_list DOUBLESTAR factor', 'power', 4, 'p_power4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2142), ('power_list -> trailer', 'power_list', 1, 'p_power_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2159), ('power_list -> power_list trailer', 'power_list', 2, 'p_power_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2164), ('atom -> LPAR RPAR', 'atom', 2, 'p_atom1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2169), ('atom -> LPAR yield_expr RPAR', 'atom', 3, 'p_atom2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2174), ('atom -> LPAR testlist_comp RPAR', 'atom', 3, 'p_atom3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2179), ('atom -> LSQB RSQB', 'atom', 2, 'p_atom4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2193), ('atom -> LSQB listmaker RSQB', 'atom', 3, 'p_atom5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2198), ('atom -> LBRACE RBRACE', 'atom', 2, 'p_atom6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2210), ('atom -> LBRACE dictorsetmaker RBRACE', 'atom', 3, 'p_atom7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2215), ('atom -> NAME', 'atom', 1, 'p_atom8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2236), ('atom -> NUMBER', 'atom', 1, 'p_atom9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2241), ('atom -> atom_string_list', 'atom', 1, 'p_atom10', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2247), ('atom_string_list -> STRING', 'atom_string_list', 1, 'p_atom_string_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2253), ('atom_string_list -> atom_string_list STRING', 'atom_string_list', 2, 'p_atom_string_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2258), ('listmaker -> test list_for', 'listmaker', 2, 'p_listmaker1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2268), ('listmaker -> test', 'listmaker', 1, 'p_listmaker2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2273), ('listmaker -> test COMMA', 'listmaker', 2, 'p_listmaker3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2278), ('listmaker -> test listmaker_list', 'listmaker', 2, 'p_listmaker4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2283), ('listmaker -> test listmaker_list COMMA', 'listmaker', 3, 'p_listmaker5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2289), ('listmaker_list -> COMMA test', 'listmaker_list', 2, 'p_listmaker_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2295), ('listmaker_list -> listmaker_list COMMA test', 'listmaker_list', 3, 'p_listmaker_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2300), ('testlist_comp -> test comp_for', 'testlist_comp', 2, 'p_testlist_comp1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2305), ('testlist_comp -> test', 'testlist_comp', 1, 'p_testlist_comp2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2310), ('testlist_comp -> test COMMA', 'testlist_comp', 2, 'p_testlist_comp3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2315), ('testlist_comp -> test testlist_comp_list', 'testlist_comp', 2, 'p_testlist_comp4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2320), ('testlist_comp -> test testlist_comp_list COMMA', 'testlist_comp', 3, 'p_testlist_comp5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2326), ('testlist_comp_list -> COMMA test', 'testlist_comp_list', 2, 'p_testlist_comp_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2332), ('testlist_comp_list -> testlist_comp_list COMMA test', 'testlist_comp_list', 3, 'p_testlist_comp_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2337), ('trailer -> LPAR RPAR', 'trailer', 2, 'p_trailer1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2342), ('trailer -> LPAR arglist RPAR', 'trailer', 3, 'p_trailer2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2347), ('trailer -> LSQB subscriptlist RSQB', 'trailer', 3, 'p_trailer3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2354), ('trailer -> DOT NAME', 'trailer', 2, 'p_trailer4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2359), ('subscriptlist -> subscript', 'subscriptlist', 1, 'p_subscriptlist1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2364), ('subscriptlist -> subscript COMMA', 'subscriptlist', 2, 'p_subscriptlist2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2369), ('subscriptlist -> subscript subscriptlist_list', 'subscriptlist', 2, 'p_subscriptlist3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2375), ('subscriptlist -> subscript subscriptlist_list COMMA', 'subscriptlist', 3, 'p_subscriptlist4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2381), ('subscriptlist_list -> COMMA subscript', 'subscriptlist_list', 2, 'p_subscriptlist_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2387), ('subscriptlist_list -> subscriptlist_list COMMA subscript', 'subscriptlist_list', 3, 'p_subscript_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2392), ('subscript -> ELLIPSIS', 'subscript', 1, 'p_subscript1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2397), ('subscript -> test', 'subscript', 1, 'p_subcript2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2402), ('subscript -> COLON', 'subscript', 1, 'p_subscript3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2407), ('subscript -> DOUBLECOLON', 'subscript', 1, 'p_subscript4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2412), ('subscript -> test COLON', 'subscript', 2, 'p_subscript5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2418), ('subscript -> test DOUBLECOLON', 'subscript', 2, 'p_subscrip6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2423), ('subscript -> COLON test', 'subscript', 2, 'p_subscript7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2429), ('subscript -> COLON test COLON', 'subscript', 3, 'p_subscript8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2434), ('subscript -> DOUBLECOLON test', 'subscript', 2, 'p_subscript9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2440), ('subscript -> test COLON test', 'subscript', 3, 'p_subscript10', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2445), ('subscript -> test COLON test COLON', 'subscript', 4, 'p_subscript11', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2450), ('subscript -> COLON test COLON test', 'subscript', 4, 'p_subscript12', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2456), ('subscript -> test COLON test COLON test', 'subscript', 5, 'p_subscript13', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2461), ('subscript -> test DOUBLECOLON test', 'subscript', 3, 'p_subscript14', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2466), ('exprlist -> expr', 'exprlist', 1, 'p_exprlist1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2471), ('exprlist -> expr COMMA', 'exprlist', 2, 'p_exprlist2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2476), ('exprlist -> expr exprlist_list', 'exprlist', 2, 'p_exprlist3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2483), ('exprlist -> expr exprlist_list COMMA', 'exprlist', 3, 'p_exprlist4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2490), ('exprlist_list -> COMMA expr', 'exprlist_list', 2, 'p_exprlist_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2497), ('exprlist_list -> exprlist_list COMMA expr', 'exprlist_list', 3, 'p_exprlist_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2502), ('dictorsetmaker -> test COLON test comp_for', 'dictorsetmaker', 4, 'p_dictorsetmaker1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2507), ('dictorsetmaker -> test COLON test', 'dictorsetmaker', 3, 'p_dictorsetmaker2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2512), ('dictorsetmaker -> test COLON test COMMA', 'dictorsetmaker', 4, 'p_dictorsetmaker3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2518), ('dictorsetmaker -> test COLON test dosm_colon_list', 'dictorsetmaker', 4, 'p_dictorsetmaker4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2524), ('dictorsetmaker -> test COLON test dosm_colon_list COMMA', 'dictorsetmaker', 5, 'p_dictorsetmaker5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2530), ('dictorsetmaker -> test comp_for', 'dictorsetmaker', 2, 'p_dictorsetmaker6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2536), ('dictorsetmaker -> test COMMA', 'dictorsetmaker', 2, 'p_dictorsetmaker7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2541), ('dictorsetmaker -> test dosm_comma_list', 'dictorsetmaker', 2, 'p_dictorsetmaker8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2547), ('dictorsetmaker -> test dosm_comma_list COMMA', 'dictorsetmaker', 3, 'p_dictorsetmaker9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2553), ('dosm_colon_list -> COMMA test COLON test', 'dosm_colon_list', 4, 'p_dosm_colon_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2559), ('dosm_colon_list -> dosm_colon_list COMMA test COLON test', 'dosm_colon_list', 5, 'p_dosm_colon_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2564), ('dosm_comma_list -> COMMA test', 'dosm_comma_list', 2, 'p_dosm_comma_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2569), ('dosm_comma_list -> dosm_comma_list COMMA test', 'dosm_comma_list', 3, 'p_dosm_comma_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2574), ('arglist -> argument', 'arglist', 1, 'p_arglist1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2579), ('arglist -> argument COMMA', 'arglist', 2, 'p_arglist2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2587), ('arglist -> STAR test', 'arglist', 2, 'p_arglist3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2595), ('arglist -> STAR test COMMA DOUBLESTAR test', 'arglist', 5, 'p_arglist4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2600), ('arglist -> DOUBLESTAR test', 'arglist', 2, 'p_arglist5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2605), ('arglist -> arglist_list argument', 'arglist', 2, 'p_arglist6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2610), ('arglist -> arglist_list argument COMMA', 'arglist', 3, 'p_arglist7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2622), ('arglist -> arglist_list STAR test', 'arglist', 3, 'p_arglist8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2634), ('arglist -> arglist_list STAR test COMMA DOUBLESTAR test', 'arglist', 6, 'p_arglist9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2646), ('arglist -> arglist_list DOUBLESTAR test', 'arglist', 3, 'p_arglist10', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2658), ('arglist -> STAR test COMMA argument', 'arglist', 4, 'p_arglist11', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2670), ('arglist -> STAR test COMMA argument COMMA DOUBLESTAR test', 'arglist', 7, 'p_arglist12', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2681), ('arglist -> STAR test COMMA arglist_list argument', 'arglist', 5, 'p_arglist13', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2692), ('arglist -> STAR test COMMA arglist_list argument COMMA DOUBLESTAR test', 'arglist', 8, 'p_arglist14', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2703), ('arglist_list -> argument COMMA', 'arglist_list', 2, 'p_arglist_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2714), ('arglist_list -> arglist_list argument COMMA', 'arglist_list', 3, 'p_arglist_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2719), ('argument -> test', 'argument', 1, 'p_argument1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2724), ('argument -> test comp_for', 'argument', 2, 'p_argument2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2729), ('argument -> test EQUAL test', 'argument', 3, 'p_argument3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2736), ('list_for -> FOR exprlist IN testlist_safe', 'list_for', 4, 'p_list_for1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2744), ('list_for -> FOR exprlist IN testlist_safe list_iter', 'list_for', 5, 'p_list_for2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2751), ('list_iter -> list_for', 'list_iter', 1, 'p_list_iter1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2765), ('list_iter -> list_if', 'list_iter', 1, 'p_list_iter2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2770), ('list_if -> IF old_test', 'list_if', 2, 'p_list_if1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2775), ('list_if -> IF old_test list_iter', 'list_if', 3, 'p_list_if2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2780), ('comp_for -> FOR exprlist IN or_test', 'comp_for', 4, 'p_comp_for1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2785), ('comp_for -> FOR exprlist IN or_test comp_iter', 'comp_for', 5, 'p_comp_for2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2792), ('comp_iter -> comp_for', 'comp_iter', 1, 'p_comp_iter1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2806), ('comp_iter -> comp_if', 'comp_iter', 1, 'p_comp_iter2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2811), ('comp_if -> IF old_test', 'comp_if', 2, 'p_comp_if1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2816), ('comp_if -> IF old_test comp_iter', 'comp_if', 3, 'p_comp_if2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2821), ('testlist_safe -> old_test', 'testlist_safe', 1, 'p_testlist_safe1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2826), ('testlist_safe -> old_test testlist_safe_list', 'testlist_safe', 2, 'p_testlist_safe2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2831), ('testlist_safe -> old_test testlist_safe_list COMMA', 'testlist_safe', 3, 'p_testlist_safe3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2837), ('testlist_safe_list -> COMMA old_test', 'testlist_safe_list', 2, 'p_testlist_safe_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2843), ('testlist_safe_list -> testlist_safe_list COMMA old_test', 'testlist_safe_list', 3, 'p_testlist_safe_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2848), ('old_test -> or_test', 'old_test', 1, 'p_old_test1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2853), ('old_test -> old_lambdef', 'old_test', 1, 'p_old_test2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2858), ('old_lambdef -> LAMBDA COLON old_test', 'old_lambdef', 3, 'p_old_lambdef1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2863), ('old_lambdef -> LAMBDA varargslist COLON old_test', 'old_lambdef', 4, 'p_old_lambdef2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2870), ('lambdef -> LAMBDA COLON test', 'lambdef', 3, 'p_lambdef1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2877), ('lambdef -> LAMBDA varargslist COLON test', 'lambdef', 4, 'p_lambdef2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2884), ('varargslist -> fpdef COMMA STAR NAME', 'varargslist', 4, 'p_varargslist1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2891), ('varargslist -> fpdef COMMA STAR NAME COMMA DOUBLESTAR NAME', 'varargslist', 7, 'p_varargslist2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2898), ('varargslist -> fpdef COMMA DOUBLESTAR NAME', 'varargslist', 4, 'p_varargslist3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2905), ('varargslist -> fpdef', 'varargslist', 1, 'p_varargslist4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2912), ('varargslist -> fpdef COMMA', 'varargslist', 2, 'p_varargslist5', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2919), ('varargslist -> fpdef varargslist_list COMMA STAR NAME', 'varargslist', 5, 'p_varargslist6', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2926), ('varargslist -> fpdef varargslist_list COMMA STAR NAME COMMA DOUBLESTAR NAME', 'varargslist', 8, 'p_varargslist7', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2935), ('varargslist -> fpdef varargslist_list COMMA DOUBLESTAR NAME', 'varargslist', 5, 'p_varargslist8', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2944), ('varargslist -> fpdef varargslist_list', 'varargslist', 2, 'p_varargslist9', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2953), ('varargslist -> fpdef varargslist_list COMMA', 'varargslist', 3, 'p_varargslist10', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2962), ('varargslist -> fpdef EQUAL test COMMA STAR NAME', 'varargslist', 6, 'p_varargslist11', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2971), ('varargslist -> fpdef EQUAL test COMMA STAR NAME COMMA DOUBLESTAR NAME', 'varargslist', 9, 'p_varargslist12', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2978), ('varargslist -> fpdef EQUAL test COMMA DOUBLESTAR NAME', 'varargslist', 6, 'p_varargslist13', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2985), ('varargslist -> fpdef EQUAL test', 'varargslist', 3, 'p_varargslist14', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2992), ('varargslist -> fpdef EQUAL test COMMA', 'varargslist', 4, 'p_varargslist15', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 2999), ('varargslist -> fpdef EQUAL test varargslist_list COMMA STAR NAME', 'varargslist', 7, 'p_varargslist16', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3006), ('varargslist -> fpdef EQUAL test varargslist_list COMMA STAR NAME COMMA DOUBLESTAR NAME', 'varargslist', 10, 'p_varargslist17', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3019), ('varargslist -> fpdef EQUAL test varargslist_list COMMA DOUBLESTAR NAME', 'varargslist', 7, 'p_varargslist18', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3032), ('varargslist -> fpdef EQUAL test varargslist_list', 'varargslist', 4, 'p_varargslist19', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3045), ('varargslist -> fpdef EQUAL test varargslist_list COMMA', 'varargslist', 5, 'p_varargslist20', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3058), ('varargslist -> STAR NAME', 'varargslist', 2, 'p_varargslist21', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3071), ('varargslist -> STAR NAME COMMA DOUBLESTAR NAME', 'varargslist', 5, 'p_varargslist22', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3077), ('varargslist -> DOUBLESTAR NAME', 'varargslist', 2, 'p_varargslist23', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3083), ('varargslist_list -> COMMA fpdef', 'varargslist_list', 2, 'p_varargslist_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3090), ('varargslist_list -> COMMA fpdef EQUAL test', 'varargslist_list', 4, 'p_varargslist_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3095), ('varargslist_list -> varargslist_list COMMA fpdef', 'varargslist_list', 3, 'p_varargslist_list3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3100), ('varargslist_list -> varargslist_list COMMA fpdef EQUAL test', 'varargslist_list', 5, 'p_varargslist_list4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3111), ('fpdef -> NAME', 'fpdef', 1, 'p_fpdef1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3119), ('fpdef -> LPAR fplist RPAR', 'fpdef', 3, 'p_fpdef2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3124), ('fplist -> fpdef', 'fplist', 1, 'p_fplist1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3131), ('fplist -> fpdef COMMA', 'fplist', 2, 'p_fplist2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3136), ('fplist -> fpdef fplist_list', 'fplist', 2, 'p_fplist3', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3144), ('fplist -> fpdef fplist_list COMMA', 'fplist', 3, 'p_fplist4', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3153), ('fplist_list -> COMMA fpdef', 'fplist_list', 2, 'p_fplist_list1', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3162), ('fplist_list -> fplist_list COMMA fpdef', 'fplist_list', 3, 'p_fplist_list2', 'c:\\Users\\i341972\\Desktop\\git_repos\\enaml\\enaml\\core\\parser.py', 3167)]
|
repeat = int(input())
for x in range(repeat):
div1, div2, uplim = map(int, input().split())
divisor = div1 * div2
for i in range(divisor, uplim + 1, divisor):
print(i)
if x != repeat - 1:
print()
|
repeat = int(input())
for x in range(repeat):
(div1, div2, uplim) = map(int, input().split())
divisor = div1 * div2
for i in range(divisor, uplim + 1, divisor):
print(i)
if x != repeat - 1:
print()
|
DFLT_TOURN_PART_NAME = 'Unknown'
GANG_LEADER = 'Gang Leader'
GROUP_NAMES = {'Thug 1': 'Thugs', 'Robber 1': 'Robbers'}
SURNAME_PARTS = [
'bai',
'cai',
'cao',
'chang',
'chen',
'cheng',
'cui',
'dai',
'deng',
'ding',
'dong',
'du',
'duan',
'fan',
'fang',
'feng',
'fu',
'gao',
'gong',
'gu',
'guo',
'han',
'hao',
'he',
'hou',
'hu',
'huang',
'jen',
'jia',
'jiang',
'jin',
'kang',
'kong',
'lai',
'lei',
'li',
'liang',
'liao',
'lin',
'liu',
'long',
'lu',
'luo',
'ma',
'mao',
'meng',
'mo',
'pan',
'peng',
'qian',
'qiao',
'qin',
'qiu',
'shao',
'shen',
'shi',
'song',
'su',
'sun',
'tan',
'tang',
'tao',
'tian',
'wan',
'wang',
'wei',
'wen',
'wu',
'xia',
'xiang',
'xiao',
'xie',
'xiong',
'xu',
'xue',
'yan',
'yang',
'yao',
'ye',
'yi',
'yin',
'yu',
'yuan',
'zeng',
'zhang',
'zhao',
'zheng',
'zhong',
'zhou',
'zhu',
'zou',
]
FIRST_NAME_PARTS = [
'bai',
'cai',
'cao',
'chang',
'chao',
'chen',
'cheng',
'chu',
'cui',
'dai',
'deng',
'ding',
'dong',
'du',
'duan',
'fan',
'fang',
'fei',
'feng',
'fu',
'gang',
'gao',
'gong',
'gu',
'gui',
'guo',
'han',
'hao',
'he',
'hou',
'hu',
'huang',
'hung',
'jen',
'jia',
'jiang',
'jie',
'jin',
'jing',
'jiu',
'juan',
'jun',
'kang',
'kong',
'lai',
'lan',
'lei',
'li',
'liang',
'liao',
'lin',
'liu',
'long',
'lu',
'luo',
'ma',
'mao',
'meng',
'min',
'ming',
'mo',
'na',
'pan',
'peng',
'ping',
'qian',
'qiang',
'qiao',
'qin',
'qiu',
'shao',
'shen',
'sheng',
'shi',
'shing',
'song',
'su',
'sun',
'tan',
'tang',
'tao',
'tian',
'to',
'wan',
'wang',
'wei',
'wen',
'wu',
'xi',
'xia',
'xiang',
'xiao',
'xie',
'xiong',
'xiu',
'xu',
'xue',
'yan',
'yang',
'yao',
'ye',
'yi',
'yin',
'ying',
'yong',
'yu',
'yuan',
'zeng',
'zhang',
'zhao',
'zheng',
'zhong',
'zhou',
'zhu',
'ziu',
'zou',
]
FOREIGN_COUNTRIES = 'England Germany Japan Korea Thailand Brazil'.split()
FOREIGN_NAMES = {
'England': 'Smith Jones Taylor Brown Williams Wilson \
Johnson Walker Robinson Green Roberts'.split(),
'Germany': 'Muller Schmidt Schneider Fischer Meyer Weber \
Schulz Becker Hoffmann'.split(),
'Japan': 'Satou Suzuki Takahashi Tanaka Watanabe Itou \
Nakamura Yamamoto Kobayashi Saitou'.split(),
'Korea': 'Kwan Kangjun Kai Khong Nham Thang Pohng'.split(),
'Thailand': 'Awut Channarong Khemkhaeng Puenthai Somchair Thuanthong'.split(),
'Brazil': 'Silva Santos Oliveira Souza Rodrigues'.split(),
}
# just for the record, here is the meanings of the Thai names:
# Awut: "weapon"
# Channarong: "experienced warrior"
# Khemkhaeng: "strong"
# Puenthai: "gun"
# Somchair: "manly."
# Thuanthong: Thai name meaning "golden spear."
ROBBER_NICKNAMES = '''Atrocious Bloody Cruel Dragon Evil Fat Greedy Horrible
Immortal Jerky Killer Little Mad Nasty Opium Powerful
Quick Ruthless Strong Tiger Unbeatable Vicious Wild'''.split()
TURTLE_NAMES = 'Leonardo Raphael Michelangelo Donatello'.split()
CAPITAL_LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
dflt_tourn_part_name = 'Unknown'
gang_leader = 'Gang Leader'
group_names = {'Thug 1': 'Thugs', 'Robber 1': 'Robbers'}
surname_parts = ['bai', 'cai', 'cao', 'chang', 'chen', 'cheng', 'cui', 'dai', 'deng', 'ding', 'dong', 'du', 'duan', 'fan', 'fang', 'feng', 'fu', 'gao', 'gong', 'gu', 'guo', 'han', 'hao', 'he', 'hou', 'hu', 'huang', 'jen', 'jia', 'jiang', 'jin', 'kang', 'kong', 'lai', 'lei', 'li', 'liang', 'liao', 'lin', 'liu', 'long', 'lu', 'luo', 'ma', 'mao', 'meng', 'mo', 'pan', 'peng', 'qian', 'qiao', 'qin', 'qiu', 'shao', 'shen', 'shi', 'song', 'su', 'sun', 'tan', 'tang', 'tao', 'tian', 'wan', 'wang', 'wei', 'wen', 'wu', 'xia', 'xiang', 'xiao', 'xie', 'xiong', 'xu', 'xue', 'yan', 'yang', 'yao', 'ye', 'yi', 'yin', 'yu', 'yuan', 'zeng', 'zhang', 'zhao', 'zheng', 'zhong', 'zhou', 'zhu', 'zou']
first_name_parts = ['bai', 'cai', 'cao', 'chang', 'chao', 'chen', 'cheng', 'chu', 'cui', 'dai', 'deng', 'ding', 'dong', 'du', 'duan', 'fan', 'fang', 'fei', 'feng', 'fu', 'gang', 'gao', 'gong', 'gu', 'gui', 'guo', 'han', 'hao', 'he', 'hou', 'hu', 'huang', 'hung', 'jen', 'jia', 'jiang', 'jie', 'jin', 'jing', 'jiu', 'juan', 'jun', 'kang', 'kong', 'lai', 'lan', 'lei', 'li', 'liang', 'liao', 'lin', 'liu', 'long', 'lu', 'luo', 'ma', 'mao', 'meng', 'min', 'ming', 'mo', 'na', 'pan', 'peng', 'ping', 'qian', 'qiang', 'qiao', 'qin', 'qiu', 'shao', 'shen', 'sheng', 'shi', 'shing', 'song', 'su', 'sun', 'tan', 'tang', 'tao', 'tian', 'to', 'wan', 'wang', 'wei', 'wen', 'wu', 'xi', 'xia', 'xiang', 'xiao', 'xie', 'xiong', 'xiu', 'xu', 'xue', 'yan', 'yang', 'yao', 'ye', 'yi', 'yin', 'ying', 'yong', 'yu', 'yuan', 'zeng', 'zhang', 'zhao', 'zheng', 'zhong', 'zhou', 'zhu', 'ziu', 'zou']
foreign_countries = 'England Germany Japan Korea Thailand Brazil'.split()
foreign_names = {'England': 'Smith Jones Taylor Brown Williams Wilson Johnson Walker Robinson Green Roberts'.split(), 'Germany': 'Muller Schmidt Schneider Fischer Meyer Weber Schulz Becker Hoffmann'.split(), 'Japan': 'Satou Suzuki Takahashi Tanaka Watanabe Itou Nakamura Yamamoto Kobayashi Saitou'.split(), 'Korea': 'Kwan Kangjun Kai Khong Nham Thang Pohng'.split(), 'Thailand': 'Awut Channarong Khemkhaeng Puenthai Somchair Thuanthong'.split(), 'Brazil': 'Silva Santos Oliveira Souza Rodrigues'.split()}
robber_nicknames = 'Atrocious Bloody Cruel Dragon Evil Fat Greedy Horrible\n Immortal Jerky Killer Little Mad Nasty Opium Powerful\n Quick Ruthless Strong Tiger Unbeatable Vicious Wild'.split()
turtle_names = 'Leonardo Raphael Michelangelo Donatello'.split()
capital_letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
'''
Created on 07.11.2019
@author: JM
'''
class TMC4361_register_variant:
" ===== TMC4361 register variants ===== "
"..."
|
"""
Created on 07.11.2019
@author: JM
"""
class Tmc4361_Register_Variant:
""" ===== TMC4361 register variants ===== """
'...'
|
load(
"//:repositories.bzl",
"com_github_scalapb_scalapb",
"io_bazel_rules_scala",
"io_grpc_grpc_java",
"scalapb_runtime",
"scalapb_runtime_grpc",
"scalapb_lenses",
"rules_proto_grpc_repos",
)
def scala_repos(**kwargs):
rules_proto_grpc_repos(**kwargs)
io_grpc_grpc_java(**kwargs)
com_github_scalapb_scalapb(**kwargs)
scalapb_runtime(**kwargs)
scalapb_runtime_grpc(**kwargs)
scalapb_lenses(**kwargs)
io_bazel_rules_scala(**kwargs)
|
load('//:repositories.bzl', 'com_github_scalapb_scalapb', 'io_bazel_rules_scala', 'io_grpc_grpc_java', 'scalapb_runtime', 'scalapb_runtime_grpc', 'scalapb_lenses', 'rules_proto_grpc_repos')
def scala_repos(**kwargs):
rules_proto_grpc_repos(**kwargs)
io_grpc_grpc_java(**kwargs)
com_github_scalapb_scalapb(**kwargs)
scalapb_runtime(**kwargs)
scalapb_runtime_grpc(**kwargs)
scalapb_lenses(**kwargs)
io_bazel_rules_scala(**kwargs)
|
def scope_demo():
# definition of variable is local to do_local(), and so doesn't survive
# when method goes out of scope. (This draws a weak warning that the local
# variable is not used.)
def do_local():
spam = "local spam"
# definition of variable is specifically not local to do_nonlocal(), so is defined
# in scope_demo() namespace. Thus value change survives when do_nonlocal() goes
# out of scope.
def do_nonlocal():
nonlocal spam
spam = "nonlocal spam"
# definition of variable is specifically declared to exist outside of scope_demo(), at the
# module level. Thus value is only seen by isolated statement (below) outside the
# scope of scope_demo().
def do_global():
global spam
spam = "global spam"
spam = "test spam"
do_local()
print("After local assignment:", spam)
do_nonlocal()
print("After nonlocal assignment:", spam)
do_global()
print("After global assignment:", spam)
scope_demo()
print("In global scope:", spam)
|
def scope_demo():
def do_local():
spam = 'local spam'
def do_nonlocal():
nonlocal spam
spam = 'nonlocal spam'
def do_global():
global spam
spam = 'global spam'
spam = 'test spam'
do_local()
print('After local assignment:', spam)
do_nonlocal()
print('After nonlocal assignment:', spam)
do_global()
print('After global assignment:', spam)
scope_demo()
print('In global scope:', spam)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.