content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
lower = int(input('Min: '))
upper = int(input('Max: '))
for num in range(lower, upper + 1):
sum = 0
n = len(str(num))
temp = num
while temp > 0:
digit = temp % 10
sum += digit ** n
temp //= 10
if num == sum:
print(num)
|
lower = int(input('Min: '))
upper = int(input('Max: '))
for num in range(lower, upper + 1):
sum = 0
n = len(str(num))
temp = num
while temp > 0:
digit = temp % 10
sum += digit ** n
temp //= 10
if num == sum:
print(num)
|
def linearRegression(px,py):
sumx = 0
sumy = 0
sumxy = 0
sumxx = 0
n = len (px)
for i in range(n):
x = px[i]
y = py[i]
sumx += x
sumy += y
sumxx += x*x
sumxy += x*y
a=(sumxy-sumx*sumy/n)/(sumxx-(sumx**2)/n)
b=(sumy-a*sumx)/n
print(sumx,sumy,sumxy,sumxx)
return a,b
x=[0,1,2,3,4]
y=[4,6,8,10,12]
#print(x.__len__())
a,b=linearRegression(x,y)
print(a,b)
#y=ax+b
|
def linear_regression(px, py):
sumx = 0
sumy = 0
sumxy = 0
sumxx = 0
n = len(px)
for i in range(n):
x = px[i]
y = py[i]
sumx += x
sumy += y
sumxx += x * x
sumxy += x * y
a = (sumxy - sumx * sumy / n) / (sumxx - sumx ** 2 / n)
b = (sumy - a * sumx) / n
print(sumx, sumy, sumxy, sumxx)
return (a, b)
x = [0, 1, 2, 3, 4]
y = [4, 6, 8, 10, 12]
(a, b) = linear_regression(x, y)
print(a, b)
|
expected_output = {
"vrf": {
"default": {
"interfaces": {
"GigabitEthernet1": {
"address_family": {
"ipv4": {
"dr_priority": 1,
"hello_interval": 30,
"neighbor_count": 1,
"version": 2,
"mode": "sparse-mode",
"dr_address": "10.1.2.2",
"address": ["10.1.2.1"],
}
}
},
"GigabitEthernet2": {
"address_family": {
"ipv4": {
"dr_priority": 1,
"hello_interval": 30,
"neighbor_count": 1,
"version": 2,
"mode": "sparse-mode",
"dr_address": "10.1.3.3",
"address": ["10.1.3.1"],
}
}
},
"Loopback0": {
"address_family": {
"ipv4": {
"dr_priority": 1,
"hello_interval": 30,
"neighbor_count": 0,
"version": 2,
"mode": "sparse-mode",
"dr_address": "10.4.1.1",
"address": ["10.4.1.1"],
}
}
},
}
}
}
}
|
expected_output = {'vrf': {'default': {'interfaces': {'GigabitEthernet1': {'address_family': {'ipv4': {'dr_priority': 1, 'hello_interval': 30, 'neighbor_count': 1, 'version': 2, 'mode': 'sparse-mode', 'dr_address': '10.1.2.2', 'address': ['10.1.2.1']}}}, 'GigabitEthernet2': {'address_family': {'ipv4': {'dr_priority': 1, 'hello_interval': 30, 'neighbor_count': 1, 'version': 2, 'mode': 'sparse-mode', 'dr_address': '10.1.3.3', 'address': ['10.1.3.1']}}}, 'Loopback0': {'address_family': {'ipv4': {'dr_priority': 1, 'hello_interval': 30, 'neighbor_count': 0, 'version': 2, 'mode': 'sparse-mode', 'dr_address': '10.4.1.1', 'address': ['10.4.1.1']}}}}}}}
|
# Tic-Tac-Toe 3x3 game
game = [[" ", " ", " "],
[" ", " ", " "],
[" ", " ", " "]]
players = ["X", "O"]
current_player = 0
GAME_CONTINUES = -1
DRAW = -2
# if a player won, number of that player is returned
def print_state(game_state):
for line in range(3):
print(*game_state[line], sep=" | ")
# the abobe is the same as print(game_state[0], game_state[1], game_state[2]).
# sep="something" is used for the separator between individual variables
if line != 2: # don't print on the last line
print("--+---+--")
# move return True if the move is correct and was added to the board and 0
def move():
try:
move = input("Input your move (format L C): ").split(" ") # we get a string a split it up into two numbers3
line, column = int(move[0]), int(move[1])
if not 0 <= line < 3:
print("Error: invalid line")
return False
if not 0 <= column < 3:
print("Error: invalid column")
return False
if game[line][column] != " ":
print("Error: already taken")
return False
game[line][column] = players[current_player]
return True
except:
print("Error: invalid input")
return False
return True
def win(game_state):
# lines
for line in game_state:
if line[0] == line[1] == line[2] and line[0] != " ": # all three are of the same color and not empty
if line[0] == players[0]:
return 0
else:
return 1
# columns
for i in range(3):
if game_state[0][i] == game_state[1][i] == game_state[2][i] and game_state[2][i] != " ":
if game_state[0][i] == players[0]:
return 0
else:
return 1
# diagonals
if game_state[0][0] == game_state[1][1] == game_state[2][2] and game_state[1][1] != " ":
if game_state[0][0] == players[0]:
return 0
else:
return 1
if game_state[2][0] == game_state[1][1] == game_state[0][2] and game_state[1][1] != " ":
if game_state[0][0] == players[0]:
return 0
else:
return 1
# check if draw
isDraw = True
for line in game_state:
for square in line:
if square == " ":
isDraw = False
break
if isDraw:
return DRAW
else:
return GAME_CONTINUES
# game loop
while win(game) == GAME_CONTINUES:
print("Now plays player {}".format(current_player + 1))
while not move(): # we wait until the user inputs a valid move
pass # pass means "do nothing"
print_state(game)
current_player += 1
if current_player > 1:
current_player = 0
result = win(game)
if result == DRAW:
print("DRAW")
else:
print("Player {} ({}) won! Congratulations".format(result + 1, players[result]))
|
game = [[' ', ' ', ' '], [' ', ' ', ' '], [' ', ' ', ' ']]
players = ['X', 'O']
current_player = 0
game_continues = -1
draw = -2
def print_state(game_state):
for line in range(3):
print(*game_state[line], sep=' | ')
if line != 2:
print('--+---+--')
def move():
try:
move = input('Input your move (format L C): ').split(' ')
(line, column) = (int(move[0]), int(move[1]))
if not 0 <= line < 3:
print('Error: invalid line')
return False
if not 0 <= column < 3:
print('Error: invalid column')
return False
if game[line][column] != ' ':
print('Error: already taken')
return False
game[line][column] = players[current_player]
return True
except:
print('Error: invalid input')
return False
return True
def win(game_state):
for line in game_state:
if line[0] == line[1] == line[2] and line[0] != ' ':
if line[0] == players[0]:
return 0
else:
return 1
for i in range(3):
if game_state[0][i] == game_state[1][i] == game_state[2][i] and game_state[2][i] != ' ':
if game_state[0][i] == players[0]:
return 0
else:
return 1
if game_state[0][0] == game_state[1][1] == game_state[2][2] and game_state[1][1] != ' ':
if game_state[0][0] == players[0]:
return 0
else:
return 1
if game_state[2][0] == game_state[1][1] == game_state[0][2] and game_state[1][1] != ' ':
if game_state[0][0] == players[0]:
return 0
else:
return 1
is_draw = True
for line in game_state:
for square in line:
if square == ' ':
is_draw = False
break
if isDraw:
return DRAW
else:
return GAME_CONTINUES
while win(game) == GAME_CONTINUES:
print('Now plays player {}'.format(current_player + 1))
while not move():
pass
print_state(game)
current_player += 1
if current_player > 1:
current_player = 0
result = win(game)
if result == DRAW:
print('DRAW')
else:
print('Player {} ({}) won! Congratulations'.format(result + 1, players[result]))
|
# OpenWeatherMap API Key
weather_api_key = "6006d361789a66a63d965d32098db97e"
# Google API Key
g_key = "AIzaSyBkES3rvs8W2Uv7OJXtnd7i86WvOSEJp7A"
|
weather_api_key = '6006d361789a66a63d965d32098db97e'
g_key = 'AIzaSyBkES3rvs8W2Uv7OJXtnd7i86WvOSEJp7A'
|
_4digit: grove.TM1637 = None
def on_forever():
global _4digit
if input.button_is_pressed(Button.A):
_4digit = grove.create_display(DigitalPin.C16, DigitalPin.C17)
_4digit.bit(1, 3)
basic.pause(1000)
_4digit.bit(2, 3)
basic.pause(1000)
_4digit.bit(3, 3)
basic.pause(1000)
_4digit.bit(1, 2)
basic.pause(1000)
_4digit.bit(2, 2)
basic.pause(1000)
_4digit.bit(3, 2)
basic.pause(1000)
_4digit.clear()
basic.forever(on_forever)
|
_4digit: grove.TM1637 = None
def on_forever():
global _4digit
if input.button_is_pressed(Button.A):
_4digit = grove.create_display(DigitalPin.C16, DigitalPin.C17)
_4digit.bit(1, 3)
basic.pause(1000)
_4digit.bit(2, 3)
basic.pause(1000)
_4digit.bit(3, 3)
basic.pause(1000)
_4digit.bit(1, 2)
basic.pause(1000)
_4digit.bit(2, 2)
basic.pause(1000)
_4digit.bit(3, 2)
basic.pause(1000)
_4digit.clear()
basic.forever(on_forever)
|
class Solution:
def gardenNoAdj(self, N: int, paths: List[List[int]]) -> List[int]:
res = [0] * N
G = [[] for i in range(N)]
for x,y in paths:
G[x-1].append(y-1)
G[y-1].append(x-1)
for i in range(N):
res[i] = ({1,2,3,4} - {res[j] for j in G[i]}).pop()
return res
|
class Solution:
def garden_no_adj(self, N: int, paths: List[List[int]]) -> List[int]:
res = [0] * N
g = [[] for i in range(N)]
for (x, y) in paths:
G[x - 1].append(y - 1)
G[y - 1].append(x - 1)
for i in range(N):
res[i] = ({1, 2, 3, 4} - {res[j] for j in G[i]}).pop()
return res
|
input_file = open("input.txt", "r")
entriesArray = input_file.read().split("\n")
depth_measure_increase = 0
for i in range(1, len(entriesArray), 1):
if int(entriesArray[i]) > int(entriesArray[i-1]):
depth_measure_increase += 1
print(f'{depth_measure_increase=}')
|
input_file = open('input.txt', 'r')
entries_array = input_file.read().split('\n')
depth_measure_increase = 0
for i in range(1, len(entriesArray), 1):
if int(entriesArray[i]) > int(entriesArray[i - 1]):
depth_measure_increase += 1
print(f'depth_measure_increase={depth_measure_increase!r}')
|
class TranslationMissing(Exception):
# Exception for commands which currently do not support translation.
def __init__(self, name):
super().__init__(
f"Translation for the command {name} is not currently supported"
)
|
class Translationmissing(Exception):
def __init__(self, name):
super().__init__(f'Translation for the command {name} is not currently supported')
|
MONGO_SERVER_CONFIG = {
'host': 'mongo',
'port': 27017,
'username': 'spark-user',
'password': 'spark123'
}
MONGO_DATABASE_CONFIG = {
'DATABASE_NAME': 'video_games_analysis',
'COLLECTION_NAME': 'games'
}
|
mongo_server_config = {'host': 'mongo', 'port': 27017, 'username': 'spark-user', 'password': 'spark123'}
mongo_database_config = {'DATABASE_NAME': 'video_games_analysis', 'COLLECTION_NAME': 'games'}
|
# Authors: Hyunwoo Lee <[email protected]>
# Released under the MIT license.
def read_data(file):
with open(file, 'r', encoding="utf-8") as f:
data = [line.split('\t') for line in f.read().splitlines()]
data = data[1:]
return data
|
def read_data(file):
with open(file, 'r', encoding='utf-8') as f:
data = [line.split('\t') for line in f.read().splitlines()]
data = data[1:]
return data
|
class Rounder:
def round(self, n, b):
m = n%b
return n-m if m < (b/2 + b%2) else n+b-m
|
class Rounder:
def round(self, n, b):
m = n % b
return n - m if m < b / 2 + b % 2 else n + b - m
|
# Copyright (c) 2012 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Build the specific library dependencies for validating on x86-64
{
'includes': [
'../../../../../build/common.gypi',
],
'target_defaults': {
'variables': {
'target_base': 'none',
},
'target_conditions': [
['target_base=="ncvalidate_x86_64"', {
'sources': [
'ncvalidate.c',
],
'cflags!': [
'-Wextra',
'-Wswitch-enum',
'-Wsign-compare'
],
'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ],
'xcode_settings': {
'WARNING_CFLAGS!': [
'-Wextra',
'-Wswitch-enum',
'-Wsign-compare'
],
},
}],
['target_base=="ncvalidate_verbose_x86_64"', {
'sources': [
'ncvalidate_verbose.c',
],
'cflags!': [
'-Wextra',
'-Wswitch-enum',
'-Wsign-compare'
],
'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ],
'xcode_settings': {
'WARNING_CFLAGS!': [
'-Wextra',
'-Wswitch-enum',
'-Wsign-compare'
],
},
}],
],
'conditions': [
['OS=="win" and target_arch=="ia32"', {
'variables': {
'win_target': 'x64',
},
}],
],
},
'conditions': [
['OS=="win" or target_arch=="x64"', {
'targets': [
# ----------------------------------------------------------------------
{
'target_name': 'ncvalidate_x86_64',
'type': 'static_library',
'variables': {
'target_base': 'ncvalidate_x86_64',
},
'dependencies': [
'<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_x86_64'
],
'hard_dependency': 1,
},
{
'target_name': 'ncvalidate_verbose_x86_64',
'type': 'static_library',
'variables': {
'target_base': 'ncvalidate_verbose_x86_64',
},
'dependencies': [
'ncvalidate_x86_64',
'<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_verbose_x86_64'
],
'hard_dependency': 1,
},
],
}],
],
}
|
{'includes': ['../../../../../build/common.gypi'], 'target_defaults': {'variables': {'target_base': 'none'}, 'target_conditions': [['target_base=="ncvalidate_x86_64"', {'sources': ['ncvalidate.c'], 'cflags!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare'], 'defines': ['NACL_TRUSTED_BUT_NOT_TCB'], 'xcode_settings': {'WARNING_CFLAGS!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare']}}], ['target_base=="ncvalidate_verbose_x86_64"', {'sources': ['ncvalidate_verbose.c'], 'cflags!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare'], 'defines': ['NACL_TRUSTED_BUT_NOT_TCB'], 'xcode_settings': {'WARNING_CFLAGS!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare']}}]], 'conditions': [['OS=="win" and target_arch=="ia32"', {'variables': {'win_target': 'x64'}}]]}, 'conditions': [['OS=="win" or target_arch=="x64"', {'targets': [{'target_name': 'ncvalidate_x86_64', 'type': 'static_library', 'variables': {'target_base': 'ncvalidate_x86_64'}, 'dependencies': ['<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_x86_64'], 'hard_dependency': 1}, {'target_name': 'ncvalidate_verbose_x86_64', 'type': 'static_library', 'variables': {'target_base': 'ncvalidate_verbose_x86_64'}, 'dependencies': ['ncvalidate_x86_64', '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_verbose_x86_64'], 'hard_dependency': 1}]}]]}
|
n1 = int(input('enter first number: '))
n2 = int(input('enter second number: '))
print('Sum: ', int(n1+n2))
|
n1 = int(input('enter first number: '))
n2 = int(input('enter second number: '))
print('Sum: ', int(n1 + n2))
|
n1=480
n2=10
soma=0
for i in range (0,30,1):
div=n1/n2
if i%2==0:
soma=soma+div
else:
soma=soma-div
n1=n1-5
n2=n2+1
print(soma)
|
n1 = 480
n2 = 10
soma = 0
for i in range(0, 30, 1):
div = n1 / n2
if i % 2 == 0:
soma = soma + div
else:
soma = soma - div
n1 = n1 - 5
n2 = n2 + 1
print(soma)
|
'''
ALU for CPU
'''
bit = 0 | 1
byte = 8 * bit
def adder(num1: bit, num2: bit, carry: bit) -> [bit, bit]:
x = num1 ^ num2
s = x ^ carry
a = x & carry
b = num1 & num2
c = a | b
return [c, s]
def adder4bit(num1: byte, num2: byte) -> [bit, byte]:
carry, a = adder(int(num1[3]), int(num2[3]), 0)
carry, b = adder(int(num1[2]), int(num2[2]), carry)
carry, c = adder(int(num1[1]), int(num2[1]), carry)
carry, d = adder(int(num1[0]), int(num2[0]), carry)
result = str(d) + str(c) + str(b) + str(a)
return [carry, result]
def adder8bit(num1: byte, num2: byte) -> byte:
carry, a = adder(int(num1[7]), int(num2[7]), 0)
carry, b = adder(int(num1[6]), int(num2[6]), carry)
carry, c = adder(int(num1[5]), int(num2[5]), carry)
carry, d = adder(int(num1[4]), int(num2[4]), carry)
carry, e = adder(int(num1[3]), int(num2[3]), carry)
carry, f = adder(int(num1[2]), int(num2[2]), carry)
carry, g = adder(int(num1[1]), int(num2[1]), carry)
carry, h = adder(int(num1[0]), int(num2[0]), carry)
result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a)
return result
def subtracter(num1: bit, num2: bit, borrow: bit) -> [bit, bit]:
x = num1 ^ num2
n = 1 - num2
a = num1 & n
xn = 1 - x
a3 = borrow & xn
a2 = a & a3
dif = x & borrow
return [a2, dif]
def subtract8bit(num1: byte, num2: byte) -> byte:
borrow, a = subtracter(num1[7], num2[7], 0)
borrow, b = subtracter(num1[6], num2[6], borrow)
borrow, c = subtracter(num1[5], num2[5], borrow)
borrow, d = subtracter(num1[4], num2[4], borrow)
borrow, e = subtracter(num1[3], num2[3], borrow)
borrow, f = subtracter(num1[2], num2[2], borrow)
borrow, g = subtracter(num1[1], num2[1], borrow)
borrow, h = subtracter(num1[0], num2[0], borrow)
result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a)
return result
def increment(num: byte) -> byte:
return bin(sum([int(num, 2), int('1', 2)]))[2:]
def bitwiseOp(op: str, num1: byte, num2: byte = None) -> byte:
if op == 'AND':
result = int(num1, 2) & int(num2, 2)
elif op == 'OR':
result = int(num1, 2) | int(num2, 2)
elif op == 'XOR':
result = int(num1, 2) ^ int(num2, 2)
elif op == 'NOT':
result = ~int(num1, 2)
elif op == 'LSHFT':
result = int(num1, 2) << int(num2, 2)
elif op == 'RSHFT':
result = int(num1, 2) >> int(num2, 2)
result = str(result)
while len(result) < 8:
result = '0' + result
return result
def mult4bitUC(num1: byte, num2: byte) -> byte:
a00 = int(num1[0]) & int(num2[0])
a01 = int(num1[1]) & int(num2[0])
a02 = int(num1[2]) & int(num2[0])
a03 = int(num1[3]) & int(num2[0])
a10 = int(num1[0]) & int(num2[1])
a11 = int(num1[1]) & int(num2[1])
a12 = int(num1[2]) & int(num2[1])
a13 = int(num1[3]) & int(num2[1])
a20 = int(num1[0]) & int(num2[2])
a21 = int(num1[1]) & int(num2[2])
a22 = int(num1[2]) & int(num2[2])
a23 = int(num1[3]) & int(num2[2])
a30 = int(num1[0]) & int(num2[3])
a31 = int(num1[1]) & int(num2[3])
a32 = int(num1[2]) & int(num2[3])
a33 = int(num1[3]) & int(num2[3])
carry, res1 = adder4bit(str(a13) + str(a12) + str(a11) + str(a10), '0' + str(a03) + str(a02) + str(a01))
carry, res2 = adder4bit(str(a23) + str(a22) + str(a21) + str(a20), str(carry) + res1[0] + res1[1] + res1[2])
carry, res3 = adder4bit(str(a33) + str(a32) + str(a31) + str(a30), str(carry) + res2[0] + res2[1] + res2[2])
result = str(carry) + res3[0] + res3[1] + res3[2] + res3[3] + res2[3] + res1[3] + str(a00)
return result
def mult8bit(num1: byte, num2: byte) -> byte:
result = '{0:b}'.format(int(num1, 2)*int(num2, 2))
while len(result) < 8:
result = '0' + result
return result
def div8bit(num1: byte, num2: byte) -> byte:
result = '{0:b}'.format(int(num1, 2)*int(num1, 2))
while len(result) < 8:
result = '0' + result
return result
|
"""
ALU for CPU
"""
bit = 0 | 1
byte = 8 * bit
def adder(num1: bit, num2: bit, carry: bit) -> [bit, bit]:
x = num1 ^ num2
s = x ^ carry
a = x & carry
b = num1 & num2
c = a | b
return [c, s]
def adder4bit(num1: byte, num2: byte) -> [bit, byte]:
(carry, a) = adder(int(num1[3]), int(num2[3]), 0)
(carry, b) = adder(int(num1[2]), int(num2[2]), carry)
(carry, c) = adder(int(num1[1]), int(num2[1]), carry)
(carry, d) = adder(int(num1[0]), int(num2[0]), carry)
result = str(d) + str(c) + str(b) + str(a)
return [carry, result]
def adder8bit(num1: byte, num2: byte) -> byte:
(carry, a) = adder(int(num1[7]), int(num2[7]), 0)
(carry, b) = adder(int(num1[6]), int(num2[6]), carry)
(carry, c) = adder(int(num1[5]), int(num2[5]), carry)
(carry, d) = adder(int(num1[4]), int(num2[4]), carry)
(carry, e) = adder(int(num1[3]), int(num2[3]), carry)
(carry, f) = adder(int(num1[2]), int(num2[2]), carry)
(carry, g) = adder(int(num1[1]), int(num2[1]), carry)
(carry, h) = adder(int(num1[0]), int(num2[0]), carry)
result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a)
return result
def subtracter(num1: bit, num2: bit, borrow: bit) -> [bit, bit]:
x = num1 ^ num2
n = 1 - num2
a = num1 & n
xn = 1 - x
a3 = borrow & xn
a2 = a & a3
dif = x & borrow
return [a2, dif]
def subtract8bit(num1: byte, num2: byte) -> byte:
(borrow, a) = subtracter(num1[7], num2[7], 0)
(borrow, b) = subtracter(num1[6], num2[6], borrow)
(borrow, c) = subtracter(num1[5], num2[5], borrow)
(borrow, d) = subtracter(num1[4], num2[4], borrow)
(borrow, e) = subtracter(num1[3], num2[3], borrow)
(borrow, f) = subtracter(num1[2], num2[2], borrow)
(borrow, g) = subtracter(num1[1], num2[1], borrow)
(borrow, h) = subtracter(num1[0], num2[0], borrow)
result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a)
return result
def increment(num: byte) -> byte:
return bin(sum([int(num, 2), int('1', 2)]))[2:]
def bitwise_op(op: str, num1: byte, num2: byte=None) -> byte:
if op == 'AND':
result = int(num1, 2) & int(num2, 2)
elif op == 'OR':
result = int(num1, 2) | int(num2, 2)
elif op == 'XOR':
result = int(num1, 2) ^ int(num2, 2)
elif op == 'NOT':
result = ~int(num1, 2)
elif op == 'LSHFT':
result = int(num1, 2) << int(num2, 2)
elif op == 'RSHFT':
result = int(num1, 2) >> int(num2, 2)
result = str(result)
while len(result) < 8:
result = '0' + result
return result
def mult4bit_uc(num1: byte, num2: byte) -> byte:
a00 = int(num1[0]) & int(num2[0])
a01 = int(num1[1]) & int(num2[0])
a02 = int(num1[2]) & int(num2[0])
a03 = int(num1[3]) & int(num2[0])
a10 = int(num1[0]) & int(num2[1])
a11 = int(num1[1]) & int(num2[1])
a12 = int(num1[2]) & int(num2[1])
a13 = int(num1[3]) & int(num2[1])
a20 = int(num1[0]) & int(num2[2])
a21 = int(num1[1]) & int(num2[2])
a22 = int(num1[2]) & int(num2[2])
a23 = int(num1[3]) & int(num2[2])
a30 = int(num1[0]) & int(num2[3])
a31 = int(num1[1]) & int(num2[3])
a32 = int(num1[2]) & int(num2[3])
a33 = int(num1[3]) & int(num2[3])
(carry, res1) = adder4bit(str(a13) + str(a12) + str(a11) + str(a10), '0' + str(a03) + str(a02) + str(a01))
(carry, res2) = adder4bit(str(a23) + str(a22) + str(a21) + str(a20), str(carry) + res1[0] + res1[1] + res1[2])
(carry, res3) = adder4bit(str(a33) + str(a32) + str(a31) + str(a30), str(carry) + res2[0] + res2[1] + res2[2])
result = str(carry) + res3[0] + res3[1] + res3[2] + res3[3] + res2[3] + res1[3] + str(a00)
return result
def mult8bit(num1: byte, num2: byte) -> byte:
result = '{0:b}'.format(int(num1, 2) * int(num2, 2))
while len(result) < 8:
result = '0' + result
return result
def div8bit(num1: byte, num2: byte) -> byte:
result = '{0:b}'.format(int(num1, 2) * int(num1, 2))
while len(result) < 8:
result = '0' + result
return result
|
def dot(self, name, content):
path = j.sal.fs.getTmpFilePath()
j.sal.fs.writeFile(filename=path, contents=content)
dest = j.sal.fs.joinPaths(j.sal.fs.getDirName(self.last_dest), "%s.png" % name)
j.do.execute("dot '%s' -Tpng > '%s'" % (path, dest))
j.sal.fs.remove(path)
return "" % (name, name)
|
def dot(self, name, content):
path = j.sal.fs.getTmpFilePath()
j.sal.fs.writeFile(filename=path, contents=content)
dest = j.sal.fs.joinPaths(j.sal.fs.getDirName(self.last_dest), '%s.png' % name)
j.do.execute("dot '%s' -Tpng > '%s'" % (path, dest))
j.sal.fs.remove(path)
return '' % (name, name)
|
class PagedList(list):
def __init__(self, items, token):
super(PagedList, self).__init__(items)
self.token = token
|
class Pagedlist(list):
def __init__(self, items, token):
super(PagedList, self).__init__(items)
self.token = token
|
class CircularQueuek:
def __init__(self, k: int):
self.queue = [0 for _ in range(k)]
self.k = k
self.front = 0
self.rear = -1
self.length = 0
def enQueue(self, value):
if self.length < self.k:
self.length = self.length +1
self.rear = (self.rear + 1) % self.k
self.queue[self.rear] = value
return True
return False
def deQueue(self):
if self.length > 0 :
self.front = (self.front + 1) % self.k
self.length = self.length -1
return True
return False
def Front(self):
if self.length > 0 :
return self.queue[self.front]
return -1
def Rear(self):
if self.length > 0:
return self.queue[self.rear]
return -1
def isEmpty(self) -> bool:
return self.length == 0
def isFull(self) -> bool:
return self.length == self.k
|
class Circularqueuek:
def __init__(self, k: int):
self.queue = [0 for _ in range(k)]
self.k = k
self.front = 0
self.rear = -1
self.length = 0
def en_queue(self, value):
if self.length < self.k:
self.length = self.length + 1
self.rear = (self.rear + 1) % self.k
self.queue[self.rear] = value
return True
return False
def de_queue(self):
if self.length > 0:
self.front = (self.front + 1) % self.k
self.length = self.length - 1
return True
return False
def front(self):
if self.length > 0:
return self.queue[self.front]
return -1
def rear(self):
if self.length > 0:
return self.queue[self.rear]
return -1
def is_empty(self) -> bool:
return self.length == 0
def is_full(self) -> bool:
return self.length == self.k
|
n=(int)(input())
dict1={}
dict2={}
c1=0
while(n>0):
n-=1
str1=(input().split(" "))
if(str1[0] not in dict1.keys()):
dict1[str1[0]]=str1[1]
if(str1[1] not in dict2.keys()):
dict2[str1[1]]=1
else:
dict2[str1[1]]+=1
c1=max(dict2.values())
for i in dict2.keys():
if(dict2[i]==c1):
print(i)
break
if("football" in dict2.keys()):
print(dict2['football'])
else:
print(0)
|
n = int(input())
dict1 = {}
dict2 = {}
c1 = 0
while n > 0:
n -= 1
str1 = input().split(' ')
if str1[0] not in dict1.keys():
dict1[str1[0]] = str1[1]
if str1[1] not in dict2.keys():
dict2[str1[1]] = 1
else:
dict2[str1[1]] += 1
c1 = max(dict2.values())
for i in dict2.keys():
if dict2[i] == c1:
print(i)
break
if 'football' in dict2.keys():
print(dict2['football'])
else:
print(0)
|
# config files
CONFIG_DIR = "config"
# Link to DB Configuration
DB_CONFIG_FILE = "db.yml"
# Name of collection
COLLECTION_NAME = 'collection_name'
CONFIG_DIR = "config"
CONFIG_FNAME = "rss_feeds.yml"
PARAM_CONFIG_FILE = "services.yml"
APP_KEYS_FILE = "keys.yml"
NLU_CONFIG = "nlu_config.yml"
MESSAGING_FILE = "messaging_platforms.yml"
SOCIALMEDIA_FILE = "socialmedia.yml"
EMAIL_FILE = "email.yml"
PAR_DIR = ".."
# News Organizations
ALJAZEERA = "AlJazeera"
BBC = "BBC"
CNN = "CNN"
HUFFINGTONPOST = "HuffingtonPost"
NYPOST = "NYPost"
NYTIMES = "NYTimes"
REUTERS = "Reuters"
TELEGRAPH = "Telegraph"
THEGLOBAEANDMAIL = "TheGlobeAndMail"
GUARDIAN = "Guardian"
USTODAY = "USAToday"
VICE = "Vice"
WSJ = "WSJ"
# name of collections
COLLECTION_ARTICLES = 'articles'
COLLECTION_PODCASTS = 'podcasts'
COLLECTION_VIDEOS = 'videos'
COLLECTION_LISTS = 'list'
COLLECTION_BOOKMARS = 'bookmarks'
# Schedulers' names
SCHEDULER_NEWS_ARTICLES = "Scheduler-NewsArticles"
SCHEDULER_PODCASTS = "Scheduler-Podcasts"
SCHEDULER_VIDEOS = "Scheduler-Videos"
SECONDS = 60
# Empty string
EMPTY_STR = ""
EMPTY_LIST = []
EMPTY_DICT = {}
# media types
ARTICLES = "Articles"
PODCASTS = "Podcasts"
VIDEOS = "Videos"
ARTICLE = "Article"
PODCAST = "Podcast"
VIDEO = "Video"
MEDIA_TYPE_ARTICLES = {ARTICLES: ARTICLE}
MEDIA_TYPE_PODCASTS = {PODCASTS: PODCAST}
MEDIA_TYPE_VIDEOS = {VIDEOS: VIDEO}
# Scheduler
STOPPED = "stopped"
RUNNING = "running"
# Languages
EN_LANG = "English"
AR_LANG = "Arabic"
# Keys for webservices
CALAIS_KEY = "calais_key"
DBPEDIA_KEY = "dbpedia_key"
FREEBASE_KEY = "freebase_key"
YAHOO_KEY = "yahoo_key"
ZEMANTA_KEY = "zemanta_key"
VONA_KEY = "vona_key"
VONA_USERNAME = "vona_username"
SLACK_API_KEY = "api_key"
SLACK_BOT_NAME = "bot_name"
SLACK_CHANNEL_NAME = "channel_name"
SLACK_SERVICE = "slack"
# Voice TTs
TTS_PERONA = 'Emma'
# Connectors
MONGODB = "mongodb"
KAFKA = "kafka"
# Host/Port
HOST = "host"
PORT = "port"
SENTISTRENGHT_JAR = "../resources/SentiStrength.jar"
SENTISTRENGHT_DIR = "../resources/sentstrength_data/"
# NLU Server
NLU_SERVER = "http://localhost:5000"
# NLU Parser parameters
MIN_THRESHOLD = 0.30
# List of intents
INTENT_FINDNEWSCONTENT = 'findNewsContent'
INTENT_ADDCONTENTITEMTOCOLLECTION = 'addContentItemToCollection'
INTENT_BOOKMARKCONTENTITEM = 'bookmarkContentItem'
INTENT_EMAILCONTENTITEM = 'emailContentItem'
INTENT_FAVORITECONTENTITEM = 'favoriteContentItem'
INTENT_GETCONTENTINFO = 'getContentInfo'
INTENT_LISTENPODCAST = 'listenPodcast'
INTENT_RATECONTENTITEM = 'rateContentItem'
INTENT_READARTICLE = 'readArticle'
INTENT_SHARECONTENTITEM = 'shareContentItem'
INTENT_WATCHVIDEO = 'watchVideo'
# List of entities
ENTITY_FINDNEWSCONTENT_AUTHORNAME = 'findnewscontent_authorname'
ENTITY_FINDNEWSCONTENT_CONTENTITEMNAME = 'findnewscontent_contentitemname'
ENTITY_FINDNEWSCONTENT_CONTENTTYPE = 'findnewscontent_contenttype'
ENTITY_FINDNEWSCONTENT_EVENTNAME = 'findnewscontent_eventname'
ENTITY_FINDNEWSCONTENT_LOCATIONNAME = 'findnewscontent_locationname'
ENTITY_FINDNEWSCONTENT_ORGNAME = 'findnewscontent_orgname'
ENTITY_FINDNEWSCONTENT_PERSONNAME = 'findnewscontent_personname'
ENTITY_FINDNEWSCONTENT_SPATIALRELATION = 'findnewscontent_spatialrelation'
ENTITY_FINDNEWSCONTENT_TIMEFRAME = 'findnewscontent_timeframe'
ENTITY_FINDNEWSCONTENT_TOPICNAME = 'findnewscontent_topicname'
ENTITY_ADDCONTENTITEMTOCOLLECTION_COLLECTIONNAME = 'addcontentitemtocollection_collectionname'
ENTITY_ADDCONTENTITEMTOCOLLECTION_CONTENTITEMNAME = 'addcontentitemtocollection_contentitemname'
ENTITY_ADDCONTENTITEMTOCOLLECTION_CONTENTTYPE = 'addcontentitemtocollection_contenttype'
ENTITY_BOOKMARKCONTENTITEM_CONTENTITEMNAME = 'bookmarkcontentitem_contentitemname'
ENTITY_BOOKMARKCONTENTITEM_CONTENTTYPE = 'bookmarkcontentitem_contenttype'
ENTITY_BOOKMARKCONTENTITEM_SELECTCRITERIA = 'bookmarkcontentitem_selectcriteria'
ENTITY_EMAILCONTENTITEM_CONTENTITEMNAME = 'emailcontentitem_contentitemname'
ENTITY_EMAILCONTENTITEM_CONTENTTYPE = 'emailcontentitem_contenttype'
ENTITY_EMAILCONTENTITEM_RECEIPENT = 'emailcontentitem_receipent'
ENTITY_EMAILCONTENTITEM_SELECTCRITERIA = 'emailcontentitem_selectcriteria'
ENTITY_FAVORITECONTENTITEM_CONTENTITEMNAME = 'favoritecontentitem_contentitemname'
ENTITY_FAVORITECONTENTITEM_CONTENTTYPE = 'favoritecontentitem_contenttype'
ENTITY_FAVORITECONTENTITEM_SELECTCRITERIA = 'favoritecontentitem_selectcriteria'
ENTITY_GETCONTENTINFO_CONTENTTYPE = 'getcontentinfo_contenttype'
ENTITY_GETCONTENTINFO_SELECTCRITERIA = 'getcontentinfo_selectcriteria'
ENTITY_LISTENPODCAST_COMMAND = 'listenpodcast_command'
ENTITY_LISTENPODCAST_CONTENTITEMNAME = 'listenpodcast_contentitemname'
ENTITY_LISTENPODCAST_CONTENTTYPE = 'listenpodcast_contenttype'
ENTITY_LISTENPODCAST_SELECTCRITERIA = 'listenpodcast_selectcriteria'
ENTITY_RATECONTENTITEM_CONTENTITEMNAME = 'ratecontentitem_contentitemname'
ENTITY_RATECONTENTITEM_CONTENTTYPE = 'ratecontentitem_contenttype'
ENTITY_RATECONTENTITEM_RATINGVALUE = 'ratecontentitem_ratingvalue'
ENTITY_READARTICLE_COMMAND = 'readarticle_command'
ENTITY_READARTICLE_CONTENTITEMNAME = 'readarticle_contentitemname'
ENTITY_READARTICLE_CONTENTTYPE = 'readarticle_contenttype'
ENTITY_READARTICLE_SELECTCRITERIA = 'readarticle_selectcriteria'
ENTITY_SHARECONTENTITEM_CONTENTITEMNAME = 'sharecontentitem_contentitemname'
ENTITY_SHARECONTENTITEM_CONTENTTYPE = 'sharecontentitem_contenttype'
ENTITY_SHARECONTENTITEM_SOCIALNETWORK = 'sharecontentitem_socialnetwork'
ENTITY_WATCHVIDEO_COMMAND = 'watchvideo_command'
ENTITY_WATCHVIDEO_CONTENTITEMNAME = 'watchvideo_contentitemname'
ENTITY_WATCHVIDEO_CONTENTTYPE = 'watchvideo_contenttype'
ENTITY_WATCHVIDEO_SELECTCRITERIA = 'watchvideo_selectcriteria'
|
config_dir = 'config'
db_config_file = 'db.yml'
collection_name = 'collection_name'
config_dir = 'config'
config_fname = 'rss_feeds.yml'
param_config_file = 'services.yml'
app_keys_file = 'keys.yml'
nlu_config = 'nlu_config.yml'
messaging_file = 'messaging_platforms.yml'
socialmedia_file = 'socialmedia.yml'
email_file = 'email.yml'
par_dir = '..'
aljazeera = 'AlJazeera'
bbc = 'BBC'
cnn = 'CNN'
huffingtonpost = 'HuffingtonPost'
nypost = 'NYPost'
nytimes = 'NYTimes'
reuters = 'Reuters'
telegraph = 'Telegraph'
theglobaeandmail = 'TheGlobeAndMail'
guardian = 'Guardian'
ustoday = 'USAToday'
vice = 'Vice'
wsj = 'WSJ'
collection_articles = 'articles'
collection_podcasts = 'podcasts'
collection_videos = 'videos'
collection_lists = 'list'
collection_bookmars = 'bookmarks'
scheduler_news_articles = 'Scheduler-NewsArticles'
scheduler_podcasts = 'Scheduler-Podcasts'
scheduler_videos = 'Scheduler-Videos'
seconds = 60
empty_str = ''
empty_list = []
empty_dict = {}
articles = 'Articles'
podcasts = 'Podcasts'
videos = 'Videos'
article = 'Article'
podcast = 'Podcast'
video = 'Video'
media_type_articles = {ARTICLES: ARTICLE}
media_type_podcasts = {PODCASTS: PODCAST}
media_type_videos = {VIDEOS: VIDEO}
stopped = 'stopped'
running = 'running'
en_lang = 'English'
ar_lang = 'Arabic'
calais_key = 'calais_key'
dbpedia_key = 'dbpedia_key'
freebase_key = 'freebase_key'
yahoo_key = 'yahoo_key'
zemanta_key = 'zemanta_key'
vona_key = 'vona_key'
vona_username = 'vona_username'
slack_api_key = 'api_key'
slack_bot_name = 'bot_name'
slack_channel_name = 'channel_name'
slack_service = 'slack'
tts_perona = 'Emma'
mongodb = 'mongodb'
kafka = 'kafka'
host = 'host'
port = 'port'
sentistrenght_jar = '../resources/SentiStrength.jar'
sentistrenght_dir = '../resources/sentstrength_data/'
nlu_server = 'http://localhost:5000'
min_threshold = 0.3
intent_findnewscontent = 'findNewsContent'
intent_addcontentitemtocollection = 'addContentItemToCollection'
intent_bookmarkcontentitem = 'bookmarkContentItem'
intent_emailcontentitem = 'emailContentItem'
intent_favoritecontentitem = 'favoriteContentItem'
intent_getcontentinfo = 'getContentInfo'
intent_listenpodcast = 'listenPodcast'
intent_ratecontentitem = 'rateContentItem'
intent_readarticle = 'readArticle'
intent_sharecontentitem = 'shareContentItem'
intent_watchvideo = 'watchVideo'
entity_findnewscontent_authorname = 'findnewscontent_authorname'
entity_findnewscontent_contentitemname = 'findnewscontent_contentitemname'
entity_findnewscontent_contenttype = 'findnewscontent_contenttype'
entity_findnewscontent_eventname = 'findnewscontent_eventname'
entity_findnewscontent_locationname = 'findnewscontent_locationname'
entity_findnewscontent_orgname = 'findnewscontent_orgname'
entity_findnewscontent_personname = 'findnewscontent_personname'
entity_findnewscontent_spatialrelation = 'findnewscontent_spatialrelation'
entity_findnewscontent_timeframe = 'findnewscontent_timeframe'
entity_findnewscontent_topicname = 'findnewscontent_topicname'
entity_addcontentitemtocollection_collectionname = 'addcontentitemtocollection_collectionname'
entity_addcontentitemtocollection_contentitemname = 'addcontentitemtocollection_contentitemname'
entity_addcontentitemtocollection_contenttype = 'addcontentitemtocollection_contenttype'
entity_bookmarkcontentitem_contentitemname = 'bookmarkcontentitem_contentitemname'
entity_bookmarkcontentitem_contenttype = 'bookmarkcontentitem_contenttype'
entity_bookmarkcontentitem_selectcriteria = 'bookmarkcontentitem_selectcriteria'
entity_emailcontentitem_contentitemname = 'emailcontentitem_contentitemname'
entity_emailcontentitem_contenttype = 'emailcontentitem_contenttype'
entity_emailcontentitem_receipent = 'emailcontentitem_receipent'
entity_emailcontentitem_selectcriteria = 'emailcontentitem_selectcriteria'
entity_favoritecontentitem_contentitemname = 'favoritecontentitem_contentitemname'
entity_favoritecontentitem_contenttype = 'favoritecontentitem_contenttype'
entity_favoritecontentitem_selectcriteria = 'favoritecontentitem_selectcriteria'
entity_getcontentinfo_contenttype = 'getcontentinfo_contenttype'
entity_getcontentinfo_selectcriteria = 'getcontentinfo_selectcriteria'
entity_listenpodcast_command = 'listenpodcast_command'
entity_listenpodcast_contentitemname = 'listenpodcast_contentitemname'
entity_listenpodcast_contenttype = 'listenpodcast_contenttype'
entity_listenpodcast_selectcriteria = 'listenpodcast_selectcriteria'
entity_ratecontentitem_contentitemname = 'ratecontentitem_contentitemname'
entity_ratecontentitem_contenttype = 'ratecontentitem_contenttype'
entity_ratecontentitem_ratingvalue = 'ratecontentitem_ratingvalue'
entity_readarticle_command = 'readarticle_command'
entity_readarticle_contentitemname = 'readarticle_contentitemname'
entity_readarticle_contenttype = 'readarticle_contenttype'
entity_readarticle_selectcriteria = 'readarticle_selectcriteria'
entity_sharecontentitem_contentitemname = 'sharecontentitem_contentitemname'
entity_sharecontentitem_contenttype = 'sharecontentitem_contenttype'
entity_sharecontentitem_socialnetwork = 'sharecontentitem_socialnetwork'
entity_watchvideo_command = 'watchvideo_command'
entity_watchvideo_contentitemname = 'watchvideo_contentitemname'
entity_watchvideo_contenttype = 'watchvideo_contenttype'
entity_watchvideo_selectcriteria = 'watchvideo_selectcriteria'
|
'''
URL: https://leetcode.com/problems/build-an-array-with-stack-operations/
Difficulty: Easy
Description: Build an Array With Stack Operations
Given an array target and an integer n. In each iteration, you will read a number from list = {1,2,3..., n}.
Build the target array using the following operations:
Push: Read a new element from the beginning list, and push it in the array.
Pop: delete the last element of the array.
If the target array is already built, stop reading more elements.
You are guaranteed that the target array is strictly increasing, only containing numbers between 1 to n inclusive.
Return the operations to build the target array.
You are guaranteed that the answer is unique.
Example 1:
Input: target = [1,3], n = 3
Output: ["Push","Push","Pop","Push"]
Explanation:
Read number 1 and automatically push in the array -> [1]
Read number 2 and automatically push in the array then Pop it -> [1]
Read number 3 and automatically push in the array -> [1,3]
Example 2:
Input: target = [1,2,3], n = 3
Output: ["Push","Push","Push"]
Example 3:
Input: target = [1,2], n = 4
Output: ["Push","Push"]
Explanation: You only need to read the first 2 numbers and stop.
Example 4:
Input: target = [2,3,4], n = 4
Output: ["Push","Pop","Push","Push","Push"]
Constraints:
1 <= target.length <= 100
1 <= target[i] <= 100
1 <= n <= 100
target is strictly increasing.
'''
class Solution:
def buildArray(self, target, n):
output = []
target_index = 0
for i in range(1, n+1):
if output == target or target_index >= len(target):
break
output.append("Push")
if target[target_index] == i:
target_index += 1
else:
output.append("Pop")
return output
|
"""
URL: https://leetcode.com/problems/build-an-array-with-stack-operations/
Difficulty: Easy
Description: Build an Array With Stack Operations
Given an array target and an integer n. In each iteration, you will read a number from list = {1,2,3..., n}.
Build the target array using the following operations:
Push: Read a new element from the beginning list, and push it in the array.
Pop: delete the last element of the array.
If the target array is already built, stop reading more elements.
You are guaranteed that the target array is strictly increasing, only containing numbers between 1 to n inclusive.
Return the operations to build the target array.
You are guaranteed that the answer is unique.
Example 1:
Input: target = [1,3], n = 3
Output: ["Push","Push","Pop","Push"]
Explanation:
Read number 1 and automatically push in the array -> [1]
Read number 2 and automatically push in the array then Pop it -> [1]
Read number 3 and automatically push in the array -> [1,3]
Example 2:
Input: target = [1,2,3], n = 3
Output: ["Push","Push","Push"]
Example 3:
Input: target = [1,2], n = 4
Output: ["Push","Push"]
Explanation: You only need to read the first 2 numbers and stop.
Example 4:
Input: target = [2,3,4], n = 4
Output: ["Push","Pop","Push","Push","Push"]
Constraints:
1 <= target.length <= 100
1 <= target[i] <= 100
1 <= n <= 100
target is strictly increasing.
"""
class Solution:
def build_array(self, target, n):
output = []
target_index = 0
for i in range(1, n + 1):
if output == target or target_index >= len(target):
break
output.append('Push')
if target[target_index] == i:
target_index += 1
else:
output.append('Pop')
return output
|
#!/usr/bin/python
# Copyright 2017 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
'''
Management of Contrail resources
================================
:depends: - vnc_api Python module
Enforce the virtual router existence
------------------------------------
.. code-block:: yaml
virtual_router:
contrail.virtual_router_present:
name: tor01
ip_address: 10.0.0.23
dpdk_enabled: False
router_type: tor-agent
Enforce the virtual router absence
----------------------------------
.. code-block:: yaml
virtual_router_tor01:
contrail.virtual_router_absent:
name: tor01
Enforce the physical router existence
------------------------------------
.. code-block:: yaml
physical_router_phr01:
contrail.physical_router_present:
name: phr01
parent_type: global-system-config
management_ip: 10.167.4.206
dataplane_ip: 172.17.56.9
vendor_name: MyVendor
product_name: MyProduct
agents:
- tor01
- tns01
Enforce the physical router absence
----------------------------------
.. code-block:: yaml
physical_router_delete_phr01:
contrail.physical_router_absent:
name: phr01
Enforce the physical interface present
----------------------------------
.. code-block:: yaml
create physical interface ge-0/1/10 for phr01:
contrail.physical_interface_present:
- name: ge-0/1/10
- physical_router: prh01
Enforce the physical interface absence
----------------------------------
.. code-block:: yaml
physical_interface_delete ge-0/1/10:
contrail.physical_interface_absent:
name: ge-0/1/10
physical_router: phr01
Enforce the logical interface present
----------------------------------
.. code-block:: yaml
create logical interface 11/15:
contrail.logical_interface_present:
- name: ge-0/1/11.15
- parent_names:
- ge-0/1/11
- phr01
- parent_type: physical-interface
- vlan_tag: 15
- interface_type: L3
Enforce the logical interface absence
----------------------------------
.. code-block:: yaml
logical interface delete ge-0/1/10.0 phr02:
contrail.logical_interface_absent:
- name: ge-0/1/10.0
- parent_names:
- ge-0/1/10
- phr02
- parent_type: physical-interface
Enforce the global vrouter config existence
-------------------------------------------
.. code-block:: yaml
#Example
opencontrail_client_virtual_router_global_conf_create:
contrail.global_vrouter_config_present:
- name: "global-vrouter-config"
- parent_type: "global-system-config"
- encap_priority : "MPLSoUDP,MPLSoGRE"
- vxlan_vn_id_mode : "automatic"
- flow_export_rate: 100
- fq_names:
- default-global-system-config
- default-global-vrouter-config
Enforce the global vrouter config absence
-----------------------------------------
.. code-block:: yaml
#Example
opencontrail_client_virtual_router_global_conf_delete:
contrail.global_vrouter_config_absent:
- name: "global-vrouter-config"
Enforce the link local service entry existence
----------------------------------------------
.. code-block:: yaml
# Example with dns name, only one is permited
lls_meta1:
contrail.linklocal_service_present:
- name: meta1
- lls_ip: 10.0.0.23
- lls_port: 80
- ipf_addresses: "meta.example.com"
- ipf_port: 80
# Example with multiple ip addresses
lls_meta2:
contrail.linklocal_service_present:
- name: meta2
- lls_ip: 10.0.0.23
- lls_port: 80
- ipf_addresses:
- 10.10.10.10
- 10.20.20.20
- 10.30.30.30
- ipf_port: 80
# Example with one ip addresses
lls_meta3:
contrail.linklocal_service_present:
- name: meta3
- lls_ip: 10.0.0.23
- lls_port: 80
- ipf_addresses:
- 10.10.10.10
- ipf_port: 80
Enforce the link local service entry absence
--------------------------------------------
.. code-block:: yaml
lls_meta1_delete:
contrail.linklocal_service_absent:
- name: cmp01
Enforce the analytics node existence
------------------------------------
.. code-block:: yaml
analytics_node01:
contrail.analytics_node_present:
- name: nal01
- ip_address: 10.0.0.13
Enforce the analytics node absence
------------------------------------
.. code-block:: yaml
analytics_node01_delete:
contrail.analytics_node_absent:
- name: nal01
Enforce the config node existence
---------------------------------
.. code-block:: yaml
config_node01:
contrail.config_node_present:
- name: ntw01
- ip_address: 10.0.0.23
Enforce the config node absence
-------------------------------
.. code-block:: yaml
config_node01_delete:
contrail.config_node_absent:
- name: ntw01
Enforce the BGP router existence
--------------------------------
.. code-block:: yaml
BGP router mx01:
contrail.bgp_router_present:
- name: mx01
- ip_address: 10.0.0.133
- type: mx
- asn: 64512
- key_type: md5
- key: password
Enforce the BGP router absence
------------------------------
.. code-block:: yaml
BGP router mx01:
contrail.bgp_router_absence:
- name: mx01
Enforce the service appliance set existence
-------------------------------------------
.. code-block:: yaml
create service appliance:
contrail.service_appliance_set_present:
- name: testappliance
- driver: 'neutron_lbaas.drivers.avi.avi_ocdriver.OpencontrailAviLoadbalancerDriver'
- ha_mode: active-backup
- properties:
address: 10.1.11.3
user: admin
password: avi123
cloud: Default-Cloud
Enforce the service appliance set entry absence
-----------------------------------------------
.. code-block:: yaml
delete service appliance:
contrail.service_appliance_set_absent:
- name: testappliance
Enforce the database node existence
-----------------------------------
.. code-block:: yaml
database_node01:
contrail.database_node_present:
- name: dbs01
- ip_address: 10.0.0.33
Enforce the database node absence
-----------------------------------
.. code-block:: yaml
database_node01:
contrail.database_node_absent:
- name: dbs01
Enforce the global system config existence
------------------------------------------
.. code-block:: yaml
global_system_config_update:
contrail.global_system_config_present:
- name: default-global-system_config
- ans: 64512
- grp:
enable: true
restart_time: 400
bgp_helper_enable: true
xmpp_helper_enable: true
long_lived_restart_time: 400
end_of_rib_timeout: 40
Enforce the global system config absence
----------------------------------------
.. code-block:: yaml
global_system_config_delete:
contrail.global_system_config_absent:
- name: global-system_config
Enforce the virtual network existence
----------------------------------------
.. code-block: yaml
virtual_network_create:
contrail.virtual_network_present:
- name: virtual_network_name
- conf:
domain: domain name
project: domain project
ipam_domain: ipam domain name
ipam_project: ipam project name
ipam_name: ipam name
ip_prefix: xxx.xxx.xxx.xxx
ip_prefix_len: 24
asn: 64512
target: 10000
external: False
allow_transit: False
forwading_mode: 'l2_l3'
rpf: 'disabled'
mirror_destination: False
Enforce Floating Ip Pool configuration
----------------------------------------
.. code-block: yaml
floating_ip_pool_present
- vn_name: virtual_network_name
- vn_project:
- vn_domain
- owner_access: owner_access_permission
- global_access: global_access_permission
- projects: list of project-permission pairs
'''
def __virtual__():
'''
Load Contrail module
'''
return 'contrail'
def virtual_router_present(name, ip_address, router_type=None, dpdk_enabled=False, **kwargs):
'''
Ensures that the Contrail virtual router exists.
:param name: Virtual router name
:param ip_address: Virtual router IP address
:param router_type: Any of ['tor-agent', 'tor-service-node', 'embedded']
'''
ret = __salt__['contrail.virtual_router_create'](name, ip_address, router_type, dpdk_enabled, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def virtual_router_absent(name, **kwargs):
'''
Ensure that the Contrail virtual router doesn't exist
:param name: The name of the virtual router that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Virtual router "{0}" is already absent'.format(name)}
virtual_router = __salt__['contrail.virtual_router_get'](name, **kwargs)
if 'Error' not in virtual_router:
ret = __salt__['contrail.virtual_router_delete'](name, **kwargs)
return ret
def physical_router_present(name, parent_type=None,
management_ip=None,
dataplane_ip=None, # VTEP address in web GUI
vendor_name=None,
product_name=None,
vnc_managed=None,
junos_service_ports=None,
agents=None, **kwargs):
'''
Ensures that the Contrail virtual router exists.
:param name: Physical router name
:param parent_type: Parent resource type: Any of ['global-system-config']
:param management_ip: Management ip for this physical router. It is used by the device manager to perform netconf and by SNMP collector if enabled.
:param dataplane_ip: VTEP address in web GUI. This is ip address in the ip-fabric(underlay) network that can be used in data plane by physical router. Usually it is the VTEP address in VxLAN for the TOR switch.
:param vendor_name: Vendor name of the physical router (e.g juniper). Used by the device manager to select driver.
:param product_name: Model name of the physical router (e.g juniper). Used by the device manager to select driver.
:param vnc_managed: This physical router is enabled to be configured by device manager.
:param user_credentials: Username and password for netconf to the physical router by device manager.
:param junos_service_ports: Juniper JUNOS specific service interfaces name to perform services like NAT.
:param agents: List of virtual-router references
'''
ret = __salt__['contrail.physical_router_create'](name, parent_type, management_ip, dataplane_ip, vendor_name,
product_name, vnc_managed, junos_service_ports, agents,
**kwargs)
if len(ret['changes']) == 0:
pass
return ret
def physical_router_absent(name, **kwargs):
'''
Ensure that the Contrail physical router doesn't exist
:param name: The name of the physical router that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Physical router "{0}" is already absent'.format(name)}
physical_router = __salt__['contrail.physical_router_get'](name, **kwargs)
if 'Error' not in physical_router:
ret = __salt__['contrail.physical_router_delete'](name, **kwargs)
return ret
def physical_interface_present(name, physical_router, **kwargs):
'''
Ensures that the Contrail physical interface exists.
:param name: Physical interface name
:param physical_router: Name of existing physical router
'''
ret = __salt__['contrail.physical_interface_create'](name, physical_router, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def physical_interface_absent(name, physical_router, **kwargs):
'''
Ensure that the Contrail physical interface doesn't exist
:param name: The name of the physical interface that should not exist
:param physical_router: Physical router name
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Physical interface "{0}" is already absent'.format(name)}
physical_interface = __salt__['contrail.physical_interface_get'](name, physical_router, **kwargs)
if 'Error' not in physical_interface:
ret = __salt__['contrail.physical_interface_delete'](name, physical_router, **kwargs)
return ret
def logical_interface_present(name, parent_names, parent_type, vlan_tag=None, interface_type="L2",
vmis=None, **kwargs):
'''
Ensures that the Contrail logical interface exists.
:param name: Logical interface name
:param parent_names: List of parents
:param parent_type Parent resource type. Any of ['physical-router', 'physical-interface']
:param vlan_tag: VLAN tag (.1Q) classifier for this logical interface.
:param interface_type: Logical interface type can be L2 or L3.
:param vmis: Virtual machine interface name associate with
'''
ret = __salt__['contrail.logical_interface_create'](name, parent_names, parent_type, vlan_tag,
interface_type, vmis=vmis, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def logical_interface_absent(name, parent_names, parent_type=None, **kwargs):
'''
Ensure that the Contrail logical interface doesn't exist
:param name: The name of the logical interface that should not exist
:param parent_names: List of parent names. Example ['phr01','ge-0/1/0']
:param parent_type: Parent resource type. Any of ['physical-router', 'physical-interface']
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'logical interface "{0}" is already absent'.format(name)}
logical_interface = __salt__['contrail.logical_interface_get'](name, parent_names, parent_type, **kwargs)
if 'Error' not in logical_interface:
ret = __salt__['contrail.logical_interface_delete'](name, parent_names, parent_type, **kwargs)
return ret
def global_vrouter_config_present(name, parent_type, encap_priority="MPLSoUDP,MPLSoGRE", vxlan_vn_id_mode="automatic",
flow_export_rate=None, *fq_names, **kwargs):
'''
Ensures that the Contrail global vrouter config exists.
:param name: Global vrouter config name
:param parent_type: Parent resource type
:param encap_priority: Ordered list of encapsulations that vrouter will use in priority order
:param vxlan_vn_id_mode: Method of allocation of VxLAN VNI(s).
:param fq_names: Fully Qualified Name of resource devided <string>array
:param flow_export_rate: Flow export rate is global config, rate at which each vrouter will sample and export flow records to analytics
'''
ret = __salt__['contrail.global_vrouter_config_create'](name, parent_type, encap_priority, vxlan_vn_id_mode,
flow_export_rate, *fq_names, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def global_vrouter_config_absent(name, **kwargs):
'''
Ensure that the Contrail global vrouter config doesn't exist
:param name: The name of the global vrouter config that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Global vrouter config "{0}" is already absent'.format(name)}
vrouter_conf = __salt__['contrail.global_vrouter_config_get'](name, **kwargs)
if 'Error' not in vrouter_conf:
ret = __salt__['contrail.global_vrouter_config_delete'](name, **kwargs)
return ret
def linklocal_service_present(name, lls_ip, lls_port, ipf_addresses, ipf_port, **kwargs):
'''
Ensures that the Contrail link local service entry exists.
:param name: Link local service name
:param lls_ip: Link local ip address
:param lls_port: Link local service port
:param ipf_addresses: IP fabric dns name or list of IP fabric ip addresses
:param ipf_port: IP fabric port
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Link local service "{0}" already exists'.format(name)}
ret = __salt__['contrail.linklocal_service_create'](name, lls_ip, lls_port, ipf_addresses, ipf_port, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def linklocal_service_absent(name, **kwargs):
'''
Ensure that the Contrail link local service entry doesn't exist
:param name: The name of the link local service entry
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Linklocal service "{0}" is already absent'.format(name)}
lls = __salt__['contrail.linklocal_service_get'](name, **kwargs)
if 'Error' not in lls:
ret = __salt__['contrail.linklocal_service_delete'](name, **kwargs)
return ret
def analytics_node_present(name, ip_address, **kwargs):
'''
Ensures that the Contrail analytics node exists.
:param name: Analytics node name
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Analytics node {0} already exists'.format(name)}
ret = __salt__['contrail.analytics_node_create'](name, ip_address, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def analytics_node_absent(name, **kwargs):
'''
Ensure that the Contrail analytics node doesn't exist
:param name: The name of the analytics node that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Analytics node "{0}" is already absent'.format(name)}
node = __salt__['contrail.analytics_node_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.analytics_node_delete'](name, **kwargs)
return ret
def config_node_present(name, ip_address, **kwargs):
'''
Ensures that the Contrail config node exists.
:param name: Config node name
'''
ret = __salt__['contrail.config_node_create'](name, ip_address, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def config_node_absent(name, **kwargs):
'''
Ensure that the Contrail config node doesn't exist
:param name: The name of the config node that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Config node "{0}" is already absent'.format(name)}
node = __salt__['contrail.config_node_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.config_node_delete'](name, **kwargs)
return ret
def bgp_router_present(name, type, ip_address, asn=64512, key_type=None, key=None, **kwargs):
'''
Ensures that the Contrail BGP router exists.
:param name: BGP router name
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'BGP router {0} already exists'.format(name)}
ret = __salt__['contrail.bgp_router_create'](name, type, ip_address, asn, key_type, key, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def bgp_router_absent(name, **kwargs):
'''
Ensure that the Contrail BGP router doesn't exist
:param name: The name of the BGP router that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'BGP router "{0}" is already absent'.format(name)}
node = __salt__['contrail.bgp_router_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.bgp_router_delete'](name, **kwargs)
return ret
def database_node_present(name, ip_address, **kwargs):
'''
Ensures that the Contrail database node exists.
:param name: Database node name
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Database node {0} already exists'.format(name)}
ret = __salt__['contrail.database_node_create'](name, ip_address, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def database_node_absent(name, **kwargs):
'''
Ensure that the Contrail database node doesn't exist
:param name: The name of the database node that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Database node "{0}" is already absent'.format(name)}
node = __salt__['contrail.database_node_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.database_node_delete'](name, **kwargs)
return ret
def virtual_machine_interface_present(name,
virtual_network,
mac_address=None,
ip_address=None,
security_group=None,
**kwargs):
'''
Ensures that the Contrail virtual machine interface exists.
:param name: Virtual machine interface name
:param virtual_network: Network name
:param mac_address: Mac address of vmi interface
:param ip_address: Virtual machine interface ip address
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Virtual machine interface "{0}" already exists'.format(name)}
vmis = __salt__['contrail.virtual_machine_interface_list'](**kwargs)
for vmi in vmis:
if vmi['name'] == name:
return ret
vmi = __salt__['contrail.virtual_machine_interface_create'](name, virtual_network,
mac_address=mac_address,
ip_address=ip_address,
security_group=security_group,
**kwargs)
if vmi['name'] == name:
ret['comment'] = 'Virtual machine interface {0} has been created'.format(name)
ret['result'] = True
else:
ret['comment'] = 'Virtual machine interface {0} creation failed'.format(name)
ret['result'] = False
return ret
def service_appliance_set_present(name,
properties=None,
driver=None,
ha_mode=None,
**kwargs):
'''
Ensures that the Contrail service appliance set exists.
:param name: Service appliance set name
:param properties: Key:Value pairs that are used by the provider driver and opaque to sytem.
:param driver: Name of the provider driver for this service appliance set.
:param ha_mode: High availability mode for the service appliance set, active-active or active-backup.
'''
ret = __salt__['contrail.service_appliance_set_create'](name, properties, driver, ha_mode, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def service_appliance_set_absent(name, **kwargs):
'''
Ensure that the Contrail service appliance set doesn't exist
:param name: The name of the service appliance set that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Service appliance set "{0}" is already absent'.format(name)}
physical_router = __salt__['contrail.service_appliance_set_get'](name, **kwargs)
if 'Error' not in physical_router:
ret = __salt__['contrail.service_appliance_set_delete'](name, **kwargs)
return ret
def global_system_config_present(name, ans=64512, grp=None, **kwargs):
'''
Ensures that the Contrail global system config exists or is updated
:param name: Virtual router name
:param ans: Autonomous system number
:param grp: Graceful-Restart-Parameters - dict of parameters
'''
ret = __salt__['contrail.global_system_config_create'](name=name, ans=ans, grp=grp, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def global_system_config_absent(name, **kwargs):
'''
Ensure that the Contrail global system config doesn't exist
:param name: The name of the global system config that should not exist
'''
ret = {'name': name,
'changes': {},
'result': True,
'comment': 'Global system config "{0}" is already absent'.format(name)}
gsc = __salt__['contrail.global_system_config_get'](name, **kwargs)
if 'Error' not in gsc:
ret = __salt__['contrail.global_system_config_delete'](name, **kwargs)
return ret
def virtual_network_present(name, conf=None, **kwargs):
'''
Ensure that the virtual network exists.
:param name: Name of the virtual network
:param conf: Key:Value pairs used for network creation
'''
ret = __salt__['contrail.virtual_network_create'](name, conf, **kwargs)
return ret
def floating_ip_pool_present(vn_name,
vn_project,
vn_domain=None,
owner_access=None,
global_access=None,
projects=None,
**kwargs):
'''
Ensure that floating ip pool existst
Virtual network with flag external need to be created before this
function is called
:param vn_name: Name of the virtual network with external flag,
tell us which floating ip pool we want to manage
:param vn_project: Name of the project in which floating pool exists
:param vn_domain: Name of the domain in which floating pool exists
:param owner_access: permissions rights for owner of the pool
:param global_access: permissions rights for other users than owner
:param projects: list of pairs (project, permission for given project)
'''
ret = __salt__['contrail.update_floating_ip_pool'](vn_name,
vn_project,
vn_domain,
owner_access,
global_access,
projects,
**kwargs)
return ret
|
"""
Management of Contrail resources
================================
:depends: - vnc_api Python module
Enforce the virtual router existence
------------------------------------
.. code-block:: yaml
virtual_router:
contrail.virtual_router_present:
name: tor01
ip_address: 10.0.0.23
dpdk_enabled: False
router_type: tor-agent
Enforce the virtual router absence
----------------------------------
.. code-block:: yaml
virtual_router_tor01:
contrail.virtual_router_absent:
name: tor01
Enforce the physical router existence
------------------------------------
.. code-block:: yaml
physical_router_phr01:
contrail.physical_router_present:
name: phr01
parent_type: global-system-config
management_ip: 10.167.4.206
dataplane_ip: 172.17.56.9
vendor_name: MyVendor
product_name: MyProduct
agents:
- tor01
- tns01
Enforce the physical router absence
----------------------------------
.. code-block:: yaml
physical_router_delete_phr01:
contrail.physical_router_absent:
name: phr01
Enforce the physical interface present
----------------------------------
.. code-block:: yaml
create physical interface ge-0/1/10 for phr01:
contrail.physical_interface_present:
- name: ge-0/1/10
- physical_router: prh01
Enforce the physical interface absence
----------------------------------
.. code-block:: yaml
physical_interface_delete ge-0/1/10:
contrail.physical_interface_absent:
name: ge-0/1/10
physical_router: phr01
Enforce the logical interface present
----------------------------------
.. code-block:: yaml
create logical interface 11/15:
contrail.logical_interface_present:
- name: ge-0/1/11.15
- parent_names:
- ge-0/1/11
- phr01
- parent_type: physical-interface
- vlan_tag: 15
- interface_type: L3
Enforce the logical interface absence
----------------------------------
.. code-block:: yaml
logical interface delete ge-0/1/10.0 phr02:
contrail.logical_interface_absent:
- name: ge-0/1/10.0
- parent_names:
- ge-0/1/10
- phr02
- parent_type: physical-interface
Enforce the global vrouter config existence
-------------------------------------------
.. code-block:: yaml
#Example
opencontrail_client_virtual_router_global_conf_create:
contrail.global_vrouter_config_present:
- name: "global-vrouter-config"
- parent_type: "global-system-config"
- encap_priority : "MPLSoUDP,MPLSoGRE"
- vxlan_vn_id_mode : "automatic"
- flow_export_rate: 100
- fq_names:
- default-global-system-config
- default-global-vrouter-config
Enforce the global vrouter config absence
-----------------------------------------
.. code-block:: yaml
#Example
opencontrail_client_virtual_router_global_conf_delete:
contrail.global_vrouter_config_absent:
- name: "global-vrouter-config"
Enforce the link local service entry existence
----------------------------------------------
.. code-block:: yaml
# Example with dns name, only one is permited
lls_meta1:
contrail.linklocal_service_present:
- name: meta1
- lls_ip: 10.0.0.23
- lls_port: 80
- ipf_addresses: "meta.example.com"
- ipf_port: 80
# Example with multiple ip addresses
lls_meta2:
contrail.linklocal_service_present:
- name: meta2
- lls_ip: 10.0.0.23
- lls_port: 80
- ipf_addresses:
- 10.10.10.10
- 10.20.20.20
- 10.30.30.30
- ipf_port: 80
# Example with one ip addresses
lls_meta3:
contrail.linklocal_service_present:
- name: meta3
- lls_ip: 10.0.0.23
- lls_port: 80
- ipf_addresses:
- 10.10.10.10
- ipf_port: 80
Enforce the link local service entry absence
--------------------------------------------
.. code-block:: yaml
lls_meta1_delete:
contrail.linklocal_service_absent:
- name: cmp01
Enforce the analytics node existence
------------------------------------
.. code-block:: yaml
analytics_node01:
contrail.analytics_node_present:
- name: nal01
- ip_address: 10.0.0.13
Enforce the analytics node absence
------------------------------------
.. code-block:: yaml
analytics_node01_delete:
contrail.analytics_node_absent:
- name: nal01
Enforce the config node existence
---------------------------------
.. code-block:: yaml
config_node01:
contrail.config_node_present:
- name: ntw01
- ip_address: 10.0.0.23
Enforce the config node absence
-------------------------------
.. code-block:: yaml
config_node01_delete:
contrail.config_node_absent:
- name: ntw01
Enforce the BGP router existence
--------------------------------
.. code-block:: yaml
BGP router mx01:
contrail.bgp_router_present:
- name: mx01
- ip_address: 10.0.0.133
- type: mx
- asn: 64512
- key_type: md5
- key: password
Enforce the BGP router absence
------------------------------
.. code-block:: yaml
BGP router mx01:
contrail.bgp_router_absence:
- name: mx01
Enforce the service appliance set existence
-------------------------------------------
.. code-block:: yaml
create service appliance:
contrail.service_appliance_set_present:
- name: testappliance
- driver: 'neutron_lbaas.drivers.avi.avi_ocdriver.OpencontrailAviLoadbalancerDriver'
- ha_mode: active-backup
- properties:
address: 10.1.11.3
user: admin
password: avi123
cloud: Default-Cloud
Enforce the service appliance set entry absence
-----------------------------------------------
.. code-block:: yaml
delete service appliance:
contrail.service_appliance_set_absent:
- name: testappliance
Enforce the database node existence
-----------------------------------
.. code-block:: yaml
database_node01:
contrail.database_node_present:
- name: dbs01
- ip_address: 10.0.0.33
Enforce the database node absence
-----------------------------------
.. code-block:: yaml
database_node01:
contrail.database_node_absent:
- name: dbs01
Enforce the global system config existence
------------------------------------------
.. code-block:: yaml
global_system_config_update:
contrail.global_system_config_present:
- name: default-global-system_config
- ans: 64512
- grp:
enable: true
restart_time: 400
bgp_helper_enable: true
xmpp_helper_enable: true
long_lived_restart_time: 400
end_of_rib_timeout: 40
Enforce the global system config absence
----------------------------------------
.. code-block:: yaml
global_system_config_delete:
contrail.global_system_config_absent:
- name: global-system_config
Enforce the virtual network existence
----------------------------------------
.. code-block: yaml
virtual_network_create:
contrail.virtual_network_present:
- name: virtual_network_name
- conf:
domain: domain name
project: domain project
ipam_domain: ipam domain name
ipam_project: ipam project name
ipam_name: ipam name
ip_prefix: xxx.xxx.xxx.xxx
ip_prefix_len: 24
asn: 64512
target: 10000
external: False
allow_transit: False
forwading_mode: 'l2_l3'
rpf: 'disabled'
mirror_destination: False
Enforce Floating Ip Pool configuration
----------------------------------------
.. code-block: yaml
floating_ip_pool_present
- vn_name: virtual_network_name
- vn_project:
- vn_domain
- owner_access: owner_access_permission
- global_access: global_access_permission
- projects: list of project-permission pairs
"""
def __virtual__():
"""
Load Contrail module
"""
return 'contrail'
def virtual_router_present(name, ip_address, router_type=None, dpdk_enabled=False, **kwargs):
"""
Ensures that the Contrail virtual router exists.
:param name: Virtual router name
:param ip_address: Virtual router IP address
:param router_type: Any of ['tor-agent', 'tor-service-node', 'embedded']
"""
ret = __salt__['contrail.virtual_router_create'](name, ip_address, router_type, dpdk_enabled, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def virtual_router_absent(name, **kwargs):
"""
Ensure that the Contrail virtual router doesn't exist
:param name: The name of the virtual router that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Virtual router "{0}" is already absent'.format(name)}
virtual_router = __salt__['contrail.virtual_router_get'](name, **kwargs)
if 'Error' not in virtual_router:
ret = __salt__['contrail.virtual_router_delete'](name, **kwargs)
return ret
def physical_router_present(name, parent_type=None, management_ip=None, dataplane_ip=None, vendor_name=None, product_name=None, vnc_managed=None, junos_service_ports=None, agents=None, **kwargs):
"""
Ensures that the Contrail virtual router exists.
:param name: Physical router name
:param parent_type: Parent resource type: Any of ['global-system-config']
:param management_ip: Management ip for this physical router. It is used by the device manager to perform netconf and by SNMP collector if enabled.
:param dataplane_ip: VTEP address in web GUI. This is ip address in the ip-fabric(underlay) network that can be used in data plane by physical router. Usually it is the VTEP address in VxLAN for the TOR switch.
:param vendor_name: Vendor name of the physical router (e.g juniper). Used by the device manager to select driver.
:param product_name: Model name of the physical router (e.g juniper). Used by the device manager to select driver.
:param vnc_managed: This physical router is enabled to be configured by device manager.
:param user_credentials: Username and password for netconf to the physical router by device manager.
:param junos_service_ports: Juniper JUNOS specific service interfaces name to perform services like NAT.
:param agents: List of virtual-router references
"""
ret = __salt__['contrail.physical_router_create'](name, parent_type, management_ip, dataplane_ip, vendor_name, product_name, vnc_managed, junos_service_ports, agents, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def physical_router_absent(name, **kwargs):
"""
Ensure that the Contrail physical router doesn't exist
:param name: The name of the physical router that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Physical router "{0}" is already absent'.format(name)}
physical_router = __salt__['contrail.physical_router_get'](name, **kwargs)
if 'Error' not in physical_router:
ret = __salt__['contrail.physical_router_delete'](name, **kwargs)
return ret
def physical_interface_present(name, physical_router, **kwargs):
"""
Ensures that the Contrail physical interface exists.
:param name: Physical interface name
:param physical_router: Name of existing physical router
"""
ret = __salt__['contrail.physical_interface_create'](name, physical_router, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def physical_interface_absent(name, physical_router, **kwargs):
"""
Ensure that the Contrail physical interface doesn't exist
:param name: The name of the physical interface that should not exist
:param physical_router: Physical router name
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Physical interface "{0}" is already absent'.format(name)}
physical_interface = __salt__['contrail.physical_interface_get'](name, physical_router, **kwargs)
if 'Error' not in physical_interface:
ret = __salt__['contrail.physical_interface_delete'](name, physical_router, **kwargs)
return ret
def logical_interface_present(name, parent_names, parent_type, vlan_tag=None, interface_type='L2', vmis=None, **kwargs):
"""
Ensures that the Contrail logical interface exists.
:param name: Logical interface name
:param parent_names: List of parents
:param parent_type Parent resource type. Any of ['physical-router', 'physical-interface']
:param vlan_tag: VLAN tag (.1Q) classifier for this logical interface.
:param interface_type: Logical interface type can be L2 or L3.
:param vmis: Virtual machine interface name associate with
"""
ret = __salt__['contrail.logical_interface_create'](name, parent_names, parent_type, vlan_tag, interface_type, vmis=vmis, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def logical_interface_absent(name, parent_names, parent_type=None, **kwargs):
"""
Ensure that the Contrail logical interface doesn't exist
:param name: The name of the logical interface that should not exist
:param parent_names: List of parent names. Example ['phr01','ge-0/1/0']
:param parent_type: Parent resource type. Any of ['physical-router', 'physical-interface']
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'logical interface "{0}" is already absent'.format(name)}
logical_interface = __salt__['contrail.logical_interface_get'](name, parent_names, parent_type, **kwargs)
if 'Error' not in logical_interface:
ret = __salt__['contrail.logical_interface_delete'](name, parent_names, parent_type, **kwargs)
return ret
def global_vrouter_config_present(name, parent_type, encap_priority='MPLSoUDP,MPLSoGRE', vxlan_vn_id_mode='automatic', flow_export_rate=None, *fq_names, **kwargs):
"""
Ensures that the Contrail global vrouter config exists.
:param name: Global vrouter config name
:param parent_type: Parent resource type
:param encap_priority: Ordered list of encapsulations that vrouter will use in priority order
:param vxlan_vn_id_mode: Method of allocation of VxLAN VNI(s).
:param fq_names: Fully Qualified Name of resource devided <string>array
:param flow_export_rate: Flow export rate is global config, rate at which each vrouter will sample and export flow records to analytics
"""
ret = __salt__['contrail.global_vrouter_config_create'](name, parent_type, encap_priority, vxlan_vn_id_mode, flow_export_rate, *fq_names, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def global_vrouter_config_absent(name, **kwargs):
"""
Ensure that the Contrail global vrouter config doesn't exist
:param name: The name of the global vrouter config that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Global vrouter config "{0}" is already absent'.format(name)}
vrouter_conf = __salt__['contrail.global_vrouter_config_get'](name, **kwargs)
if 'Error' not in vrouter_conf:
ret = __salt__['contrail.global_vrouter_config_delete'](name, **kwargs)
return ret
def linklocal_service_present(name, lls_ip, lls_port, ipf_addresses, ipf_port, **kwargs):
"""
Ensures that the Contrail link local service entry exists.
:param name: Link local service name
:param lls_ip: Link local ip address
:param lls_port: Link local service port
:param ipf_addresses: IP fabric dns name or list of IP fabric ip addresses
:param ipf_port: IP fabric port
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Link local service "{0}" already exists'.format(name)}
ret = __salt__['contrail.linklocal_service_create'](name, lls_ip, lls_port, ipf_addresses, ipf_port, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def linklocal_service_absent(name, **kwargs):
"""
Ensure that the Contrail link local service entry doesn't exist
:param name: The name of the link local service entry
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Linklocal service "{0}" is already absent'.format(name)}
lls = __salt__['contrail.linklocal_service_get'](name, **kwargs)
if 'Error' not in lls:
ret = __salt__['contrail.linklocal_service_delete'](name, **kwargs)
return ret
def analytics_node_present(name, ip_address, **kwargs):
"""
Ensures that the Contrail analytics node exists.
:param name: Analytics node name
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Analytics node {0} already exists'.format(name)}
ret = __salt__['contrail.analytics_node_create'](name, ip_address, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def analytics_node_absent(name, **kwargs):
"""
Ensure that the Contrail analytics node doesn't exist
:param name: The name of the analytics node that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Analytics node "{0}" is already absent'.format(name)}
node = __salt__['contrail.analytics_node_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.analytics_node_delete'](name, **kwargs)
return ret
def config_node_present(name, ip_address, **kwargs):
"""
Ensures that the Contrail config node exists.
:param name: Config node name
"""
ret = __salt__['contrail.config_node_create'](name, ip_address, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def config_node_absent(name, **kwargs):
"""
Ensure that the Contrail config node doesn't exist
:param name: The name of the config node that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Config node "{0}" is already absent'.format(name)}
node = __salt__['contrail.config_node_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.config_node_delete'](name, **kwargs)
return ret
def bgp_router_present(name, type, ip_address, asn=64512, key_type=None, key=None, **kwargs):
"""
Ensures that the Contrail BGP router exists.
:param name: BGP router name
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'BGP router {0} already exists'.format(name)}
ret = __salt__['contrail.bgp_router_create'](name, type, ip_address, asn, key_type, key, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def bgp_router_absent(name, **kwargs):
"""
Ensure that the Contrail BGP router doesn't exist
:param name: The name of the BGP router that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'BGP router "{0}" is already absent'.format(name)}
node = __salt__['contrail.bgp_router_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.bgp_router_delete'](name, **kwargs)
return ret
def database_node_present(name, ip_address, **kwargs):
"""
Ensures that the Contrail database node exists.
:param name: Database node name
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Database node {0} already exists'.format(name)}
ret = __salt__['contrail.database_node_create'](name, ip_address, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def database_node_absent(name, **kwargs):
"""
Ensure that the Contrail database node doesn't exist
:param name: The name of the database node that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Database node "{0}" is already absent'.format(name)}
node = __salt__['contrail.database_node_get'](name, **kwargs)
if 'Error' not in node:
ret = __salt__['contrail.database_node_delete'](name, **kwargs)
return ret
def virtual_machine_interface_present(name, virtual_network, mac_address=None, ip_address=None, security_group=None, **kwargs):
"""
Ensures that the Contrail virtual machine interface exists.
:param name: Virtual machine interface name
:param virtual_network: Network name
:param mac_address: Mac address of vmi interface
:param ip_address: Virtual machine interface ip address
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Virtual machine interface "{0}" already exists'.format(name)}
vmis = __salt__['contrail.virtual_machine_interface_list'](**kwargs)
for vmi in vmis:
if vmi['name'] == name:
return ret
vmi = __salt__['contrail.virtual_machine_interface_create'](name, virtual_network, mac_address=mac_address, ip_address=ip_address, security_group=security_group, **kwargs)
if vmi['name'] == name:
ret['comment'] = 'Virtual machine interface {0} has been created'.format(name)
ret['result'] = True
else:
ret['comment'] = 'Virtual machine interface {0} creation failed'.format(name)
ret['result'] = False
return ret
def service_appliance_set_present(name, properties=None, driver=None, ha_mode=None, **kwargs):
"""
Ensures that the Contrail service appliance set exists.
:param name: Service appliance set name
:param properties: Key:Value pairs that are used by the provider driver and opaque to sytem.
:param driver: Name of the provider driver for this service appliance set.
:param ha_mode: High availability mode for the service appliance set, active-active or active-backup.
"""
ret = __salt__['contrail.service_appliance_set_create'](name, properties, driver, ha_mode, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def service_appliance_set_absent(name, **kwargs):
"""
Ensure that the Contrail service appliance set doesn't exist
:param name: The name of the service appliance set that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Service appliance set "{0}" is already absent'.format(name)}
physical_router = __salt__['contrail.service_appliance_set_get'](name, **kwargs)
if 'Error' not in physical_router:
ret = __salt__['contrail.service_appliance_set_delete'](name, **kwargs)
return ret
def global_system_config_present(name, ans=64512, grp=None, **kwargs):
"""
Ensures that the Contrail global system config exists or is updated
:param name: Virtual router name
:param ans: Autonomous system number
:param grp: Graceful-Restart-Parameters - dict of parameters
"""
ret = __salt__['contrail.global_system_config_create'](name=name, ans=ans, grp=grp, **kwargs)
if len(ret['changes']) == 0:
pass
return ret
def global_system_config_absent(name, **kwargs):
"""
Ensure that the Contrail global system config doesn't exist
:param name: The name of the global system config that should not exist
"""
ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Global system config "{0}" is already absent'.format(name)}
gsc = __salt__['contrail.global_system_config_get'](name, **kwargs)
if 'Error' not in gsc:
ret = __salt__['contrail.global_system_config_delete'](name, **kwargs)
return ret
def virtual_network_present(name, conf=None, **kwargs):
"""
Ensure that the virtual network exists.
:param name: Name of the virtual network
:param conf: Key:Value pairs used for network creation
"""
ret = __salt__['contrail.virtual_network_create'](name, conf, **kwargs)
return ret
def floating_ip_pool_present(vn_name, vn_project, vn_domain=None, owner_access=None, global_access=None, projects=None, **kwargs):
"""
Ensure that floating ip pool existst
Virtual network with flag external need to be created before this
function is called
:param vn_name: Name of the virtual network with external flag,
tell us which floating ip pool we want to manage
:param vn_project: Name of the project in which floating pool exists
:param vn_domain: Name of the domain in which floating pool exists
:param owner_access: permissions rights for owner of the pool
:param global_access: permissions rights for other users than owner
:param projects: list of pairs (project, permission for given project)
"""
ret = __salt__['contrail.update_floating_ip_pool'](vn_name, vn_project, vn_domain, owner_access, global_access, projects, **kwargs)
return ret
|
# There's a function blackbox(lst) that takes a list, does some magic, and returns a list.
# You don't know if it modifies the given list or creates a completely different one.
# Find this out testing the function on your own list and print "modifies" if the fu
# blackbox(lst)
# print("modifies")
# if the function changes the given list or "new"
# if the returned list is not connected to the initial one.
football_list = ["Liverpool Football Club", "English Premier League", "Champion 2019-2020"]
football_list_id = id(football_list)
new_list = blackbox(football_list)
new_list_id = id(new_list)
if football_list_id == new_list_id:
print("modifies")
else:
print("new")
|
football_list = ['Liverpool Football Club', 'English Premier League', 'Champion 2019-2020']
football_list_id = id(football_list)
new_list = blackbox(football_list)
new_list_id = id(new_list)
if football_list_id == new_list_id:
print('modifies')
else:
print('new')
|
# Path to the root location of the application inside the container.
APP_ROOT = '/intend4'
# Configuration directory, inside the application
CONFIG_DIR = "{}/config".format(APP_ROOT)
# Logging level
LOG_LEVEL = 'INFO' # CRITICAL / ERROR / WARNING / INFO / DEBUG
|
app_root = '/intend4'
config_dir = '{}/config'.format(APP_ROOT)
log_level = 'INFO'
|
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
# @return a ListNode
def removeNthFromEnd(self, head, n):
if head is None: return None
nodes = []
p = head
while p :
nodes.append(p)
p = p.next
if n == len(nodes):
return nodes[1] if len(nodes) > 1 else None
else:
nodes[-n-1].next = nodes[-n+1] if n > 1 else None
return head
|
class Solution:
def remove_nth_from_end(self, head, n):
if head is None:
return None
nodes = []
p = head
while p:
nodes.append(p)
p = p.next
if n == len(nodes):
return nodes[1] if len(nodes) > 1 else None
else:
nodes[-n - 1].next = nodes[-n + 1] if n > 1 else None
return head
|
#
# Automatically generated
#
class Asm6502(object):
pass
Asm6502.BRK = 0x00
Asm6502.ORA_IX = 0x01
Asm6502.ORA_Z = 0x05
Asm6502.ASL_Z = 0x06
Asm6502.PHP = 0x08
Asm6502.ORA_IM = 0x09
Asm6502.ASL = 0x0A
Asm6502.ORA_A = 0x0D
Asm6502.ASL_A = 0x0E
Asm6502.BPL = 0x10
Asm6502.ORA_IY = 0x11
Asm6502.ORA_ZX = 0x15
Asm6502.ASL_ZX = 0x16
Asm6502.CLC = 0x18
Asm6502.ORA_AY = 0x19
Asm6502.ORA_AX = 0x1D
Asm6502.ASL_AX = 0x1E
Asm6502.JSR_A = 0x20
Asm6502.AND_IX = 0x21
Asm6502.BIT_Z = 0x24
Asm6502.AND_Z = 0x25
Asm6502.ROL_Z = 0x26
Asm6502.PLP = 0x28
Asm6502.AND_IM = 0x29
Asm6502.ROL = 0x2A
Asm6502.BIT_A = 0x2C
Asm6502.AND_A = 0x2D
Asm6502.ROL_A = 0x2E
Asm6502.BMI = 0x30
Asm6502.AND_IY = 0x31
Asm6502.AND_ZX = 0x35
Asm6502.ROL_ZX = 0x36
Asm6502.SEC = 0x38
Asm6502.AND_AY = 0x39
Asm6502.AND_AX = 0x3D
Asm6502.ROL_AX = 0x3E
Asm6502.RTI = 0x40
Asm6502.EOR_IX = 0x41
Asm6502.EOR_Z = 0x45
Asm6502.LSR_Z = 0x46
Asm6502.PHA = 0x48
Asm6502.EOR_IM = 0x49
Asm6502.LSR = 0x4A
Asm6502.JMP_A = 0x4C
Asm6502.EOR_A = 0x4D
Asm6502.LSR_A = 0x4E
Asm6502.BVC = 0x50
Asm6502.EOR_IY = 0x51
Asm6502.EOR_ZX = 0x55
Asm6502.LSR_ZX = 0x56
Asm6502.CLI = 0x58
Asm6502.EOR_AY = 0x59
Asm6502.EOR_AX = 0x5D
Asm6502.LSR_AX = 0x5E
Asm6502.RTS = 0x60
Asm6502.ADC_IX = 0x61
Asm6502.ADC_Z = 0x65
Asm6502.ROR_Z = 0x66
Asm6502.PLA = 0x68
Asm6502.ADC_IM = 0x69
Asm6502.ROR = 0x6A
Asm6502.JMP_IND = 0x6C
Asm6502.ADC_A = 0x6D
Asm6502.ROR_A = 0x6E
Asm6502.BVC = 0x70
Asm6502.ADC_IY = 0x71
Asm6502.ADC_ZX = 0x75
Asm6502.ROR_ZX = 0x76
Asm6502.SEI = 0x78
Asm6502.ADC_AY = 0x79
Asm6502.ADC_AX = 0x7D
Asm6502.ROR_AX = 0x7E
Asm6502.STA_IX = 0x81
Asm6502.STY_Z = 0x84
Asm6502.STA_Z = 0x85
Asm6502.STX_Z = 0x86
Asm6502.DEY = 0x88
Asm6502.TXA = 0x8A
Asm6502.STY_A = 0x8C
Asm6502.STA_A = 0x8D
Asm6502.STX_A = 0x8E
Asm6502.BCC = 0x90
Asm6502.STA_IY = 0x91
Asm6502.STY_ZX = 0x94
Asm6502.STA_ZX = 0x95
Asm6502.STX_ZY = 0x96
Asm6502.TYA = 0x98
Asm6502.STA_AY = 0x99
Asm6502.TXS = 0x9A
Asm6502.STA_AX = 0x9D
Asm6502.LDY_IM = 0xA0
Asm6502.LDA_IX = 0xA1
Asm6502.LDX_IM = 0xA2
Asm6502.LDY_Z = 0xA4
Asm6502.LDA_Z = 0xA5
Asm6502.LDX_Z = 0xA6
Asm6502.TAY = 0xA8
Asm6502.LDA_IM = 0xA9
Asm6502.TAX = 0xAA
Asm6502.LDY_A = 0xAC
Asm6502.LDA_A = 0xAD
Asm6502.LDX_A = 0xAE
Asm6502.BCS = 0xB0
Asm6502.LDA_IY = 0xB1
Asm6502.LDY_ZX = 0xB4
Asm6502.LDA_ZX = 0xB5
Asm6502.LDX_ZY = 0xB6
Asm6502.CLV = 0xB8
Asm6502.LDA_AY = 0xB9
Asm6502.TSX = 0xBA
Asm6502.LDY_AX = 0xBC
Asm6502.LDA_AX = 0xBD
Asm6502.LDX_AY = 0xBE
Asm6502.CPY_IM = 0xC0
Asm6502.CMP_IX = 0xC1
Asm6502.CPY_Z = 0xC4
Asm6502.CMP_Z = 0xC5
Asm6502.DEC_Z = 0xC6
Asm6502.INY = 0xC8
Asm6502.CMP_IM = 0xC9
Asm6502.DEX = 0xCA
Asm6502.CPY_A = 0xCC
Asm6502.CMP_A = 0xCD
Asm6502.DEC_A = 0xCE
Asm6502.BNE = 0xD0
Asm6502.CMP_IY = 0xD1
Asm6502.CMP_ZX = 0xD5
Asm6502.DEC_ZX = 0xD6
Asm6502.CLD = 0xD8
Asm6502.CMP_AY = 0xD9
Asm6502.CMP_AX = 0xDD
Asm6502.DEC_AX = 0xDE
Asm6502.CPX_IM = 0xE0
Asm6502.SBC_IX = 0xE1
Asm6502.CPX_Z = 0xE4
Asm6502.SBC_Z = 0xE5
Asm6502.INC_Z = 0xE6
Asm6502.INX = 0xE8
Asm6502.SBC_IM = 0xE9
Asm6502.NOP = 0xEA
Asm6502.CPX_A = 0xEC
Asm6502.SBC_A = 0xED
Asm6502.INC_A = 0xEE
Asm6502.BEQ = 0xF0
Asm6502.SBC_IY = 0xF1
Asm6502.SBC_ZX = 0xF5
Asm6502.INC_ZX = 0xF6
Asm6502.SED = 0xF8
Asm6502.SBC_AY = 0xF9
Asm6502.SBC_AX = 0xFD
Asm6502.INC_AX = 0xFE
|
class Asm6502(object):
pass
Asm6502.BRK = 0
Asm6502.ORA_IX = 1
Asm6502.ORA_Z = 5
Asm6502.ASL_Z = 6
Asm6502.PHP = 8
Asm6502.ORA_IM = 9
Asm6502.ASL = 10
Asm6502.ORA_A = 13
Asm6502.ASL_A = 14
Asm6502.BPL = 16
Asm6502.ORA_IY = 17
Asm6502.ORA_ZX = 21
Asm6502.ASL_ZX = 22
Asm6502.CLC = 24
Asm6502.ORA_AY = 25
Asm6502.ORA_AX = 29
Asm6502.ASL_AX = 30
Asm6502.JSR_A = 32
Asm6502.AND_IX = 33
Asm6502.BIT_Z = 36
Asm6502.AND_Z = 37
Asm6502.ROL_Z = 38
Asm6502.PLP = 40
Asm6502.AND_IM = 41
Asm6502.ROL = 42
Asm6502.BIT_A = 44
Asm6502.AND_A = 45
Asm6502.ROL_A = 46
Asm6502.BMI = 48
Asm6502.AND_IY = 49
Asm6502.AND_ZX = 53
Asm6502.ROL_ZX = 54
Asm6502.SEC = 56
Asm6502.AND_AY = 57
Asm6502.AND_AX = 61
Asm6502.ROL_AX = 62
Asm6502.RTI = 64
Asm6502.EOR_IX = 65
Asm6502.EOR_Z = 69
Asm6502.LSR_Z = 70
Asm6502.PHA = 72
Asm6502.EOR_IM = 73
Asm6502.LSR = 74
Asm6502.JMP_A = 76
Asm6502.EOR_A = 77
Asm6502.LSR_A = 78
Asm6502.BVC = 80
Asm6502.EOR_IY = 81
Asm6502.EOR_ZX = 85
Asm6502.LSR_ZX = 86
Asm6502.CLI = 88
Asm6502.EOR_AY = 89
Asm6502.EOR_AX = 93
Asm6502.LSR_AX = 94
Asm6502.RTS = 96
Asm6502.ADC_IX = 97
Asm6502.ADC_Z = 101
Asm6502.ROR_Z = 102
Asm6502.PLA = 104
Asm6502.ADC_IM = 105
Asm6502.ROR = 106
Asm6502.JMP_IND = 108
Asm6502.ADC_A = 109
Asm6502.ROR_A = 110
Asm6502.BVC = 112
Asm6502.ADC_IY = 113
Asm6502.ADC_ZX = 117
Asm6502.ROR_ZX = 118
Asm6502.SEI = 120
Asm6502.ADC_AY = 121
Asm6502.ADC_AX = 125
Asm6502.ROR_AX = 126
Asm6502.STA_IX = 129
Asm6502.STY_Z = 132
Asm6502.STA_Z = 133
Asm6502.STX_Z = 134
Asm6502.DEY = 136
Asm6502.TXA = 138
Asm6502.STY_A = 140
Asm6502.STA_A = 141
Asm6502.STX_A = 142
Asm6502.BCC = 144
Asm6502.STA_IY = 145
Asm6502.STY_ZX = 148
Asm6502.STA_ZX = 149
Asm6502.STX_ZY = 150
Asm6502.TYA = 152
Asm6502.STA_AY = 153
Asm6502.TXS = 154
Asm6502.STA_AX = 157
Asm6502.LDY_IM = 160
Asm6502.LDA_IX = 161
Asm6502.LDX_IM = 162
Asm6502.LDY_Z = 164
Asm6502.LDA_Z = 165
Asm6502.LDX_Z = 166
Asm6502.TAY = 168
Asm6502.LDA_IM = 169
Asm6502.TAX = 170
Asm6502.LDY_A = 172
Asm6502.LDA_A = 173
Asm6502.LDX_A = 174
Asm6502.BCS = 176
Asm6502.LDA_IY = 177
Asm6502.LDY_ZX = 180
Asm6502.LDA_ZX = 181
Asm6502.LDX_ZY = 182
Asm6502.CLV = 184
Asm6502.LDA_AY = 185
Asm6502.TSX = 186
Asm6502.LDY_AX = 188
Asm6502.LDA_AX = 189
Asm6502.LDX_AY = 190
Asm6502.CPY_IM = 192
Asm6502.CMP_IX = 193
Asm6502.CPY_Z = 196
Asm6502.CMP_Z = 197
Asm6502.DEC_Z = 198
Asm6502.INY = 200
Asm6502.CMP_IM = 201
Asm6502.DEX = 202
Asm6502.CPY_A = 204
Asm6502.CMP_A = 205
Asm6502.DEC_A = 206
Asm6502.BNE = 208
Asm6502.CMP_IY = 209
Asm6502.CMP_ZX = 213
Asm6502.DEC_ZX = 214
Asm6502.CLD = 216
Asm6502.CMP_AY = 217
Asm6502.CMP_AX = 221
Asm6502.DEC_AX = 222
Asm6502.CPX_IM = 224
Asm6502.SBC_IX = 225
Asm6502.CPX_Z = 228
Asm6502.SBC_Z = 229
Asm6502.INC_Z = 230
Asm6502.INX = 232
Asm6502.SBC_IM = 233
Asm6502.NOP = 234
Asm6502.CPX_A = 236
Asm6502.SBC_A = 237
Asm6502.INC_A = 238
Asm6502.BEQ = 240
Asm6502.SBC_IY = 241
Asm6502.SBC_ZX = 245
Asm6502.INC_ZX = 246
Asm6502.SED = 248
Asm6502.SBC_AY = 249
Asm6502.SBC_AX = 253
Asm6502.INC_AX = 254
|
class WindowPosition:
position = []
def get(self, quantity, pos_x, pos_y, width, height):
if quantity == 1:
self.position.append({'pos_x': pos_x, 'pos_y': pos_y, 'width': width, 'height': height})
else:
height_ratio = height * 4 / 3 # TODO hard coded 4:3 ratio
if width > height_ratio:
new_width = width / 2
new_height = height
new_pos_x = pos_x + new_width
new_pos_y = pos_y
else:
new_width = width
new_height = height / 2
new_pos_x = pos_x
new_pos_y = pos_y + new_height
quantity1 = int(quantity / 2)
quantity2 = quantity - quantity1
self.get(quantity1, pos_x, pos_y, new_width, new_height)
self.get(quantity2, new_pos_x, new_pos_y, new_width, new_height)
return self.position
|
class Windowposition:
position = []
def get(self, quantity, pos_x, pos_y, width, height):
if quantity == 1:
self.position.append({'pos_x': pos_x, 'pos_y': pos_y, 'width': width, 'height': height})
else:
height_ratio = height * 4 / 3
if width > height_ratio:
new_width = width / 2
new_height = height
new_pos_x = pos_x + new_width
new_pos_y = pos_y
else:
new_width = width
new_height = height / 2
new_pos_x = pos_x
new_pos_y = pos_y + new_height
quantity1 = int(quantity / 2)
quantity2 = quantity - quantity1
self.get(quantity1, pos_x, pos_y, new_width, new_height)
self.get(quantity2, new_pos_x, new_pos_y, new_width, new_height)
return self.position
|
#! python3
# __author__ = "YangJiaHao"
# date: 2018/12/25
def duplicate(nums):
length = len(nums)
for n in nums:
if n < 0 or n >= length:
return False
for i in range(len(nums)):
while nums[i] != i:
if nums[i] == nums[nums[i]]:
return nums[i]
else:
nums[i], nums[nums[i]] = nums[nums[i]], nums[i]
return False
|
def duplicate(nums):
length = len(nums)
for n in nums:
if n < 0 or n >= length:
return False
for i in range(len(nums)):
while nums[i] != i:
if nums[i] == nums[nums[i]]:
return nums[i]
else:
(nums[i], nums[nums[i]]) = (nums[nums[i]], nums[i])
return False
|
#!/usr/bin/env python3
PIKS_DEFAULT_DIR=".piks"
PIKS_DEFAULT_FILE="piks.db"
PIKS_DEFAULT_CHECKSUM="sha512"
if __name__ == "__main__":
pass
|
piks_default_dir = '.piks'
piks_default_file = 'piks.db'
piks_default_checksum = 'sha512'
if __name__ == '__main__':
pass
|
categories = {
'Network Stereo Zone Amplifier',
'Network Stereo Receiver',
'Portable Player',
'Media Player',
'Network Streamer',
'Network player & Preamplifier',
'CD Player',
'Speaker',
'DAC',
'CD player',
'Streaming DAC',
'DAC & Network Streamer',
'DAC & Headphone Amp',
'Network Audio & CD Player',
'All-in-One',
'Wireless speakers & Sound Hub',
'CD & Digital Player',
'Home Automation',
'All-In-One Music Player',
'DACs & Network Player',
'Network Audio Transport',
'Portable DAC',
'Control Amplifier',
'Pre-amplifier',
'Network Player &USB DAC',
'Integrated Amplifier',
'Super Audio CD player',
'Music Server & Streamer',
'All-in-One Music Player',
'All-in-One HD Hi-Fi Music Player',
'Soundbar',
'Network Audio Player',
'Compact Portable Player',
'Network Audio Receiver',
'Network Streamer &CD Player',
'Reference-level Music Server & DAC',
'Network Adapter & DAC',
'Streaming Transport',
'Network Streamer & DAC',
'Super Audio CD Player',
'Network Streamer & Music Server',
'Network CD Receiver',
'Mini-Streamer',
'Digital Music Server'
}
ingore_categories = {
'Onkyo Granbeat',
}
|
categories = {'Network Stereo Zone Amplifier', 'Network Stereo Receiver', 'Portable Player', 'Media Player', 'Network Streamer', 'Network player & Preamplifier', 'CD Player', 'Speaker', 'DAC', 'CD player', 'Streaming DAC', 'DAC & Network Streamer', 'DAC & Headphone Amp', 'Network Audio & CD Player', 'All-in-One', 'Wireless speakers & Sound Hub', 'CD & Digital Player', 'Home Automation', 'All-In-One Music Player', 'DACs & Network Player', 'Network Audio Transport', 'Portable DAC', 'Control Amplifier', 'Pre-amplifier', 'Network Player &USB DAC', 'Integrated Amplifier', 'Super Audio CD player', 'Music Server & Streamer', 'All-in-One Music Player', 'All-in-One HD Hi-Fi Music Player', 'Soundbar', 'Network Audio Player', 'Compact Portable Player', 'Network Audio Receiver', 'Network Streamer &CD Player', 'Reference-level Music Server & DAC', 'Network Adapter & DAC', 'Streaming Transport', 'Network Streamer & DAC', 'Super Audio CD Player', 'Network Streamer & Music Server', 'Network CD Receiver', 'Mini-Streamer', 'Digital Music Server'}
ingore_categories = {'Onkyo Granbeat'}
|
#return True if sum of any two num in list equals key O(n)
num=[]
n=int(input())
for x in range(n):
num.append(int(input()))
key=int(input())
for x in range(n):
if key-num[x] in num:
print(True)
exit() #quit()
print(None)
|
num = []
n = int(input())
for x in range(n):
num.append(int(input()))
key = int(input())
for x in range(n):
if key - num[x] in num:
print(True)
exit()
print(None)
|
class Order():
ASCENDING = 0 # lower is better
DESCENDING = 1 # higher is better
class Format():
ANONYMOUS = 0b0001
NAMED = 0b0010
LEADERBOARD = 0b0100
LIST = 0b1000
Delim = '|'
KeyScorePosition = -1 # indeks v rezultatu, po katerem sortiramo
ExpectedNicknamePosition = 10000 # indeks nickname-a v rezultatu
Labels = ["no label"]
FileName = "LEADERBOARDS.txt"
OutputFormat = Format.LEADERBOARD | Format.NAMED
OutputOrder = Order.DESCENDING
IgnoreFlag = "%robot:ignore"
SkipOP = False
|
class Order:
ascending = 0
descending = 1
class Format:
anonymous = 1
named = 2
leaderboard = 4
list = 8
delim = '|'
key_score_position = -1
expected_nickname_position = 10000
labels = ['no label']
file_name = 'LEADERBOARDS.txt'
output_format = Format.LEADERBOARD | Format.NAMED
output_order = Order.DESCENDING
ignore_flag = '%robot:ignore'
skip_op = False
|
n = int(input())
triangleList = []
for i in range(n):
temp = []
if i == 0:
temp.append(1)
else:
for j in range(i+1):
if j==0 or j==i:
temp.append(triangleList[i-1][j-1])
else:
temp.append(triangleList[i-1][j]+triangleList[i-1][j-1])
triangleList.append(temp)
for i in range(n):
for j in range(i+1):
print(triangleList[i][j], end=' ')
print()
|
n = int(input())
triangle_list = []
for i in range(n):
temp = []
if i == 0:
temp.append(1)
else:
for j in range(i + 1):
if j == 0 or j == i:
temp.append(triangleList[i - 1][j - 1])
else:
temp.append(triangleList[i - 1][j] + triangleList[i - 1][j - 1])
triangleList.append(temp)
for i in range(n):
for j in range(i + 1):
print(triangleList[i][j], end=' ')
print()
|
# Copyright (c) 2020 The DAML Authors. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
lf_stable_version = "1.6"
lf_latest_version = "1.7"
lf_dev_version = "1.dev"
lf_versions = [lf_stable_version, lf_latest_version, lf_dev_version]
|
lf_stable_version = '1.6'
lf_latest_version = '1.7'
lf_dev_version = '1.dev'
lf_versions = [lf_stable_version, lf_latest_version, lf_dev_version]
|
class PluginBase(object):
def run(self, **kwargs):
err = "Error, this is an abstract method " \
"you need implement this in a derived class"
raise NotImplementedError(err)
class PluginDescription(object):
def __init__(self,
name,
author,
short_desc,
long_desc,
help_str,
instance):
self.name = name
self.author = author
self.short_desc = short_desc
self.long_desc = long_desc
self.help_str = help_str
self.instance = instance
|
class Pluginbase(object):
def run(self, **kwargs):
err = 'Error, this is an abstract method you need implement this in a derived class'
raise not_implemented_error(err)
class Plugindescription(object):
def __init__(self, name, author, short_desc, long_desc, help_str, instance):
self.name = name
self.author = author
self.short_desc = short_desc
self.long_desc = long_desc
self.help_str = help_str
self.instance = instance
|
# -*- coding: utf-8 -*-
config = dict(
age_config={
"feature_name": "age",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("age", "$..content.age", "f_assert_not_null->f_assert_must_digit_or_float")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": ""
},
apply_register_duration_config={
"feature_name": "apply_register_duration",
"feature_data_type": "float",
"default_value": "PositiveSignedFloatTypeDefault",
"json_path_list": [
("application_on", "$.apply_data.data.application_on", "f_assert_not_null->f_assert_must_basestring"),
("registration_on", "$.portrait_data.data.registration_on", "f_assert_not_null->f_assert_must_basestring")
],
"f_map_and_filter_chain": "m_to_slice(0,10)->f_assert_seq0_gte_seq1->m_get_mon_sub(2)",
"reduce_chain": "",
"l_map_and_filter_chain": ""
},
application_on_config={
"feature_name": "application_on",
"feature_data_type": "string",
"default_value": "StringTypeDefault",
"json_path_list": [("application_on", "$..application_on", "f_assert_not_null->f_assert_must_basestring")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
application_on_plus_config={
"feature_name": "application_on_plus",
"feature_data_type": "string",
"default_value": "StringTypeDefault",
"json_path_list": [("application_on", "$..application_on", "f_assert_not_null->f_assert_must_basestring")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)->m_datetime_only_hour_minute",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
car_count_config={
"feature_name": "car_count",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [
("result", "$..result", "f_assert_jsonpath_true->f_assert_must_list"),
],
"f_map_and_filter_chain": "f_not_null->m_to_len",
"reduce_chain": "",
"l_map_and_filter_chain": ""
},
cc_bill_age_config={
"feature_name": "cc_bill_age",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("cc_bill_age", "$..result.rrx_once_all.credit_card_account_age",
"f_assert_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
complete_degree_config={
"feature_name": "complete_degree",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("complete_degree", "$..complete_degree", "f_assert_not_null->f_assert_must_int")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
creditcard_count_config={
"feature_name": "creditcard_count",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [
("creditcard_count", "$..result.rrx_once_all.credit_cards_num", "f_assert_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
dc_bill_age_config={
"feature_name": "dc_bill_age",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [
("dc_bill_age", "$..result.rrx_once_all.debit_card_account_age", "f_assert_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
education_degree_code_config={
"feature_name": "education_degree_code",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("education_degree_code", "$..edu_exp_form[*].degree", "f_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_to_int->r_min->m_to_str->m_to_code('education_degree_code')",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
is_loan_agency_config={
"feature_name": "is_loan_agency",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("is_loan_agency", "$..result", "f_assert_not_null->f_assert_must_basestring")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool('00')",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
is_netsky_black_config={
"feature_name": "is_netsky_black",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [
("is_netsky_black", "$..result", "f_assert_not_null->f_assert_must_basestring")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool('00')",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
is_organization_g_black_config={
"feature_name": "is_organization_g_black",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("is_organization_g_black", "$..result", "f_assert_not_null->f_assert_must_basestring")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool('00')",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
is_pingan_multi_loan_config={
"feature_name": "is_pingan_multi_loan",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("is_pingan_multi_loan", "$..result", "f_assert_not_null->f_assert_must_int")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
mobile_mark_config={
"feature_name": "mobile_mark",
"feature_data_type": "string",
"default_value": "StringTypeDefault",
"json_path_list": [("mobile_mark", "$..tags.contactMain_IMSI1_IMEI1.label",
"f_assert_not_null->f_assert_must_basestring")],
"f_map_and_filter_chain": "m_get_seq_index_value(0)",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
online_time_config={
"feature_name": "online_time",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [
("online_time", "$.yd_mobile_online_time_s.content.online_time", "m_yd_online_time"),
("online_time", "$.unicome_mobile_online_time_s.content.online_time", "m_unicom_online_time"),
("online_time", "$.telecom_mobile_online_time_s.content.online_time", "m_telecom_online_time"),
],
"f_map_and_filter_chain": "f_assert_not_null->m_to_sum",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
income_level_config={
"feature_name": "income_level",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [
("portrait_data", "$.portrait_data.data.work_exp_form",
"m_lp_income(0.56)->m_to_code('income_level')"),
("cc_credit", "$..debit_card_12m_passentry_amount",
"m_to_code('income_level_yd')->m_single_to_list"),
("unicom_finance_portrait_s", "$..last12.debit.income_range",
"m_to_code('income_level_lt')->m_single_to_list"),
],
"f_map_and_filter_chain": "f_assert_not_null->m_to_sum",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
pingan_multi_loan_count_config={
"feature_name": "pingan_multi_loan_count",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("pingan_multi_loan_count", "$..orgNums", "f_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_to_int->m_to_sum",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
overspeed_count_config={
"feature_name": "overspeed_count",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("overspeed_count", "$..content.over_speed_list[*].month_times", "f_not_null->f_assert_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_to_int->m_to_sum",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
overload_count_config={
"feature_name": "overload_count",
"feature_data_type": "int",
"default_value": "PositiveSignedTypeDefault",
"json_path_list": [("overload_count", "$..content.over_load_list[*].month_times", "f_not_null->f_assert_not_null->f_assert_must_digit")],
"f_map_and_filter_chain": "m_to_int->m_to_sum",
"reduce_chain": "",
"l_map_and_filter_chain": "",
},
)
|
config = dict(age_config={'feature_name': 'age', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('age', '$..content.age', 'f_assert_not_null->f_assert_must_digit_or_float')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, apply_register_duration_config={'feature_name': 'apply_register_duration', 'feature_data_type': 'float', 'default_value': 'PositiveSignedFloatTypeDefault', 'json_path_list': [('application_on', '$.apply_data.data.application_on', 'f_assert_not_null->f_assert_must_basestring'), ('registration_on', '$.portrait_data.data.registration_on', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_to_slice(0,10)->f_assert_seq0_gte_seq1->m_get_mon_sub(2)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, application_on_config={'feature_name': 'application_on', 'feature_data_type': 'string', 'default_value': 'StringTypeDefault', 'json_path_list': [('application_on', '$..application_on', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, application_on_plus_config={'feature_name': 'application_on_plus', 'feature_data_type': 'string', 'default_value': 'StringTypeDefault', 'json_path_list': [('application_on', '$..application_on', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)->m_datetime_only_hour_minute', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, car_count_config={'feature_name': 'car_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('result', '$..result', 'f_assert_jsonpath_true->f_assert_must_list')], 'f_map_and_filter_chain': 'f_not_null->m_to_len', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, cc_bill_age_config={'feature_name': 'cc_bill_age', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('cc_bill_age', '$..result.rrx_once_all.credit_card_account_age', 'f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, complete_degree_config={'feature_name': 'complete_degree', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('complete_degree', '$..complete_degree', 'f_assert_not_null->f_assert_must_int')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, creditcard_count_config={'feature_name': 'creditcard_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('creditcard_count', '$..result.rrx_once_all.credit_cards_num', 'f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, dc_bill_age_config={'feature_name': 'dc_bill_age', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('dc_bill_age', '$..result.rrx_once_all.debit_card_account_age', 'f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, education_degree_code_config={'feature_name': 'education_degree_code', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('education_degree_code', '$..edu_exp_form[*].degree', 'f_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': "m_to_int->r_min->m_to_str->m_to_code('education_degree_code')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_loan_agency_config={'feature_name': 'is_loan_agency', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_loan_agency', '$..result', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': "m_get_seq_index_value(0)->m_to_bool('00')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_netsky_black_config={'feature_name': 'is_netsky_black', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_netsky_black', '$..result', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': "m_get_seq_index_value(0)->m_to_bool('00')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_organization_g_black_config={'feature_name': 'is_organization_g_black', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_organization_g_black', '$..result', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': "m_get_seq_index_value(0)->m_to_bool('00')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_pingan_multi_loan_config={'feature_name': 'is_pingan_multi_loan', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_pingan_multi_loan', '$..result', 'f_assert_not_null->f_assert_must_int')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)->m_to_bool(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, mobile_mark_config={'feature_name': 'mobile_mark', 'feature_data_type': 'string', 'default_value': 'StringTypeDefault', 'json_path_list': [('mobile_mark', '$..tags.contactMain_IMSI1_IMEI1.label', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, online_time_config={'feature_name': 'online_time', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('online_time', '$.yd_mobile_online_time_s.content.online_time', 'm_yd_online_time'), ('online_time', '$.unicome_mobile_online_time_s.content.online_time', 'm_unicom_online_time'), ('online_time', '$.telecom_mobile_online_time_s.content.online_time', 'm_telecom_online_time')], 'f_map_and_filter_chain': 'f_assert_not_null->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, income_level_config={'feature_name': 'income_level', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('portrait_data', '$.portrait_data.data.work_exp_form', "m_lp_income(0.56)->m_to_code('income_level')"), ('cc_credit', '$..debit_card_12m_passentry_amount', "m_to_code('income_level_yd')->m_single_to_list"), ('unicom_finance_portrait_s', '$..last12.debit.income_range', "m_to_code('income_level_lt')->m_single_to_list")], 'f_map_and_filter_chain': 'f_assert_not_null->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, pingan_multi_loan_count_config={'feature_name': 'pingan_multi_loan_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('pingan_multi_loan_count', '$..orgNums', 'f_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_to_int->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, overspeed_count_config={'feature_name': 'overspeed_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('overspeed_count', '$..content.over_speed_list[*].month_times', 'f_not_null->f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_to_int->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, overload_count_config={'feature_name': 'overload_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('overload_count', '$..content.over_load_list[*].month_times', 'f_not_null->f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_to_int->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''})
|
#
# @lc app=leetcode id=309 lang=python3
#
# [309] Best Time to Buy and Sell Stock with Cooldown
#
# @lc code=start
class Solution:
def maxProfit(self, prices: List[int]) -> int:
if len(prices) < 2:
return 0
s0 = 0
s1 = -prices[0]
s2 = float('-inf')
for i in range(len(prices)):
pre0 = s0
pre1 = s1
pre2 = s2
s0 = max(pre0, pre2)
s1 = max(pre0 - prices[i], pre1)
s2 = pre1 + prices[i]
return max(s0, s2)
# @lc code=end
|
class Solution:
def max_profit(self, prices: List[int]) -> int:
if len(prices) < 2:
return 0
s0 = 0
s1 = -prices[0]
s2 = float('-inf')
for i in range(len(prices)):
pre0 = s0
pre1 = s1
pre2 = s2
s0 = max(pre0, pre2)
s1 = max(pre0 - prices[i], pre1)
s2 = pre1 + prices[i]
return max(s0, s2)
|
class ArgumentsMethods(object):
def add_arguments(self, parser):
parser.add_argument(
"states", nargs="+", help="States to export by FIPS code."
)
|
class Argumentsmethods(object):
def add_arguments(self, parser):
parser.add_argument('states', nargs='+', help='States to export by FIPS code.')
|
# Programa recebe uma lista e transforma em uma strng separada por ',' e and antecedendo o ultimo elemento.
def concatenar(lista):
temporario = ''
index = 0
for item in lista:
if index == len(lista)-1:
temporario += f'and {item}.'
else:
temporario += f'{item}, '
index += 1
return temporario
spam = ['apples', 'bananas', 'tofu', 'cats', 1]
print(concatenar(spam))
|
def concatenar(lista):
temporario = ''
index = 0
for item in lista:
if index == len(lista) - 1:
temporario += f'and {item}.'
else:
temporario += f'{item}, '
index += 1
return temporario
spam = ['apples', 'bananas', 'tofu', 'cats', 1]
print(concatenar(spam))
|
MESSAGES = dict({
"1": "\n\nData provided for method __init__() of class Feature \n"
"was not correct to create dict() object",
"2": "\n\nFeature object is not a valid geojson feature object, \n"
"one of the following failed, geometry, properties or type field are missing \n",
"3": "\n\nCoordinates Array Items must be of float type\n"
})
|
messages = dict({'1': '\n\nData provided for method __init__() of class Feature \nwas not correct to create dict() object', '2': '\n\nFeature object is not a valid geojson feature object, \none of the following failed, geometry, properties or type field are missing \n', '3': '\n\nCoordinates Array Items must be of float type\n'})
|
# parsetab.py
# This file is automatically generated. Do not edit.
# pylint: disable=W,C,R
_tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'leftTYPECASTrightUMINUSrightUNOTleftMASMENOSleftPOTENCIAleftPORDIVRESIDUOleftANDORSIMBOLOOR2SIMBOLOORSIMBOLOAND2leftDESPLAZAMIENTOIZQUIERDADESPLAZAMIENTODERECHAABS ACOS ACOSD ACOSH ADD ALL ALTER AND ANY AS ASC ASIN ASIND ASINH ATAN ATAN2 ATAN2D ATAND ATANH AUTO_INCREMENT AVG BEGIN BETWEEN BIGINT BOOLEAN BOTH BY CADENA CASE CBRT CEIL CEILING CHAR CHARACTER CHECK COLOCHO COLUMN COLUMNS COMA CONCAT CONSTRAINT CONT CONVERT CORCHETEDER CORCHETEIZQ COS COSD COSH COT COTD CREATE CURRENT_USER DATABASE DATABASES DATE DAY DECIMAL DECIMALTOKEN DECLARE DECODE DEFAULT DEGREES DELETE DESC DESPLAZAMIENTODERECHA DESPLAZAMIENTOIZQUIERDA DIFERENTE DISTINCT DIV DIV DOSPUNTOS DOUBLE DROP ELSE ENCODE END ENTERO ENUM ENUM ESCAPE ETIQUETA EXCEPT EXISTS EXP FACTORIAL FALSE FIRST FLOOR FOR FOREIGN FROM FULL FUNCTION GCD GET_BYTE GREATEST GROUP HAVING HOUR ID IF IGUAL IGUALIGUAL ILIKE IN INHERITS INNER INSERT INTEGER INTERSECT INTERVAL INTO IS ISNULL JOIN KEY LAST LCM LEADING LEAST LEFT LENGTH LIKE LIMIT LN LOG LOG10 MAS MAX MAYOR MAYORIGUAL MD5 MENOR MENORIGUAL MENOS MIN MINUTE MIN_SCALE MOD MODE MONEY MONTH NATURAL NOT NOTEQUAL NOTNULL NULL NULLS NUMERAL NUMERIC OF OFFSET ON ONLY OR ORDER OUTER OWNER PARENTESISDERECHA PARENTESISIZQUIERDA PI POR POTENCIA POWER PRECISION PRIMARY PUNTO PUNTOYCOMA RADIANS RANDOM REAL REFERENCES RENAME REPLACE RESIDUO RETURNING RETURNS RIGHT ROUND SCALE SECOND SELECT SESSION_USER SET SETSEED SET_BYTE SHA256 SHOW SIGN SIMBOLOAND SIMBOLOAND2 SIMBOLOOR SIMBOLOOR2 SIN SIND SINH SMALLINT SOME SQRT SUBSTR SUBSTRING SUM SYMMETRIC TABLE TABLES TAN TAND TANH TEXT THEN TIME TIMESTAMP TO TRAILING TRIM TRIM_SCALE TRUE TRUNC TYPE TYPECAST UNION UNIQUE UNKNOWN UPDATE UPPER USING VALUES VARCHAR VARYING VIEW WHEN WHERE WIDTH_BUCKET YEARinicio : queriesqueries : queries queryqueries : queryquery : mostrarBD\n | crearBD\n | alterBD\n | dropBD\n | operacion\n | insertinBD\n | updateinBD\n | deleteinBD\n | createTable\n | inheritsBD\n | dropTable\n | alterTable\n | variantesAt\n | contAdd\n | contDrop\n | contAlter\n | listaid\n | tipoAlter \n | selectData\n crearBD : CREATE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMAcrearBD : CREATE DATABASE ID parametrosCrearBD PUNTOYCOMAparametrosCrearBD : parametrosCrearBD parametroCrearBDparametrosCrearBD : parametroCrearBDparametroCrearBD : OWNER IGUAL final\n | MODE IGUAL final\n mostrarBD : SHOW DATABASES PUNTOYCOMAalterBD : ALTER DATABASE ID RENAME TO ID PUNTOYCOMAalterBD : ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMAparametroAlterUser : CURRENT_USER\n | SESSION_USER\n | final\n dropTable : DROP TABLE ID PUNTOYCOMA\n alterTable : ALTER TABLE ID variantesAt PUNTOYCOMA\n\n \n variantesAt : ADD contAdd\n | ALTER contAlter\n | DROP contDrop\n \n listaContAlter : listaContAlter COMA contAlter \n \n listaContAlter : contAlter\n \n contAlter : COLUMN ID SET NOT NULL \n | COLUMN ID TYPE tipo\n \n contAdd : COLUMN ID tipo \n | CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID\n | PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA\n \n contDrop : COLUMN ID \n | CONSTRAINT ID\n \n listaid : listaid COMA ID\n \n listaid : ID\n \n tipoAlter : ADD \n | DROP\n dropBD : DROP DATABASE ID PUNTOYCOMAdropBD : DROP DATABASE IF EXISTS ID PUNTOYCOMAoperacion : operacion MAS operacion\n | operacion MENOS operacion\n | operacion POR operacion\n | operacion DIV operacion\n | operacion RESIDUO operacion\n | operacion POTENCIA operacion\n | operacion AND operacion\n | operacion OR operacion\n | operacion SIMBOLOOR2 operacion\n | operacion SIMBOLOOR operacion\n | operacion SIMBOLOAND2 operacion\n | operacion DESPLAZAMIENTOIZQUIERDA operacion\n | operacion DESPLAZAMIENTODERECHA operacion\n | operacion IGUAL operacion\n | operacion IGUALIGUAL operacion\n | operacion NOTEQUAL operacion\n | operacion MAYORIGUAL operacion\n | operacion MENORIGUAL operacion\n | operacion MAYOR operacion\n | operacion MENOR operacion\n | operacion DIFERENTE operacion\n | PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n operacion : MENOS ENTERO %prec UMINUS\n | MENOS DECIMAL %prec UMINUS\n \n operacion : NOT operacion %prec UNOToperacion : funcionBasicaoperacion : finalfuncionBasica : ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | PI PARENTESISIZQUIERDA PARENTESISDERECHA\n | POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA\n \n \n | ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n \n\n | COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\t\t\t | COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\n\n\n | COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA\n | GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n funcionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA opcionTrim : LEADING\n | TRAILING\n | BOTH\n final : DECIMAL\n | ENTEROfinal : IDfinal : ID PUNTO IDfinal : CADENAinsertinBD : INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAinsertinBD : INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAlistaParam : listaParam COMA finallistaParam : finalupdateinBD : UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMAasignaciones : asignaciones COMA asignaasignaciones : asignaasigna : ID IGUAL operaciondeleteinBD : DELETE FROM ID PUNTOYCOMAdeleteinBD : DELETE FROM ID WHERE operacion PUNTOYCOMAinheritsBD : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMAcreateTable : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMAcreaColumnas : creaColumnas COMA ColumnacreaColumnas : ColumnaColumna : ID tipoColumna : ID tipo paramOpcionalColumna : UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHAColumna : constraintcheckColumna : checkinColumnColumna : primaryKeyColumna : foreignKeyparamOpcional : paramOpcional paramopcparamOpcional : paramopcparamopc : DEFAULT final\n | NULL\n | NOT NULL\n | UNIQUE\n | PRIMARY KEY\n paramopc : constraintcheckparamopc : checkinColumnparamopc : CONSTRAINT ID UNIQUEcheckinColumn : CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAconstraintcheck : CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAprimaryKey : PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHAforeignKey : FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHAtipo : SMALLINT\n | INTEGER\n | BIGINT\n | DECIMAL\n | NUMERIC\n | REAL\n | DOUBLE PRECISION\n | MONEY\n | VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | TEXT\n | BOOLEAN\n | TIMESTAMP\n | TIME\n | INTERVAL\n | DATE\n | YEAR\n | MONTH \n | DAY\n | HOUR \n | MINUTE\n | SECOND\n selectData : SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n selectData : SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA\n selectData : SELECT select_list FROM select_list PUNTOYCOMA\n | SELECT POR FROM select_list PUNTOYCOMA\n selectData : SELECT select_list PUNTOYCOMA\n opcionesSelect : opcionesSelect opcionSelect\n opcionesSelect : opcionSelect\n opcionSelect : LIMIT operacion\n | GROUP BY select_list\n | HAVING select_list\n | ORDER BY select_list \n opcionSelect : LIMIT operacion OFFSET operacion\n | ORDER BY select_list ordenamiento \n ordenamiento : ASC\n | DESC search_condition : search_condition AND search_condition\n | search_condition OR search_condition \n search_condition : NOT search_conditionsearch_condition : operacionsearch_condition : PARENTESISIZQUIERDA search_condition PARENTESISDERECHA select_list : select_list COMA operacion select_list : select_list COMA asignacion select_list : asignacionselect_list : operacion select_list : select_list condicion_select operacion COMA operacion select_list : condicion_select operacion asignacion : operacion AS operacioncondicion_select : DISTINCT FROM \n condicion_select : IS DISTINCT FROM \n condicion_select : IS NOT DISTINCT FROMcondicion_select : DISTINCT condicion_select : IS DISTINCT \n condicion_select : IS NOT DISTINCT \n funcionBasica : operacion BETWEEN operacion AND operacionfuncionBasica : operacion LIKE CADENAfuncionBasica : operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA funcionBasica : operacion NOT BETWEEN operacion AND operacion funcionBasica : operacion BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion NOT BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion condicion_select operacion'
_lr_action_items = {'SHOW':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[23,23,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'CREATE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[24,24,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'ALTER':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,266,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[26,26,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,395,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'DROP':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,266,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[27,27,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,398,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'PARENTESISIZQUIERDA':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,29,30,31,32,33,34,35,39,41,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,131,132,142,146,149,150,151,153,154,158,161,162,163,164,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,263,264,271,272,274,275,280,283,284,285,286,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,310,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,403,408,409,411,412,414,417,420,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,499,505,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,564,565,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,623,626,630,631,633,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,708,709,],[30,30,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,151,30,-152,-151,30,-85,-86,-56,162,30,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,-155,-2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,253,30,-247,-40,-41,-82,-83,30,-153,-84,-39,-52,30,307,308,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,30,-251,30,30,-256,-244,-248,-54,-31,392,-154,-52,-53,-81,404,-46,-191,-192,-193,-194,-195,-196,-198,413,415,416,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,421,30,-221,30,30,30,30,-101,-110,30,-148,-149,-150,30,30,-245,-249,-23,-58,-37,30,513,-164,30,-45,-197,522,-47,527,-87,-88,-89,-90,-91,-93,-94,-95,30,30,-98,-99,30,30,-103,-104,-105,-106,-107,-108,30,-111,-112,-113,-114,-115,-116,30,30,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,30,-136,30,-138,30,30,30,30,-143,-144,30,30,-250,30,-252,30,-246,-26,561,563,-38,30,-44,-49,590,-219,30,590,-220,30,-254,-253,30,-24,30,628,629,-59,-92,-165,-199,-201,-202,-51,590,590,-96,-97,-100,-102,30,-117,-118,-135,30,30,30,-141,-142,30,-146,-147,-255,-25,-167,665,667,-32,-33,672,-160,-200,-48,-50,-217,590,590,30,30,-218,-134,30,-156,-215,30,30,-216,30,-137,-139,-140,-145,30,-109,-166,710,-157,]),'MENOS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,152,153,154,158,161,162,165,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,264,271,272,273,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,382,383,384,385,386,399,401,402,408,409,411,412,417,423,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,510,512,516,519,520,526,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,556,563,571,572,576,579,580,582,583,586,588,589,590,591,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,622,627,630,631,635,636,637,638,640,641,642,644,646,649,651,653,654,655,656,657,658,659,667,671,673,677,678,680,682,683,684,685,686,687,690,694,697,702,706,707,709,],[28,28,-3,-4,-5,-6,-7,107,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,28,-152,-151,28,-85,-86,-56,28,-155,-2,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,-247,-40,-41,-82,-83,28,107,-153,107,-39,-52,28,-53,107,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,107,107,107,107,107,107,107,107,107,28,-251,28,28,107,-244,-248,-54,-31,-154,-52,-53,107,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,107,28,-221,28,28,28,28,107,107,107,107,107,107,107,107,107,107,107,107,107,107,-101,107,107,107,107,107,107,107,107,-110,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,28,-148,-149,-150,107,107,107,107,107,107,107,107,107,107,107,28,107,107,28,-245,-249,-23,-58,-37,28,-164,28,-45,-197,-47,107,107,107,-87,-88,-89,-90,-91,-93,-94,-95,28,28,-98,-99,28,28,-103,-104,-105,-106,-107,-108,28,-111,-112,-113,-114,-115,-116,28,28,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,107,28,-136,28,-138,28,28,28,28,-143,-144,28,28,-66,28,-252,28,107,-246,-26,-38,107,28,107,-44,-49,28,-219,28,28,-220,107,107,107,107,107,107,107,28,107,107,107,107,107,107,107,107,-66,-66,28,-24,28,-59,-92,107,-165,-199,-201,-202,-51,28,107,28,107,-96,-97,-100,-102,28,-117,-118,107,-135,28,28,28,-141,-142,28,-146,-147,-66,-25,-167,107,-32,-33,-160,-200,-48,-50,-217,28,28,28,28,107,107,-218,107,-134,107,107,107,107,28,-156,-215,107,28,28,-216,28,-137,-139,-140,-145,107,28,107,107,-109,-166,-157,]),'NOT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,133,142,146,149,150,151,152,153,154,158,161,162,165,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,264,271,272,273,274,280,281,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,382,383,384,385,386,399,401,402,408,409,411,412,417,423,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,510,512,516,519,520,526,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,556,558,563,571,572,576,579,580,582,583,586,588,589,590,591,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,615,617,619,620,622,627,630,631,635,636,637,638,640,641,642,644,646,649,651,653,654,655,656,657,658,659,660,661,662,663,667,668,671,673,677,678,680,682,683,684,685,686,687,688,690,694,697,699,702,706,707,709,],[33,33,-3,-4,-5,-6,-7,130,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,33,-152,-151,33,-85,-86,-56,33,-155,-2,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,-247,258,-40,-41,-82,-83,33,130,-153,-84,-39,-52,33,-53,130,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,130,130,130,130,130,130,130,130,130,33,-251,33,33,130,-244,-248,-54,-31,-154,-52,-53,130,-81,-46,410,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,130,33,-221,33,33,33,33,130,130,130,130,130,130,130,130,130,130,130,130,130,130,-101,130,130,130,130,130,130,130,130,-110,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,33,-148,-149,-150,130,130,130,130,130,130,130,130,130,130,130,33,130,130,33,-245,-249,-23,-58,-37,33,-164,33,-45,-197,-47,130,130,130,-87,-88,-89,-90,-91,-93,-94,-95,33,33,-98,-99,33,33,-103,-104,-105,-106,-107,-108,33,-111,-112,-113,-114,-115,-116,33,33,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,130,33,-136,33,-138,33,33,33,33,-143,-144,33,33,-66,33,-252,33,130,-246,-26,-38,130,33,130,-44,-49,588,-219,33,588,-220,130,130,130,130,130,130,130,33,130,130,130,130,130,130,130,130,-66,-66,33,-24,616,33,-59,-92,130,-165,-199,-201,-202,-51,588,130,588,130,-96,-97,-100,-102,33,-117,-118,130,-135,33,33,33,-141,-142,33,-146,-147,-66,-25,616,-178,-180,-182,-184,-185,-167,130,-32,-33,-160,-200,-48,-50,-217,588,588,33,33,-84,130,-218,130,-134,130,130,130,130,-177,-179,-181,-183,33,-187,-156,-215,130,33,33,-216,33,-137,-139,-140,-145,-186,130,33,130,-188,130,-109,-166,-157,]),'INSERT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[36,36,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'UPDATE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[37,37,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'DELETE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[38,38,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'ADD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,266,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[39,39,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,397,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'COLUMN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,395,397,398,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[40,40,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,143,147,-152,-151,-85,-86,159,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,143,159,147,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'CHECK':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,558,560,562,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,612,613,615,617,619,620,622,630,631,635,636,637,638,640,653,655,660,661,662,663,664,668,671,673,682,684,685,686,687,688,699,706,707,709,],[41,41,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,41,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,505,41,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,505,505,626,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,505,-178,-180,-182,-184,-185,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-177,-179,-181,-183,626,-187,-156,-215,-216,-137,-139,-140,-145,-186,-188,-109,-166,-157,]),'FOREIGN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,560,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[42,42,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,42,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,507,42,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,507,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'PRIMARY':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,279,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,558,560,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,612,613,615,617,619,620,622,630,631,635,636,637,638,640,653,655,660,661,662,663,668,671,673,682,684,685,686,687,688,699,706,707,709,],[43,43,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,43,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,309,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,309,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,506,43,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,618,506,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,618,-178,-180,-182,-184,-185,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-177,-179,-181,-183,-187,-156,-215,-216,-137,-139,-140,-145,-186,-188,-109,-166,-157,]),'CONSTRAINT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,398,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,558,560,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,612,613,615,617,619,620,622,630,631,635,636,637,638,640,653,655,660,661,662,663,668,671,673,682,684,685,686,687,688,699,706,707,709,],[44,44,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,148,-152,-151,-85,-86,160,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,504,160,148,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,621,504,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,621,-178,-180,-182,-184,-185,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-177,-179,-181,-183,-187,-156,-215,-216,-137,-139,-140,-145,-186,-188,-109,-166,-157,]),'ID':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,37,39,40,44,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,134,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,157,158,159,160,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,276,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,307,308,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,391,392,399,400,401,402,404,408,409,411,412,417,421,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,504,508,509,510,513,516,517,518,520,526,527,530,531,532,533,534,542,551,552,553,556,560,561,563,571,572,575,579,580,582,583,584,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,621,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,665,667,671,672,673,678,680,682,683,684,685,686,687,694,700,706,707,709,710,],[25,25,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,153,-152,-151,153,-85,-86,156,-56,161,165,153,-155,-2,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,-247,259,261,263,264,265,266,-40,267,268,270,-41,271,272,-82,-83,153,-153,-84,275,277,-39,278,279,-52,153,-53,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,153,-251,153,153,-256,-244,-248,-54,-31,-154,-52,-53,-81,405,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,418,419,153,-221,153,153,153,153,-101,-110,153,-148,-149,-150,153,153,-245,-249,-23,495,496,-58,511,-37,153,153,-164,153,-45,-197,-47,528,-87,-88,-89,-90,-91,-93,-94,-95,153,153,-98,-99,153,153,-103,-104,-105,-106,-107,-108,153,-111,-112,-113,-114,-115,-116,153,153,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,153,-136,153,-138,153,153,153,153,-143,-144,153,153,-250,153,-252,153,-246,-26,153,153,562,566,153,-38,153,153,405,405,-44,-49,585,153,-219,153,153,-220,153,-254,-253,153,-24,496,153,153,-59,-92,153,-165,-199,-201,-202,637,-51,153,153,-96,-97,-100,-102,153,-117,-118,-135,153,153,153,-141,-142,153,-146,-147,-255,-25,153,664,-167,153,153,-32,-33,-160,-200,-48,-50,-217,153,153,153,153,-218,-134,689,153,-156,153,-215,153,153,-216,153,-137,-139,-140,-145,153,708,-109,-166,-157,153,]),'SELECT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[45,45,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'ABS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[46,46,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,46,-152,-151,46,-85,-86,-56,46,-155,-2,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,-247,-40,-41,-82,-83,46,-153,-84,-39,-52,46,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,46,-251,46,46,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,46,-221,46,46,46,46,-101,-110,46,-148,-149,-150,46,46,-245,-249,-23,-58,-37,46,-164,46,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,46,46,-98,-99,46,46,-103,-104,-105,-106,-107,-108,46,-111,-112,-113,-114,-115,-116,46,46,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,46,-136,46,-138,46,46,46,46,-143,-144,46,46,-250,46,-252,46,-246,-26,-38,46,-44,-49,46,-219,46,46,-220,46,-254,-253,46,-24,46,-59,-92,-165,-199,-201,-202,-51,46,46,-96,-97,-100,-102,46,-117,-118,-135,46,46,46,-141,-142,46,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,46,46,46,46,-218,-134,46,-156,-215,46,46,-216,46,-137,-139,-140,-145,46,-109,-166,-157,]),'CBRT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[47,47,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,47,-152,-151,47,-85,-86,-56,47,-155,-2,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,-247,-40,-41,-82,-83,47,-153,-84,-39,-52,47,-53,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,47,-251,47,47,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,47,-221,47,47,47,47,-101,-110,47,-148,-149,-150,47,47,-245,-249,-23,-58,-37,47,-164,47,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,47,47,-98,-99,47,47,-103,-104,-105,-106,-107,-108,47,-111,-112,-113,-114,-115,-116,47,47,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,47,-136,47,-138,47,47,47,47,-143,-144,47,47,-250,47,-252,47,-246,-26,-38,47,-44,-49,47,-219,47,47,-220,47,-254,-253,47,-24,47,-59,-92,-165,-199,-201,-202,-51,47,47,-96,-97,-100,-102,47,-117,-118,-135,47,47,47,-141,-142,47,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,47,47,47,47,-218,-134,47,-156,-215,47,47,-216,47,-137,-139,-140,-145,47,-109,-166,-157,]),'CEIL':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[48,48,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,48,-152,-151,48,-85,-86,-56,48,-155,-2,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,-247,-40,-41,-82,-83,48,-153,-84,-39,-52,48,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,48,-251,48,48,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,48,-221,48,48,48,48,-101,-110,48,-148,-149,-150,48,48,-245,-249,-23,-58,-37,48,-164,48,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,48,48,-98,-99,48,48,-103,-104,-105,-106,-107,-108,48,-111,-112,-113,-114,-115,-116,48,48,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,48,-136,48,-138,48,48,48,48,-143,-144,48,48,-250,48,-252,48,-246,-26,-38,48,-44,-49,48,-219,48,48,-220,48,-254,-253,48,-24,48,-59,-92,-165,-199,-201,-202,-51,48,48,-96,-97,-100,-102,48,-117,-118,-135,48,48,48,-141,-142,48,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,48,48,48,48,-218,-134,48,-156,-215,48,48,-216,48,-137,-139,-140,-145,48,-109,-166,-157,]),'CEILING':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[49,49,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,49,-152,-151,49,-85,-86,-56,49,-155,-2,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,-247,-40,-41,-82,-83,49,-153,-84,-39,-52,49,-53,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,49,-251,49,49,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,49,-221,49,49,49,49,-101,-110,49,-148,-149,-150,49,49,-245,-249,-23,-58,-37,49,-164,49,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,49,49,-98,-99,49,49,-103,-104,-105,-106,-107,-108,49,-111,-112,-113,-114,-115,-116,49,49,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,49,-136,49,-138,49,49,49,49,-143,-144,49,49,-250,49,-252,49,-246,-26,-38,49,-44,-49,49,-219,49,49,-220,49,-254,-253,49,-24,49,-59,-92,-165,-199,-201,-202,-51,49,49,-96,-97,-100,-102,49,-117,-118,-135,49,49,49,-141,-142,49,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,49,49,49,49,-218,-134,49,-156,-215,49,49,-216,49,-137,-139,-140,-145,49,-109,-166,-157,]),'DEGREES':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[50,50,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,50,-152,-151,50,-85,-86,-56,50,-155,-2,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,-247,-40,-41,-82,-83,50,-153,-84,-39,-52,50,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,50,-251,50,50,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,50,-221,50,50,50,50,-101,-110,50,-148,-149,-150,50,50,-245,-249,-23,-58,-37,50,-164,50,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,50,50,-98,-99,50,50,-103,-104,-105,-106,-107,-108,50,-111,-112,-113,-114,-115,-116,50,50,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,50,-136,50,-138,50,50,50,50,-143,-144,50,50,-250,50,-252,50,-246,-26,-38,50,-44,-49,50,-219,50,50,-220,50,-254,-253,50,-24,50,-59,-92,-165,-199,-201,-202,-51,50,50,-96,-97,-100,-102,50,-117,-118,-135,50,50,50,-141,-142,50,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,50,50,50,50,-218,-134,50,-156,-215,50,50,-216,50,-137,-139,-140,-145,50,-109,-166,-157,]),'DIV':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,152,153,154,158,161,162,165,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,264,271,272,273,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,382,383,384,385,386,399,401,402,408,409,411,412,417,423,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,510,512,516,519,520,526,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,556,563,571,572,576,579,580,582,583,586,588,589,590,591,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,622,627,630,631,635,636,637,638,640,641,642,644,646,649,651,653,654,655,656,657,658,659,667,671,673,677,678,680,682,683,684,685,686,687,690,694,697,702,706,707,709,],[29,29,-3,-4,-5,-6,-7,109,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,29,-152,-151,29,-85,-86,-56,29,-155,-2,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,-247,-40,-41,-82,-83,29,109,-153,109,-39,-52,29,-53,109,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,109,109,-62,-63,-64,109,-66,-67,-68,-69,-70,-71,-72,109,109,109,109,109,109,109,109,109,29,-251,29,29,109,-244,-248,-54,-31,-154,-52,-53,109,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,109,29,-221,29,29,29,29,109,109,109,109,109,109,109,109,109,109,109,109,109,109,-101,109,109,109,109,109,109,109,109,-110,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,29,-148,-149,-150,109,109,109,109,109,109,109,109,109,109,109,29,109,109,29,-245,-249,-23,-58,-37,29,-164,29,-45,-197,-47,109,109,109,-87,-88,-89,-90,-91,-93,-94,-95,29,29,-98,-99,29,29,-103,-104,-105,-106,-107,-108,29,-111,-112,-113,-114,-115,-116,29,29,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,109,29,-136,29,-138,29,29,29,29,-143,-144,29,29,-66,29,-252,29,109,-246,-26,-38,109,29,109,-44,-49,29,-219,29,29,-220,109,109,109,109,109,109,109,29,109,109,109,109,109,109,109,109,-66,-66,29,-24,29,-59,-92,109,-165,-199,-201,-202,-51,29,109,29,109,-96,-97,-100,-102,29,-117,-118,109,-135,29,29,29,-141,-142,29,-146,-147,-66,-25,-167,109,-32,-33,-160,-200,-48,-50,-217,29,29,29,29,109,109,-218,109,-134,109,109,109,109,29,-156,-215,109,29,29,-216,29,-137,-139,-140,-145,109,29,109,109,-109,-166,-157,]),'EXP':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[51,51,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,51,-152,-151,51,-85,-86,-56,51,-155,-2,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,-247,-40,-41,-82,-83,51,-153,-84,-39,-52,51,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,51,-251,51,51,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,51,-221,51,51,51,51,-101,-110,51,-148,-149,-150,51,51,-245,-249,-23,-58,-37,51,-164,51,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,51,51,-98,-99,51,51,-103,-104,-105,-106,-107,-108,51,-111,-112,-113,-114,-115,-116,51,51,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,51,-136,51,-138,51,51,51,51,-143,-144,51,51,-250,51,-252,51,-246,-26,-38,51,-44,-49,51,-219,51,51,-220,51,-254,-253,51,-24,51,-59,-92,-165,-199,-201,-202,-51,51,51,-96,-97,-100,-102,51,-117,-118,-135,51,51,51,-141,-142,51,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,51,51,51,51,-218,-134,51,-156,-215,51,51,-216,51,-137,-139,-140,-145,51,-109,-166,-157,]),'FACTORIAL':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[52,52,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,52,-152,-151,52,-85,-86,-56,52,-155,-2,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,-247,-40,-41,-82,-83,52,-153,-84,-39,-52,52,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,52,-251,52,52,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,52,-221,52,52,52,52,-101,-110,52,-148,-149,-150,52,52,-245,-249,-23,-58,-37,52,-164,52,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,52,52,-98,-99,52,52,-103,-104,-105,-106,-107,-108,52,-111,-112,-113,-114,-115,-116,52,52,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,52,-136,52,-138,52,52,52,52,-143,-144,52,52,-250,52,-252,52,-246,-26,-38,52,-44,-49,52,-219,52,52,-220,52,-254,-253,52,-24,52,-59,-92,-165,-199,-201,-202,-51,52,52,-96,-97,-100,-102,52,-117,-118,-135,52,52,52,-141,-142,52,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,52,52,52,52,-218,-134,52,-156,-215,52,52,-216,52,-137,-139,-140,-145,52,-109,-166,-157,]),'FLOOR':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[53,53,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,53,-152,-151,53,-85,-86,-56,53,-155,-2,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,-247,-40,-41,-82,-83,53,-153,-84,-39,-52,53,-53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,53,-251,53,53,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,53,-221,53,53,53,53,-101,-110,53,-148,-149,-150,53,53,-245,-249,-23,-58,-37,53,-164,53,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,53,53,-98,-99,53,53,-103,-104,-105,-106,-107,-108,53,-111,-112,-113,-114,-115,-116,53,53,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,53,-136,53,-138,53,53,53,53,-143,-144,53,53,-250,53,-252,53,-246,-26,-38,53,-44,-49,53,-219,53,53,-220,53,-254,-253,53,-24,53,-59,-92,-165,-199,-201,-202,-51,53,53,-96,-97,-100,-102,53,-117,-118,-135,53,53,53,-141,-142,53,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,53,53,53,53,-218,-134,53,-156,-215,53,53,-216,53,-137,-139,-140,-145,53,-109,-166,-157,]),'GCD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[54,54,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,54,-152,-151,54,-85,-86,-56,54,-155,-2,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,-247,-40,-41,-82,-83,54,-153,-84,-39,-52,54,-53,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,54,-251,54,54,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,54,-221,54,54,54,54,-101,-110,54,-148,-149,-150,54,54,-245,-249,-23,-58,-37,54,-164,54,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,54,54,-98,-99,54,54,-103,-104,-105,-106,-107,-108,54,-111,-112,-113,-114,-115,-116,54,54,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,54,-136,54,-138,54,54,54,54,-143,-144,54,54,-250,54,-252,54,-246,-26,-38,54,-44,-49,54,-219,54,54,-220,54,-254,-253,54,-24,54,-59,-92,-165,-199,-201,-202,-51,54,54,-96,-97,-100,-102,54,-117,-118,-135,54,54,54,-141,-142,54,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,54,54,54,54,-218,-134,54,-156,-215,54,54,-216,54,-137,-139,-140,-145,54,-109,-166,-157,]),'LCM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[55,55,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,55,-152,-151,55,-85,-86,-56,55,-155,-2,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,-247,-40,-41,-82,-83,55,-153,-84,-39,-52,55,-53,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,55,-251,55,55,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,55,-221,55,55,55,55,-101,-110,55,-148,-149,-150,55,55,-245,-249,-23,-58,-37,55,-164,55,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,55,55,-98,-99,55,55,-103,-104,-105,-106,-107,-108,55,-111,-112,-113,-114,-115,-116,55,55,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,55,-136,55,-138,55,55,55,55,-143,-144,55,55,-250,55,-252,55,-246,-26,-38,55,-44,-49,55,-219,55,55,-220,55,-254,-253,55,-24,55,-59,-92,-165,-199,-201,-202,-51,55,55,-96,-97,-100,-102,55,-117,-118,-135,55,55,55,-141,-142,55,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,55,55,55,55,-218,-134,55,-156,-215,55,55,-216,55,-137,-139,-140,-145,55,-109,-166,-157,]),'LN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[56,56,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,56,-152,-151,56,-85,-86,-56,56,-155,-2,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,-247,-40,-41,-82,-83,56,-153,-84,-39,-52,56,-53,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,56,-251,56,56,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,56,-221,56,56,56,56,-101,-110,56,-148,-149,-150,56,56,-245,-249,-23,-58,-37,56,-164,56,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,56,56,-98,-99,56,56,-103,-104,-105,-106,-107,-108,56,-111,-112,-113,-114,-115,-116,56,56,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,56,-136,56,-138,56,56,56,56,-143,-144,56,56,-250,56,-252,56,-246,-26,-38,56,-44,-49,56,-219,56,56,-220,56,-254,-253,56,-24,56,-59,-92,-165,-199,-201,-202,-51,56,56,-96,-97,-100,-102,56,-117,-118,-135,56,56,56,-141,-142,56,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,56,56,56,56,-218,-134,56,-156,-215,56,56,-216,56,-137,-139,-140,-145,56,-109,-166,-157,]),'LOG':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[57,57,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,57,-152,-151,57,-85,-86,-56,57,-155,-2,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,-247,-40,-41,-82,-83,57,-153,-84,-39,-52,57,-53,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,57,-251,57,57,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,57,-221,57,57,57,57,-101,-110,57,-148,-149,-150,57,57,-245,-249,-23,-58,-37,57,-164,57,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,57,57,-98,-99,57,57,-103,-104,-105,-106,-107,-108,57,-111,-112,-113,-114,-115,-116,57,57,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,57,-136,57,-138,57,57,57,57,-143,-144,57,57,-250,57,-252,57,-246,-26,-38,57,-44,-49,57,-219,57,57,-220,57,-254,-253,57,-24,57,-59,-92,-165,-199,-201,-202,-51,57,57,-96,-97,-100,-102,57,-117,-118,-135,57,57,57,-141,-142,57,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,57,57,57,57,-218,-134,57,-156,-215,57,57,-216,57,-137,-139,-140,-145,57,-109,-166,-157,]),'MOD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[58,58,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,58,-152,-151,58,-85,-86,-56,58,-155,-2,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,-247,-40,-41,-82,-83,58,-153,-84,-39,-52,58,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,58,-251,58,58,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,58,-221,58,58,58,58,-101,-110,58,-148,-149,-150,58,58,-245,-249,-23,-58,-37,58,-164,58,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,58,58,-98,-99,58,58,-103,-104,-105,-106,-107,-108,58,-111,-112,-113,-114,-115,-116,58,58,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,58,-136,58,-138,58,58,58,58,-143,-144,58,58,-250,58,-252,58,-246,-26,-38,58,-44,-49,58,-219,58,58,-220,58,-254,-253,58,-24,58,-59,-92,-165,-199,-201,-202,-51,58,58,-96,-97,-100,-102,58,-117,-118,-135,58,58,58,-141,-142,58,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,58,58,58,58,-218,-134,58,-156,-215,58,58,-216,58,-137,-139,-140,-145,58,-109,-166,-157,]),'PI':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[59,59,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,59,-152,-151,59,-85,-86,-56,59,-155,-2,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,-247,-40,-41,-82,-83,59,-153,-84,-39,-52,59,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,59,-251,59,59,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,59,-221,59,59,59,59,-101,-110,59,-148,-149,-150,59,59,-245,-249,-23,-58,-37,59,-164,59,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,59,59,-98,-99,59,59,-103,-104,-105,-106,-107,-108,59,-111,-112,-113,-114,-115,-116,59,59,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,59,-136,59,-138,59,59,59,59,-143,-144,59,59,-250,59,-252,59,-246,-26,-38,59,-44,-49,59,-219,59,59,-220,59,-254,-253,59,-24,59,-59,-92,-165,-199,-201,-202,-51,59,59,-96,-97,-100,-102,59,-117,-118,-135,59,59,59,-141,-142,59,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,59,59,59,59,-218,-134,59,-156,-215,59,59,-216,59,-137,-139,-140,-145,59,-109,-166,-157,]),'POWER':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[60,60,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,60,-152,-151,60,-85,-86,-56,60,-155,-2,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,-247,-40,-41,-82,-83,60,-153,-84,-39,-52,60,-53,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,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,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,60,-251,60,60,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,60,-221,60,60,60,60,-101,-110,60,-148,-149,-150,60,60,-245,-249,-23,-58,-37,60,-164,60,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,60,60,-98,-99,60,60,-103,-104,-105,-106,-107,-108,60,-111,-112,-113,-114,-115,-116,60,60,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,60,-136,60,-138,60,60,60,60,-143,-144,60,60,-250,60,-252,60,-246,-26,-38,60,-44,-49,60,-219,60,60,-220,60,-254,-253,60,-24,60,-59,-92,-165,-199,-201,-202,-51,60,60,-96,-97,-100,-102,60,-117,-118,-135,60,60,60,-141,-142,60,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,60,60,60,60,-218,-134,60,-156,-215,60,60,-216,60,-137,-139,-140,-145,60,-109,-166,-157,]),'RADIANS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[61,61,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,61,-152,-151,61,-85,-86,-56,61,-155,-2,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,-247,-40,-41,-82,-83,61,-153,-84,-39,-52,61,-53,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,61,-251,61,61,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,61,-221,61,61,61,61,-101,-110,61,-148,-149,-150,61,61,-245,-249,-23,-58,-37,61,-164,61,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,61,61,-98,-99,61,61,-103,-104,-105,-106,-107,-108,61,-111,-112,-113,-114,-115,-116,61,61,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,61,-136,61,-138,61,61,61,61,-143,-144,61,61,-250,61,-252,61,-246,-26,-38,61,-44,-49,61,-219,61,61,-220,61,-254,-253,61,-24,61,-59,-92,-165,-199,-201,-202,-51,61,61,-96,-97,-100,-102,61,-117,-118,-135,61,61,61,-141,-142,61,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,61,61,61,61,-218,-134,61,-156,-215,61,61,-216,61,-137,-139,-140,-145,61,-109,-166,-157,]),'ROUND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[62,62,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,62,-152,-151,62,-85,-86,-56,62,-155,-2,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,-247,-40,-41,-82,-83,62,-153,-84,-39,-52,62,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,62,-251,62,62,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,62,-221,62,62,62,62,-101,-110,62,-148,-149,-150,62,62,-245,-249,-23,-58,-37,62,-164,62,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,62,62,-98,-99,62,62,-103,-104,-105,-106,-107,-108,62,-111,-112,-113,-114,-115,-116,62,62,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,62,-136,62,-138,62,62,62,62,-143,-144,62,62,-250,62,-252,62,-246,-26,-38,62,-44,-49,62,-219,62,62,-220,62,-254,-253,62,-24,62,-59,-92,-165,-199,-201,-202,-51,62,62,-96,-97,-100,-102,62,-117,-118,-135,62,62,62,-141,-142,62,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,62,62,62,62,-218,-134,62,-156,-215,62,62,-216,62,-137,-139,-140,-145,62,-109,-166,-157,]),'SIGN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[63,63,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,63,-152,-151,63,-85,-86,-56,63,-155,-2,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,-247,-40,-41,-82,-83,63,-153,-84,-39,-52,63,-53,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,63,-251,63,63,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,63,-221,63,63,63,63,-101,-110,63,-148,-149,-150,63,63,-245,-249,-23,-58,-37,63,-164,63,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,63,63,-98,-99,63,63,-103,-104,-105,-106,-107,-108,63,-111,-112,-113,-114,-115,-116,63,63,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,63,-136,63,-138,63,63,63,63,-143,-144,63,63,-250,63,-252,63,-246,-26,-38,63,-44,-49,63,-219,63,63,-220,63,-254,-253,63,-24,63,-59,-92,-165,-199,-201,-202,-51,63,63,-96,-97,-100,-102,63,-117,-118,-135,63,63,63,-141,-142,63,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,63,63,63,63,-218,-134,63,-156,-215,63,63,-216,63,-137,-139,-140,-145,63,-109,-166,-157,]),'SQRT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[64,64,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,64,-152,-151,64,-85,-86,-56,64,-155,-2,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,-247,-40,-41,-82,-83,64,-153,-84,-39,-52,64,-53,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,64,-251,64,64,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,64,-221,64,64,64,64,-101,-110,64,-148,-149,-150,64,64,-245,-249,-23,-58,-37,64,-164,64,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,64,64,-98,-99,64,64,-103,-104,-105,-106,-107,-108,64,-111,-112,-113,-114,-115,-116,64,64,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,64,-136,64,-138,64,64,64,64,-143,-144,64,64,-250,64,-252,64,-246,-26,-38,64,-44,-49,64,-219,64,64,-220,64,-254,-253,64,-24,64,-59,-92,-165,-199,-201,-202,-51,64,64,-96,-97,-100,-102,64,-117,-118,-135,64,64,64,-141,-142,64,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,64,64,64,64,-218,-134,64,-156,-215,64,64,-216,64,-137,-139,-140,-145,64,-109,-166,-157,]),'TRIM_SCALE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[65,65,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,65,-152,-151,65,-85,-86,-56,65,-155,-2,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,-247,-40,-41,-82,-83,65,-153,-84,-39,-52,65,-53,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,65,-251,65,65,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,65,-221,65,65,65,65,-101,-110,65,-148,-149,-150,65,65,-245,-249,-23,-58,-37,65,-164,65,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,65,65,-98,-99,65,65,-103,-104,-105,-106,-107,-108,65,-111,-112,-113,-114,-115,-116,65,65,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,65,-136,65,-138,65,65,65,65,-143,-144,65,65,-250,65,-252,65,-246,-26,-38,65,-44,-49,65,-219,65,65,-220,65,-254,-253,65,-24,65,-59,-92,-165,-199,-201,-202,-51,65,65,-96,-97,-100,-102,65,-117,-118,-135,65,65,65,-141,-142,65,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,65,65,65,65,-218,-134,65,-156,-215,65,65,-216,65,-137,-139,-140,-145,65,-109,-166,-157,]),'TRUNC':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[66,66,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,66,-152,-151,66,-85,-86,-56,66,-155,-2,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,-247,-40,-41,-82,-83,66,-153,-84,-39,-52,66,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,66,-251,66,66,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,66,-221,66,66,66,66,-101,-110,66,-148,-149,-150,66,66,-245,-249,-23,-58,-37,66,-164,66,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,66,66,-98,-99,66,66,-103,-104,-105,-106,-107,-108,66,-111,-112,-113,-114,-115,-116,66,66,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,66,-136,66,-138,66,66,66,66,-143,-144,66,66,-250,66,-252,66,-246,-26,-38,66,-44,-49,66,-219,66,66,-220,66,-254,-253,66,-24,66,-59,-92,-165,-199,-201,-202,-51,66,66,-96,-97,-100,-102,66,-117,-118,-135,66,66,66,-141,-142,66,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,66,66,66,66,-218,-134,66,-156,-215,66,66,-216,66,-137,-139,-140,-145,66,-109,-166,-157,]),'WIDTH_BUCKET':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[67,67,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,67,-152,-151,67,-85,-86,-56,67,-155,-2,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,-247,-40,-41,-82,-83,67,-153,-84,-39,-52,67,-53,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,67,-251,67,67,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,67,-221,67,67,67,67,-101,-110,67,-148,-149,-150,67,67,-245,-249,-23,-58,-37,67,-164,67,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,67,67,-98,-99,67,67,-103,-104,-105,-106,-107,-108,67,-111,-112,-113,-114,-115,-116,67,67,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,67,-136,67,-138,67,67,67,67,-143,-144,67,67,-250,67,-252,67,-246,-26,-38,67,-44,-49,67,-219,67,67,-220,67,-254,-253,67,-24,67,-59,-92,-165,-199,-201,-202,-51,67,67,-96,-97,-100,-102,67,-117,-118,-135,67,67,67,-141,-142,67,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,67,67,67,67,-218,-134,67,-156,-215,67,67,-216,67,-137,-139,-140,-145,67,-109,-166,-157,]),'RANDOM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[68,68,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,68,-152,-151,68,-85,-86,-56,68,-155,-2,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,-247,-40,-41,-82,-83,68,-153,-84,-39,-52,68,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,68,-251,68,68,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,68,-221,68,68,68,68,-101,-110,68,-148,-149,-150,68,68,-245,-249,-23,-58,-37,68,-164,68,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,68,68,-98,-99,68,68,-103,-104,-105,-106,-107,-108,68,-111,-112,-113,-114,-115,-116,68,68,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,68,-136,68,-138,68,68,68,68,-143,-144,68,68,-250,68,-252,68,-246,-26,-38,68,-44,-49,68,-219,68,68,-220,68,-254,-253,68,-24,68,-59,-92,-165,-199,-201,-202,-51,68,68,-96,-97,-100,-102,68,-117,-118,-135,68,68,68,-141,-142,68,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,68,68,68,68,-218,-134,68,-156,-215,68,68,-216,68,-137,-139,-140,-145,68,-109,-166,-157,]),'ACOS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[69,69,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,69,-152,-151,69,-85,-86,-56,69,-155,-2,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,-247,-40,-41,-82,-83,69,-153,-84,-39,-52,69,-53,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,69,-251,69,69,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,69,-221,69,69,69,69,-101,-110,69,-148,-149,-150,69,69,-245,-249,-23,-58,-37,69,-164,69,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,69,69,-98,-99,69,69,-103,-104,-105,-106,-107,-108,69,-111,-112,-113,-114,-115,-116,69,69,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,69,-136,69,-138,69,69,69,69,-143,-144,69,69,-250,69,-252,69,-246,-26,-38,69,-44,-49,69,-219,69,69,-220,69,-254,-253,69,-24,69,-59,-92,-165,-199,-201,-202,-51,69,69,-96,-97,-100,-102,69,-117,-118,-135,69,69,69,-141,-142,69,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,69,69,69,69,-218,-134,69,-156,-215,69,69,-216,69,-137,-139,-140,-145,69,-109,-166,-157,]),'ACOSD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[70,70,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,70,-152,-151,70,-85,-86,-56,70,-155,-2,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,-247,-40,-41,-82,-83,70,-153,-84,-39,-52,70,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,70,-251,70,70,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,70,-221,70,70,70,70,-101,-110,70,-148,-149,-150,70,70,-245,-249,-23,-58,-37,70,-164,70,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,70,70,-98,-99,70,70,-103,-104,-105,-106,-107,-108,70,-111,-112,-113,-114,-115,-116,70,70,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,70,-136,70,-138,70,70,70,70,-143,-144,70,70,-250,70,-252,70,-246,-26,-38,70,-44,-49,70,-219,70,70,-220,70,-254,-253,70,-24,70,-59,-92,-165,-199,-201,-202,-51,70,70,-96,-97,-100,-102,70,-117,-118,-135,70,70,70,-141,-142,70,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,70,70,70,70,-218,-134,70,-156,-215,70,70,-216,70,-137,-139,-140,-145,70,-109,-166,-157,]),'ASIN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[71,71,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,71,-152,-151,71,-85,-86,-56,71,-155,-2,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,-247,-40,-41,-82,-83,71,-153,-84,-39,-52,71,-53,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,71,-251,71,71,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,71,-221,71,71,71,71,-101,-110,71,-148,-149,-150,71,71,-245,-249,-23,-58,-37,71,-164,71,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,71,71,-98,-99,71,71,-103,-104,-105,-106,-107,-108,71,-111,-112,-113,-114,-115,-116,71,71,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,71,-136,71,-138,71,71,71,71,-143,-144,71,71,-250,71,-252,71,-246,-26,-38,71,-44,-49,71,-219,71,71,-220,71,-254,-253,71,-24,71,-59,-92,-165,-199,-201,-202,-51,71,71,-96,-97,-100,-102,71,-117,-118,-135,71,71,71,-141,-142,71,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,71,71,71,71,-218,-134,71,-156,-215,71,71,-216,71,-137,-139,-140,-145,71,-109,-166,-157,]),'ASIND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[72,72,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,72,-152,-151,72,-85,-86,-56,72,-155,-2,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,-247,-40,-41,-82,-83,72,-153,-84,-39,-52,72,-53,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,72,-251,72,72,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,72,-221,72,72,72,72,-101,-110,72,-148,-149,-150,72,72,-245,-249,-23,-58,-37,72,-164,72,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,72,72,-98,-99,72,72,-103,-104,-105,-106,-107,-108,72,-111,-112,-113,-114,-115,-116,72,72,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,72,-136,72,-138,72,72,72,72,-143,-144,72,72,-250,72,-252,72,-246,-26,-38,72,-44,-49,72,-219,72,72,-220,72,-254,-253,72,-24,72,-59,-92,-165,-199,-201,-202,-51,72,72,-96,-97,-100,-102,72,-117,-118,-135,72,72,72,-141,-142,72,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,72,72,72,72,-218,-134,72,-156,-215,72,72,-216,72,-137,-139,-140,-145,72,-109,-166,-157,]),'ATAN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[73,73,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,73,-152,-151,73,-85,-86,-56,73,-155,-2,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,-247,-40,-41,-82,-83,73,-153,-84,-39,-52,73,-53,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,73,-251,73,73,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,73,-221,73,73,73,73,-101,-110,73,-148,-149,-150,73,73,-245,-249,-23,-58,-37,73,-164,73,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,73,73,-98,-99,73,73,-103,-104,-105,-106,-107,-108,73,-111,-112,-113,-114,-115,-116,73,73,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,73,-136,73,-138,73,73,73,73,-143,-144,73,73,-250,73,-252,73,-246,-26,-38,73,-44,-49,73,-219,73,73,-220,73,-254,-253,73,-24,73,-59,-92,-165,-199,-201,-202,-51,73,73,-96,-97,-100,-102,73,-117,-118,-135,73,73,73,-141,-142,73,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,73,73,73,73,-218,-134,73,-156,-215,73,73,-216,73,-137,-139,-140,-145,73,-109,-166,-157,]),'ATAND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[74,74,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,74,-152,-151,74,-85,-86,-56,74,-155,-2,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,-247,-40,-41,-82,-83,74,-153,-84,-39,-52,74,-53,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,74,-251,74,74,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,74,-221,74,74,74,74,-101,-110,74,-148,-149,-150,74,74,-245,-249,-23,-58,-37,74,-164,74,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,74,74,-98,-99,74,74,-103,-104,-105,-106,-107,-108,74,-111,-112,-113,-114,-115,-116,74,74,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,74,-136,74,-138,74,74,74,74,-143,-144,74,74,-250,74,-252,74,-246,-26,-38,74,-44,-49,74,-219,74,74,-220,74,-254,-253,74,-24,74,-59,-92,-165,-199,-201,-202,-51,74,74,-96,-97,-100,-102,74,-117,-118,-135,74,74,74,-141,-142,74,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,74,74,74,74,-218,-134,74,-156,-215,74,74,-216,74,-137,-139,-140,-145,74,-109,-166,-157,]),'ATAN2':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[75,75,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,75,-152,-151,75,-85,-86,-56,75,-155,-2,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,-247,-40,-41,-82,-83,75,-153,-84,-39,-52,75,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,75,-251,75,75,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,75,-221,75,75,75,75,-101,-110,75,-148,-149,-150,75,75,-245,-249,-23,-58,-37,75,-164,75,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,75,75,-98,-99,75,75,-103,-104,-105,-106,-107,-108,75,-111,-112,-113,-114,-115,-116,75,75,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,75,-136,75,-138,75,75,75,75,-143,-144,75,75,-250,75,-252,75,-246,-26,-38,75,-44,-49,75,-219,75,75,-220,75,-254,-253,75,-24,75,-59,-92,-165,-199,-201,-202,-51,75,75,-96,-97,-100,-102,75,-117,-118,-135,75,75,75,-141,-142,75,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,75,75,75,75,-218,-134,75,-156,-215,75,75,-216,75,-137,-139,-140,-145,75,-109,-166,-157,]),'ATAN2D':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[76,76,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,76,-152,-151,76,-85,-86,-56,76,-155,-2,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,-247,-40,-41,-82,-83,76,-153,-84,-39,-52,76,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,76,-251,76,76,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,76,-221,76,76,76,76,-101,-110,76,-148,-149,-150,76,76,-245,-249,-23,-58,-37,76,-164,76,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,76,76,-98,-99,76,76,-103,-104,-105,-106,-107,-108,76,-111,-112,-113,-114,-115,-116,76,76,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,76,-136,76,-138,76,76,76,76,-143,-144,76,76,-250,76,-252,76,-246,-26,-38,76,-44,-49,76,-219,76,76,-220,76,-254,-253,76,-24,76,-59,-92,-165,-199,-201,-202,-51,76,76,-96,-97,-100,-102,76,-117,-118,-135,76,76,76,-141,-142,76,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,76,76,76,76,-218,-134,76,-156,-215,76,76,-216,76,-137,-139,-140,-145,76,-109,-166,-157,]),'COS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[77,77,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,77,-152,-151,77,-85,-86,-56,77,-155,-2,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,-247,-40,-41,-82,-83,77,-153,-84,-39,-52,77,-53,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,77,-251,77,77,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,77,-221,77,77,77,77,-101,-110,77,-148,-149,-150,77,77,-245,-249,-23,-58,-37,77,-164,77,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,77,77,-98,-99,77,77,-103,-104,-105,-106,-107,-108,77,-111,-112,-113,-114,-115,-116,77,77,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,77,-136,77,-138,77,77,77,77,-143,-144,77,77,-250,77,-252,77,-246,-26,-38,77,-44,-49,77,-219,77,77,-220,77,-254,-253,77,-24,77,-59,-92,-165,-199,-201,-202,-51,77,77,-96,-97,-100,-102,77,-117,-118,-135,77,77,77,-141,-142,77,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,77,77,77,77,-218,-134,77,-156,-215,77,77,-216,77,-137,-139,-140,-145,77,-109,-166,-157,]),'COSD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[78,78,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,78,-152,-151,78,-85,-86,-56,78,-155,-2,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,-247,-40,-41,-82,-83,78,-153,-84,-39,-52,78,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,78,-251,78,78,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,78,-221,78,78,78,78,-101,-110,78,-148,-149,-150,78,78,-245,-249,-23,-58,-37,78,-164,78,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,78,78,-98,-99,78,78,-103,-104,-105,-106,-107,-108,78,-111,-112,-113,-114,-115,-116,78,78,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,78,-136,78,-138,78,78,78,78,-143,-144,78,78,-250,78,-252,78,-246,-26,-38,78,-44,-49,78,-219,78,78,-220,78,-254,-253,78,-24,78,-59,-92,-165,-199,-201,-202,-51,78,78,-96,-97,-100,-102,78,-117,-118,-135,78,78,78,-141,-142,78,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,78,78,78,78,-218,-134,78,-156,-215,78,78,-216,78,-137,-139,-140,-145,78,-109,-166,-157,]),'COT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[79,79,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,79,-152,-151,79,-85,-86,-56,79,-155,-2,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,-247,-40,-41,-82,-83,79,-153,-84,-39,-52,79,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,79,-251,79,79,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,79,-221,79,79,79,79,-101,-110,79,-148,-149,-150,79,79,-245,-249,-23,-58,-37,79,-164,79,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,79,79,-98,-99,79,79,-103,-104,-105,-106,-107,-108,79,-111,-112,-113,-114,-115,-116,79,79,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,79,-136,79,-138,79,79,79,79,-143,-144,79,79,-250,79,-252,79,-246,-26,-38,79,-44,-49,79,-219,79,79,-220,79,-254,-253,79,-24,79,-59,-92,-165,-199,-201,-202,-51,79,79,-96,-97,-100,-102,79,-117,-118,-135,79,79,79,-141,-142,79,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,79,79,79,79,-218,-134,79,-156,-215,79,79,-216,79,-137,-139,-140,-145,79,-109,-166,-157,]),'COTD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[80,80,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,80,-152,-151,80,-85,-86,-56,80,-155,-2,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,-247,-40,-41,-82,-83,80,-153,-84,-39,-52,80,-53,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,80,-251,80,80,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,80,-221,80,80,80,80,-101,-110,80,-148,-149,-150,80,80,-245,-249,-23,-58,-37,80,-164,80,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,80,80,-98,-99,80,80,-103,-104,-105,-106,-107,-108,80,-111,-112,-113,-114,-115,-116,80,80,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,80,-136,80,-138,80,80,80,80,-143,-144,80,80,-250,80,-252,80,-246,-26,-38,80,-44,-49,80,-219,80,80,-220,80,-254,-253,80,-24,80,-59,-92,-165,-199,-201,-202,-51,80,80,-96,-97,-100,-102,80,-117,-118,-135,80,80,80,-141,-142,80,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,80,80,80,80,-218,-134,80,-156,-215,80,80,-216,80,-137,-139,-140,-145,80,-109,-166,-157,]),'SIN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[81,81,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,81,-152,-151,81,-85,-86,-56,81,-155,-2,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,-247,-40,-41,-82,-83,81,-153,-84,-39,-52,81,-53,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,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,81,81,81,81,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,81,-251,81,81,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,81,-221,81,81,81,81,-101,-110,81,-148,-149,-150,81,81,-245,-249,-23,-58,-37,81,-164,81,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,81,81,-98,-99,81,81,-103,-104,-105,-106,-107,-108,81,-111,-112,-113,-114,-115,-116,81,81,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,81,-136,81,-138,81,81,81,81,-143,-144,81,81,-250,81,-252,81,-246,-26,-38,81,-44,-49,81,-219,81,81,-220,81,-254,-253,81,-24,81,-59,-92,-165,-199,-201,-202,-51,81,81,-96,-97,-100,-102,81,-117,-118,-135,81,81,81,-141,-142,81,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,81,81,81,81,-218,-134,81,-156,-215,81,81,-216,81,-137,-139,-140,-145,81,-109,-166,-157,]),'SIND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[82,82,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,82,-152,-151,82,-85,-86,-56,82,-155,-2,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,-247,-40,-41,-82,-83,82,-153,-84,-39,-52,82,-53,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,82,-251,82,82,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,82,-221,82,82,82,82,-101,-110,82,-148,-149,-150,82,82,-245,-249,-23,-58,-37,82,-164,82,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,82,82,-98,-99,82,82,-103,-104,-105,-106,-107,-108,82,-111,-112,-113,-114,-115,-116,82,82,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,82,-136,82,-138,82,82,82,82,-143,-144,82,82,-250,82,-252,82,-246,-26,-38,82,-44,-49,82,-219,82,82,-220,82,-254,-253,82,-24,82,-59,-92,-165,-199,-201,-202,-51,82,82,-96,-97,-100,-102,82,-117,-118,-135,82,82,82,-141,-142,82,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,82,82,82,82,-218,-134,82,-156,-215,82,82,-216,82,-137,-139,-140,-145,82,-109,-166,-157,]),'TAN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[83,83,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,83,-152,-151,83,-85,-86,-56,83,-155,-2,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,-247,-40,-41,-82,-83,83,-153,-84,-39,-52,83,-53,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,83,-251,83,83,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,83,-221,83,83,83,83,-101,-110,83,-148,-149,-150,83,83,-245,-249,-23,-58,-37,83,-164,83,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,83,83,-98,-99,83,83,-103,-104,-105,-106,-107,-108,83,-111,-112,-113,-114,-115,-116,83,83,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,83,-136,83,-138,83,83,83,83,-143,-144,83,83,-250,83,-252,83,-246,-26,-38,83,-44,-49,83,-219,83,83,-220,83,-254,-253,83,-24,83,-59,-92,-165,-199,-201,-202,-51,83,83,-96,-97,-100,-102,83,-117,-118,-135,83,83,83,-141,-142,83,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,83,83,83,83,-218,-134,83,-156,-215,83,83,-216,83,-137,-139,-140,-145,83,-109,-166,-157,]),'TAND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[84,84,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,84,-152,-151,84,-85,-86,-56,84,-155,-2,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,-247,-40,-41,-82,-83,84,-153,-84,-39,-52,84,-53,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,84,-251,84,84,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,84,-221,84,84,84,84,-101,-110,84,-148,-149,-150,84,84,-245,-249,-23,-58,-37,84,-164,84,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,84,84,-98,-99,84,84,-103,-104,-105,-106,-107,-108,84,-111,-112,-113,-114,-115,-116,84,84,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,84,-136,84,-138,84,84,84,84,-143,-144,84,84,-250,84,-252,84,-246,-26,-38,84,-44,-49,84,-219,84,84,-220,84,-254,-253,84,-24,84,-59,-92,-165,-199,-201,-202,-51,84,84,-96,-97,-100,-102,84,-117,-118,-135,84,84,84,-141,-142,84,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,84,84,84,84,-218,-134,84,-156,-215,84,84,-216,84,-137,-139,-140,-145,84,-109,-166,-157,]),'SINH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[85,85,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,85,-152,-151,85,-85,-86,-56,85,-155,-2,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,-247,-40,-41,-82,-83,85,-153,-84,-39,-52,85,-53,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,85,-251,85,85,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,85,-221,85,85,85,85,-101,-110,85,-148,-149,-150,85,85,-245,-249,-23,-58,-37,85,-164,85,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,85,85,-98,-99,85,85,-103,-104,-105,-106,-107,-108,85,-111,-112,-113,-114,-115,-116,85,85,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,85,-136,85,-138,85,85,85,85,-143,-144,85,85,-250,85,-252,85,-246,-26,-38,85,-44,-49,85,-219,85,85,-220,85,-254,-253,85,-24,85,-59,-92,-165,-199,-201,-202,-51,85,85,-96,-97,-100,-102,85,-117,-118,-135,85,85,85,-141,-142,85,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,85,85,85,85,-218,-134,85,-156,-215,85,85,-216,85,-137,-139,-140,-145,85,-109,-166,-157,]),'COSH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[86,86,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,86,-152,-151,86,-85,-86,-56,86,-155,-2,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,-247,-40,-41,-82,-83,86,-153,-84,-39,-52,86,-53,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,86,-251,86,86,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,86,-221,86,86,86,86,-101,-110,86,-148,-149,-150,86,86,-245,-249,-23,-58,-37,86,-164,86,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,86,86,-98,-99,86,86,-103,-104,-105,-106,-107,-108,86,-111,-112,-113,-114,-115,-116,86,86,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,86,-136,86,-138,86,86,86,86,-143,-144,86,86,-250,86,-252,86,-246,-26,-38,86,-44,-49,86,-219,86,86,-220,86,-254,-253,86,-24,86,-59,-92,-165,-199,-201,-202,-51,86,86,-96,-97,-100,-102,86,-117,-118,-135,86,86,86,-141,-142,86,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,86,86,86,86,-218,-134,86,-156,-215,86,86,-216,86,-137,-139,-140,-145,86,-109,-166,-157,]),'TANH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[87,87,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,87,-152,-151,87,-85,-86,-56,87,-155,-2,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,-247,-40,-41,-82,-83,87,-153,-84,-39,-52,87,-53,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,87,-251,87,87,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,87,-221,87,87,87,87,-101,-110,87,-148,-149,-150,87,87,-245,-249,-23,-58,-37,87,-164,87,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,87,87,-98,-99,87,87,-103,-104,-105,-106,-107,-108,87,-111,-112,-113,-114,-115,-116,87,87,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,87,-136,87,-138,87,87,87,87,-143,-144,87,87,-250,87,-252,87,-246,-26,-38,87,-44,-49,87,-219,87,87,-220,87,-254,-253,87,-24,87,-59,-92,-165,-199,-201,-202,-51,87,87,-96,-97,-100,-102,87,-117,-118,-135,87,87,87,-141,-142,87,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,87,87,87,87,-218,-134,87,-156,-215,87,87,-216,87,-137,-139,-140,-145,87,-109,-166,-157,]),'ASINH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[88,88,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,88,-152,-151,88,-85,-86,-56,88,-155,-2,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,-247,-40,-41,-82,-83,88,-153,-84,-39,-52,88,-53,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,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,88,-251,88,88,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,88,-221,88,88,88,88,-101,-110,88,-148,-149,-150,88,88,-245,-249,-23,-58,-37,88,-164,88,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,88,88,-98,-99,88,88,-103,-104,-105,-106,-107,-108,88,-111,-112,-113,-114,-115,-116,88,88,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,88,-136,88,-138,88,88,88,88,-143,-144,88,88,-250,88,-252,88,-246,-26,-38,88,-44,-49,88,-219,88,88,-220,88,-254,-253,88,-24,88,-59,-92,-165,-199,-201,-202,-51,88,88,-96,-97,-100,-102,88,-117,-118,-135,88,88,88,-141,-142,88,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,88,88,88,88,-218,-134,88,-156,-215,88,88,-216,88,-137,-139,-140,-145,88,-109,-166,-157,]),'ACOSH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[89,89,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,89,-152,-151,89,-85,-86,-56,89,-155,-2,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,-247,-40,-41,-82,-83,89,-153,-84,-39,-52,89,-53,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,89,-251,89,89,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,89,-221,89,89,89,89,-101,-110,89,-148,-149,-150,89,89,-245,-249,-23,-58,-37,89,-164,89,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,89,89,-98,-99,89,89,-103,-104,-105,-106,-107,-108,89,-111,-112,-113,-114,-115,-116,89,89,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,89,-136,89,-138,89,89,89,89,-143,-144,89,89,-250,89,-252,89,-246,-26,-38,89,-44,-49,89,-219,89,89,-220,89,-254,-253,89,-24,89,-59,-92,-165,-199,-201,-202,-51,89,89,-96,-97,-100,-102,89,-117,-118,-135,89,89,89,-141,-142,89,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,89,89,89,89,-218,-134,89,-156,-215,89,89,-216,89,-137,-139,-140,-145,89,-109,-166,-157,]),'ATANH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[90,90,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,90,-152,-151,90,-85,-86,-56,90,-155,-2,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,-247,-40,-41,-82,-83,90,-153,-84,-39,-52,90,-53,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,90,-251,90,90,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,90,-221,90,90,90,90,-101,-110,90,-148,-149,-150,90,90,-245,-249,-23,-58,-37,90,-164,90,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,90,90,-98,-99,90,90,-103,-104,-105,-106,-107,-108,90,-111,-112,-113,-114,-115,-116,90,90,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,90,-136,90,-138,90,90,90,90,-143,-144,90,90,-250,90,-252,90,-246,-26,-38,90,-44,-49,90,-219,90,90,-220,90,-254,-253,90,-24,90,-59,-92,-165,-199,-201,-202,-51,90,90,-96,-97,-100,-102,90,-117,-118,-135,90,90,90,-141,-142,90,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,90,90,90,90,-218,-134,90,-156,-215,90,90,-216,90,-137,-139,-140,-145,90,-109,-166,-157,]),'LENGTH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[91,91,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,91,-152,-151,91,-85,-86,-56,91,-155,-2,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,-247,-40,-41,-82,-83,91,-153,-84,-39,-52,91,-53,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,91,-251,91,91,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,91,-221,91,91,91,91,-101,-110,91,-148,-149,-150,91,91,-245,-249,-23,-58,-37,91,-164,91,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,91,91,-98,-99,91,91,-103,-104,-105,-106,-107,-108,91,-111,-112,-113,-114,-115,-116,91,91,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,91,-136,91,-138,91,91,91,91,-143,-144,91,91,-250,91,-252,91,-246,-26,-38,91,-44,-49,91,-219,91,91,-220,91,-254,-253,91,-24,91,-59,-92,-165,-199,-201,-202,-51,91,91,-96,-97,-100,-102,91,-117,-118,-135,91,91,91,-141,-142,91,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,91,91,91,91,-218,-134,91,-156,-215,91,91,-216,91,-137,-139,-140,-145,91,-109,-166,-157,]),'TRIM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[92,92,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,92,-152,-151,92,-85,-86,-56,92,-155,-2,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,-247,-40,-41,-82,-83,92,-153,-84,-39,-52,92,-53,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,92,-251,92,92,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,92,-221,92,92,92,92,-101,-110,92,-148,-149,-150,92,92,-245,-249,-23,-58,-37,92,-164,92,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,92,92,-98,-99,92,92,-103,-104,-105,-106,-107,-108,92,-111,-112,-113,-114,-115,-116,92,92,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,92,-136,92,-138,92,92,92,92,-143,-144,92,92,-250,92,-252,92,-246,-26,-38,92,-44,-49,92,-219,92,92,-220,92,-254,-253,92,-24,92,-59,-92,-165,-199,-201,-202,-51,92,92,-96,-97,-100,-102,92,-117,-118,-135,92,92,92,-141,-142,92,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,92,92,92,92,-218,-134,92,-156,-215,92,92,-216,92,-137,-139,-140,-145,92,-109,-166,-157,]),'GET_BYTE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[93,93,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,93,-152,-151,93,-85,-86,-56,93,-155,-2,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,-247,-40,-41,-82,-83,93,-153,-84,-39,-52,93,-53,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,93,-251,93,93,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,93,-221,93,93,93,93,-101,-110,93,-148,-149,-150,93,93,-245,-249,-23,-58,-37,93,-164,93,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,93,93,-98,-99,93,93,-103,-104,-105,-106,-107,-108,93,-111,-112,-113,-114,-115,-116,93,93,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,93,-136,93,-138,93,93,93,93,-143,-144,93,93,-250,93,-252,93,-246,-26,-38,93,-44,-49,93,-219,93,93,-220,93,-254,-253,93,-24,93,-59,-92,-165,-199,-201,-202,-51,93,93,-96,-97,-100,-102,93,-117,-118,-135,93,93,93,-141,-142,93,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,93,93,93,93,-218,-134,93,-156,-215,93,93,-216,93,-137,-139,-140,-145,93,-109,-166,-157,]),'MD5':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[94,94,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,94,-152,-151,94,-85,-86,-56,94,-155,-2,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,-247,-40,-41,-82,-83,94,-153,-84,-39,-52,94,-53,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,94,-251,94,94,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,94,-221,94,94,94,94,-101,-110,94,-148,-149,-150,94,94,-245,-249,-23,-58,-37,94,-164,94,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,94,94,-98,-99,94,94,-103,-104,-105,-106,-107,-108,94,-111,-112,-113,-114,-115,-116,94,94,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,94,-136,94,-138,94,94,94,94,-143,-144,94,94,-250,94,-252,94,-246,-26,-38,94,-44,-49,94,-219,94,94,-220,94,-254,-253,94,-24,94,-59,-92,-165,-199,-201,-202,-51,94,94,-96,-97,-100,-102,94,-117,-118,-135,94,94,94,-141,-142,94,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,94,94,94,94,-218,-134,94,-156,-215,94,94,-216,94,-137,-139,-140,-145,94,-109,-166,-157,]),'SET_BYTE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[95,95,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,95,-152,-151,95,-85,-86,-56,95,-155,-2,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,-247,-40,-41,-82,-83,95,-153,-84,-39,-52,95,-53,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,95,-251,95,95,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,95,-221,95,95,95,95,-101,-110,95,-148,-149,-150,95,95,-245,-249,-23,-58,-37,95,-164,95,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,95,95,-98,-99,95,95,-103,-104,-105,-106,-107,-108,95,-111,-112,-113,-114,-115,-116,95,95,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,95,-136,95,-138,95,95,95,95,-143,-144,95,95,-250,95,-252,95,-246,-26,-38,95,-44,-49,95,-219,95,95,-220,95,-254,-253,95,-24,95,-59,-92,-165,-199,-201,-202,-51,95,95,-96,-97,-100,-102,95,-117,-118,-135,95,95,95,-141,-142,95,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,95,95,95,95,-218,-134,95,-156,-215,95,95,-216,95,-137,-139,-140,-145,95,-109,-166,-157,]),'SHA256':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[96,96,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,96,-152,-151,96,-85,-86,-56,96,-155,-2,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,-247,-40,-41,-82,-83,96,-153,-84,-39,-52,96,-53,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,96,-251,96,96,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,96,-221,96,96,96,96,-101,-110,96,-148,-149,-150,96,96,-245,-249,-23,-58,-37,96,-164,96,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,96,96,-98,-99,96,96,-103,-104,-105,-106,-107,-108,96,-111,-112,-113,-114,-115,-116,96,96,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,96,-136,96,-138,96,96,96,96,-143,-144,96,96,-250,96,-252,96,-246,-26,-38,96,-44,-49,96,-219,96,96,-220,96,-254,-253,96,-24,96,-59,-92,-165,-199,-201,-202,-51,96,96,-96,-97,-100,-102,96,-117,-118,-135,96,96,96,-141,-142,96,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,96,96,96,96,-218,-134,96,-156,-215,96,96,-216,96,-137,-139,-140,-145,96,-109,-166,-157,]),'SUBSTR':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[97,97,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,97,-152,-151,97,-85,-86,-56,97,-155,-2,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,-247,-40,-41,-82,-83,97,-153,-84,-39,-52,97,-53,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,97,-251,97,97,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,97,-221,97,97,97,97,-101,-110,97,-148,-149,-150,97,97,-245,-249,-23,-58,-37,97,-164,97,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,97,97,-98,-99,97,97,-103,-104,-105,-106,-107,-108,97,-111,-112,-113,-114,-115,-116,97,97,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,97,-136,97,-138,97,97,97,97,-143,-144,97,97,-250,97,-252,97,-246,-26,-38,97,-44,-49,97,-219,97,97,-220,97,-254,-253,97,-24,97,-59,-92,-165,-199,-201,-202,-51,97,97,-96,-97,-100,-102,97,-117,-118,-135,97,97,97,-141,-142,97,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,97,97,97,97,-218,-134,97,-156,-215,97,97,-216,97,-137,-139,-140,-145,97,-109,-166,-157,]),'CONVERT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[98,98,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,98,-152,-151,98,-85,-86,-56,98,-155,-2,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,-247,-40,-41,-82,-83,98,-153,-84,-39,-52,98,-53,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,98,-251,98,98,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,98,-221,98,98,98,98,-101,-110,98,-148,-149,-150,98,98,-245,-249,-23,-58,-37,98,-164,98,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,98,98,-98,-99,98,98,-103,-104,-105,-106,-107,-108,98,-111,-112,-113,-114,-115,-116,98,98,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,98,-136,98,-138,98,98,98,98,-143,-144,98,98,-250,98,-252,98,-246,-26,-38,98,-44,-49,98,-219,98,98,-220,98,-254,-253,98,-24,98,-59,-92,-165,-199,-201,-202,-51,98,98,-96,-97,-100,-102,98,-117,-118,-135,98,98,98,-141,-142,98,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,98,98,98,98,-218,-134,98,-156,-215,98,98,-216,98,-137,-139,-140,-145,98,-109,-166,-157,]),'ENCODE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[99,99,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,99,-152,-151,99,-85,-86,-56,99,-155,-2,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,-247,-40,-41,-82,-83,99,-153,-84,-39,-52,99,-53,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,99,-251,99,99,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,99,-221,99,99,99,99,-101,-110,99,-148,-149,-150,99,99,-245,-249,-23,-58,-37,99,-164,99,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,99,99,-98,-99,99,99,-103,-104,-105,-106,-107,-108,99,-111,-112,-113,-114,-115,-116,99,99,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,99,-136,99,-138,99,99,99,99,-143,-144,99,99,-250,99,-252,99,-246,-26,-38,99,-44,-49,99,-219,99,99,-220,99,-254,-253,99,-24,99,-59,-92,-165,-199,-201,-202,-51,99,99,-96,-97,-100,-102,99,-117,-118,-135,99,99,99,-141,-142,99,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,99,99,99,99,-218,-134,99,-156,-215,99,99,-216,99,-137,-139,-140,-145,99,-109,-166,-157,]),'DECODE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[100,100,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,100,-152,-151,100,-85,-86,-56,100,-155,-2,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,-247,-40,-41,-82,-83,100,-153,-84,-39,-52,100,-53,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,100,-251,100,100,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,100,-221,100,100,100,100,-101,-110,100,-148,-149,-150,100,100,-245,-249,-23,-58,-37,100,-164,100,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,100,100,-98,-99,100,100,-103,-104,-105,-106,-107,-108,100,-111,-112,-113,-114,-115,-116,100,100,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,100,-136,100,-138,100,100,100,100,-143,-144,100,100,-250,100,-252,100,-246,-26,-38,100,-44,-49,100,-219,100,100,-220,100,-254,-253,100,-24,100,-59,-92,-165,-199,-201,-202,-51,100,100,-96,-97,-100,-102,100,-117,-118,-135,100,100,100,-141,-142,100,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,100,100,100,100,-218,-134,100,-156,-215,100,100,-216,100,-137,-139,-140,-145,100,-109,-166,-157,]),'AVG':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[101,101,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,101,-152,-151,101,-85,-86,-56,101,-155,-2,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,-247,-40,-41,-82,-83,101,-153,-84,-39,-52,101,-53,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,101,-251,101,101,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,101,-221,101,101,101,101,-101,-110,101,-148,-149,-150,101,101,-245,-249,-23,-58,-37,101,-164,101,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,101,101,-98,-99,101,101,-103,-104,-105,-106,-107,-108,101,-111,-112,-113,-114,-115,-116,101,101,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,101,-136,101,-138,101,101,101,101,-143,-144,101,101,-250,101,-252,101,-246,-26,-38,101,-44,-49,101,-219,101,101,-220,101,-254,-253,101,-24,101,-59,-92,-165,-199,-201,-202,-51,101,101,-96,-97,-100,-102,101,-117,-118,-135,101,101,101,-141,-142,101,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,101,101,101,101,-218,-134,101,-156,-215,101,101,-216,101,-137,-139,-140,-145,101,-109,-166,-157,]),'SUM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[102,102,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,102,-152,-151,102,-85,-86,-56,102,-155,-2,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,-247,-40,-41,-82,-83,102,-153,-84,-39,-52,102,-53,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,102,-251,102,102,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,102,-221,102,102,102,102,-101,-110,102,-148,-149,-150,102,102,-245,-249,-23,-58,-37,102,-164,102,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,102,102,-98,-99,102,102,-103,-104,-105,-106,-107,-108,102,-111,-112,-113,-114,-115,-116,102,102,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,102,-136,102,-138,102,102,102,102,-143,-144,102,102,-250,102,-252,102,-246,-26,-38,102,-44,-49,102,-219,102,102,-220,102,-254,-253,102,-24,102,-59,-92,-165,-199,-201,-202,-51,102,102,-96,-97,-100,-102,102,-117,-118,-135,102,102,102,-141,-142,102,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,102,102,102,102,-218,-134,102,-156,-215,102,102,-216,102,-137,-139,-140,-145,102,-109,-166,-157,]),'SUBSTRING':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[103,103,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,103,-152,-151,103,-85,-86,-56,103,-155,-2,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,-247,-40,-41,-82,-83,103,-153,-84,-39,-52,103,-53,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,103,-251,103,103,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,103,-221,103,103,103,103,-101,-110,103,-148,-149,-150,103,103,-245,-249,-23,-58,-37,103,-164,103,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,103,103,-98,-99,103,103,-103,-104,-105,-106,-107,-108,103,-111,-112,-113,-114,-115,-116,103,103,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,103,-136,103,-138,103,103,103,103,-143,-144,103,103,-250,103,-252,103,-246,-26,-38,103,-44,-49,103,-219,103,103,-220,103,-254,-253,103,-24,103,-59,-92,-165,-199,-201,-202,-51,103,103,-96,-97,-100,-102,103,-117,-118,-135,103,103,103,-141,-142,103,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,103,103,103,103,-218,-134,103,-156,-215,103,103,-216,103,-137,-139,-140,-145,103,-109,-166,-157,]),'DECIMAL':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,28,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,278,280,282,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,404,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,496,509,510,513,516,520,526,530,531,532,533,534,542,551,552,553,556,561,563,571,572,575,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,672,673,678,680,682,683,684,685,686,687,694,706,707,709,710,],[32,32,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,150,32,-152,-151,32,-85,-86,-56,32,-155,-2,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,-247,-40,-41,-82,-83,32,-153,-84,-39,286,32,-53,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,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,32,-251,32,32,-256,-244,-248,-54,-31,-154,-52,-53,-81,286,-46,286,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,32,-221,32,32,32,32,-101,-110,32,-148,-149,-150,32,32,-245,-249,-23,-58,-37,32,32,-164,32,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,32,32,-98,-99,32,32,-103,-104,-105,-106,-107,-108,32,-111,-112,-113,-114,-115,-116,32,32,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,32,-136,32,-138,32,32,32,32,-143,-144,32,32,-250,32,-252,32,-246,-26,32,32,286,32,-38,32,32,-44,-49,32,-219,32,32,-220,32,-254,-253,32,-24,32,32,-59,-92,32,-165,-199,-201,-202,-51,32,32,-96,-97,-100,-102,32,-117,-118,-135,32,32,32,-141,-142,32,-146,-147,-255,-25,32,-167,32,32,-32,-33,-160,-200,-48,-50,-217,32,32,32,32,-218,-134,32,-156,32,-215,32,32,-216,32,-137,-139,-140,-145,32,-109,-166,-157,32,]),'ENTERO':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,28,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,404,408,409,411,412,413,415,416,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,509,510,513,516,520,522,526,530,531,532,533,534,542,551,552,553,556,561,563,571,572,575,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,672,673,678,680,682,683,684,685,686,687,694,706,707,709,710,],[31,31,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,149,31,-152,-151,31,-85,-86,-56,31,-155,-2,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,-247,-40,-41,-82,-83,31,-153,-84,-39,-52,31,-53,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,31,-251,31,31,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,31,-221,31,31,31,31,-101,-110,31,-148,-149,-150,31,31,-245,-249,-23,-58,-37,31,31,-164,31,-45,-197,521,523,524,-47,-87,-88,-89,-90,-91,-93,-94,-95,31,31,-98,-99,31,31,-103,-104,-105,-106,-107,-108,31,-111,-112,-113,-114,-115,-116,31,31,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,31,-136,31,-138,31,31,31,31,-143,-144,31,31,-250,31,-252,31,-246,-26,31,31,31,-38,31,31,-44,581,-49,31,-219,31,31,-220,31,-254,-253,31,-24,31,31,-59,-92,31,-165,-199,-201,-202,-51,31,31,-96,-97,-100,-102,31,-117,-118,-135,31,31,31,-141,-142,31,-146,-147,-255,-25,31,-167,31,31,-32,-33,-160,-200,-48,-50,-217,31,31,31,31,-218,-134,31,-156,31,-215,31,31,-216,31,-137,-139,-140,-145,31,-109,-166,-157,31,]),'CADENA':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,404,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,509,510,513,516,520,526,530,531,532,533,534,542,551,552,553,556,561,563,571,572,575,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,672,673,678,680,682,683,684,685,686,687,694,706,707,709,710,],[104,104,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,104,-152,-151,104,-85,-86,-56,104,-155,-2,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,252,104,-247,-40,-41,-82,-83,104,-153,-84,-39,-52,104,-53,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,104,-251,104,104,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,104,-221,104,104,104,104,-101,-110,104,-148,-149,-150,104,104,-245,-249,-23,-58,-37,104,104,-164,104,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,104,104,-98,-99,104,104,-103,-104,-105,-106,-107,-108,104,-111,-112,-113,-114,-115,-116,104,104,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,104,-136,104,-138,104,104,104,104,-143,-144,104,104,-250,104,-252,104,-246,-26,104,104,104,-38,104,104,-44,-49,104,-219,104,104,-220,104,-254,-253,104,-24,104,104,-59,-92,104,-165,-199,-201,-202,-51,104,104,-96,-97,-100,-102,104,-117,-118,-135,104,104,104,-141,-142,104,-146,-147,-255,-25,104,-167,104,104,-32,-33,-160,-200,-48,-50,-217,104,104,104,104,-218,-134,104,-156,104,-215,104,104,-216,104,-137,-139,-140,-145,104,-109,-166,-157,104,]),'$end':([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[0,-1,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'MAS':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[106,-153,-152,-151,-85,-86,-155,-82,-83,106,-153,106,106,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,106,106,106,106,106,106,106,106,106,-251,106,-154,106,-81,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,-101,106,106,106,106,106,106,106,106,-110,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,106,-136,-138,-143,-144,-66,-252,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,-66,-66,-92,106,106,106,-96,-97,-100,-102,-117,-118,106,-135,-141,-142,-146,-147,-66,106,106,106,106,-134,106,106,106,106,106,-137,-139,-140,-145,106,106,106,-109,]),'POR':([8,25,31,32,34,35,45,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[108,-153,-152,-151,-85,-86,167,-155,-82,-83,108,-153,108,108,108,108,-62,-63,-64,108,-66,-67,-68,-69,-70,-71,-72,108,108,108,108,108,108,108,108,108,-251,108,-154,108,-81,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-101,108,108,108,108,108,108,108,108,-110,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,108,-136,-138,-143,-144,-66,-252,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-66,-66,-92,108,108,108,-96,-97,-100,-102,-117,-118,108,-135,-141,-142,-146,-147,-66,108,108,108,108,-134,108,108,108,108,108,-137,-139,-140,-145,108,108,108,-109,]),'RESIDUO':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[110,-153,-152,-151,-85,-86,-155,-82,-83,110,-153,110,110,110,110,-62,-63,-64,110,-66,-67,-68,-69,-70,-71,-72,110,110,110,110,110,110,110,110,110,-251,110,-154,110,-81,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,-101,110,110,110,110,110,110,110,110,-110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,110,-136,-138,-143,-144,-66,-252,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,-66,-66,-92,110,110,110,-96,-97,-100,-102,-117,-118,110,-135,-141,-142,-146,-147,-66,110,110,110,110,-134,110,110,110,110,110,-137,-139,-140,-145,110,110,110,-109,]),'POTENCIA':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[111,-153,-152,-151,-85,-86,-155,-82,-83,111,-153,111,111,111,111,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,111,111,111,111,111,111,111,111,111,-251,111,-154,111,-81,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,-101,111,111,111,111,111,111,111,111,-110,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,111,-136,-138,-143,-144,-66,-252,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,-66,-66,-92,111,111,111,-96,-97,-100,-102,-117,-118,111,-135,-141,-142,-146,-147,-66,111,111,111,111,-134,111,111,111,111,111,-137,-139,-140,-145,111,111,111,-109,]),'AND':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,587,589,591,592,593,594,595,596,598,599,600,601,605,606,608,609,610,627,648,649,650,651,654,655,656,657,658,659,675,676,677,681,684,685,686,687,690,697,702,706,],[112,-153,-152,-151,-85,-86,-155,-82,-83,112,-153,112,112,112,112,112,112,112,112,-66,-67,-68,-69,-70,-71,-72,112,112,112,112,112,112,112,112,379,-251,112,-154,112,-81,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,-101,112,112,112,112,112,112,112,112,-110,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,486,488,112,112,112,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,112,-136,-138,-143,-144,-66,-252,553,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,-66,-66,-92,112,641,112,112,641,-96,-97,-100,-102,-117,-118,112,-135,-141,-142,-146,-147,-66,112,641,112,641,112,112,-134,112,112,112,112,-232,-233,112,-236,-137,-139,-140,-145,112,112,112,-109,]),'OR':([8,24,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,587,589,591,592,593,594,595,596,598,599,600,601,605,606,608,609,610,627,648,649,650,651,654,655,656,657,658,659,675,676,677,681,684,685,686,687,690,697,702,706,],[113,137,-153,-152,-151,-85,-86,-155,-82,-83,113,-153,113,113,113,113,113,113,113,113,-66,-67,-68,-69,-70,-71,-72,113,113,113,113,113,113,113,113,113,-251,113,-154,113,-81,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,-101,113,113,113,113,113,113,113,113,-110,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,113,-136,-138,-143,-144,-66,-252,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,-66,-66,-92,113,642,113,113,642,-96,-97,-100,-102,-117,-118,113,-135,-141,-142,-146,-147,-66,113,642,113,642,113,113,-134,113,113,113,113,-232,-233,113,-236,-137,-139,-140,-145,113,113,113,-109,]),'SIMBOLOOR2':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[114,-153,-152,-151,-85,-86,-155,-82,-83,114,-153,114,114,114,114,114,114,114,114,-66,-67,-68,-69,-70,-71,-72,114,114,114,114,114,114,114,114,114,-251,114,-154,114,-81,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,-101,114,114,114,114,114,114,114,114,-110,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,114,-136,-138,-143,-144,-66,-252,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,-66,-66,-92,114,114,114,-96,-97,-100,-102,-117,-118,114,-135,-141,-142,-146,-147,-66,114,114,114,114,-134,114,114,114,114,114,-137,-139,-140,-145,114,114,114,-109,]),'SIMBOLOOR':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[115,-153,-152,-151,-85,-86,-155,-82,-83,115,-153,115,115,115,115,115,115,115,115,-66,-67,-68,-69,-70,-71,-72,115,115,115,115,115,115,115,115,115,-251,115,-154,115,-81,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,-101,115,115,115,115,115,115,115,115,-110,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,115,-136,-138,-143,-144,-66,-252,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,-66,-66,-92,115,115,115,-96,-97,-100,-102,-117,-118,115,-135,-141,-142,-146,-147,-66,115,115,115,115,-134,115,115,115,115,115,-137,-139,-140,-145,115,115,115,-109,]),'SIMBOLOAND2':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[116,-153,-152,-151,-85,-86,-155,-82,-83,116,-153,116,116,116,116,116,116,116,116,-66,-67,-68,-69,-70,-71,-72,116,116,116,116,116,116,116,116,116,-251,116,-154,116,-81,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,-101,116,116,116,116,116,116,116,116,-110,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,116,-136,-138,-143,-144,-66,-252,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,-66,-66,-92,116,116,116,-96,-97,-100,-102,-117,-118,116,-135,-141,-142,-146,-147,-66,116,116,116,116,-134,116,116,116,116,116,-137,-139,-140,-145,116,116,116,-109,]),'DESPLAZAMIENTOIZQUIERDA':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[117,-153,-152,-151,-85,-86,-155,-82,-83,117,-153,117,117,117,117,117,117,117,117,117,117,117,117,117,-71,-72,117,117,117,117,117,117,117,117,117,-251,117,-154,117,-81,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,-101,117,117,117,117,117,117,117,117,-110,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,117,-136,-138,-143,-144,117,-252,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,-92,117,117,117,-96,-97,-100,-102,-117,-118,117,-135,-141,-142,-146,-147,117,117,117,117,117,-134,117,117,117,117,117,-137,-139,-140,-145,117,117,117,-109,]),'DESPLAZAMIENTODERECHA':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[118,-153,-152,-151,-85,-86,-155,-82,-83,118,-153,118,118,118,118,118,118,118,118,118,118,118,118,118,-71,-72,118,118,118,118,118,118,118,118,118,-251,118,-154,118,-81,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,-101,118,118,118,118,118,118,118,118,-110,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,118,-136,-138,-143,-144,118,-252,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,-92,118,118,118,-96,-97,-100,-102,-117,-118,118,-135,-141,-142,-146,-147,118,118,118,118,118,-134,118,118,118,118,118,-137,-139,-140,-145,118,118,118,-109,]),'IGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,389,390,405,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[119,-153,-152,-151,-85,-86,-155,-82,-83,119,-153,-84,119,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,119,119,119,119,119,119,119,119,119,-251,119,-154,119,-81,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,-101,119,119,119,119,119,119,119,119,-110,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,493,494,516,119,119,119,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,119,-136,-138,-143,-144,-66,-252,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,-66,-66,-92,119,119,119,-96,-97,-100,-102,-117,-118,119,-135,-141,-142,-146,-147,-66,119,-84,119,119,-134,119,119,119,119,119,-137,-139,-140,-145,119,119,119,-109,]),'IGUALIGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[120,-153,-152,-151,-85,-86,-155,-82,-83,120,-153,-84,120,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,120,120,120,120,120,120,120,120,120,-251,120,-154,120,-81,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,-101,120,120,120,120,120,120,120,120,-110,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,120,-136,-138,-143,-144,-66,-252,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,-66,-66,-92,120,120,120,-96,-97,-100,-102,-117,-118,120,-135,-141,-142,-146,-147,-66,120,-84,120,120,-134,120,120,120,120,120,-137,-139,-140,-145,120,120,120,-109,]),'NOTEQUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[121,-153,-152,-151,-85,-86,-155,-82,-83,121,-153,-84,121,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,121,121,121,121,121,121,121,121,121,-251,121,-154,121,-81,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,-101,121,121,121,121,121,121,121,121,-110,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,121,-136,-138,-143,-144,-66,-252,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,-66,-66,-92,121,121,121,-96,-97,-100,-102,-117,-118,121,-135,-141,-142,-146,-147,-66,121,-84,121,121,-134,121,121,121,121,121,-137,-139,-140,-145,121,121,121,-109,]),'MAYORIGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[122,-153,-152,-151,-85,-86,-155,-82,-83,122,-153,-84,122,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,122,122,122,122,122,122,122,122,122,-251,122,-154,122,-81,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,-101,122,122,122,122,122,122,122,122,-110,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,122,-136,-138,-143,-144,-66,-252,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,-66,-66,-92,122,122,122,-96,-97,-100,-102,-117,-118,122,-135,-141,-142,-146,-147,-66,122,-84,122,122,-134,122,122,122,122,122,-137,-139,-140,-145,122,122,122,-109,]),'MENORIGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[123,-153,-152,-151,-85,-86,-155,-82,-83,123,-153,-84,123,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,123,123,123,123,123,123,123,123,123,-251,123,-154,123,-81,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,-101,123,123,123,123,123,123,123,123,-110,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,123,-136,-138,-143,-144,-66,-252,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,-66,-66,-92,123,123,123,-96,-97,-100,-102,-117,-118,123,-135,-141,-142,-146,-147,-66,123,-84,123,123,-134,123,123,123,123,123,-137,-139,-140,-145,123,123,123,-109,]),'MAYOR':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[124,-153,-152,-151,-85,-86,-155,-82,-83,124,-153,-84,124,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,124,124,124,124,124,124,124,124,124,-251,124,-154,124,-81,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,-101,124,124,124,124,124,124,124,124,-110,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,124,-136,-138,-143,-144,-66,-252,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,-66,-66,-92,124,124,124,-96,-97,-100,-102,-117,-118,124,-135,-141,-142,-146,-147,-66,124,-84,124,124,-134,124,124,124,124,124,-137,-139,-140,-145,124,124,124,-109,]),'MENOR':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[125,-153,-152,-151,-85,-86,-155,-82,-83,125,-153,-84,125,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,125,125,125,125,125,125,125,125,125,-251,125,-154,125,-81,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,-101,125,125,125,125,125,125,125,125,-110,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,125,-136,-138,-143,-144,-66,-252,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,-66,-66,-92,125,125,125,-96,-97,-100,-102,-117,-118,125,-135,-141,-142,-146,-147,-66,125,-84,125,125,-134,125,125,125,125,125,-137,-139,-140,-145,125,125,125,-109,]),'DIFERENTE':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[126,-153,-152,-151,-85,-86,-155,-82,-83,126,-153,-84,126,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,126,126,126,126,126,126,126,126,126,-251,126,-154,126,-81,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,-101,126,126,126,126,126,126,126,126,-110,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,126,-136,-138,-143,-144,-66,-252,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,-66,-66,-92,126,126,126,-96,-97,-100,-102,-117,-118,126,-135,-141,-142,-146,-147,-66,126,-84,126,126,-134,126,126,126,126,126,-137,-139,-140,-145,126,126,126,-109,]),'BETWEEN':([8,25,31,32,34,35,104,130,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[127,-153,-152,-151,-85,-86,-155,254,-82,-83,127,-153,-84,127,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,127,127,127,127,127,127,127,127,127,-251,127,-154,127,-81,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,-101,127,127,127,127,127,127,127,127,-110,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,127,-136,-138,-143,-144,-66,-252,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,-66,-66,-92,127,127,127,-96,-97,-100,-102,-117,-118,127,-135,-141,-142,-146,-147,-66,127,-84,127,127,-134,127,127,127,127,127,-137,-139,-140,-145,127,127,127,-109,]),'LIKE':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[128,-153,-152,-151,-85,-86,-155,-82,-83,128,-153,-84,128,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,128,128,128,128,128,128,128,128,128,-251,128,-154,128,-81,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,-101,128,128,128,128,128,128,128,128,-110,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,128,-136,-138,-143,-144,-66,-252,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,-66,-66,-92,128,128,128,-96,-97,-100,-102,-117,-118,128,-135,-141,-142,-146,-147,-66,128,-84,128,128,-134,128,128,128,128,128,-137,-139,-140,-145,128,128,128,-109,]),'IN':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[129,-153,-152,-151,-85,-86,-155,-82,-83,129,-153,-84,129,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,129,129,129,129,129,129,129,129,129,-251,129,-154,129,-81,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,-101,129,129,129,129,129,129,129,129,-110,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,129,-136,-138,-143,-144,-66,-252,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,-66,-66,-92,129,129,129,-96,-97,-100,-102,-117,-118,129,-135,-141,-142,-146,-147,-66,129,-84,129,129,-134,129,129,129,129,129,-137,-139,-140,-145,129,129,129,-109,]),'DISTINCT':([8,25,31,32,34,35,45,104,133,149,150,152,153,154,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,253,255,258,264,273,274,306,311,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,381,382,422,423,424,425,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,646,649,651,654,655,656,657,658,659,677,678,679,680,684,685,686,687,690,695,696,697,702,706,],[132,-153,-152,-151,-85,-86,132,-155,257,-82,-83,132,-153,-84,132,132,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,132,132,132,132,132,132,132,132,132,-251,132,132,385,-154,132,-81,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,-101,132,132,132,132,132,132,132,132,-110,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,-238,132,132,132,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,132,-136,-138,-143,-144,-66,-252,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,-66,-66,-92,132,132,132,-96,-97,-100,-102,-117,-118,132,-135,-141,-142,-146,-147,-66,132,132,-84,132,132,-134,132,132,132,132,132,132,132,132,-137,-139,-140,-145,132,132,132,132,132,-109,]),'IS':([8,25,31,32,34,35,45,104,149,150,152,153,154,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,253,255,264,273,274,306,311,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,381,382,422,423,424,425,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,646,649,651,654,655,656,657,658,659,677,678,679,680,684,685,686,687,690,695,696,697,702,706,],[133,-153,-152,-151,-85,-86,133,-155,-82,-83,133,-153,-84,133,133,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,133,133,133,133,133,133,133,133,133,-251,133,133,-154,133,-81,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,-101,133,133,133,133,133,133,133,133,-110,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,-238,133,133,133,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,133,-136,-138,-143,-144,-66,-252,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,-66,-66,-92,133,133,133,-96,-97,-100,-102,-117,-118,133,-135,-141,-142,-146,-147,-66,133,133,-84,133,133,-134,133,133,133,133,133,133,133,133,-137,-139,-140,-145,133,133,133,133,133,-109,]),'COMA':([20,25,31,32,34,35,104,149,150,153,154,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,264,273,274,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,317,326,327,330,331,332,339,340,347,348,368,370,372,373,374,375,381,406,407,412,422,423,424,425,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,497,498,500,501,502,503,514,515,528,529,539,544,545,546,551,552,558,572,573,576,577,578,580,582,583,591,593,594,595,596,598,599,601,605,606,608,609,610,612,613,615,617,619,620,624,625,634,636,654,655,660,661,662,663,666,668,669,670,679,684,685,686,687,688,691,693,695,696,699,706,711,712,],[134,-55,-152,-151,-85,-86,-155,-82,-83,-153,-84,313,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-154,402,-81,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-242,436,437,440,-101,441,448,-110,455,456,473,475,477,478,479,480,313,518,-162,-197,313,-237,-238,532,313,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,560,-169,-173,-174,-175,-176,575,-159,-55,134,597,602,603,604,-254,-253,-170,-92,575,-163,518,-161,-199,-201,-202,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-171,-178,-180,-182,-184,-185,-168,575,-158,-200,683,-134,-177,-179,-181,-183,-172,-187,575,575,313,-137,-139,-140,-145,-186,-189,575,313,313,-188,-109,575,-190,]),'DATABASES':([23,],[135,]),'DATABASE':([24,26,27,262,],[136,140,144,391,]),'TABLE':([24,26,27,],[138,141,145,]),'PUNTO':([25,153,],[139,139,]),'PARENTESISDERECHA':([31,32,34,35,104,149,150,152,153,154,168,169,184,193,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,264,274,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,317,318,319,320,321,322,323,324,325,328,329,331,333,334,335,336,337,338,340,341,342,343,344,345,346,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,369,371,376,377,381,412,418,419,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,497,498,500,501,502,503,512,514,515,521,523,524,528,529,535,536,537,538,540,541,543,547,548,549,550,551,552,558,572,573,580,581,582,583,585,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,612,613,615,617,619,620,624,625,627,634,636,648,649,650,651,655,656,657,658,659,660,661,662,663,666,668,669,670,675,676,681,684,685,686,687,688,689,690,691,693,697,699,706,711,712,],[-152,-151,-85,-86,-155,-82,-83,274,-153,-84,-240,-239,331,340,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-154,-81,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,417,-242,428,429,430,431,432,433,434,435,438,439,-101,442,443,444,445,446,447,-110,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,487,-197,525,526,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,559,-169,-173,-174,-175,-176,572,574,-159,580,582,583,-55,586,593,594,595,596,598,599,601,605,606,608,609,-254,-253,-170,-92,632,-199,636,-201,-202,638,-235,-241,-96,-97,-100,-102,-117,-118,655,-135,-141,-142,-146,-147,-255,-171,-178,-180,-182,-184,-185,-168,666,668,-158,-200,-234,-84,681,274,-134,684,685,686,687,-177,-179,-181,-183,-172,-187,691,692,-232,-233,-236,-137,-139,-140,-145,-186,698,699,-189,701,706,-188,-109,712,-190,]),'AS':([31,32,34,35,104,149,150,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,331,340,423,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,316,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-101,-110,316,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'FROM':([31,32,34,35,38,104,132,149,150,153,154,166,167,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,257,264,274,317,331,340,378,385,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,551,552,572,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,157,-155,256,-82,-83,-153,-84,311,315,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,384,-154,-81,-242,-101,-110,483,490,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,542,-136,-138,-143,-144,-250,-252,-254,-253,-92,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'PUNTOYCOMA':([31,32,34,35,104,135,142,146,149,150,153,154,158,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,261,264,268,270,271,272,274,277,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,317,331,340,387,388,396,407,411,412,417,422,423,424,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,492,495,511,519,520,526,551,552,554,555,557,559,566,567,568,569,570,572,576,577,578,580,582,583,586,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,632,636,637,638,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,698,701,702,703,704,705,706,],[-152,-151,-85,-86,-155,260,-40,-41,-82,-83,-153,-84,-39,312,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,386,-154,399,401,-52,-53,-81,408,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-242,-101,-110,491,-28,510,-162,-45,-197,-47,531,-237,-238,534,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-27,556,571,579,-44,-49,-254,-253,-29,-30,611,622,630,631,-34,-35,-36,-92,-163,635,-161,-199,-201,-202,-51,640,-235,-241,653,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,671,-200,-48,-50,673,-223,-234,-84,682,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,707,709,-228,-229,-230,-231,-109,]),'WHERE':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,277,317,331,340,406,407,422,423,424,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,576,578,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,409,-242,-101,-110,517,-162,530,-237,-238,533,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-163,-161,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'LIMIT':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,644,-235,-241,644,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,644,-223,-234,-84,644,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'GROUP':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,645,-235,-241,645,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,645,-223,-234,-84,645,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'HAVING':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,646,-235,-241,646,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,646,-223,-234,-84,646,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'ORDER':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,647,-235,-241,647,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,647,-223,-234,-84,647,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'ASC':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,696,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,704,-109,]),'DESC':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,696,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,705,-109,]),'FOR':([31,32,34,35,104,149,150,153,154,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,331,340,378,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,549,551,552,572,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-101,-110,484,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,607,-254,-253,-92,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'OFFSET':([31,32,34,35,104,149,150,153,154,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,331,340,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,593,594,595,596,598,599,601,605,606,608,609,610,655,677,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-101,-110,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,694,-137,-139,-140,-145,-109,]),'OWNER':([31,32,104,153,261,264,265,387,388,492,495,554,555,557,],[-152,-151,-155,-153,389,-154,394,389,-28,-27,389,-29,-30,389,]),'MODE':([31,32,104,153,261,264,387,388,492,495,554,555,557,],[-152,-151,-155,-153,390,-154,390,-28,-27,390,-29,-30,390,]),'DEFAULT':([31,32,104,153,264,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,412,558,580,582,583,612,613,615,617,619,620,636,660,661,662,663,668,688,699,],[-152,-151,-155,-153,-154,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-197,614,-199,-201,-202,614,-178,-180,-182,-184,-185,-200,-177,-179,-181,-183,-187,-186,-188,]),'NULL':([31,32,104,153,264,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,410,412,558,580,582,583,612,613,615,616,617,619,620,636,660,661,662,663,668,688,699,],[-152,-151,-155,-153,-154,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,520,-197,615,-199,-201,-202,615,-178,-180,662,-182,-184,-185,-200,-177,-179,-181,-183,-187,-186,-188,]),'UNIQUE':([31,32,104,153,165,264,279,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,392,412,558,560,580,582,583,612,613,615,617,619,620,636,660,661,662,663,664,668,688,699,],[-152,-151,-155,-153,310,-154,310,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,499,-197,617,499,-199,-201,-202,617,-178,-180,-182,-184,-185,-200,-177,-179,-181,-183,688,-187,-186,-188,]),'INTO':([36,],[155,]),'KEY':([42,43,309,506,507,618,],[163,164,420,564,565,663,]),'SYMMETRIC':([127,254,],[251,383,]),'REPLACE':([137,],[262,]),'IF':([144,],[269,]),'SET':([156,161,267,],[276,281,281,]),'TYPE':([161,267,],[282,282,]),'SMALLINT':([161,278,282,496,],[283,283,283,283,]),'INTEGER':([161,278,282,496,],[284,284,284,284,]),'BIGINT':([161,278,282,496,],[285,285,285,285,]),'NUMERIC':([161,278,282,496,],[287,287,287,287,]),'REAL':([161,278,282,496,],[288,288,288,288,]),'DOUBLE':([161,278,282,496,],[289,289,289,289,]),'MONEY':([161,278,282,496,],[290,290,290,290,]),'VARCHAR':([161,278,282,496,],[291,291,291,291,]),'CHARACTER':([161,278,282,496,],[292,292,292,292,]),'CHAR':([161,278,282,496,],[293,293,293,293,]),'TEXT':([161,278,282,496,],[294,294,294,294,]),'BOOLEAN':([161,278,282,496,],[295,295,295,295,]),'TIMESTAMP':([161,278,282,496,],[296,296,296,296,]),'TIME':([161,278,282,496,],[297,297,297,297,]),'INTERVAL':([161,278,282,496,],[298,298,298,298,]),'DATE':([161,278,282,496,],[299,299,299,299,]),'YEAR':([161,278,282,496,],[300,300,300,300,]),'MONTH':([161,278,282,496,],[301,301,301,301,]),'DAY':([161,278,282,496,],[302,302,302,302,]),'HOUR':([161,278,282,496,],[303,303,303,303,]),'MINUTE':([161,278,282,496,],[304,304,304,304,]),'SECOND':([161,278,282,496,],[305,305,305,305,]),'LEADING':([217,],[365,]),'TRAILING':([217,],[366,]),'BOTH':([217,],[367,]),'RENAME':([265,],[393,]),'EXISTS':([269,],[400,]),'VALUES':([275,574,],[403,633,]),'PRECISION':([289,],[412,]),'VARYING':([292,],[414,]),'TO':([393,394,],[508,509,]),'CURRENT_USER':([509,],[568,]),'SESSION_USER':([509,],[569,]),'REFERENCES':([525,692,],[584,700,]),'INHERITS':([559,],[623,]),'BY':([645,647,],[678,680,]),}
_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 = {'inicio':([0,],[1,]),'queries':([0,],[2,]),'query':([0,2,],[3,105,]),'mostrarBD':([0,2,],[4,4,]),'crearBD':([0,2,],[5,5,]),'alterBD':([0,2,],[6,6,]),'dropBD':([0,2,],[7,7,]),'operacion':([0,2,30,33,45,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,151,162,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,251,253,254,311,313,314,315,316,364,379,383,402,409,436,437,440,441,448,455,456,473,475,477,478,479,480,483,484,486,488,516,530,532,533,542,553,563,588,590,597,602,603,604,607,641,642,644,646,667,678,680,683,694,],[8,8,152,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,255,273,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,332,333,334,335,336,337,338,339,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,168,382,168,423,425,168,427,472,485,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,576,589,591,589,600,610,627,649,651,654,656,657,658,659,589,589,677,168,690,168,168,697,702,]),'insertinBD':([0,2,],[9,9,]),'updateinBD':([0,2,],[10,10,]),'deleteinBD':([0,2,],[11,11,]),'createTable':([0,2,],[12,12,]),'inheritsBD':([0,2,],[13,13,]),'dropTable':([0,2,],[14,14,]),'alterTable':([0,2,],[15,15,]),'variantesAt':([0,2,266,],[16,16,396,]),'contAdd':([0,2,39,397,],[17,17,158,158,]),'contDrop':([0,2,27,398,],[18,18,146,146,]),'contAlter':([0,2,26,395,],[19,19,142,142,]),'listaid':([0,2,421,],[20,20,529,]),'tipoAlter':([0,2,],[21,21,]),'selectData':([0,2,],[22,22,]),'funcionBasica':([0,2,30,33,45,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,151,162,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,251,253,254,311,313,314,315,316,364,379,383,402,409,436,437,440,441,448,455,456,473,475,477,478,479,480,483,484,486,488,516,530,532,533,542,553,563,588,590,597,602,603,604,607,641,642,644,646,667,678,680,683,694,],[34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,]),'final':([0,2,30,33,45,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,151,162,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,251,253,254,311,313,314,315,316,364,379,383,402,404,409,436,437,440,441,448,455,456,473,475,477,478,479,480,483,484,486,488,493,494,509,513,516,530,532,533,542,553,561,563,575,588,590,597,602,603,604,607,614,628,629,641,642,644,646,667,672,678,680,683,694,710,],[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,515,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,554,555,570,515,35,35,35,35,35,35,515,35,634,35,35,35,35,35,35,35,661,515,515,35,35,35,35,35,515,35,35,35,35,515,]),'condicion_select':([8,45,152,154,166,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,253,255,273,306,311,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,332,333,334,335,336,337,338,339,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,381,382,422,423,425,426,427,472,485,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,576,589,591,600,610,627,646,649,651,654,656,657,658,659,677,678,679,680,690,695,696,697,702,],[131,170,131,131,314,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,170,131,131,131,170,170,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,314,131,314,131,131,314,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,170,131,131,131,131,131,131,131,131,170,314,170,131,314,314,131,131,]),'select_list':([45,253,311,315,646,678,680,],[166,381,422,426,679,695,696,]),'asignacion':([45,253,311,313,315,646,678,680,],[169,169,169,424,169,169,169,169,]),'tipo':([161,278,282,496,],[280,280,411,558,]),'opcionTrim':([217,],[364,]),'parametrosCrearBD':([261,495,],[387,557,]),'parametroCrearBD':([261,387,495,557,],[388,492,388,492,]),'asignaciones':([276,517,],[406,577,]),'asigna':([276,517,518,],[407,407,578,]),'creaColumnas':([392,],[497,]),'Columna':([392,560,],[498,624,]),'constraintcheck':([392,558,560,612,],[500,619,500,619,]),'checkinColumn':([392,558,560,612,],[501,620,501,620,]),'primaryKey':([392,560,],[502,502,]),'foreignKey':([392,560,],[503,503,]),'listaParam':([404,513,561,628,629,672,710,],[514,573,625,669,670,693,711,]),'parametroAlterUser':([509,],[567,]),'search_condition':([530,533,588,590,641,642,],[587,592,648,650,675,676,]),'paramOpcional':([558,],[612,]),'paramopc':([558,612,],[613,660,]),'opcionesSelect':([587,592,],[639,652,]),'opcionSelect':([587,592,639,652,],[643,643,674,674,]),'ordenamiento':([696,],[703,]),}
_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' -> inicio","S'",1,None,None,None),
('inicio -> queries','inicio',1,'p_inicio_1','gramaticaAscendenteTree.py',414),
('queries -> queries query','queries',2,'p_queries_1','gramaticaAscendenteTree.py',425),
('queries -> query','queries',1,'p_queries_2','gramaticaAscendenteTree.py',438),
('query -> mostrarBD','query',1,'p_query','gramaticaAscendenteTree.py',449),
('query -> crearBD','query',1,'p_query','gramaticaAscendenteTree.py',450),
('query -> alterBD','query',1,'p_query','gramaticaAscendenteTree.py',451),
('query -> dropBD','query',1,'p_query','gramaticaAscendenteTree.py',452),
('query -> operacion','query',1,'p_query','gramaticaAscendenteTree.py',453),
('query -> insertinBD','query',1,'p_query','gramaticaAscendenteTree.py',454),
('query -> updateinBD','query',1,'p_query','gramaticaAscendenteTree.py',455),
('query -> deleteinBD','query',1,'p_query','gramaticaAscendenteTree.py',456),
('query -> createTable','query',1,'p_query','gramaticaAscendenteTree.py',457),
('query -> inheritsBD','query',1,'p_query','gramaticaAscendenteTree.py',458),
('query -> dropTable','query',1,'p_query','gramaticaAscendenteTree.py',459),
('query -> alterTable','query',1,'p_query','gramaticaAscendenteTree.py',460),
('query -> variantesAt','query',1,'p_query','gramaticaAscendenteTree.py',461),
('query -> contAdd','query',1,'p_query','gramaticaAscendenteTree.py',462),
('query -> contDrop','query',1,'p_query','gramaticaAscendenteTree.py',463),
('query -> contAlter','query',1,'p_query','gramaticaAscendenteTree.py',464),
('query -> listaid','query',1,'p_query','gramaticaAscendenteTree.py',465),
('query -> tipoAlter','query',1,'p_query','gramaticaAscendenteTree.py',466),
('query -> selectData','query',1,'p_query','gramaticaAscendenteTree.py',467),
('crearBD -> CREATE DATABASE ID PUNTOYCOMA','crearBD',4,'p_crearBaseDatos_1','gramaticaAscendenteTree.py',486),
('crearBD -> CREATE OR REPLACE DATABASE ID PUNTOYCOMA','crearBD',6,'p_crearBaseDatos_2','gramaticaAscendenteTree.py',509),
('crearBD -> CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMA','crearBD',7,'p_crearBaseDatos_3','gramaticaAscendenteTree.py',515),
('crearBD -> CREATE DATABASE ID parametrosCrearBD PUNTOYCOMA','crearBD',5,'p_crearBaseDatos_4','gramaticaAscendenteTree.py',521),
('parametrosCrearBD -> parametrosCrearBD parametroCrearBD','parametrosCrearBD',2,'p_parametrosCrearBD_1','gramaticaAscendenteTree.py',528),
('parametrosCrearBD -> parametroCrearBD','parametrosCrearBD',1,'p_parametrosCrearBD_2','gramaticaAscendenteTree.py',535),
('parametroCrearBD -> OWNER IGUAL final','parametroCrearBD',3,'p_parametroCrearBD','gramaticaAscendenteTree.py',541),
('parametroCrearBD -> MODE IGUAL final','parametroCrearBD',3,'p_parametroCrearBD','gramaticaAscendenteTree.py',542),
('mostrarBD -> SHOW DATABASES PUNTOYCOMA','mostrarBD',3,'p_mostrarBD','gramaticaAscendenteTree.py',554),
('alterBD -> ALTER DATABASE ID RENAME TO ID PUNTOYCOMA','alterBD',7,'p_alterBD_1','gramaticaAscendenteTree.py',560),
('alterBD -> ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMA','alterBD',7,'p_alterBD_2','gramaticaAscendenteTree.py',566),
('parametroAlterUser -> CURRENT_USER','parametroAlterUser',1,'p_parametroAlterUser','gramaticaAscendenteTree.py',572),
('parametroAlterUser -> SESSION_USER','parametroAlterUser',1,'p_parametroAlterUser','gramaticaAscendenteTree.py',573),
('parametroAlterUser -> final','parametroAlterUser',1,'p_parametroAlterUser','gramaticaAscendenteTree.py',574),
('dropTable -> DROP TABLE ID PUNTOYCOMA','dropTable',4,'p_dropTable','gramaticaAscendenteTree.py',581),
('alterTable -> ALTER TABLE ID variantesAt PUNTOYCOMA','alterTable',5,'p_alterTable','gramaticaAscendenteTree.py',587),
('variantesAt -> ADD contAdd','variantesAt',2,'p_variantesAt','gramaticaAscendenteTree.py',597),
('variantesAt -> ALTER contAlter','variantesAt',2,'p_variantesAt','gramaticaAscendenteTree.py',598),
('variantesAt -> DROP contDrop','variantesAt',2,'p_variantesAt','gramaticaAscendenteTree.py',599),
('listaContAlter -> listaContAlter COMA contAlter','listaContAlter',3,'p_listaContAlter','gramaticaAscendenteTree.py',617),
('listaContAlter -> contAlter','listaContAlter',1,'p_listaContAlter_2','gramaticaAscendenteTree.py',623),
('contAlter -> COLUMN ID SET NOT NULL','contAlter',5,'p_contAlter','gramaticaAscendenteTree.py',630),
('contAlter -> COLUMN ID TYPE tipo','contAlter',4,'p_contAlter','gramaticaAscendenteTree.py',631),
('contAdd -> COLUMN ID tipo','contAdd',3,'p_contAdd','gramaticaAscendenteTree.py',645),
('contAdd -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA','contAdd',4,'p_contAdd','gramaticaAscendenteTree.py',646),
('contAdd -> FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID','contAdd',7,'p_contAdd','gramaticaAscendenteTree.py',647),
('contAdd -> PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA','contAdd',5,'p_contAdd','gramaticaAscendenteTree.py',648),
('contAdd -> CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA','contAdd',7,'p_contAdd','gramaticaAscendenteTree.py',649),
('contAdd -> CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA','contAdd',6,'p_contAdd','gramaticaAscendenteTree.py',650),
('contDrop -> COLUMN ID','contDrop',2,'p_contDrop','gramaticaAscendenteTree.py',677),
('contDrop -> CONSTRAINT ID','contDrop',2,'p_contDrop','gramaticaAscendenteTree.py',678),
('listaid -> listaid COMA ID','listaid',3,'p_listaID','gramaticaAscendenteTree.py',692),
('listaid -> ID','listaid',1,'p_listaID_2','gramaticaAscendenteTree.py',701),
('tipoAlter -> ADD','tipoAlter',1,'p_tipoAlter','gramaticaAscendenteTree.py',710),
('tipoAlter -> DROP','tipoAlter',1,'p_tipoAlter','gramaticaAscendenteTree.py',711),
('dropBD -> DROP DATABASE ID PUNTOYCOMA','dropBD',4,'p_dropBD_1','gramaticaAscendenteTree.py',716),
('dropBD -> DROP DATABASE IF EXISTS ID PUNTOYCOMA','dropBD',6,'p_dropBD_2','gramaticaAscendenteTree.py',723),
('operacion -> operacion MAS operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',729),
('operacion -> operacion MENOS operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',730),
('operacion -> operacion POR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',731),
('operacion -> operacion DIV operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',732),
('operacion -> operacion RESIDUO operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',733),
('operacion -> operacion POTENCIA operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',734),
('operacion -> operacion AND operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',735),
('operacion -> operacion OR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',736),
('operacion -> operacion SIMBOLOOR2 operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',737),
('operacion -> operacion SIMBOLOOR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',738),
('operacion -> operacion SIMBOLOAND2 operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',739),
('operacion -> operacion DESPLAZAMIENTOIZQUIERDA operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',740),
('operacion -> operacion DESPLAZAMIENTODERECHA operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',741),
('operacion -> operacion IGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',742),
('operacion -> operacion IGUALIGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',743),
('operacion -> operacion NOTEQUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',744),
('operacion -> operacion MAYORIGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',745),
('operacion -> operacion MENORIGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',746),
('operacion -> operacion MAYOR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',747),
('operacion -> operacion MENOR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',748),
('operacion -> operacion DIFERENTE operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',749),
('operacion -> PARENTESISIZQUIERDA operacion PARENTESISDERECHA','operacion',3,'p_operacion','gramaticaAscendenteTree.py',750),
('operacion -> MENOS ENTERO','operacion',2,'p_operacion_menos_unario','gramaticaAscendenteTree.py',863),
('operacion -> MENOS DECIMAL','operacion',2,'p_operacion_menos_unario','gramaticaAscendenteTree.py',864),
('operacion -> NOT operacion','operacion',2,'p_operacion_not_unario','gramaticaAscendenteTree.py',872),
('operacion -> funcionBasica','operacion',1,'p_operacion_funcion','gramaticaAscendenteTree.py',878),
('operacion -> final','operacion',1,'p_operacion_final','gramaticaAscendenteTree.py',884),
('funcionBasica -> ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',891),
('funcionBasica -> CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',892),
('funcionBasica -> CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',893),
('funcionBasica -> CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',894),
('funcionBasica -> DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',895),
('funcionBasica -> DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',896),
('funcionBasica -> EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',897),
('funcionBasica -> FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',898),
('funcionBasica -> FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',899),
('funcionBasica -> GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',900),
('funcionBasica -> LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',901),
('funcionBasica -> LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',902),
('funcionBasica -> LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',903),
('funcionBasica -> MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',904),
('funcionBasica -> PI PARENTESISIZQUIERDA PARENTESISDERECHA','funcionBasica',3,'p_funcion_basica','gramaticaAscendenteTree.py',905),
('funcionBasica -> POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',906),
('funcionBasica -> RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',907),
('funcionBasica -> ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',908),
('funcionBasica -> SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',909),
('funcionBasica -> SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',910),
('funcionBasica -> TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',911),
('funcionBasica -> TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',912),
('funcionBasica -> WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',10,'p_funcion_basica','gramaticaAscendenteTree.py',913),
('funcionBasica -> RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA','funcionBasica',3,'p_funcion_basica','gramaticaAscendenteTree.py',914),
('funcionBasica -> ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',917),
('funcionBasica -> ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',918),
('funcionBasica -> ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',919),
('funcionBasica -> ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',920),
('funcionBasica -> ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',921),
('funcionBasica -> ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',922),
('funcionBasica -> ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',923),
('funcionBasica -> ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',924),
('funcionBasica -> COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',927),
('funcionBasica -> COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',928),
('funcionBasica -> COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',929),
('funcionBasica -> COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',930),
('funcionBasica -> SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',931),
('funcionBasica -> SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',932),
('funcionBasica -> TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',933),
('funcionBasica -> TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',934),
('funcionBasica -> SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',935),
('funcionBasica -> COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',939),
('funcionBasica -> TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',940),
('funcionBasica -> ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',941),
('funcionBasica -> ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',942),
('funcionBasica -> ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',943),
('funcionBasica -> LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',944),
('funcionBasica -> TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA','funcionBasica',7,'p_funcion_basica','gramaticaAscendenteTree.py',945),
('funcionBasica -> GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',946),
('funcionBasica -> MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',947),
('funcionBasica -> SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica','gramaticaAscendenteTree.py',948),
('funcionBasica -> SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',949),
('funcionBasica -> SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica','gramaticaAscendenteTree.py',950),
('funcionBasica -> CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica','gramaticaAscendenteTree.py',951),
('funcionBasica -> ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',952),
('funcionBasica -> DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',953),
('funcionBasica -> AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',954),
('funcionBasica -> SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',955),
('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica_1','gramaticaAscendenteTree.py',1129),
('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica_2','gramaticaAscendenteTree.py',1133),
('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica_3','gramaticaAscendenteTree.py',1137),
('opcionTrim -> LEADING','opcionTrim',1,'p_opcionTrim','gramaticaAscendenteTree.py',1142),
('opcionTrim -> TRAILING','opcionTrim',1,'p_opcionTrim','gramaticaAscendenteTree.py',1143),
('opcionTrim -> BOTH','opcionTrim',1,'p_opcionTrim','gramaticaAscendenteTree.py',1144),
('final -> DECIMAL','final',1,'p_final','gramaticaAscendenteTree.py',1151),
('final -> ENTERO','final',1,'p_final','gramaticaAscendenteTree.py',1152),
('final -> ID','final',1,'p_final_id','gramaticaAscendenteTree.py',1165),
('final -> ID PUNTO ID','final',3,'p_final_invocacion','gramaticaAscendenteTree.py',1177),
('final -> CADENA','final',1,'p_final_cadena','gramaticaAscendenteTree.py',1184),
('insertinBD -> INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA','insertinBD',8,'p_insertBD_1','gramaticaAscendenteTree.py',1197),
('insertinBD -> INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA','insertinBD',11,'p_insertBD_2','gramaticaAscendenteTree.py',1227),
('listaParam -> listaParam COMA final','listaParam',3,'p_listaParam','gramaticaAscendenteTree.py',1232),
('listaParam -> final','listaParam',1,'p_listaParam_2','gramaticaAscendenteTree.py',1246),
('updateinBD -> UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMA','updateinBD',7,'p_updateBD','gramaticaAscendenteTree.py',1257),
('asignaciones -> asignaciones COMA asigna','asignaciones',3,'p_asignaciones','gramaticaAscendenteTree.py',1291),
('asignaciones -> asigna','asignaciones',1,'p_asignaciones_2','gramaticaAscendenteTree.py',1305),
('asigna -> ID IGUAL operacion','asigna',3,'p_asigna','gramaticaAscendenteTree.py',1316),
('deleteinBD -> DELETE FROM ID PUNTOYCOMA','deleteinBD',4,'p_deleteinBD_1','gramaticaAscendenteTree.py',1332),
('deleteinBD -> DELETE FROM ID WHERE operacion PUNTOYCOMA','deleteinBD',6,'p_deleteinBD_2','gramaticaAscendenteTree.py',1336),
('inheritsBD -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMA','inheritsBD',11,'p_inheritsBD','gramaticaAscendenteTree.py',1368),
('createTable -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMA','createTable',7,'p_createTable','gramaticaAscendenteTree.py',1402),
('creaColumnas -> creaColumnas COMA Columna','creaColumnas',3,'p_creaColumna','gramaticaAscendenteTree.py',1429),
('creaColumnas -> Columna','creaColumnas',1,'p_creaColumna_2','gramaticaAscendenteTree.py',1442),
('Columna -> ID tipo','Columna',2,'p_columna_1','gramaticaAscendenteTree.py',1454),
('Columna -> ID tipo paramOpcional','Columna',3,'p_columna_2','gramaticaAscendenteTree.py',1469),
('Columna -> UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHA','Columna',4,'p_columna_3','gramaticaAscendenteTree.py',1487),
('Columna -> constraintcheck','Columna',1,'p_columna_4','gramaticaAscendenteTree.py',1502),
('Columna -> checkinColumn','Columna',1,'p_columna_5','gramaticaAscendenteTree.py',1512),
('Columna -> primaryKey','Columna',1,'p_columna_6','gramaticaAscendenteTree.py',1522),
('Columna -> foreignKey','Columna',1,'p_columna_7','gramaticaAscendenteTree.py',1532),
('paramOpcional -> paramOpcional paramopc','paramOpcional',2,'p_paramOpcional','gramaticaAscendenteTree.py',1545),
('paramOpcional -> paramopc','paramOpcional',1,'p_paramOpcional_1','gramaticaAscendenteTree.py',1558),
('paramopc -> DEFAULT final','paramopc',2,'p_paramopc_1','gramaticaAscendenteTree.py',1570),
('paramopc -> NULL','paramopc',1,'p_paramopc_1','gramaticaAscendenteTree.py',1571),
('paramopc -> NOT NULL','paramopc',2,'p_paramopc_1','gramaticaAscendenteTree.py',1572),
('paramopc -> UNIQUE','paramopc',1,'p_paramopc_1','gramaticaAscendenteTree.py',1573),
('paramopc -> PRIMARY KEY','paramopc',2,'p_paramopc_1','gramaticaAscendenteTree.py',1574),
('paramopc -> constraintcheck','paramopc',1,'p_paramopc_2','gramaticaAscendenteTree.py',1651),
('paramopc -> checkinColumn','paramopc',1,'p_paramopc_3','gramaticaAscendenteTree.py',1661),
('paramopc -> CONSTRAINT ID UNIQUE','paramopc',3,'p_paramopc_4','gramaticaAscendenteTree.py',1674),
('checkinColumn -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA','checkinColumn',4,'p_checkcolumna','gramaticaAscendenteTree.py',1699),
('constraintcheck -> CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA','constraintcheck',6,'p_constraintcheck','gramaticaAscendenteTree.py',1715),
('primaryKey -> PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA','primaryKey',5,'p_primaryKey','gramaticaAscendenteTree.py',1741),
('foreignKey -> FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA','foreignKey',10,'p_foreingkey','gramaticaAscendenteTree.py',1761),
('tipo -> SMALLINT','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1796),
('tipo -> INTEGER','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1797),
('tipo -> BIGINT','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1798),
('tipo -> DECIMAL','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1799),
('tipo -> NUMERIC','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1800),
('tipo -> REAL','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1801),
('tipo -> DOUBLE PRECISION','tipo',2,'p_tipo','gramaticaAscendenteTree.py',1802),
('tipo -> MONEY','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1803),
('tipo -> VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',4,'p_tipo','gramaticaAscendenteTree.py',1804),
('tipo -> CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',5,'p_tipo','gramaticaAscendenteTree.py',1805),
('tipo -> CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',4,'p_tipo','gramaticaAscendenteTree.py',1806),
('tipo -> CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',4,'p_tipo','gramaticaAscendenteTree.py',1807),
('tipo -> TEXT','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1808),
('tipo -> BOOLEAN','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1809),
('tipo -> TIMESTAMP','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1810),
('tipo -> TIME','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1811),
('tipo -> INTERVAL','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1812),
('tipo -> DATE','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1813),
('tipo -> YEAR','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1814),
('tipo -> MONTH','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1815),
('tipo -> DAY','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1816),
('tipo -> HOUR','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1817),
('tipo -> MINUTE','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1818),
('tipo -> SECOND','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1819),
('selectData -> SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA','selectData',8,'p_select','gramaticaAscendenteTree.py',2129),
('selectData -> SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA','selectData',8,'p_select','gramaticaAscendenteTree.py',2130),
('selectData -> SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA','selectData',7,'p_select_1','gramaticaAscendenteTree.py',2139),
('selectData -> SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA','selectData',7,'p_select_1','gramaticaAscendenteTree.py',2140),
('selectData -> SELECT select_list FROM select_list PUNTOYCOMA','selectData',5,'p_select_2','gramaticaAscendenteTree.py',2148),
('selectData -> SELECT POR FROM select_list PUNTOYCOMA','selectData',5,'p_select_2','gramaticaAscendenteTree.py',2149),
('selectData -> SELECT select_list PUNTOYCOMA','selectData',3,'p_select_3','gramaticaAscendenteTree.py',2169),
('opcionesSelect -> opcionesSelect opcionSelect','opcionesSelect',2,'p_opcionesSelect_1','gramaticaAscendenteTree.py',2175),
('opcionesSelect -> opcionSelect','opcionesSelect',1,'p_opcionesSelect_2','gramaticaAscendenteTree.py',2180),
('opcionSelect -> LIMIT operacion','opcionSelect',2,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2186),
('opcionSelect -> GROUP BY select_list','opcionSelect',3,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2187),
('opcionSelect -> HAVING select_list','opcionSelect',2,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2188),
('opcionSelect -> ORDER BY select_list','opcionSelect',3,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2189),
('opcionSelect -> LIMIT operacion OFFSET operacion','opcionSelect',4,'p_opcionesSelect_4','gramaticaAscendenteTree.py',2201),
('opcionSelect -> ORDER BY select_list ordenamiento','opcionSelect',4,'p_opcionesSelect_4','gramaticaAscendenteTree.py',2202),
('ordenamiento -> ASC','ordenamiento',1,'p_ordenamiento','gramaticaAscendenteTree.py',2212),
('ordenamiento -> DESC','ordenamiento',1,'p_ordenamiento','gramaticaAscendenteTree.py',2213),
('search_condition -> search_condition AND search_condition','search_condition',3,'p_search_condition_1','gramaticaAscendenteTree.py',2217),
('search_condition -> search_condition OR search_condition','search_condition',3,'p_search_condition_1','gramaticaAscendenteTree.py',2218),
('search_condition -> NOT search_condition','search_condition',2,'p_search_condition_2','gramaticaAscendenteTree.py',2223),
('search_condition -> operacion','search_condition',1,'p_search_condition_3','gramaticaAscendenteTree.py',2227),
('search_condition -> PARENTESISIZQUIERDA search_condition PARENTESISDERECHA','search_condition',3,'p_search_condition_4','gramaticaAscendenteTree.py',2231),
('select_list -> select_list COMA operacion','select_list',3,'p_select_list_1','gramaticaAscendenteTree.py',2236),
('select_list -> select_list COMA asignacion','select_list',3,'p_select_list_6','gramaticaAscendenteTree.py',2246),
('select_list -> asignacion','select_list',1,'p_select_list_7','gramaticaAscendenteTree.py',2253),
('select_list -> operacion','select_list',1,'p_select_list_2','gramaticaAscendenteTree.py',2262),
('select_list -> select_list condicion_select operacion COMA operacion','select_list',5,'p_select_list_3','gramaticaAscendenteTree.py',2269),
('select_list -> condicion_select operacion','select_list',2,'p_select_list_4','gramaticaAscendenteTree.py',2273),
('asignacion -> operacion AS operacion','asignacion',3,'p_asignacion_','gramaticaAscendenteTree.py',2278),
('condicion_select -> DISTINCT FROM','condicion_select',2,'p_condicion_select','gramaticaAscendenteTree.py',2286),
('condicion_select -> IS DISTINCT FROM','condicion_select',3,'p_condicion_select_2','gramaticaAscendenteTree.py',2291),
('condicion_select -> IS NOT DISTINCT FROM','condicion_select',4,'p_condicion_select_3','gramaticaAscendenteTree.py',2297),
('condicion_select -> DISTINCT','condicion_select',1,'p_condicion_select_4','gramaticaAscendenteTree.py',2301),
('condicion_select -> IS DISTINCT','condicion_select',2,'p_condicion_select_5','gramaticaAscendenteTree.py',2305),
('condicion_select -> IS NOT DISTINCT','condicion_select',3,'p_condicion_select_6','gramaticaAscendenteTree.py',2310),
('funcionBasica -> operacion BETWEEN operacion AND operacion','funcionBasica',5,'p_funcion_basica_4','gramaticaAscendenteTree.py',2315),
('funcionBasica -> operacion LIKE CADENA','funcionBasica',3,'p_funcion_basica_5','gramaticaAscendenteTree.py',2319),
('funcionBasica -> operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA','funcionBasica',5,'p_funcion_basica_6','gramaticaAscendenteTree.py',2323),
('funcionBasica -> operacion NOT BETWEEN operacion AND operacion','funcionBasica',6,'p_funcion_basica_7','gramaticaAscendenteTree.py',2327),
('funcionBasica -> operacion BETWEEN SYMMETRIC operacion AND operacion','funcionBasica',6,'p_funcion_basica_8','gramaticaAscendenteTree.py',2331),
('funcionBasica -> operacion NOT BETWEEN SYMMETRIC operacion AND operacion','funcionBasica',7,'p_funcion_basica_9','gramaticaAscendenteTree.py',2335),
('funcionBasica -> operacion condicion_select operacion','funcionBasica',3,'p_funcion_basica_10','gramaticaAscendenteTree.py',2340),
]
|
_tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'leftTYPECASTrightUMINUSrightUNOTleftMASMENOSleftPOTENCIAleftPORDIVRESIDUOleftANDORSIMBOLOOR2SIMBOLOORSIMBOLOAND2leftDESPLAZAMIENTOIZQUIERDADESPLAZAMIENTODERECHAABS ACOS ACOSD ACOSH ADD ALL ALTER AND ANY AS ASC ASIN ASIND ASINH ATAN ATAN2 ATAN2D ATAND ATANH AUTO_INCREMENT AVG BEGIN BETWEEN BIGINT BOOLEAN BOTH BY CADENA CASE CBRT CEIL CEILING CHAR CHARACTER CHECK COLOCHO COLUMN COLUMNS COMA CONCAT CONSTRAINT CONT CONVERT CORCHETEDER CORCHETEIZQ COS COSD COSH COT COTD CREATE CURRENT_USER DATABASE DATABASES DATE DAY DECIMAL DECIMALTOKEN DECLARE DECODE DEFAULT DEGREES DELETE DESC DESPLAZAMIENTODERECHA DESPLAZAMIENTOIZQUIERDA DIFERENTE DISTINCT DIV DIV DOSPUNTOS DOUBLE DROP ELSE ENCODE END ENTERO ENUM ENUM ESCAPE ETIQUETA EXCEPT EXISTS EXP FACTORIAL FALSE FIRST FLOOR FOR FOREIGN FROM FULL FUNCTION GCD GET_BYTE GREATEST GROUP HAVING HOUR ID IF IGUAL IGUALIGUAL ILIKE IN INHERITS INNER INSERT INTEGER INTERSECT INTERVAL INTO IS ISNULL JOIN KEY LAST LCM LEADING LEAST LEFT LENGTH LIKE LIMIT LN LOG LOG10 MAS MAX MAYOR MAYORIGUAL MD5 MENOR MENORIGUAL MENOS MIN MINUTE MIN_SCALE MOD MODE MONEY MONTH NATURAL NOT NOTEQUAL NOTNULL NULL NULLS NUMERAL NUMERIC OF OFFSET ON ONLY OR ORDER OUTER OWNER PARENTESISDERECHA PARENTESISIZQUIERDA PI POR POTENCIA POWER PRECISION PRIMARY PUNTO PUNTOYCOMA RADIANS RANDOM REAL REFERENCES RENAME REPLACE RESIDUO RETURNING RETURNS RIGHT ROUND SCALE SECOND SELECT SESSION_USER SET SETSEED SET_BYTE SHA256 SHOW SIGN SIMBOLOAND SIMBOLOAND2 SIMBOLOOR SIMBOLOOR2 SIN SIND SINH SMALLINT SOME SQRT SUBSTR SUBSTRING SUM SYMMETRIC TABLE TABLES TAN TAND TANH TEXT THEN TIME TIMESTAMP TO TRAILING TRIM TRIM_SCALE TRUE TRUNC TYPE TYPECAST UNION UNIQUE UNKNOWN UPDATE UPPER USING VALUES VARCHAR VARYING VIEW WHEN WHERE WIDTH_BUCKET YEARinicio : queriesqueries : queries queryqueries : queryquery : mostrarBD\n | crearBD\n | alterBD\n | dropBD\n | operacion\n | insertinBD\n | updateinBD\n | deleteinBD\n | createTable\n | inheritsBD\n | dropTable\n | alterTable\n | variantesAt\n | contAdd\n | contDrop\n | contAlter\n | listaid\n | tipoAlter \n | selectData\n crearBD : CREATE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMAcrearBD : CREATE DATABASE ID parametrosCrearBD PUNTOYCOMAparametrosCrearBD : parametrosCrearBD parametroCrearBDparametrosCrearBD : parametroCrearBDparametroCrearBD : OWNER IGUAL final\n | MODE IGUAL final\n mostrarBD : SHOW DATABASES PUNTOYCOMAalterBD : ALTER DATABASE ID RENAME TO ID PUNTOYCOMAalterBD : ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMAparametroAlterUser : CURRENT_USER\n | SESSION_USER\n | final\n dropTable : DROP TABLE ID PUNTOYCOMA\n alterTable : ALTER TABLE ID variantesAt PUNTOYCOMA\n\n \n variantesAt : ADD contAdd\n | ALTER contAlter\n | DROP contDrop\n \n listaContAlter : listaContAlter COMA contAlter \n \n listaContAlter : contAlter\n \n contAlter : COLUMN ID SET NOT NULL \n | COLUMN ID TYPE tipo\n \n contAdd : COLUMN ID tipo \n | CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID\n | PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA\n \n contDrop : COLUMN ID \n | CONSTRAINT ID\n \n listaid : listaid COMA ID\n \n listaid : ID\n \n tipoAlter : ADD \n | DROP\n dropBD : DROP DATABASE ID PUNTOYCOMAdropBD : DROP DATABASE IF EXISTS ID PUNTOYCOMAoperacion : operacion MAS operacion\n | operacion MENOS operacion\n | operacion POR operacion\n | operacion DIV operacion\n | operacion RESIDUO operacion\n | operacion POTENCIA operacion\n | operacion AND operacion\n | operacion OR operacion\n | operacion SIMBOLOOR2 operacion\n | operacion SIMBOLOOR operacion\n | operacion SIMBOLOAND2 operacion\n | operacion DESPLAZAMIENTOIZQUIERDA operacion\n | operacion DESPLAZAMIENTODERECHA operacion\n | operacion IGUAL operacion\n | operacion IGUALIGUAL operacion\n | operacion NOTEQUAL operacion\n | operacion MAYORIGUAL operacion\n | operacion MENORIGUAL operacion\n | operacion MAYOR operacion\n | operacion MENOR operacion\n | operacion DIFERENTE operacion\n | PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n operacion : MENOS ENTERO %prec UMINUS\n | MENOS DECIMAL %prec UMINUS\n \n operacion : NOT operacion %prec UNOToperacion : funcionBasicaoperacion : finalfuncionBasica : ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | PI PARENTESISIZQUIERDA PARENTESISDERECHA\n | POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA\n \n \n | ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n \n\n | COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\t\t\t | COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\n\n\n | COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA\n | GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n funcionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA opcionTrim : LEADING\n | TRAILING\n | BOTH\n final : DECIMAL\n | ENTEROfinal : IDfinal : ID PUNTO IDfinal : CADENAinsertinBD : INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAinsertinBD : INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAlistaParam : listaParam COMA finallistaParam : finalupdateinBD : UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMAasignaciones : asignaciones COMA asignaasignaciones : asignaasigna : ID IGUAL operaciondeleteinBD : DELETE FROM ID PUNTOYCOMAdeleteinBD : DELETE FROM ID WHERE operacion PUNTOYCOMAinheritsBD : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMAcreateTable : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMAcreaColumnas : creaColumnas COMA ColumnacreaColumnas : ColumnaColumna : ID tipoColumna : ID tipo paramOpcionalColumna : UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHAColumna : constraintcheckColumna : checkinColumnColumna : primaryKeyColumna : foreignKeyparamOpcional : paramOpcional paramopcparamOpcional : paramopcparamopc : DEFAULT final\n | NULL\n | NOT NULL\n | UNIQUE\n | PRIMARY KEY\n paramopc : constraintcheckparamopc : checkinColumnparamopc : CONSTRAINT ID UNIQUEcheckinColumn : CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAconstraintcheck : CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAprimaryKey : PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHAforeignKey : FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHAtipo : SMALLINT\n | INTEGER\n | BIGINT\n | DECIMAL\n | NUMERIC\n | REAL\n | DOUBLE PRECISION\n | MONEY\n | VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | TEXT\n | BOOLEAN\n | TIMESTAMP\n | TIME\n | INTERVAL\n | DATE\n | YEAR\n | MONTH \n | DAY\n | HOUR \n | MINUTE\n | SECOND\n selectData : SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n selectData : SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA\n selectData : SELECT select_list FROM select_list PUNTOYCOMA\n | SELECT POR FROM select_list PUNTOYCOMA\n selectData : SELECT select_list PUNTOYCOMA\n opcionesSelect : opcionesSelect opcionSelect\n opcionesSelect : opcionSelect\n opcionSelect : LIMIT operacion\n | GROUP BY select_list\n | HAVING select_list\n | ORDER BY select_list \n opcionSelect : LIMIT operacion OFFSET operacion\n | ORDER BY select_list ordenamiento \n ordenamiento : ASC\n | DESC search_condition : search_condition AND search_condition\n | search_condition OR search_condition \n search_condition : NOT search_conditionsearch_condition : operacionsearch_condition : PARENTESISIZQUIERDA search_condition PARENTESISDERECHA select_list : select_list COMA operacion select_list : select_list COMA asignacion select_list : asignacionselect_list : operacion select_list : select_list condicion_select operacion COMA operacion select_list : condicion_select operacion asignacion : operacion AS operacioncondicion_select : DISTINCT FROM \n condicion_select : IS DISTINCT FROM \n condicion_select : IS NOT DISTINCT FROMcondicion_select : DISTINCT condicion_select : IS DISTINCT \n condicion_select : IS NOT DISTINCT \n funcionBasica : operacion BETWEEN operacion AND operacionfuncionBasica : operacion LIKE CADENAfuncionBasica : operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA funcionBasica : operacion NOT BETWEEN operacion AND operacion funcionBasica : operacion BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion NOT BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion condicion_select operacion'
_lr_action_items = {'SHOW': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [23, 23, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'CREATE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [24, 24, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'ALTER': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 266, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [26, 26, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, 395, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'DROP': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 266, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [27, 27, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, 398, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'PARENTESISIZQUIERDA': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 29, 30, 31, 32, 33, 34, 35, 39, 41, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 163, 164, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 263, 264, 271, 272, 274, 275, 280, 283, 284, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 310, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 403, 408, 409, 411, 412, 414, 417, 420, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 499, 505, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 564, 565, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 623, 626, 630, 631, 633, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 708, 709], [30, 30, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 151, 30, -152, -151, 30, -85, -86, -56, 162, 30, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, -155, -2, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 253, 30, -247, -40, -41, -82, -83, 30, -153, -84, -39, -52, 30, 307, 308, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 30, -251, 30, 30, -256, -244, -248, -54, -31, 392, -154, -52, -53, -81, 404, -46, -191, -192, -193, -194, -195, -196, -198, 413, 415, 416, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 421, 30, -221, 30, 30, 30, 30, -101, -110, 30, -148, -149, -150, 30, 30, -245, -249, -23, -58, -37, 30, 513, -164, 30, -45, -197, 522, -47, 527, -87, -88, -89, -90, -91, -93, -94, -95, 30, 30, -98, -99, 30, 30, -103, -104, -105, -106, -107, -108, 30, -111, -112, -113, -114, -115, -116, 30, 30, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 30, -136, 30, -138, 30, 30, 30, 30, -143, -144, 30, 30, -250, 30, -252, 30, -246, -26, 561, 563, -38, 30, -44, -49, 590, -219, 30, 590, -220, 30, -254, -253, 30, -24, 30, 628, 629, -59, -92, -165, -199, -201, -202, -51, 590, 590, -96, -97, -100, -102, 30, -117, -118, -135, 30, 30, 30, -141, -142, 30, -146, -147, -255, -25, -167, 665, 667, -32, -33, 672, -160, -200, -48, -50, -217, 590, 590, 30, 30, -218, -134, 30, -156, -215, 30, 30, -216, 30, -137, -139, -140, -145, 30, -109, -166, 710, -157]), 'MENOS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 152, 153, 154, 158, 161, 162, 165, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 273, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 382, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 510, 512, 516, 519, 520, 526, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 563, 571, 572, 576, 579, 580, 582, 583, 586, 588, 589, 590, 591, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 627, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 649, 651, 653, 654, 655, 656, 657, 658, 659, 667, 671, 673, 677, 678, 680, 682, 683, 684, 685, 686, 687, 690, 694, 697, 702, 706, 707, 709], [28, 28, -3, -4, -5, -6, -7, 107, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 28, -152, -151, 28, -85, -86, -56, 28, -155, -2, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, -247, -40, -41, -82, -83, 28, 107, -153, 107, -39, -52, 28, -53, 107, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 107, 107, 107, 107, 107, 107, 107, 107, 107, 28, -251, 28, 28, 107, -244, -248, -54, -31, -154, -52, -53, 107, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 107, 28, -221, 28, 28, 28, 28, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, -101, 107, 107, 107, 107, 107, 107, 107, 107, -110, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 28, -148, -149, -150, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 28, 107, 107, 28, -245, -249, -23, -58, -37, 28, -164, 28, -45, -197, -47, 107, 107, 107, -87, -88, -89, -90, -91, -93, -94, -95, 28, 28, -98, -99, 28, 28, -103, -104, -105, -106, -107, -108, 28, -111, -112, -113, -114, -115, -116, 28, 28, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 107, 28, -136, 28, -138, 28, 28, 28, 28, -143, -144, 28, 28, -66, 28, -252, 28, 107, -246, -26, -38, 107, 28, 107, -44, -49, 28, -219, 28, 28, -220, 107, 107, 107, 107, 107, 107, 107, 28, 107, 107, 107, 107, 107, 107, 107, 107, -66, -66, 28, -24, 28, -59, -92, 107, -165, -199, -201, -202, -51, 28, 107, 28, 107, -96, -97, -100, -102, 28, -117, -118, 107, -135, 28, 28, 28, -141, -142, 28, -146, -147, -66, -25, -167, 107, -32, -33, -160, -200, -48, -50, -217, 28, 28, 28, 28, 107, 107, -218, 107, -134, 107, 107, 107, 107, 28, -156, -215, 107, 28, 28, -216, 28, -137, -139, -140, -145, 107, 28, 107, 107, -109, -166, -157]), 'NOT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 142, 146, 149, 150, 151, 152, 153, 154, 158, 161, 162, 165, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 273, 274, 280, 281, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 382, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 510, 512, 516, 519, 520, 526, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 558, 563, 571, 572, 576, 579, 580, 582, 583, 586, 588, 589, 590, 591, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 627, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 649, 651, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 667, 668, 671, 673, 677, 678, 680, 682, 683, 684, 685, 686, 687, 688, 690, 694, 697, 699, 702, 706, 707, 709], [33, 33, -3, -4, -5, -6, -7, 130, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 33, -152, -151, 33, -85, -86, -56, 33, -155, -2, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, -247, 258, -40, -41, -82, -83, 33, 130, -153, -84, -39, -52, 33, -53, 130, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 130, 130, 130, 130, 130, 130, 130, 130, 130, 33, -251, 33, 33, 130, -244, -248, -54, -31, -154, -52, -53, 130, -81, -46, 410, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 130, 33, -221, 33, 33, 33, 33, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, -101, 130, 130, 130, 130, 130, 130, 130, 130, -110, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 33, -148, -149, -150, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 33, 130, 130, 33, -245, -249, -23, -58, -37, 33, -164, 33, -45, -197, -47, 130, 130, 130, -87, -88, -89, -90, -91, -93, -94, -95, 33, 33, -98, -99, 33, 33, -103, -104, -105, -106, -107, -108, 33, -111, -112, -113, -114, -115, -116, 33, 33, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 130, 33, -136, 33, -138, 33, 33, 33, 33, -143, -144, 33, 33, -66, 33, -252, 33, 130, -246, -26, -38, 130, 33, 130, -44, -49, 588, -219, 33, 588, -220, 130, 130, 130, 130, 130, 130, 130, 33, 130, 130, 130, 130, 130, 130, 130, 130, -66, -66, 33, -24, 616, 33, -59, -92, 130, -165, -199, -201, -202, -51, 588, 130, 588, 130, -96, -97, -100, -102, 33, -117, -118, 130, -135, 33, 33, 33, -141, -142, 33, -146, -147, -66, -25, 616, -178, -180, -182, -184, -185, -167, 130, -32, -33, -160, -200, -48, -50, -217, 588, 588, 33, 33, -84, 130, -218, 130, -134, 130, 130, 130, 130, -177, -179, -181, -183, 33, -187, -156, -215, 130, 33, 33, -216, 33, -137, -139, -140, -145, -186, 130, 33, 130, -188, 130, -109, -166, -157]), 'INSERT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [36, 36, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'UPDATE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [37, 37, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'DELETE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [38, 38, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'ADD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 266, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [39, 39, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, 397, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'COLUMN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 395, 397, 398, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [40, 40, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, 143, 147, -152, -151, -85, -86, 159, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 143, 159, 147, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'CHECK': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 558, 560, 562, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 660, 661, 662, 663, 664, 668, 671, 673, 682, 684, 685, 686, 687, 688, 699, 706, 707, 709], [41, 41, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, 41, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 505, 41, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 505, 505, 626, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, 505, -178, -180, -182, -184, -185, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -177, -179, -181, -183, 626, -187, -156, -215, -216, -137, -139, -140, -145, -186, -188, -109, -166, -157]), 'FOREIGN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 560, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [42, 42, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, 42, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 507, 42, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 507, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'PRIMARY': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 279, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 558, 560, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 660, 661, 662, 663, 668, 671, 673, 682, 684, 685, 686, 687, 688, 699, 706, 707, 709], [43, 43, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, 43, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, 309, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, 309, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 506, 43, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 618, 506, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, 618, -178, -180, -182, -184, -185, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -177, -179, -181, -183, -187, -156, -215, -216, -137, -139, -140, -145, -186, -188, -109, -166, -157]), 'CONSTRAINT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 398, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 558, 560, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 660, 661, 662, 663, 668, 671, 673, 682, 684, 685, 686, 687, 688, 699, 706, 707, 709], [44, 44, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, 148, -152, -151, -85, -86, 160, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 504, 160, 148, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 621, 504, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, 621, -178, -180, -182, -184, -185, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -177, -179, -181, -183, -187, -156, -215, -216, -137, -139, -140, -145, -186, -188, -109, -166, -157]), 'ID': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 37, 39, 40, 44, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 134, 136, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 157, 158, 159, 160, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 276, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 391, 392, 399, 400, 401, 402, 404, 408, 409, 411, 412, 417, 421, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 504, 508, 509, 510, 513, 516, 517, 518, 520, 526, 527, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 560, 561, 563, 571, 572, 575, 579, 580, 582, 583, 584, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 621, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 665, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 700, 706, 707, 709, 710], [25, 25, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 153, -152, -151, 153, -85, -86, 156, -56, 161, 165, 153, -155, -2, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, -247, 259, 261, 263, 264, 265, 266, -40, 267, 268, 270, -41, 271, 272, -82, -83, 153, -153, -84, 275, 277, -39, 278, 279, -52, 153, -53, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 153, -251, 153, 153, -256, -244, -248, -54, -31, -154, -52, -53, -81, 405, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 418, 419, 153, -221, 153, 153, 153, 153, -101, -110, 153, -148, -149, -150, 153, 153, -245, -249, -23, 495, 496, -58, 511, -37, 153, 153, -164, 153, -45, -197, -47, 528, -87, -88, -89, -90, -91, -93, -94, -95, 153, 153, -98, -99, 153, 153, -103, -104, -105, -106, -107, -108, 153, -111, -112, -113, -114, -115, -116, 153, 153, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 153, -136, 153, -138, 153, 153, 153, 153, -143, -144, 153, 153, -250, 153, -252, 153, -246, -26, 153, 153, 562, 566, 153, -38, 153, 153, 405, 405, -44, -49, 585, 153, -219, 153, 153, -220, 153, -254, -253, 153, -24, 496, 153, 153, -59, -92, 153, -165, -199, -201, -202, 637, -51, 153, 153, -96, -97, -100, -102, 153, -117, -118, -135, 153, 153, 153, -141, -142, 153, -146, -147, -255, -25, 153, 664, -167, 153, 153, -32, -33, -160, -200, -48, -50, -217, 153, 153, 153, 153, -218, -134, 689, 153, -156, 153, -215, 153, 153, -216, 153, -137, -139, -140, -145, 153, 708, -109, -166, -157, 153]), 'SELECT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [45, 45, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'ABS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [46, 46, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 46, -152, -151, 46, -85, -86, -56, 46, -155, -2, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, -247, -40, -41, -82, -83, 46, -153, -84, -39, -52, 46, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 46, -251, 46, 46, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 46, -221, 46, 46, 46, 46, -101, -110, 46, -148, -149, -150, 46, 46, -245, -249, -23, -58, -37, 46, -164, 46, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 46, 46, -98, -99, 46, 46, -103, -104, -105, -106, -107, -108, 46, -111, -112, -113, -114, -115, -116, 46, 46, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 46, -136, 46, -138, 46, 46, 46, 46, -143, -144, 46, 46, -250, 46, -252, 46, -246, -26, -38, 46, -44, -49, 46, -219, 46, 46, -220, 46, -254, -253, 46, -24, 46, -59, -92, -165, -199, -201, -202, -51, 46, 46, -96, -97, -100, -102, 46, -117, -118, -135, 46, 46, 46, -141, -142, 46, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 46, 46, 46, 46, -218, -134, 46, -156, -215, 46, 46, -216, 46, -137, -139, -140, -145, 46, -109, -166, -157]), 'CBRT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [47, 47, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 47, -152, -151, 47, -85, -86, -56, 47, -155, -2, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, -247, -40, -41, -82, -83, 47, -153, -84, -39, -52, 47, -53, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 47, -251, 47, 47, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 47, -221, 47, 47, 47, 47, -101, -110, 47, -148, -149, -150, 47, 47, -245, -249, -23, -58, -37, 47, -164, 47, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 47, 47, -98, -99, 47, 47, -103, -104, -105, -106, -107, -108, 47, -111, -112, -113, -114, -115, -116, 47, 47, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 47, -136, 47, -138, 47, 47, 47, 47, -143, -144, 47, 47, -250, 47, -252, 47, -246, -26, -38, 47, -44, -49, 47, -219, 47, 47, -220, 47, -254, -253, 47, -24, 47, -59, -92, -165, -199, -201, -202, -51, 47, 47, -96, -97, -100, -102, 47, -117, -118, -135, 47, 47, 47, -141, -142, 47, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 47, 47, 47, 47, -218, -134, 47, -156, -215, 47, 47, -216, 47, -137, -139, -140, -145, 47, -109, -166, -157]), 'CEIL': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [48, 48, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 48, -152, -151, 48, -85, -86, -56, 48, -155, -2, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, -247, -40, -41, -82, -83, 48, -153, -84, -39, -52, 48, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 48, -251, 48, 48, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 48, -221, 48, 48, 48, 48, -101, -110, 48, -148, -149, -150, 48, 48, -245, -249, -23, -58, -37, 48, -164, 48, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 48, 48, -98, -99, 48, 48, -103, -104, -105, -106, -107, -108, 48, -111, -112, -113, -114, -115, -116, 48, 48, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 48, -136, 48, -138, 48, 48, 48, 48, -143, -144, 48, 48, -250, 48, -252, 48, -246, -26, -38, 48, -44, -49, 48, -219, 48, 48, -220, 48, -254, -253, 48, -24, 48, -59, -92, -165, -199, -201, -202, -51, 48, 48, -96, -97, -100, -102, 48, -117, -118, -135, 48, 48, 48, -141, -142, 48, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 48, 48, 48, 48, -218, -134, 48, -156, -215, 48, 48, -216, 48, -137, -139, -140, -145, 48, -109, -166, -157]), 'CEILING': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [49, 49, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 49, -152, -151, 49, -85, -86, -56, 49, -155, -2, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -247, -40, -41, -82, -83, 49, -153, -84, -39, -52, 49, -53, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 49, -251, 49, 49, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 49, -221, 49, 49, 49, 49, -101, -110, 49, -148, -149, -150, 49, 49, -245, -249, -23, -58, -37, 49, -164, 49, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 49, 49, -98, -99, 49, 49, -103, -104, -105, -106, -107, -108, 49, -111, -112, -113, -114, -115, -116, 49, 49, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 49, -136, 49, -138, 49, 49, 49, 49, -143, -144, 49, 49, -250, 49, -252, 49, -246, -26, -38, 49, -44, -49, 49, -219, 49, 49, -220, 49, -254, -253, 49, -24, 49, -59, -92, -165, -199, -201, -202, -51, 49, 49, -96, -97, -100, -102, 49, -117, -118, -135, 49, 49, 49, -141, -142, 49, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 49, 49, 49, 49, -218, -134, 49, -156, -215, 49, 49, -216, 49, -137, -139, -140, -145, 49, -109, -166, -157]), 'DEGREES': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [50, 50, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 50, -152, -151, 50, -85, -86, -56, 50, -155, -2, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, -247, -40, -41, -82, -83, 50, -153, -84, -39, -52, 50, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 50, -251, 50, 50, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 50, -221, 50, 50, 50, 50, -101, -110, 50, -148, -149, -150, 50, 50, -245, -249, -23, -58, -37, 50, -164, 50, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 50, 50, -98, -99, 50, 50, -103, -104, -105, -106, -107, -108, 50, -111, -112, -113, -114, -115, -116, 50, 50, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 50, -136, 50, -138, 50, 50, 50, 50, -143, -144, 50, 50, -250, 50, -252, 50, -246, -26, -38, 50, -44, -49, 50, -219, 50, 50, -220, 50, -254, -253, 50, -24, 50, -59, -92, -165, -199, -201, -202, -51, 50, 50, -96, -97, -100, -102, 50, -117, -118, -135, 50, 50, 50, -141, -142, 50, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 50, 50, 50, 50, -218, -134, 50, -156, -215, 50, 50, -216, 50, -137, -139, -140, -145, 50, -109, -166, -157]), 'DIV': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 152, 153, 154, 158, 161, 162, 165, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 273, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 382, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 510, 512, 516, 519, 520, 526, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 563, 571, 572, 576, 579, 580, 582, 583, 586, 588, 589, 590, 591, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 627, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 649, 651, 653, 654, 655, 656, 657, 658, 659, 667, 671, 673, 677, 678, 680, 682, 683, 684, 685, 686, 687, 690, 694, 697, 702, 706, 707, 709], [29, 29, -3, -4, -5, -6, -7, 109, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 29, -152, -151, 29, -85, -86, -56, 29, -155, -2, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, -247, -40, -41, -82, -83, 29, 109, -153, 109, -39, -52, 29, -53, 109, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 109, 109, -62, -63, -64, 109, -66, -67, -68, -69, -70, -71, -72, 109, 109, 109, 109, 109, 109, 109, 109, 109, 29, -251, 29, 29, 109, -244, -248, -54, -31, -154, -52, -53, 109, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 109, 29, -221, 29, 29, 29, 29, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, -101, 109, 109, 109, 109, 109, 109, 109, 109, -110, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 29, -148, -149, -150, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 29, 109, 109, 29, -245, -249, -23, -58, -37, 29, -164, 29, -45, -197, -47, 109, 109, 109, -87, -88, -89, -90, -91, -93, -94, -95, 29, 29, -98, -99, 29, 29, -103, -104, -105, -106, -107, -108, 29, -111, -112, -113, -114, -115, -116, 29, 29, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 109, 29, -136, 29, -138, 29, 29, 29, 29, -143, -144, 29, 29, -66, 29, -252, 29, 109, -246, -26, -38, 109, 29, 109, -44, -49, 29, -219, 29, 29, -220, 109, 109, 109, 109, 109, 109, 109, 29, 109, 109, 109, 109, 109, 109, 109, 109, -66, -66, 29, -24, 29, -59, -92, 109, -165, -199, -201, -202, -51, 29, 109, 29, 109, -96, -97, -100, -102, 29, -117, -118, 109, -135, 29, 29, 29, -141, -142, 29, -146, -147, -66, -25, -167, 109, -32, -33, -160, -200, -48, -50, -217, 29, 29, 29, 29, 109, 109, -218, 109, -134, 109, 109, 109, 109, 29, -156, -215, 109, 29, 29, -216, 29, -137, -139, -140, -145, 109, 29, 109, 109, -109, -166, -157]), 'EXP': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [51, 51, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 51, -152, -151, 51, -85, -86, -56, 51, -155, -2, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, -247, -40, -41, -82, -83, 51, -153, -84, -39, -52, 51, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 51, -251, 51, 51, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 51, -221, 51, 51, 51, 51, -101, -110, 51, -148, -149, -150, 51, 51, -245, -249, -23, -58, -37, 51, -164, 51, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 51, 51, -98, -99, 51, 51, -103, -104, -105, -106, -107, -108, 51, -111, -112, -113, -114, -115, -116, 51, 51, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 51, -136, 51, -138, 51, 51, 51, 51, -143, -144, 51, 51, -250, 51, -252, 51, -246, -26, -38, 51, -44, -49, 51, -219, 51, 51, -220, 51, -254, -253, 51, -24, 51, -59, -92, -165, -199, -201, -202, -51, 51, 51, -96, -97, -100, -102, 51, -117, -118, -135, 51, 51, 51, -141, -142, 51, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 51, 51, 51, 51, -218, -134, 51, -156, -215, 51, 51, -216, 51, -137, -139, -140, -145, 51, -109, -166, -157]), 'FACTORIAL': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [52, 52, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 52, -152, -151, 52, -85, -86, -56, 52, -155, -2, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, -247, -40, -41, -82, -83, 52, -153, -84, -39, -52, 52, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 52, -251, 52, 52, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 52, -221, 52, 52, 52, 52, -101, -110, 52, -148, -149, -150, 52, 52, -245, -249, -23, -58, -37, 52, -164, 52, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 52, 52, -98, -99, 52, 52, -103, -104, -105, -106, -107, -108, 52, -111, -112, -113, -114, -115, -116, 52, 52, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 52, -136, 52, -138, 52, 52, 52, 52, -143, -144, 52, 52, -250, 52, -252, 52, -246, -26, -38, 52, -44, -49, 52, -219, 52, 52, -220, 52, -254, -253, 52, -24, 52, -59, -92, -165, -199, -201, -202, -51, 52, 52, -96, -97, -100, -102, 52, -117, -118, -135, 52, 52, 52, -141, -142, 52, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 52, 52, 52, 52, -218, -134, 52, -156, -215, 52, 52, -216, 52, -137, -139, -140, -145, 52, -109, -166, -157]), 'FLOOR': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [53, 53, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 53, -152, -151, 53, -85, -86, -56, 53, -155, -2, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, -247, -40, -41, -82, -83, 53, -153, -84, -39, -52, 53, -53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 53, -251, 53, 53, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 53, -221, 53, 53, 53, 53, -101, -110, 53, -148, -149, -150, 53, 53, -245, -249, -23, -58, -37, 53, -164, 53, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 53, 53, -98, -99, 53, 53, -103, -104, -105, -106, -107, -108, 53, -111, -112, -113, -114, -115, -116, 53, 53, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 53, -136, 53, -138, 53, 53, 53, 53, -143, -144, 53, 53, -250, 53, -252, 53, -246, -26, -38, 53, -44, -49, 53, -219, 53, 53, -220, 53, -254, -253, 53, -24, 53, -59, -92, -165, -199, -201, -202, -51, 53, 53, -96, -97, -100, -102, 53, -117, -118, -135, 53, 53, 53, -141, -142, 53, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 53, 53, 53, 53, -218, -134, 53, -156, -215, 53, 53, -216, 53, -137, -139, -140, -145, 53, -109, -166, -157]), 'GCD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [54, 54, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 54, -152, -151, 54, -85, -86, -56, 54, -155, -2, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, -247, -40, -41, -82, -83, 54, -153, -84, -39, -52, 54, -53, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 54, -251, 54, 54, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 54, -221, 54, 54, 54, 54, -101, -110, 54, -148, -149, -150, 54, 54, -245, -249, -23, -58, -37, 54, -164, 54, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 54, 54, -98, -99, 54, 54, -103, -104, -105, -106, -107, -108, 54, -111, -112, -113, -114, -115, -116, 54, 54, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 54, -136, 54, -138, 54, 54, 54, 54, -143, -144, 54, 54, -250, 54, -252, 54, -246, -26, -38, 54, -44, -49, 54, -219, 54, 54, -220, 54, -254, -253, 54, -24, 54, -59, -92, -165, -199, -201, -202, -51, 54, 54, -96, -97, -100, -102, 54, -117, -118, -135, 54, 54, 54, -141, -142, 54, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 54, 54, 54, 54, -218, -134, 54, -156, -215, 54, 54, -216, 54, -137, -139, -140, -145, 54, -109, -166, -157]), 'LCM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [55, 55, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 55, -152, -151, 55, -85, -86, -56, 55, -155, -2, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, -247, -40, -41, -82, -83, 55, -153, -84, -39, -52, 55, -53, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 55, -251, 55, 55, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 55, -221, 55, 55, 55, 55, -101, -110, 55, -148, -149, -150, 55, 55, -245, -249, -23, -58, -37, 55, -164, 55, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 55, 55, -98, -99, 55, 55, -103, -104, -105, -106, -107, -108, 55, -111, -112, -113, -114, -115, -116, 55, 55, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 55, -136, 55, -138, 55, 55, 55, 55, -143, -144, 55, 55, -250, 55, -252, 55, -246, -26, -38, 55, -44, -49, 55, -219, 55, 55, -220, 55, -254, -253, 55, -24, 55, -59, -92, -165, -199, -201, -202, -51, 55, 55, -96, -97, -100, -102, 55, -117, -118, -135, 55, 55, 55, -141, -142, 55, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 55, 55, 55, 55, -218, -134, 55, -156, -215, 55, 55, -216, 55, -137, -139, -140, -145, 55, -109, -166, -157]), 'LN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [56, 56, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 56, -152, -151, 56, -85, -86, -56, 56, -155, -2, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, -247, -40, -41, -82, -83, 56, -153, -84, -39, -52, 56, -53, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 56, -251, 56, 56, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 56, -221, 56, 56, 56, 56, -101, -110, 56, -148, -149, -150, 56, 56, -245, -249, -23, -58, -37, 56, -164, 56, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 56, 56, -98, -99, 56, 56, -103, -104, -105, -106, -107, -108, 56, -111, -112, -113, -114, -115, -116, 56, 56, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 56, -136, 56, -138, 56, 56, 56, 56, -143, -144, 56, 56, -250, 56, -252, 56, -246, -26, -38, 56, -44, -49, 56, -219, 56, 56, -220, 56, -254, -253, 56, -24, 56, -59, -92, -165, -199, -201, -202, -51, 56, 56, -96, -97, -100, -102, 56, -117, -118, -135, 56, 56, 56, -141, -142, 56, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 56, 56, 56, 56, -218, -134, 56, -156, -215, 56, 56, -216, 56, -137, -139, -140, -145, 56, -109, -166, -157]), 'LOG': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [57, 57, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 57, -152, -151, 57, -85, -86, -56, 57, -155, -2, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, -247, -40, -41, -82, -83, 57, -153, -84, -39, -52, 57, -53, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 57, -251, 57, 57, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 57, -221, 57, 57, 57, 57, -101, -110, 57, -148, -149, -150, 57, 57, -245, -249, -23, -58, -37, 57, -164, 57, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 57, 57, -98, -99, 57, 57, -103, -104, -105, -106, -107, -108, 57, -111, -112, -113, -114, -115, -116, 57, 57, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 57, -136, 57, -138, 57, 57, 57, 57, -143, -144, 57, 57, -250, 57, -252, 57, -246, -26, -38, 57, -44, -49, 57, -219, 57, 57, -220, 57, -254, -253, 57, -24, 57, -59, -92, -165, -199, -201, -202, -51, 57, 57, -96, -97, -100, -102, 57, -117, -118, -135, 57, 57, 57, -141, -142, 57, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 57, 57, 57, 57, -218, -134, 57, -156, -215, 57, 57, -216, 57, -137, -139, -140, -145, 57, -109, -166, -157]), 'MOD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [58, 58, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 58, -152, -151, 58, -85, -86, -56, 58, -155, -2, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, -247, -40, -41, -82, -83, 58, -153, -84, -39, -52, 58, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 58, -251, 58, 58, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 58, -221, 58, 58, 58, 58, -101, -110, 58, -148, -149, -150, 58, 58, -245, -249, -23, -58, -37, 58, -164, 58, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 58, 58, -98, -99, 58, 58, -103, -104, -105, -106, -107, -108, 58, -111, -112, -113, -114, -115, -116, 58, 58, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 58, -136, 58, -138, 58, 58, 58, 58, -143, -144, 58, 58, -250, 58, -252, 58, -246, -26, -38, 58, -44, -49, 58, -219, 58, 58, -220, 58, -254, -253, 58, -24, 58, -59, -92, -165, -199, -201, -202, -51, 58, 58, -96, -97, -100, -102, 58, -117, -118, -135, 58, 58, 58, -141, -142, 58, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 58, 58, 58, 58, -218, -134, 58, -156, -215, 58, 58, -216, 58, -137, -139, -140, -145, 58, -109, -166, -157]), 'PI': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [59, 59, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 59, -152, -151, 59, -85, -86, -56, 59, -155, -2, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, -247, -40, -41, -82, -83, 59, -153, -84, -39, -52, 59, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 59, -251, 59, 59, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 59, -221, 59, 59, 59, 59, -101, -110, 59, -148, -149, -150, 59, 59, -245, -249, -23, -58, -37, 59, -164, 59, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 59, 59, -98, -99, 59, 59, -103, -104, -105, -106, -107, -108, 59, -111, -112, -113, -114, -115, -116, 59, 59, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 59, -136, 59, -138, 59, 59, 59, 59, -143, -144, 59, 59, -250, 59, -252, 59, -246, -26, -38, 59, -44, -49, 59, -219, 59, 59, -220, 59, -254, -253, 59, -24, 59, -59, -92, -165, -199, -201, -202, -51, 59, 59, -96, -97, -100, -102, 59, -117, -118, -135, 59, 59, 59, -141, -142, 59, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 59, 59, 59, 59, -218, -134, 59, -156, -215, 59, 59, -216, 59, -137, -139, -140, -145, 59, -109, -166, -157]), 'POWER': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [60, 60, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 60, -152, -151, 60, -85, -86, -56, 60, -155, -2, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, -247, -40, -41, -82, -83, 60, -153, -84, -39, -52, 60, -53, 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, 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, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 60, -251, 60, 60, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 60, -221, 60, 60, 60, 60, -101, -110, 60, -148, -149, -150, 60, 60, -245, -249, -23, -58, -37, 60, -164, 60, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 60, 60, -98, -99, 60, 60, -103, -104, -105, -106, -107, -108, 60, -111, -112, -113, -114, -115, -116, 60, 60, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 60, -136, 60, -138, 60, 60, 60, 60, -143, -144, 60, 60, -250, 60, -252, 60, -246, -26, -38, 60, -44, -49, 60, -219, 60, 60, -220, 60, -254, -253, 60, -24, 60, -59, -92, -165, -199, -201, -202, -51, 60, 60, -96, -97, -100, -102, 60, -117, -118, -135, 60, 60, 60, -141, -142, 60, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 60, 60, 60, 60, -218, -134, 60, -156, -215, 60, 60, -216, 60, -137, -139, -140, -145, 60, -109, -166, -157]), 'RADIANS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [61, 61, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 61, -152, -151, 61, -85, -86, -56, 61, -155, -2, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -247, -40, -41, -82, -83, 61, -153, -84, -39, -52, 61, -53, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 61, -251, 61, 61, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 61, -221, 61, 61, 61, 61, -101, -110, 61, -148, -149, -150, 61, 61, -245, -249, -23, -58, -37, 61, -164, 61, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 61, 61, -98, -99, 61, 61, -103, -104, -105, -106, -107, -108, 61, -111, -112, -113, -114, -115, -116, 61, 61, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 61, -136, 61, -138, 61, 61, 61, 61, -143, -144, 61, 61, -250, 61, -252, 61, -246, -26, -38, 61, -44, -49, 61, -219, 61, 61, -220, 61, -254, -253, 61, -24, 61, -59, -92, -165, -199, -201, -202, -51, 61, 61, -96, -97, -100, -102, 61, -117, -118, -135, 61, 61, 61, -141, -142, 61, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 61, 61, 61, 61, -218, -134, 61, -156, -215, 61, 61, -216, 61, -137, -139, -140, -145, 61, -109, -166, -157]), 'ROUND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [62, 62, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 62, -152, -151, 62, -85, -86, -56, 62, -155, -2, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, -247, -40, -41, -82, -83, 62, -153, -84, -39, -52, 62, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 62, -251, 62, 62, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 62, -221, 62, 62, 62, 62, -101, -110, 62, -148, -149, -150, 62, 62, -245, -249, -23, -58, -37, 62, -164, 62, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 62, 62, -98, -99, 62, 62, -103, -104, -105, -106, -107, -108, 62, -111, -112, -113, -114, -115, -116, 62, 62, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 62, -136, 62, -138, 62, 62, 62, 62, -143, -144, 62, 62, -250, 62, -252, 62, -246, -26, -38, 62, -44, -49, 62, -219, 62, 62, -220, 62, -254, -253, 62, -24, 62, -59, -92, -165, -199, -201, -202, -51, 62, 62, -96, -97, -100, -102, 62, -117, -118, -135, 62, 62, 62, -141, -142, 62, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 62, 62, 62, 62, -218, -134, 62, -156, -215, 62, 62, -216, 62, -137, -139, -140, -145, 62, -109, -166, -157]), 'SIGN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [63, 63, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 63, -152, -151, 63, -85, -86, -56, 63, -155, -2, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, -247, -40, -41, -82, -83, 63, -153, -84, -39, -52, 63, -53, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 63, -251, 63, 63, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 63, -221, 63, 63, 63, 63, -101, -110, 63, -148, -149, -150, 63, 63, -245, -249, -23, -58, -37, 63, -164, 63, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 63, 63, -98, -99, 63, 63, -103, -104, -105, -106, -107, -108, 63, -111, -112, -113, -114, -115, -116, 63, 63, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 63, -136, 63, -138, 63, 63, 63, 63, -143, -144, 63, 63, -250, 63, -252, 63, -246, -26, -38, 63, -44, -49, 63, -219, 63, 63, -220, 63, -254, -253, 63, -24, 63, -59, -92, -165, -199, -201, -202, -51, 63, 63, -96, -97, -100, -102, 63, -117, -118, -135, 63, 63, 63, -141, -142, 63, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 63, 63, 63, 63, -218, -134, 63, -156, -215, 63, 63, -216, 63, -137, -139, -140, -145, 63, -109, -166, -157]), 'SQRT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [64, 64, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 64, -152, -151, 64, -85, -86, -56, 64, -155, -2, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, -247, -40, -41, -82, -83, 64, -153, -84, -39, -52, 64, -53, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 64, -251, 64, 64, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 64, -221, 64, 64, 64, 64, -101, -110, 64, -148, -149, -150, 64, 64, -245, -249, -23, -58, -37, 64, -164, 64, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 64, 64, -98, -99, 64, 64, -103, -104, -105, -106, -107, -108, 64, -111, -112, -113, -114, -115, -116, 64, 64, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 64, -136, 64, -138, 64, 64, 64, 64, -143, -144, 64, 64, -250, 64, -252, 64, -246, -26, -38, 64, -44, -49, 64, -219, 64, 64, -220, 64, -254, -253, 64, -24, 64, -59, -92, -165, -199, -201, -202, -51, 64, 64, -96, -97, -100, -102, 64, -117, -118, -135, 64, 64, 64, -141, -142, 64, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 64, 64, 64, 64, -218, -134, 64, -156, -215, 64, 64, -216, 64, -137, -139, -140, -145, 64, -109, -166, -157]), 'TRIM_SCALE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [65, 65, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 65, -152, -151, 65, -85, -86, -56, 65, -155, -2, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, -247, -40, -41, -82, -83, 65, -153, -84, -39, -52, 65, -53, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 65, -251, 65, 65, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 65, -221, 65, 65, 65, 65, -101, -110, 65, -148, -149, -150, 65, 65, -245, -249, -23, -58, -37, 65, -164, 65, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 65, 65, -98, -99, 65, 65, -103, -104, -105, -106, -107, -108, 65, -111, -112, -113, -114, -115, -116, 65, 65, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 65, -136, 65, -138, 65, 65, 65, 65, -143, -144, 65, 65, -250, 65, -252, 65, -246, -26, -38, 65, -44, -49, 65, -219, 65, 65, -220, 65, -254, -253, 65, -24, 65, -59, -92, -165, -199, -201, -202, -51, 65, 65, -96, -97, -100, -102, 65, -117, -118, -135, 65, 65, 65, -141, -142, 65, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 65, 65, 65, 65, -218, -134, 65, -156, -215, 65, 65, -216, 65, -137, -139, -140, -145, 65, -109, -166, -157]), 'TRUNC': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [66, 66, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 66, -152, -151, 66, -85, -86, -56, 66, -155, -2, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, -247, -40, -41, -82, -83, 66, -153, -84, -39, -52, 66, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 66, -251, 66, 66, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 66, -221, 66, 66, 66, 66, -101, -110, 66, -148, -149, -150, 66, 66, -245, -249, -23, -58, -37, 66, -164, 66, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 66, 66, -98, -99, 66, 66, -103, -104, -105, -106, -107, -108, 66, -111, -112, -113, -114, -115, -116, 66, 66, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 66, -136, 66, -138, 66, 66, 66, 66, -143, -144, 66, 66, -250, 66, -252, 66, -246, -26, -38, 66, -44, -49, 66, -219, 66, 66, -220, 66, -254, -253, 66, -24, 66, -59, -92, -165, -199, -201, -202, -51, 66, 66, -96, -97, -100, -102, 66, -117, -118, -135, 66, 66, 66, -141, -142, 66, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 66, 66, 66, 66, -218, -134, 66, -156, -215, 66, 66, -216, 66, -137, -139, -140, -145, 66, -109, -166, -157]), 'WIDTH_BUCKET': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [67, 67, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 67, -152, -151, 67, -85, -86, -56, 67, -155, -2, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, -247, -40, -41, -82, -83, 67, -153, -84, -39, -52, 67, -53, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 67, -251, 67, 67, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 67, -221, 67, 67, 67, 67, -101, -110, 67, -148, -149, -150, 67, 67, -245, -249, -23, -58, -37, 67, -164, 67, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 67, 67, -98, -99, 67, 67, -103, -104, -105, -106, -107, -108, 67, -111, -112, -113, -114, -115, -116, 67, 67, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 67, -136, 67, -138, 67, 67, 67, 67, -143, -144, 67, 67, -250, 67, -252, 67, -246, -26, -38, 67, -44, -49, 67, -219, 67, 67, -220, 67, -254, -253, 67, -24, 67, -59, -92, -165, -199, -201, -202, -51, 67, 67, -96, -97, -100, -102, 67, -117, -118, -135, 67, 67, 67, -141, -142, 67, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 67, 67, 67, 67, -218, -134, 67, -156, -215, 67, 67, -216, 67, -137, -139, -140, -145, 67, -109, -166, -157]), 'RANDOM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [68, 68, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 68, -152, -151, 68, -85, -86, -56, 68, -155, -2, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, -247, -40, -41, -82, -83, 68, -153, -84, -39, -52, 68, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 68, -251, 68, 68, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 68, -221, 68, 68, 68, 68, -101, -110, 68, -148, -149, -150, 68, 68, -245, -249, -23, -58, -37, 68, -164, 68, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 68, 68, -98, -99, 68, 68, -103, -104, -105, -106, -107, -108, 68, -111, -112, -113, -114, -115, -116, 68, 68, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 68, -136, 68, -138, 68, 68, 68, 68, -143, -144, 68, 68, -250, 68, -252, 68, -246, -26, -38, 68, -44, -49, 68, -219, 68, 68, -220, 68, -254, -253, 68, -24, 68, -59, -92, -165, -199, -201, -202, -51, 68, 68, -96, -97, -100, -102, 68, -117, -118, -135, 68, 68, 68, -141, -142, 68, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 68, 68, 68, 68, -218, -134, 68, -156, -215, 68, 68, -216, 68, -137, -139, -140, -145, 68, -109, -166, -157]), 'ACOS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [69, 69, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 69, -152, -151, 69, -85, -86, -56, 69, -155, -2, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, -247, -40, -41, -82, -83, 69, -153, -84, -39, -52, 69, -53, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 69, -251, 69, 69, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 69, -221, 69, 69, 69, 69, -101, -110, 69, -148, -149, -150, 69, 69, -245, -249, -23, -58, -37, 69, -164, 69, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 69, 69, -98, -99, 69, 69, -103, -104, -105, -106, -107, -108, 69, -111, -112, -113, -114, -115, -116, 69, 69, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 69, -136, 69, -138, 69, 69, 69, 69, -143, -144, 69, 69, -250, 69, -252, 69, -246, -26, -38, 69, -44, -49, 69, -219, 69, 69, -220, 69, -254, -253, 69, -24, 69, -59, -92, -165, -199, -201, -202, -51, 69, 69, -96, -97, -100, -102, 69, -117, -118, -135, 69, 69, 69, -141, -142, 69, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 69, 69, 69, 69, -218, -134, 69, -156, -215, 69, 69, -216, 69, -137, -139, -140, -145, 69, -109, -166, -157]), 'ACOSD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [70, 70, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 70, -152, -151, 70, -85, -86, -56, 70, -155, -2, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, -247, -40, -41, -82, -83, 70, -153, -84, -39, -52, 70, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 70, -251, 70, 70, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 70, -221, 70, 70, 70, 70, -101, -110, 70, -148, -149, -150, 70, 70, -245, -249, -23, -58, -37, 70, -164, 70, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 70, 70, -98, -99, 70, 70, -103, -104, -105, -106, -107, -108, 70, -111, -112, -113, -114, -115, -116, 70, 70, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 70, -136, 70, -138, 70, 70, 70, 70, -143, -144, 70, 70, -250, 70, -252, 70, -246, -26, -38, 70, -44, -49, 70, -219, 70, 70, -220, 70, -254, -253, 70, -24, 70, -59, -92, -165, -199, -201, -202, -51, 70, 70, -96, -97, -100, -102, 70, -117, -118, -135, 70, 70, 70, -141, -142, 70, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 70, 70, 70, 70, -218, -134, 70, -156, -215, 70, 70, -216, 70, -137, -139, -140, -145, 70, -109, -166, -157]), 'ASIN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [71, 71, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 71, -152, -151, 71, -85, -86, -56, 71, -155, -2, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, -247, -40, -41, -82, -83, 71, -153, -84, -39, -52, 71, -53, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 71, -251, 71, 71, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 71, -221, 71, 71, 71, 71, -101, -110, 71, -148, -149, -150, 71, 71, -245, -249, -23, -58, -37, 71, -164, 71, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 71, 71, -98, -99, 71, 71, -103, -104, -105, -106, -107, -108, 71, -111, -112, -113, -114, -115, -116, 71, 71, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 71, -136, 71, -138, 71, 71, 71, 71, -143, -144, 71, 71, -250, 71, -252, 71, -246, -26, -38, 71, -44, -49, 71, -219, 71, 71, -220, 71, -254, -253, 71, -24, 71, -59, -92, -165, -199, -201, -202, -51, 71, 71, -96, -97, -100, -102, 71, -117, -118, -135, 71, 71, 71, -141, -142, 71, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 71, 71, 71, 71, -218, -134, 71, -156, -215, 71, 71, -216, 71, -137, -139, -140, -145, 71, -109, -166, -157]), 'ASIND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [72, 72, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 72, -152, -151, 72, -85, -86, -56, 72, -155, -2, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -247, -40, -41, -82, -83, 72, -153, -84, -39, -52, 72, -53, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 72, -251, 72, 72, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 72, -221, 72, 72, 72, 72, -101, -110, 72, -148, -149, -150, 72, 72, -245, -249, -23, -58, -37, 72, -164, 72, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 72, 72, -98, -99, 72, 72, -103, -104, -105, -106, -107, -108, 72, -111, -112, -113, -114, -115, -116, 72, 72, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 72, -136, 72, -138, 72, 72, 72, 72, -143, -144, 72, 72, -250, 72, -252, 72, -246, -26, -38, 72, -44, -49, 72, -219, 72, 72, -220, 72, -254, -253, 72, -24, 72, -59, -92, -165, -199, -201, -202, -51, 72, 72, -96, -97, -100, -102, 72, -117, -118, -135, 72, 72, 72, -141, -142, 72, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 72, 72, 72, 72, -218, -134, 72, -156, -215, 72, 72, -216, 72, -137, -139, -140, -145, 72, -109, -166, -157]), 'ATAN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [73, 73, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 73, -152, -151, 73, -85, -86, -56, 73, -155, -2, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, -247, -40, -41, -82, -83, 73, -153, -84, -39, -52, 73, -53, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 73, -251, 73, 73, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 73, -221, 73, 73, 73, 73, -101, -110, 73, -148, -149, -150, 73, 73, -245, -249, -23, -58, -37, 73, -164, 73, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 73, 73, -98, -99, 73, 73, -103, -104, -105, -106, -107, -108, 73, -111, -112, -113, -114, -115, -116, 73, 73, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 73, -136, 73, -138, 73, 73, 73, 73, -143, -144, 73, 73, -250, 73, -252, 73, -246, -26, -38, 73, -44, -49, 73, -219, 73, 73, -220, 73, -254, -253, 73, -24, 73, -59, -92, -165, -199, -201, -202, -51, 73, 73, -96, -97, -100, -102, 73, -117, -118, -135, 73, 73, 73, -141, -142, 73, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 73, 73, 73, 73, -218, -134, 73, -156, -215, 73, 73, -216, 73, -137, -139, -140, -145, 73, -109, -166, -157]), 'ATAND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [74, 74, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 74, -152, -151, 74, -85, -86, -56, 74, -155, -2, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, -247, -40, -41, -82, -83, 74, -153, -84, -39, -52, 74, -53, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 74, -251, 74, 74, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 74, -221, 74, 74, 74, 74, -101, -110, 74, -148, -149, -150, 74, 74, -245, -249, -23, -58, -37, 74, -164, 74, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 74, 74, -98, -99, 74, 74, -103, -104, -105, -106, -107, -108, 74, -111, -112, -113, -114, -115, -116, 74, 74, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 74, -136, 74, -138, 74, 74, 74, 74, -143, -144, 74, 74, -250, 74, -252, 74, -246, -26, -38, 74, -44, -49, 74, -219, 74, 74, -220, 74, -254, -253, 74, -24, 74, -59, -92, -165, -199, -201, -202, -51, 74, 74, -96, -97, -100, -102, 74, -117, -118, -135, 74, 74, 74, -141, -142, 74, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 74, 74, 74, 74, -218, -134, 74, -156, -215, 74, 74, -216, 74, -137, -139, -140, -145, 74, -109, -166, -157]), 'ATAN2': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [75, 75, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 75, -152, -151, 75, -85, -86, -56, 75, -155, -2, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, -247, -40, -41, -82, -83, 75, -153, -84, -39, -52, 75, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 75, -251, 75, 75, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 75, -221, 75, 75, 75, 75, -101, -110, 75, -148, -149, -150, 75, 75, -245, -249, -23, -58, -37, 75, -164, 75, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 75, 75, -98, -99, 75, 75, -103, -104, -105, -106, -107, -108, 75, -111, -112, -113, -114, -115, -116, 75, 75, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 75, -136, 75, -138, 75, 75, 75, 75, -143, -144, 75, 75, -250, 75, -252, 75, -246, -26, -38, 75, -44, -49, 75, -219, 75, 75, -220, 75, -254, -253, 75, -24, 75, -59, -92, -165, -199, -201, -202, -51, 75, 75, -96, -97, -100, -102, 75, -117, -118, -135, 75, 75, 75, -141, -142, 75, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 75, 75, 75, 75, -218, -134, 75, -156, -215, 75, 75, -216, 75, -137, -139, -140, -145, 75, -109, -166, -157]), 'ATAN2D': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [76, 76, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 76, -152, -151, 76, -85, -86, -56, 76, -155, -2, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, -247, -40, -41, -82, -83, 76, -153, -84, -39, -52, 76, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 76, -251, 76, 76, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 76, -221, 76, 76, 76, 76, -101, -110, 76, -148, -149, -150, 76, 76, -245, -249, -23, -58, -37, 76, -164, 76, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 76, 76, -98, -99, 76, 76, -103, -104, -105, -106, -107, -108, 76, -111, -112, -113, -114, -115, -116, 76, 76, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 76, -136, 76, -138, 76, 76, 76, 76, -143, -144, 76, 76, -250, 76, -252, 76, -246, -26, -38, 76, -44, -49, 76, -219, 76, 76, -220, 76, -254, -253, 76, -24, 76, -59, -92, -165, -199, -201, -202, -51, 76, 76, -96, -97, -100, -102, 76, -117, -118, -135, 76, 76, 76, -141, -142, 76, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 76, 76, 76, 76, -218, -134, 76, -156, -215, 76, 76, -216, 76, -137, -139, -140, -145, 76, -109, -166, -157]), 'COS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [77, 77, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 77, -152, -151, 77, -85, -86, -56, 77, -155, -2, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, -247, -40, -41, -82, -83, 77, -153, -84, -39, -52, 77, -53, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 77, -251, 77, 77, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 77, -221, 77, 77, 77, 77, -101, -110, 77, -148, -149, -150, 77, 77, -245, -249, -23, -58, -37, 77, -164, 77, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 77, 77, -98, -99, 77, 77, -103, -104, -105, -106, -107, -108, 77, -111, -112, -113, -114, -115, -116, 77, 77, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 77, -136, 77, -138, 77, 77, 77, 77, -143, -144, 77, 77, -250, 77, -252, 77, -246, -26, -38, 77, -44, -49, 77, -219, 77, 77, -220, 77, -254, -253, 77, -24, 77, -59, -92, -165, -199, -201, -202, -51, 77, 77, -96, -97, -100, -102, 77, -117, -118, -135, 77, 77, 77, -141, -142, 77, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 77, 77, 77, 77, -218, -134, 77, -156, -215, 77, 77, -216, 77, -137, -139, -140, -145, 77, -109, -166, -157]), 'COSD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [78, 78, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 78, -152, -151, 78, -85, -86, -56, 78, -155, -2, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, -247, -40, -41, -82, -83, 78, -153, -84, -39, -52, 78, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 78, -251, 78, 78, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 78, -221, 78, 78, 78, 78, -101, -110, 78, -148, -149, -150, 78, 78, -245, -249, -23, -58, -37, 78, -164, 78, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 78, 78, -98, -99, 78, 78, -103, -104, -105, -106, -107, -108, 78, -111, -112, -113, -114, -115, -116, 78, 78, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 78, -136, 78, -138, 78, 78, 78, 78, -143, -144, 78, 78, -250, 78, -252, 78, -246, -26, -38, 78, -44, -49, 78, -219, 78, 78, -220, 78, -254, -253, 78, -24, 78, -59, -92, -165, -199, -201, -202, -51, 78, 78, -96, -97, -100, -102, 78, -117, -118, -135, 78, 78, 78, -141, -142, 78, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 78, 78, 78, 78, -218, -134, 78, -156, -215, 78, 78, -216, 78, -137, -139, -140, -145, 78, -109, -166, -157]), 'COT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [79, 79, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 79, -152, -151, 79, -85, -86, -56, 79, -155, -2, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, -247, -40, -41, -82, -83, 79, -153, -84, -39, -52, 79, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 79, -251, 79, 79, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 79, -221, 79, 79, 79, 79, -101, -110, 79, -148, -149, -150, 79, 79, -245, -249, -23, -58, -37, 79, -164, 79, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 79, 79, -98, -99, 79, 79, -103, -104, -105, -106, -107, -108, 79, -111, -112, -113, -114, -115, -116, 79, 79, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 79, -136, 79, -138, 79, 79, 79, 79, -143, -144, 79, 79, -250, 79, -252, 79, -246, -26, -38, 79, -44, -49, 79, -219, 79, 79, -220, 79, -254, -253, 79, -24, 79, -59, -92, -165, -199, -201, -202, -51, 79, 79, -96, -97, -100, -102, 79, -117, -118, -135, 79, 79, 79, -141, -142, 79, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 79, 79, 79, 79, -218, -134, 79, -156, -215, 79, 79, -216, 79, -137, -139, -140, -145, 79, -109, -166, -157]), 'COTD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [80, 80, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 80, -152, -151, 80, -85, -86, -56, 80, -155, -2, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, -247, -40, -41, -82, -83, 80, -153, -84, -39, -52, 80, -53, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 80, -251, 80, 80, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 80, -221, 80, 80, 80, 80, -101, -110, 80, -148, -149, -150, 80, 80, -245, -249, -23, -58, -37, 80, -164, 80, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 80, 80, -98, -99, 80, 80, -103, -104, -105, -106, -107, -108, 80, -111, -112, -113, -114, -115, -116, 80, 80, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 80, -136, 80, -138, 80, 80, 80, 80, -143, -144, 80, 80, -250, 80, -252, 80, -246, -26, -38, 80, -44, -49, 80, -219, 80, 80, -220, 80, -254, -253, 80, -24, 80, -59, -92, -165, -199, -201, -202, -51, 80, 80, -96, -97, -100, -102, 80, -117, -118, -135, 80, 80, 80, -141, -142, 80, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 80, 80, 80, 80, -218, -134, 80, -156, -215, 80, 80, -216, 80, -137, -139, -140, -145, 80, -109, -166, -157]), 'SIN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [81, 81, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 81, -152, -151, 81, -85, -86, -56, 81, -155, -2, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, -247, -40, -41, -82, -83, 81, -153, -84, -39, -52, 81, -53, 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, 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, 81, 81, 81, 81, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 81, -251, 81, 81, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 81, -221, 81, 81, 81, 81, -101, -110, 81, -148, -149, -150, 81, 81, -245, -249, -23, -58, -37, 81, -164, 81, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 81, 81, -98, -99, 81, 81, -103, -104, -105, -106, -107, -108, 81, -111, -112, -113, -114, -115, -116, 81, 81, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 81, -136, 81, -138, 81, 81, 81, 81, -143, -144, 81, 81, -250, 81, -252, 81, -246, -26, -38, 81, -44, -49, 81, -219, 81, 81, -220, 81, -254, -253, 81, -24, 81, -59, -92, -165, -199, -201, -202, -51, 81, 81, -96, -97, -100, -102, 81, -117, -118, -135, 81, 81, 81, -141, -142, 81, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 81, 81, 81, 81, -218, -134, 81, -156, -215, 81, 81, -216, 81, -137, -139, -140, -145, 81, -109, -166, -157]), 'SIND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [82, 82, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 82, -152, -151, 82, -85, -86, -56, 82, -155, -2, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, -247, -40, -41, -82, -83, 82, -153, -84, -39, -52, 82, -53, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 82, -251, 82, 82, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 82, -221, 82, 82, 82, 82, -101, -110, 82, -148, -149, -150, 82, 82, -245, -249, -23, -58, -37, 82, -164, 82, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 82, 82, -98, -99, 82, 82, -103, -104, -105, -106, -107, -108, 82, -111, -112, -113, -114, -115, -116, 82, 82, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 82, -136, 82, -138, 82, 82, 82, 82, -143, -144, 82, 82, -250, 82, -252, 82, -246, -26, -38, 82, -44, -49, 82, -219, 82, 82, -220, 82, -254, -253, 82, -24, 82, -59, -92, -165, -199, -201, -202, -51, 82, 82, -96, -97, -100, -102, 82, -117, -118, -135, 82, 82, 82, -141, -142, 82, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 82, 82, 82, 82, -218, -134, 82, -156, -215, 82, 82, -216, 82, -137, -139, -140, -145, 82, -109, -166, -157]), 'TAN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [83, 83, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 83, -152, -151, 83, -85, -86, -56, 83, -155, -2, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, -247, -40, -41, -82, -83, 83, -153, -84, -39, -52, 83, -53, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 83, -251, 83, 83, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 83, -221, 83, 83, 83, 83, -101, -110, 83, -148, -149, -150, 83, 83, -245, -249, -23, -58, -37, 83, -164, 83, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 83, 83, -98, -99, 83, 83, -103, -104, -105, -106, -107, -108, 83, -111, -112, -113, -114, -115, -116, 83, 83, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 83, -136, 83, -138, 83, 83, 83, 83, -143, -144, 83, 83, -250, 83, -252, 83, -246, -26, -38, 83, -44, -49, 83, -219, 83, 83, -220, 83, -254, -253, 83, -24, 83, -59, -92, -165, -199, -201, -202, -51, 83, 83, -96, -97, -100, -102, 83, -117, -118, -135, 83, 83, 83, -141, -142, 83, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 83, 83, 83, 83, -218, -134, 83, -156, -215, 83, 83, -216, 83, -137, -139, -140, -145, 83, -109, -166, -157]), 'TAND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [84, 84, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 84, -152, -151, 84, -85, -86, -56, 84, -155, -2, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, -247, -40, -41, -82, -83, 84, -153, -84, -39, -52, 84, -53, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 84, -251, 84, 84, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 84, -221, 84, 84, 84, 84, -101, -110, 84, -148, -149, -150, 84, 84, -245, -249, -23, -58, -37, 84, -164, 84, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 84, 84, -98, -99, 84, 84, -103, -104, -105, -106, -107, -108, 84, -111, -112, -113, -114, -115, -116, 84, 84, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 84, -136, 84, -138, 84, 84, 84, 84, -143, -144, 84, 84, -250, 84, -252, 84, -246, -26, -38, 84, -44, -49, 84, -219, 84, 84, -220, 84, -254, -253, 84, -24, 84, -59, -92, -165, -199, -201, -202, -51, 84, 84, -96, -97, -100, -102, 84, -117, -118, -135, 84, 84, 84, -141, -142, 84, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 84, 84, 84, 84, -218, -134, 84, -156, -215, 84, 84, -216, 84, -137, -139, -140, -145, 84, -109, -166, -157]), 'SINH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [85, 85, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 85, -152, -151, 85, -85, -86, -56, 85, -155, -2, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, -247, -40, -41, -82, -83, 85, -153, -84, -39, -52, 85, -53, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 85, -251, 85, 85, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 85, -221, 85, 85, 85, 85, -101, -110, 85, -148, -149, -150, 85, 85, -245, -249, -23, -58, -37, 85, -164, 85, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 85, 85, -98, -99, 85, 85, -103, -104, -105, -106, -107, -108, 85, -111, -112, -113, -114, -115, -116, 85, 85, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 85, -136, 85, -138, 85, 85, 85, 85, -143, -144, 85, 85, -250, 85, -252, 85, -246, -26, -38, 85, -44, -49, 85, -219, 85, 85, -220, 85, -254, -253, 85, -24, 85, -59, -92, -165, -199, -201, -202, -51, 85, 85, -96, -97, -100, -102, 85, -117, -118, -135, 85, 85, 85, -141, -142, 85, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 85, 85, 85, 85, -218, -134, 85, -156, -215, 85, 85, -216, 85, -137, -139, -140, -145, 85, -109, -166, -157]), 'COSH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [86, 86, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 86, -152, -151, 86, -85, -86, -56, 86, -155, -2, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, -247, -40, -41, -82, -83, 86, -153, -84, -39, -52, 86, -53, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 86, -251, 86, 86, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 86, -221, 86, 86, 86, 86, -101, -110, 86, -148, -149, -150, 86, 86, -245, -249, -23, -58, -37, 86, -164, 86, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 86, 86, -98, -99, 86, 86, -103, -104, -105, -106, -107, -108, 86, -111, -112, -113, -114, -115, -116, 86, 86, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 86, -136, 86, -138, 86, 86, 86, 86, -143, -144, 86, 86, -250, 86, -252, 86, -246, -26, -38, 86, -44, -49, 86, -219, 86, 86, -220, 86, -254, -253, 86, -24, 86, -59, -92, -165, -199, -201, -202, -51, 86, 86, -96, -97, -100, -102, 86, -117, -118, -135, 86, 86, 86, -141, -142, 86, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 86, 86, 86, 86, -218, -134, 86, -156, -215, 86, 86, -216, 86, -137, -139, -140, -145, 86, -109, -166, -157]), 'TANH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [87, 87, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 87, -152, -151, 87, -85, -86, -56, 87, -155, -2, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, -247, -40, -41, -82, -83, 87, -153, -84, -39, -52, 87, -53, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 87, -251, 87, 87, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 87, -221, 87, 87, 87, 87, -101, -110, 87, -148, -149, -150, 87, 87, -245, -249, -23, -58, -37, 87, -164, 87, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 87, 87, -98, -99, 87, 87, -103, -104, -105, -106, -107, -108, 87, -111, -112, -113, -114, -115, -116, 87, 87, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 87, -136, 87, -138, 87, 87, 87, 87, -143, -144, 87, 87, -250, 87, -252, 87, -246, -26, -38, 87, -44, -49, 87, -219, 87, 87, -220, 87, -254, -253, 87, -24, 87, -59, -92, -165, -199, -201, -202, -51, 87, 87, -96, -97, -100, -102, 87, -117, -118, -135, 87, 87, 87, -141, -142, 87, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 87, 87, 87, 87, -218, -134, 87, -156, -215, 87, 87, -216, 87, -137, -139, -140, -145, 87, -109, -166, -157]), 'ASINH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [88, 88, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 88, -152, -151, 88, -85, -86, -56, 88, -155, -2, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, -247, -40, -41, -82, -83, 88, -153, -84, -39, -52, 88, -53, 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, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 88, -251, 88, 88, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 88, -221, 88, 88, 88, 88, -101, -110, 88, -148, -149, -150, 88, 88, -245, -249, -23, -58, -37, 88, -164, 88, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 88, 88, -98, -99, 88, 88, -103, -104, -105, -106, -107, -108, 88, -111, -112, -113, -114, -115, -116, 88, 88, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 88, -136, 88, -138, 88, 88, 88, 88, -143, -144, 88, 88, -250, 88, -252, 88, -246, -26, -38, 88, -44, -49, 88, -219, 88, 88, -220, 88, -254, -253, 88, -24, 88, -59, -92, -165, -199, -201, -202, -51, 88, 88, -96, -97, -100, -102, 88, -117, -118, -135, 88, 88, 88, -141, -142, 88, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 88, 88, 88, 88, -218, -134, 88, -156, -215, 88, 88, -216, 88, -137, -139, -140, -145, 88, -109, -166, -157]), 'ACOSH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [89, 89, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 89, -152, -151, 89, -85, -86, -56, 89, -155, -2, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, -247, -40, -41, -82, -83, 89, -153, -84, -39, -52, 89, -53, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 89, -251, 89, 89, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 89, -221, 89, 89, 89, 89, -101, -110, 89, -148, -149, -150, 89, 89, -245, -249, -23, -58, -37, 89, -164, 89, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 89, 89, -98, -99, 89, 89, -103, -104, -105, -106, -107, -108, 89, -111, -112, -113, -114, -115, -116, 89, 89, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 89, -136, 89, -138, 89, 89, 89, 89, -143, -144, 89, 89, -250, 89, -252, 89, -246, -26, -38, 89, -44, -49, 89, -219, 89, 89, -220, 89, -254, -253, 89, -24, 89, -59, -92, -165, -199, -201, -202, -51, 89, 89, -96, -97, -100, -102, 89, -117, -118, -135, 89, 89, 89, -141, -142, 89, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 89, 89, 89, 89, -218, -134, 89, -156, -215, 89, 89, -216, 89, -137, -139, -140, -145, 89, -109, -166, -157]), 'ATANH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [90, 90, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 90, -152, -151, 90, -85, -86, -56, 90, -155, -2, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, -247, -40, -41, -82, -83, 90, -153, -84, -39, -52, 90, -53, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 90, -251, 90, 90, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 90, -221, 90, 90, 90, 90, -101, -110, 90, -148, -149, -150, 90, 90, -245, -249, -23, -58, -37, 90, -164, 90, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 90, 90, -98, -99, 90, 90, -103, -104, -105, -106, -107, -108, 90, -111, -112, -113, -114, -115, -116, 90, 90, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 90, -136, 90, -138, 90, 90, 90, 90, -143, -144, 90, 90, -250, 90, -252, 90, -246, -26, -38, 90, -44, -49, 90, -219, 90, 90, -220, 90, -254, -253, 90, -24, 90, -59, -92, -165, -199, -201, -202, -51, 90, 90, -96, -97, -100, -102, 90, -117, -118, -135, 90, 90, 90, -141, -142, 90, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 90, 90, 90, 90, -218, -134, 90, -156, -215, 90, 90, -216, 90, -137, -139, -140, -145, 90, -109, -166, -157]), 'LENGTH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [91, 91, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 91, -152, -151, 91, -85, -86, -56, 91, -155, -2, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, -247, -40, -41, -82, -83, 91, -153, -84, -39, -52, 91, -53, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 91, -251, 91, 91, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 91, -221, 91, 91, 91, 91, -101, -110, 91, -148, -149, -150, 91, 91, -245, -249, -23, -58, -37, 91, -164, 91, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 91, 91, -98, -99, 91, 91, -103, -104, -105, -106, -107, -108, 91, -111, -112, -113, -114, -115, -116, 91, 91, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 91, -136, 91, -138, 91, 91, 91, 91, -143, -144, 91, 91, -250, 91, -252, 91, -246, -26, -38, 91, -44, -49, 91, -219, 91, 91, -220, 91, -254, -253, 91, -24, 91, -59, -92, -165, -199, -201, -202, -51, 91, 91, -96, -97, -100, -102, 91, -117, -118, -135, 91, 91, 91, -141, -142, 91, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 91, 91, 91, 91, -218, -134, 91, -156, -215, 91, 91, -216, 91, -137, -139, -140, -145, 91, -109, -166, -157]), 'TRIM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [92, 92, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 92, -152, -151, 92, -85, -86, -56, 92, -155, -2, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, -247, -40, -41, -82, -83, 92, -153, -84, -39, -52, 92, -53, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 92, -251, 92, 92, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 92, -221, 92, 92, 92, 92, -101, -110, 92, -148, -149, -150, 92, 92, -245, -249, -23, -58, -37, 92, -164, 92, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 92, 92, -98, -99, 92, 92, -103, -104, -105, -106, -107, -108, 92, -111, -112, -113, -114, -115, -116, 92, 92, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 92, -136, 92, -138, 92, 92, 92, 92, -143, -144, 92, 92, -250, 92, -252, 92, -246, -26, -38, 92, -44, -49, 92, -219, 92, 92, -220, 92, -254, -253, 92, -24, 92, -59, -92, -165, -199, -201, -202, -51, 92, 92, -96, -97, -100, -102, 92, -117, -118, -135, 92, 92, 92, -141, -142, 92, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 92, 92, 92, 92, -218, -134, 92, -156, -215, 92, 92, -216, 92, -137, -139, -140, -145, 92, -109, -166, -157]), 'GET_BYTE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [93, 93, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 93, -152, -151, 93, -85, -86, -56, 93, -155, -2, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, -247, -40, -41, -82, -83, 93, -153, -84, -39, -52, 93, -53, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 93, -251, 93, 93, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 93, -221, 93, 93, 93, 93, -101, -110, 93, -148, -149, -150, 93, 93, -245, -249, -23, -58, -37, 93, -164, 93, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 93, 93, -98, -99, 93, 93, -103, -104, -105, -106, -107, -108, 93, -111, -112, -113, -114, -115, -116, 93, 93, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 93, -136, 93, -138, 93, 93, 93, 93, -143, -144, 93, 93, -250, 93, -252, 93, -246, -26, -38, 93, -44, -49, 93, -219, 93, 93, -220, 93, -254, -253, 93, -24, 93, -59, -92, -165, -199, -201, -202, -51, 93, 93, -96, -97, -100, -102, 93, -117, -118, -135, 93, 93, 93, -141, -142, 93, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 93, 93, 93, 93, -218, -134, 93, -156, -215, 93, 93, -216, 93, -137, -139, -140, -145, 93, -109, -166, -157]), 'MD5': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [94, 94, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 94, -152, -151, 94, -85, -86, -56, 94, -155, -2, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, -247, -40, -41, -82, -83, 94, -153, -84, -39, -52, 94, -53, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 94, -251, 94, 94, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 94, -221, 94, 94, 94, 94, -101, -110, 94, -148, -149, -150, 94, 94, -245, -249, -23, -58, -37, 94, -164, 94, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 94, 94, -98, -99, 94, 94, -103, -104, -105, -106, -107, -108, 94, -111, -112, -113, -114, -115, -116, 94, 94, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 94, -136, 94, -138, 94, 94, 94, 94, -143, -144, 94, 94, -250, 94, -252, 94, -246, -26, -38, 94, -44, -49, 94, -219, 94, 94, -220, 94, -254, -253, 94, -24, 94, -59, -92, -165, -199, -201, -202, -51, 94, 94, -96, -97, -100, -102, 94, -117, -118, -135, 94, 94, 94, -141, -142, 94, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 94, 94, 94, 94, -218, -134, 94, -156, -215, 94, 94, -216, 94, -137, -139, -140, -145, 94, -109, -166, -157]), 'SET_BYTE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [95, 95, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 95, -152, -151, 95, -85, -86, -56, 95, -155, -2, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, -247, -40, -41, -82, -83, 95, -153, -84, -39, -52, 95, -53, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 95, -251, 95, 95, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 95, -221, 95, 95, 95, 95, -101, -110, 95, -148, -149, -150, 95, 95, -245, -249, -23, -58, -37, 95, -164, 95, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 95, 95, -98, -99, 95, 95, -103, -104, -105, -106, -107, -108, 95, -111, -112, -113, -114, -115, -116, 95, 95, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 95, -136, 95, -138, 95, 95, 95, 95, -143, -144, 95, 95, -250, 95, -252, 95, -246, -26, -38, 95, -44, -49, 95, -219, 95, 95, -220, 95, -254, -253, 95, -24, 95, -59, -92, -165, -199, -201, -202, -51, 95, 95, -96, -97, -100, -102, 95, -117, -118, -135, 95, 95, 95, -141, -142, 95, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 95, 95, 95, 95, -218, -134, 95, -156, -215, 95, 95, -216, 95, -137, -139, -140, -145, 95, -109, -166, -157]), 'SHA256': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [96, 96, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 96, -152, -151, 96, -85, -86, -56, 96, -155, -2, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, -247, -40, -41, -82, -83, 96, -153, -84, -39, -52, 96, -53, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 96, -251, 96, 96, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 96, -221, 96, 96, 96, 96, -101, -110, 96, -148, -149, -150, 96, 96, -245, -249, -23, -58, -37, 96, -164, 96, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 96, 96, -98, -99, 96, 96, -103, -104, -105, -106, -107, -108, 96, -111, -112, -113, -114, -115, -116, 96, 96, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 96, -136, 96, -138, 96, 96, 96, 96, -143, -144, 96, 96, -250, 96, -252, 96, -246, -26, -38, 96, -44, -49, 96, -219, 96, 96, -220, 96, -254, -253, 96, -24, 96, -59, -92, -165, -199, -201, -202, -51, 96, 96, -96, -97, -100, -102, 96, -117, -118, -135, 96, 96, 96, -141, -142, 96, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 96, 96, 96, 96, -218, -134, 96, -156, -215, 96, 96, -216, 96, -137, -139, -140, -145, 96, -109, -166, -157]), 'SUBSTR': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [97, 97, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 97, -152, -151, 97, -85, -86, -56, 97, -155, -2, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, -247, -40, -41, -82, -83, 97, -153, -84, -39, -52, 97, -53, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 97, -251, 97, 97, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 97, -221, 97, 97, 97, 97, -101, -110, 97, -148, -149, -150, 97, 97, -245, -249, -23, -58, -37, 97, -164, 97, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 97, 97, -98, -99, 97, 97, -103, -104, -105, -106, -107, -108, 97, -111, -112, -113, -114, -115, -116, 97, 97, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 97, -136, 97, -138, 97, 97, 97, 97, -143, -144, 97, 97, -250, 97, -252, 97, -246, -26, -38, 97, -44, -49, 97, -219, 97, 97, -220, 97, -254, -253, 97, -24, 97, -59, -92, -165, -199, -201, -202, -51, 97, 97, -96, -97, -100, -102, 97, -117, -118, -135, 97, 97, 97, -141, -142, 97, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 97, 97, 97, 97, -218, -134, 97, -156, -215, 97, 97, -216, 97, -137, -139, -140, -145, 97, -109, -166, -157]), 'CONVERT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [98, 98, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 98, -152, -151, 98, -85, -86, -56, 98, -155, -2, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, -247, -40, -41, -82, -83, 98, -153, -84, -39, -52, 98, -53, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 98, -251, 98, 98, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 98, -221, 98, 98, 98, 98, -101, -110, 98, -148, -149, -150, 98, 98, -245, -249, -23, -58, -37, 98, -164, 98, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 98, 98, -98, -99, 98, 98, -103, -104, -105, -106, -107, -108, 98, -111, -112, -113, -114, -115, -116, 98, 98, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 98, -136, 98, -138, 98, 98, 98, 98, -143, -144, 98, 98, -250, 98, -252, 98, -246, -26, -38, 98, -44, -49, 98, -219, 98, 98, -220, 98, -254, -253, 98, -24, 98, -59, -92, -165, -199, -201, -202, -51, 98, 98, -96, -97, -100, -102, 98, -117, -118, -135, 98, 98, 98, -141, -142, 98, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 98, 98, 98, 98, -218, -134, 98, -156, -215, 98, 98, -216, 98, -137, -139, -140, -145, 98, -109, -166, -157]), 'ENCODE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [99, 99, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 99, -152, -151, 99, -85, -86, -56, 99, -155, -2, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, -247, -40, -41, -82, -83, 99, -153, -84, -39, -52, 99, -53, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 99, -251, 99, 99, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 99, -221, 99, 99, 99, 99, -101, -110, 99, -148, -149, -150, 99, 99, -245, -249, -23, -58, -37, 99, -164, 99, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 99, 99, -98, -99, 99, 99, -103, -104, -105, -106, -107, -108, 99, -111, -112, -113, -114, -115, -116, 99, 99, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 99, -136, 99, -138, 99, 99, 99, 99, -143, -144, 99, 99, -250, 99, -252, 99, -246, -26, -38, 99, -44, -49, 99, -219, 99, 99, -220, 99, -254, -253, 99, -24, 99, -59, -92, -165, -199, -201, -202, -51, 99, 99, -96, -97, -100, -102, 99, -117, -118, -135, 99, 99, 99, -141, -142, 99, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 99, 99, 99, 99, -218, -134, 99, -156, -215, 99, 99, -216, 99, -137, -139, -140, -145, 99, -109, -166, -157]), 'DECODE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [100, 100, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 100, -152, -151, 100, -85, -86, -56, 100, -155, -2, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, -247, -40, -41, -82, -83, 100, -153, -84, -39, -52, 100, -53, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 100, -251, 100, 100, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 100, -221, 100, 100, 100, 100, -101, -110, 100, -148, -149, -150, 100, 100, -245, -249, -23, -58, -37, 100, -164, 100, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 100, 100, -98, -99, 100, 100, -103, -104, -105, -106, -107, -108, 100, -111, -112, -113, -114, -115, -116, 100, 100, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 100, -136, 100, -138, 100, 100, 100, 100, -143, -144, 100, 100, -250, 100, -252, 100, -246, -26, -38, 100, -44, -49, 100, -219, 100, 100, -220, 100, -254, -253, 100, -24, 100, -59, -92, -165, -199, -201, -202, -51, 100, 100, -96, -97, -100, -102, 100, -117, -118, -135, 100, 100, 100, -141, -142, 100, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 100, 100, 100, 100, -218, -134, 100, -156, -215, 100, 100, -216, 100, -137, -139, -140, -145, 100, -109, -166, -157]), 'AVG': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [101, 101, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 101, -152, -151, 101, -85, -86, -56, 101, -155, -2, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, -247, -40, -41, -82, -83, 101, -153, -84, -39, -52, 101, -53, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 101, -251, 101, 101, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 101, -221, 101, 101, 101, 101, -101, -110, 101, -148, -149, -150, 101, 101, -245, -249, -23, -58, -37, 101, -164, 101, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 101, 101, -98, -99, 101, 101, -103, -104, -105, -106, -107, -108, 101, -111, -112, -113, -114, -115, -116, 101, 101, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 101, -136, 101, -138, 101, 101, 101, 101, -143, -144, 101, 101, -250, 101, -252, 101, -246, -26, -38, 101, -44, -49, 101, -219, 101, 101, -220, 101, -254, -253, 101, -24, 101, -59, -92, -165, -199, -201, -202, -51, 101, 101, -96, -97, -100, -102, 101, -117, -118, -135, 101, 101, 101, -141, -142, 101, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 101, 101, 101, 101, -218, -134, 101, -156, -215, 101, 101, -216, 101, -137, -139, -140, -145, 101, -109, -166, -157]), 'SUM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [102, 102, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 102, -152, -151, 102, -85, -86, -56, 102, -155, -2, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, -247, -40, -41, -82, -83, 102, -153, -84, -39, -52, 102, -53, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 102, -251, 102, 102, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 102, -221, 102, 102, 102, 102, -101, -110, 102, -148, -149, -150, 102, 102, -245, -249, -23, -58, -37, 102, -164, 102, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 102, 102, -98, -99, 102, 102, -103, -104, -105, -106, -107, -108, 102, -111, -112, -113, -114, -115, -116, 102, 102, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 102, -136, 102, -138, 102, 102, 102, 102, -143, -144, 102, 102, -250, 102, -252, 102, -246, -26, -38, 102, -44, -49, 102, -219, 102, 102, -220, 102, -254, -253, 102, -24, 102, -59, -92, -165, -199, -201, -202, -51, 102, 102, -96, -97, -100, -102, 102, -117, -118, -135, 102, 102, 102, -141, -142, 102, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 102, 102, 102, 102, -218, -134, 102, -156, -215, 102, 102, -216, 102, -137, -139, -140, -145, 102, -109, -166, -157]), 'SUBSTRING': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [103, 103, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 103, -152, -151, 103, -85, -86, -56, 103, -155, -2, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, -247, -40, -41, -82, -83, 103, -153, -84, -39, -52, 103, -53, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 103, -251, 103, 103, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 103, -221, 103, 103, 103, 103, -101, -110, 103, -148, -149, -150, 103, 103, -245, -249, -23, -58, -37, 103, -164, 103, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 103, 103, -98, -99, 103, 103, -103, -104, -105, -106, -107, -108, 103, -111, -112, -113, -114, -115, -116, 103, 103, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 103, -136, 103, -138, 103, 103, 103, 103, -143, -144, 103, 103, -250, 103, -252, 103, -246, -26, -38, 103, -44, -49, 103, -219, 103, 103, -220, 103, -254, -253, 103, -24, 103, -59, -92, -165, -199, -201, -202, -51, 103, 103, -96, -97, -100, -102, 103, -117, -118, -135, 103, 103, 103, -141, -142, 103, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 103, 103, 103, 103, -218, -134, 103, -156, -215, 103, 103, -216, 103, -137, -139, -140, -145, 103, -109, -166, -157]), 'DECIMAL': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 28, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 278, 280, 282, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 404, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 496, 509, 510, 513, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 561, 563, 571, 572, 575, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709, 710], [32, 32, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 150, 32, -152, -151, 32, -85, -86, -56, 32, -155, -2, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, -247, -40, -41, -82, -83, 32, -153, -84, -39, 286, 32, -53, 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, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 32, -251, 32, 32, -256, -244, -248, -54, -31, -154, -52, -53, -81, 286, -46, 286, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 32, -221, 32, 32, 32, 32, -101, -110, 32, -148, -149, -150, 32, 32, -245, -249, -23, -58, -37, 32, 32, -164, 32, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 32, 32, -98, -99, 32, 32, -103, -104, -105, -106, -107, -108, 32, -111, -112, -113, -114, -115, -116, 32, 32, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 32, -136, 32, -138, 32, 32, 32, 32, -143, -144, 32, 32, -250, 32, -252, 32, -246, -26, 32, 32, 286, 32, -38, 32, 32, -44, -49, 32, -219, 32, 32, -220, 32, -254, -253, 32, -24, 32, 32, -59, -92, 32, -165, -199, -201, -202, -51, 32, 32, -96, -97, -100, -102, 32, -117, -118, -135, 32, 32, 32, -141, -142, 32, -146, -147, -255, -25, 32, -167, 32, 32, -32, -33, -160, -200, -48, -50, -217, 32, 32, 32, 32, -218, -134, 32, -156, 32, -215, 32, 32, -216, 32, -137, -139, -140, -145, 32, -109, -166, -157, 32]), 'ENTERO': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 28, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 404, 408, 409, 411, 412, 413, 415, 416, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 509, 510, 513, 516, 520, 522, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 561, 563, 571, 572, 575, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709, 710], [31, 31, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 149, 31, -152, -151, 31, -85, -86, -56, 31, -155, -2, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, -247, -40, -41, -82, -83, 31, -153, -84, -39, -52, 31, -53, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 31, -251, 31, 31, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 31, -221, 31, 31, 31, 31, -101, -110, 31, -148, -149, -150, 31, 31, -245, -249, -23, -58, -37, 31, 31, -164, 31, -45, -197, 521, 523, 524, -47, -87, -88, -89, -90, -91, -93, -94, -95, 31, 31, -98, -99, 31, 31, -103, -104, -105, -106, -107, -108, 31, -111, -112, -113, -114, -115, -116, 31, 31, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 31, -136, 31, -138, 31, 31, 31, 31, -143, -144, 31, 31, -250, 31, -252, 31, -246, -26, 31, 31, 31, -38, 31, 31, -44, 581, -49, 31, -219, 31, 31, -220, 31, -254, -253, 31, -24, 31, 31, -59, -92, 31, -165, -199, -201, -202, -51, 31, 31, -96, -97, -100, -102, 31, -117, -118, -135, 31, 31, 31, -141, -142, 31, -146, -147, -255, -25, 31, -167, 31, 31, -32, -33, -160, -200, -48, -50, -217, 31, 31, 31, 31, -218, -134, 31, -156, 31, -215, 31, 31, -216, 31, -137, -139, -140, -145, 31, -109, -166, -157, 31]), 'CADENA': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 404, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 509, 510, 513, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 561, 563, 571, 572, 575, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709, 710], [104, 104, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 104, -152, -151, 104, -85, -86, -56, 104, -155, -2, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 252, 104, -247, -40, -41, -82, -83, 104, -153, -84, -39, -52, 104, -53, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 104, -251, 104, 104, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 104, -221, 104, 104, 104, 104, -101, -110, 104, -148, -149, -150, 104, 104, -245, -249, -23, -58, -37, 104, 104, -164, 104, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 104, 104, -98, -99, 104, 104, -103, -104, -105, -106, -107, -108, 104, -111, -112, -113, -114, -115, -116, 104, 104, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 104, -136, 104, -138, 104, 104, 104, 104, -143, -144, 104, 104, -250, 104, -252, 104, -246, -26, 104, 104, 104, -38, 104, 104, -44, -49, 104, -219, 104, 104, -220, 104, -254, -253, 104, -24, 104, 104, -59, -92, 104, -165, -199, -201, -202, -51, 104, 104, -96, -97, -100, -102, 104, -117, -118, -135, 104, 104, 104, -141, -142, 104, -146, -147, -255, -25, 104, -167, 104, 104, -32, -33, -160, -200, -48, -50, -217, 104, 104, 104, 104, -218, -134, 104, -156, 104, -215, 104, 104, -216, 104, -137, -139, -140, -145, 104, -109, -166, -157, 104]), '$end': ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [0, -1, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'MAS': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [106, -153, -152, -151, -85, -86, -155, -82, -83, 106, -153, 106, 106, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 106, 106, 106, 106, 106, 106, 106, 106, 106, -251, 106, -154, 106, -81, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, -101, 106, 106, 106, 106, 106, 106, 106, 106, -110, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 106, -136, -138, -143, -144, -66, -252, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, -66, -66, -92, 106, 106, 106, -96, -97, -100, -102, -117, -118, 106, -135, -141, -142, -146, -147, -66, 106, 106, 106, 106, -134, 106, 106, 106, 106, 106, -137, -139, -140, -145, 106, 106, 106, -109]), 'POR': ([8, 25, 31, 32, 34, 35, 45, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [108, -153, -152, -151, -85, -86, 167, -155, -82, -83, 108, -153, 108, 108, 108, 108, -62, -63, -64, 108, -66, -67, -68, -69, -70, -71, -72, 108, 108, 108, 108, 108, 108, 108, 108, 108, -251, 108, -154, 108, -81, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -101, 108, 108, 108, 108, 108, 108, 108, 108, -110, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 108, -136, -138, -143, -144, -66, -252, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -66, -66, -92, 108, 108, 108, -96, -97, -100, -102, -117, -118, 108, -135, -141, -142, -146, -147, -66, 108, 108, 108, 108, -134, 108, 108, 108, 108, 108, -137, -139, -140, -145, 108, 108, 108, -109]), 'RESIDUO': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [110, -153, -152, -151, -85, -86, -155, -82, -83, 110, -153, 110, 110, 110, 110, -62, -63, -64, 110, -66, -67, -68, -69, -70, -71, -72, 110, 110, 110, 110, 110, 110, 110, 110, 110, -251, 110, -154, 110, -81, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, -101, 110, 110, 110, 110, 110, 110, 110, 110, -110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 110, -136, -138, -143, -144, -66, -252, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, -66, -66, -92, 110, 110, 110, -96, -97, -100, -102, -117, -118, 110, -135, -141, -142, -146, -147, -66, 110, 110, 110, 110, -134, 110, 110, 110, 110, 110, -137, -139, -140, -145, 110, 110, 110, -109]), 'POTENCIA': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [111, -153, -152, -151, -85, -86, -155, -82, -83, 111, -153, 111, 111, 111, 111, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 111, 111, 111, 111, 111, 111, 111, 111, 111, -251, 111, -154, 111, -81, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, -101, 111, 111, 111, 111, 111, 111, 111, 111, -110, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 111, -136, -138, -143, -144, -66, -252, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, -66, -66, -92, 111, 111, 111, -96, -97, -100, -102, -117, -118, 111, -135, -141, -142, -146, -147, -66, 111, 111, 111, 111, -134, 111, 111, 111, 111, 111, -137, -139, -140, -145, 111, 111, 111, -109]), 'AND': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 648, 649, 650, 651, 654, 655, 656, 657, 658, 659, 675, 676, 677, 681, 684, 685, 686, 687, 690, 697, 702, 706], [112, -153, -152, -151, -85, -86, -155, -82, -83, 112, -153, 112, 112, 112, 112, 112, 112, 112, 112, -66, -67, -68, -69, -70, -71, -72, 112, 112, 112, 112, 112, 112, 112, 112, 379, -251, 112, -154, 112, -81, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, -101, 112, 112, 112, 112, 112, 112, 112, 112, -110, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 486, 488, 112, 112, 112, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 112, -136, -138, -143, -144, -66, -252, 553, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, -66, -66, -92, 112, 641, 112, 112, 641, -96, -97, -100, -102, -117, -118, 112, -135, -141, -142, -146, -147, -66, 112, 641, 112, 641, 112, 112, -134, 112, 112, 112, 112, -232, -233, 112, -236, -137, -139, -140, -145, 112, 112, 112, -109]), 'OR': ([8, 24, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 648, 649, 650, 651, 654, 655, 656, 657, 658, 659, 675, 676, 677, 681, 684, 685, 686, 687, 690, 697, 702, 706], [113, 137, -153, -152, -151, -85, -86, -155, -82, -83, 113, -153, 113, 113, 113, 113, 113, 113, 113, 113, -66, -67, -68, -69, -70, -71, -72, 113, 113, 113, 113, 113, 113, 113, 113, 113, -251, 113, -154, 113, -81, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, -101, 113, 113, 113, 113, 113, 113, 113, 113, -110, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 113, -136, -138, -143, -144, -66, -252, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, -66, -66, -92, 113, 642, 113, 113, 642, -96, -97, -100, -102, -117, -118, 113, -135, -141, -142, -146, -147, -66, 113, 642, 113, 642, 113, 113, -134, 113, 113, 113, 113, -232, -233, 113, -236, -137, -139, -140, -145, 113, 113, 113, -109]), 'SIMBOLOOR2': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [114, -153, -152, -151, -85, -86, -155, -82, -83, 114, -153, 114, 114, 114, 114, 114, 114, 114, 114, -66, -67, -68, -69, -70, -71, -72, 114, 114, 114, 114, 114, 114, 114, 114, 114, -251, 114, -154, 114, -81, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, -101, 114, 114, 114, 114, 114, 114, 114, 114, -110, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 114, -136, -138, -143, -144, -66, -252, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, -66, -66, -92, 114, 114, 114, -96, -97, -100, -102, -117, -118, 114, -135, -141, -142, -146, -147, -66, 114, 114, 114, 114, -134, 114, 114, 114, 114, 114, -137, -139, -140, -145, 114, 114, 114, -109]), 'SIMBOLOOR': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [115, -153, -152, -151, -85, -86, -155, -82, -83, 115, -153, 115, 115, 115, 115, 115, 115, 115, 115, -66, -67, -68, -69, -70, -71, -72, 115, 115, 115, 115, 115, 115, 115, 115, 115, -251, 115, -154, 115, -81, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, -101, 115, 115, 115, 115, 115, 115, 115, 115, -110, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 115, -136, -138, -143, -144, -66, -252, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, -66, -66, -92, 115, 115, 115, -96, -97, -100, -102, -117, -118, 115, -135, -141, -142, -146, -147, -66, 115, 115, 115, 115, -134, 115, 115, 115, 115, 115, -137, -139, -140, -145, 115, 115, 115, -109]), 'SIMBOLOAND2': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [116, -153, -152, -151, -85, -86, -155, -82, -83, 116, -153, 116, 116, 116, 116, 116, 116, 116, 116, -66, -67, -68, -69, -70, -71, -72, 116, 116, 116, 116, 116, 116, 116, 116, 116, -251, 116, -154, 116, -81, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -101, 116, 116, 116, 116, 116, 116, 116, 116, -110, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 116, -136, -138, -143, -144, -66, -252, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -66, -66, -92, 116, 116, 116, -96, -97, -100, -102, -117, -118, 116, -135, -141, -142, -146, -147, -66, 116, 116, 116, 116, -134, 116, 116, 116, 116, 116, -137, -139, -140, -145, 116, 116, 116, -109]), 'DESPLAZAMIENTOIZQUIERDA': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [117, -153, -152, -151, -85, -86, -155, -82, -83, 117, -153, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -71, -72, 117, 117, 117, 117, 117, 117, 117, 117, 117, -251, 117, -154, 117, -81, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -101, 117, 117, 117, 117, 117, 117, 117, 117, -110, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 117, -136, -138, -143, -144, 117, -252, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -92, 117, 117, 117, -96, -97, -100, -102, -117, -118, 117, -135, -141, -142, -146, -147, 117, 117, 117, 117, 117, -134, 117, 117, 117, 117, 117, -137, -139, -140, -145, 117, 117, 117, -109]), 'DESPLAZAMIENTODERECHA': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [118, -153, -152, -151, -85, -86, -155, -82, -83, 118, -153, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -71, -72, 118, 118, 118, 118, 118, 118, 118, 118, 118, -251, 118, -154, 118, -81, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -101, 118, 118, 118, 118, 118, 118, 118, 118, -110, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 118, -136, -138, -143, -144, 118, -252, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -92, 118, 118, 118, -96, -97, -100, -102, -117, -118, 118, -135, -141, -142, -146, -147, 118, 118, 118, 118, 118, -134, 118, 118, 118, 118, 118, -137, -139, -140, -145, 118, 118, 118, -109]), 'IGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 389, 390, 405, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [119, -153, -152, -151, -85, -86, -155, -82, -83, 119, -153, -84, 119, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 119, 119, 119, 119, 119, 119, 119, 119, 119, -251, 119, -154, 119, -81, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, -101, 119, 119, 119, 119, 119, 119, 119, 119, -110, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 493, 494, 516, 119, 119, 119, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 119, -136, -138, -143, -144, -66, -252, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, -66, -66, -92, 119, 119, 119, -96, -97, -100, -102, -117, -118, 119, -135, -141, -142, -146, -147, -66, 119, -84, 119, 119, -134, 119, 119, 119, 119, 119, -137, -139, -140, -145, 119, 119, 119, -109]), 'IGUALIGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [120, -153, -152, -151, -85, -86, -155, -82, -83, 120, -153, -84, 120, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 120, 120, 120, 120, 120, 120, 120, 120, 120, -251, 120, -154, 120, -81, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, -101, 120, 120, 120, 120, 120, 120, 120, 120, -110, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 120, -136, -138, -143, -144, -66, -252, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, -66, -66, -92, 120, 120, 120, -96, -97, -100, -102, -117, -118, 120, -135, -141, -142, -146, -147, -66, 120, -84, 120, 120, -134, 120, 120, 120, 120, 120, -137, -139, -140, -145, 120, 120, 120, -109]), 'NOTEQUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [121, -153, -152, -151, -85, -86, -155, -82, -83, 121, -153, -84, 121, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 121, 121, 121, 121, 121, 121, 121, 121, 121, -251, 121, -154, 121, -81, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, -101, 121, 121, 121, 121, 121, 121, 121, 121, -110, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 121, -136, -138, -143, -144, -66, -252, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, -66, -66, -92, 121, 121, 121, -96, -97, -100, -102, -117, -118, 121, -135, -141, -142, -146, -147, -66, 121, -84, 121, 121, -134, 121, 121, 121, 121, 121, -137, -139, -140, -145, 121, 121, 121, -109]), 'MAYORIGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [122, -153, -152, -151, -85, -86, -155, -82, -83, 122, -153, -84, 122, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 122, 122, 122, 122, 122, 122, 122, 122, 122, -251, 122, -154, 122, -81, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, -101, 122, 122, 122, 122, 122, 122, 122, 122, -110, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 122, -136, -138, -143, -144, -66, -252, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, -66, -66, -92, 122, 122, 122, -96, -97, -100, -102, -117, -118, 122, -135, -141, -142, -146, -147, -66, 122, -84, 122, 122, -134, 122, 122, 122, 122, 122, -137, -139, -140, -145, 122, 122, 122, -109]), 'MENORIGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [123, -153, -152, -151, -85, -86, -155, -82, -83, 123, -153, -84, 123, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 123, 123, 123, 123, 123, 123, 123, 123, 123, -251, 123, -154, 123, -81, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, -101, 123, 123, 123, 123, 123, 123, 123, 123, -110, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 123, -136, -138, -143, -144, -66, -252, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, -66, -66, -92, 123, 123, 123, -96, -97, -100, -102, -117, -118, 123, -135, -141, -142, -146, -147, -66, 123, -84, 123, 123, -134, 123, 123, 123, 123, 123, -137, -139, -140, -145, 123, 123, 123, -109]), 'MAYOR': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [124, -153, -152, -151, -85, -86, -155, -82, -83, 124, -153, -84, 124, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 124, 124, 124, 124, 124, 124, 124, 124, 124, -251, 124, -154, 124, -81, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, -101, 124, 124, 124, 124, 124, 124, 124, 124, -110, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 124, -136, -138, -143, -144, -66, -252, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, -66, -66, -92, 124, 124, 124, -96, -97, -100, -102, -117, -118, 124, -135, -141, -142, -146, -147, -66, 124, -84, 124, 124, -134, 124, 124, 124, 124, 124, -137, -139, -140, -145, 124, 124, 124, -109]), 'MENOR': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [125, -153, -152, -151, -85, -86, -155, -82, -83, 125, -153, -84, 125, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 125, 125, 125, 125, 125, 125, 125, 125, 125, -251, 125, -154, 125, -81, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, -101, 125, 125, 125, 125, 125, 125, 125, 125, -110, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 125, -136, -138, -143, -144, -66, -252, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, -66, -66, -92, 125, 125, 125, -96, -97, -100, -102, -117, -118, 125, -135, -141, -142, -146, -147, -66, 125, -84, 125, 125, -134, 125, 125, 125, 125, 125, -137, -139, -140, -145, 125, 125, 125, -109]), 'DIFERENTE': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [126, -153, -152, -151, -85, -86, -155, -82, -83, 126, -153, -84, 126, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 126, 126, 126, 126, 126, 126, 126, 126, 126, -251, 126, -154, 126, -81, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, -101, 126, 126, 126, 126, 126, 126, 126, 126, -110, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 126, -136, -138, -143, -144, -66, -252, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, -66, -66, -92, 126, 126, 126, -96, -97, -100, -102, -117, -118, 126, -135, -141, -142, -146, -147, -66, 126, -84, 126, 126, -134, 126, 126, 126, 126, 126, -137, -139, -140, -145, 126, 126, 126, -109]), 'BETWEEN': ([8, 25, 31, 32, 34, 35, 104, 130, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [127, -153, -152, -151, -85, -86, -155, 254, -82, -83, 127, -153, -84, 127, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 127, 127, 127, 127, 127, 127, 127, 127, 127, -251, 127, -154, 127, -81, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, -101, 127, 127, 127, 127, 127, 127, 127, 127, -110, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 127, -136, -138, -143, -144, -66, -252, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, -66, -66, -92, 127, 127, 127, -96, -97, -100, -102, -117, -118, 127, -135, -141, -142, -146, -147, -66, 127, -84, 127, 127, -134, 127, 127, 127, 127, 127, -137, -139, -140, -145, 127, 127, 127, -109]), 'LIKE': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [128, -153, -152, -151, -85, -86, -155, -82, -83, 128, -153, -84, 128, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 128, 128, 128, 128, 128, 128, 128, 128, 128, -251, 128, -154, 128, -81, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, -101, 128, 128, 128, 128, 128, 128, 128, 128, -110, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 128, -136, -138, -143, -144, -66, -252, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, -66, -66, -92, 128, 128, 128, -96, -97, -100, -102, -117, -118, 128, -135, -141, -142, -146, -147, -66, 128, -84, 128, 128, -134, 128, 128, 128, 128, 128, -137, -139, -140, -145, 128, 128, 128, -109]), 'IN': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [129, -153, -152, -151, -85, -86, -155, -82, -83, 129, -153, -84, 129, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 129, 129, 129, 129, 129, 129, 129, 129, 129, -251, 129, -154, 129, -81, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, -101, 129, 129, 129, 129, 129, 129, 129, 129, -110, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 129, -136, -138, -143, -144, -66, -252, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, -66, -66, -92, 129, 129, 129, -96, -97, -100, -102, -117, -118, 129, -135, -141, -142, -146, -147, -66, 129, -84, 129, 129, -134, 129, 129, 129, 129, 129, -137, -139, -140, -145, 129, 129, 129, -109]), 'DISTINCT': ([8, 25, 31, 32, 34, 35, 45, 104, 133, 149, 150, 152, 153, 154, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 255, 258, 264, 273, 274, 306, 311, 315, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 646, 649, 651, 654, 655, 656, 657, 658, 659, 677, 678, 679, 680, 684, 685, 686, 687, 690, 695, 696, 697, 702, 706], [132, -153, -152, -151, -85, -86, 132, -155, 257, -82, -83, 132, -153, -84, 132, 132, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 132, 132, 132, 132, 132, 132, 132, 132, 132, -251, 132, 132, 385, -154, 132, -81, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, -101, 132, 132, 132, 132, 132, 132, 132, 132, -110, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, -238, 132, 132, 132, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 132, -136, -138, -143, -144, -66, -252, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, -66, -66, -92, 132, 132, 132, -96, -97, -100, -102, -117, -118, 132, -135, -141, -142, -146, -147, -66, 132, 132, -84, 132, 132, -134, 132, 132, 132, 132, 132, 132, 132, 132, -137, -139, -140, -145, 132, 132, 132, 132, 132, -109]), 'IS': ([8, 25, 31, 32, 34, 35, 45, 104, 149, 150, 152, 153, 154, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 255, 264, 273, 274, 306, 311, 315, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 646, 649, 651, 654, 655, 656, 657, 658, 659, 677, 678, 679, 680, 684, 685, 686, 687, 690, 695, 696, 697, 702, 706], [133, -153, -152, -151, -85, -86, 133, -155, -82, -83, 133, -153, -84, 133, 133, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 133, 133, 133, 133, 133, 133, 133, 133, 133, -251, 133, 133, -154, 133, -81, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, -101, 133, 133, 133, 133, 133, 133, 133, 133, -110, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, -238, 133, 133, 133, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 133, -136, -138, -143, -144, -66, -252, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, -66, -66, -92, 133, 133, 133, -96, -97, -100, -102, -117, -118, 133, -135, -141, -142, -146, -147, -66, 133, 133, -84, 133, 133, -134, 133, 133, 133, 133, 133, 133, 133, 133, -137, -139, -140, -145, 133, 133, 133, 133, 133, -109]), 'COMA': ([20, 25, 31, 32, 34, 35, 104, 149, 150, 153, 154, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 264, 273, 274, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 317, 326, 327, 330, 331, 332, 339, 340, 347, 348, 368, 370, 372, 373, 374, 375, 381, 406, 407, 412, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 497, 498, 500, 501, 502, 503, 514, 515, 528, 529, 539, 544, 545, 546, 551, 552, 558, 572, 573, 576, 577, 578, 580, 582, 583, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 612, 613, 615, 617, 619, 620, 624, 625, 634, 636, 654, 655, 660, 661, 662, 663, 666, 668, 669, 670, 679, 684, 685, 686, 687, 688, 691, 693, 695, 696, 699, 706, 711, 712], [134, -55, -152, -151, -85, -86, -155, -82, -83, -153, -84, 313, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -154, 402, -81, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -242, 436, 437, 440, -101, 441, 448, -110, 455, 456, 473, 475, 477, 478, 479, 480, 313, 518, -162, -197, 313, -237, -238, 532, 313, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, 560, -169, -173, -174, -175, -176, 575, -159, -55, 134, 597, 602, 603, 604, -254, -253, -170, -92, 575, -163, 518, -161, -199, -201, -202, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -171, -178, -180, -182, -184, -185, -168, 575, -158, -200, 683, -134, -177, -179, -181, -183, -172, -187, 575, 575, 313, -137, -139, -140, -145, -186, -189, 575, 313, 313, -188, -109, 575, -190]), 'DATABASES': ([23], [135]), 'DATABASE': ([24, 26, 27, 262], [136, 140, 144, 391]), 'TABLE': ([24, 26, 27], [138, 141, 145]), 'PUNTO': ([25, 153], [139, 139]), 'PARENTESISDERECHA': ([31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 169, 184, 193, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 264, 274, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 331, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 369, 371, 376, 377, 381, 412, 418, 419, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 497, 498, 500, 501, 502, 503, 512, 514, 515, 521, 523, 524, 528, 529, 535, 536, 537, 538, 540, 541, 543, 547, 548, 549, 550, 551, 552, 558, 572, 573, 580, 581, 582, 583, 585, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 612, 613, 615, 617, 619, 620, 624, 625, 627, 634, 636, 648, 649, 650, 651, 655, 656, 657, 658, 659, 660, 661, 662, 663, 666, 668, 669, 670, 675, 676, 681, 684, 685, 686, 687, 688, 689, 690, 691, 693, 697, 699, 706, 711, 712], [-152, -151, -85, -86, -155, -82, -83, 274, -153, -84, -240, -239, 331, 340, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -154, -81, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 417, -242, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, -101, 442, 443, 444, 445, 446, 447, -110, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 487, -197, 525, 526, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, 559, -169, -173, -174, -175, -176, 572, 574, -159, 580, 582, 583, -55, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, -254, -253, -170, -92, 632, -199, 636, -201, -202, 638, -235, -241, -96, -97, -100, -102, -117, -118, 655, -135, -141, -142, -146, -147, -255, -171, -178, -180, -182, -184, -185, -168, 666, 668, -158, -200, -234, -84, 681, 274, -134, 684, 685, 686, 687, -177, -179, -181, -183, -172, -187, 691, 692, -232, -233, -236, -137, -139, -140, -145, -186, 698, 699, -189, 701, 706, -188, -109, 712, -190]), 'AS': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 331, 340, 423, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, 316, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -101, -110, 316, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'FROM': ([31, 32, 34, 35, 38, 104, 132, 149, 150, 153, 154, 166, 167, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 257, 264, 274, 317, 331, 340, 378, 385, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 551, 552, 572, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, 157, -155, 256, -82, -83, -153, -84, 311, 315, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, 384, -154, -81, -242, -101, -110, 483, 490, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 542, -136, -138, -143, -144, -250, -252, -254, -253, -92, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'PUNTOYCOMA': ([31, 32, 34, 35, 104, 135, 142, 146, 149, 150, 153, 154, 158, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 261, 264, 268, 270, 271, 272, 274, 277, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 317, 331, 340, 387, 388, 396, 407, 411, 412, 417, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 492, 495, 511, 519, 520, 526, 551, 552, 554, 555, 557, 559, 566, 567, 568, 569, 570, 572, 576, 577, 578, 580, 582, 583, 586, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 632, 636, 637, 638, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 698, 701, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, 260, -40, -41, -82, -83, -153, -84, -39, 312, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, 386, -154, 399, 401, -52, -53, -81, 408, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -242, -101, -110, 491, -28, 510, -162, -45, -197, -47, 531, -237, -238, 534, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -27, 556, 571, 579, -44, -49, -254, -253, -29, -30, 611, 622, 630, 631, -34, -35, -36, -92, -163, 635, -161, -199, -201, -202, -51, 640, -235, -241, 653, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 671, -200, -48, -50, 673, -223, -234, -84, 682, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, 707, 709, -228, -229, -230, -231, -109]), 'WHERE': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 277, 317, 331, 340, 406, 407, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 576, 578, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, 409, -242, -101, -110, 517, -162, 530, -237, -238, 533, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -163, -161, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'LIMIT': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 644, -235, -241, 644, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 644, -223, -234, -84, 644, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'GROUP': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 645, -235, -241, 645, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 645, -223, -234, -84, 645, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'HAVING': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 646, -235, -241, 646, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 646, -223, -234, -84, 646, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'ORDER': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 647, -235, -241, 647, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 647, -223, -234, -84, 647, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'ASC': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 696, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, 704, -109]), 'DESC': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 696, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, 705, -109]), 'FOR': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 331, 340, 378, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 549, 551, 552, 572, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -101, -110, 484, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, 607, -254, -253, -92, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'OFFSET': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 331, 340, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 677, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -101, -110, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, 694, -137, -139, -140, -145, -109]), 'OWNER': ([31, 32, 104, 153, 261, 264, 265, 387, 388, 492, 495, 554, 555, 557], [-152, -151, -155, -153, 389, -154, 394, 389, -28, -27, 389, -29, -30, 389]), 'MODE': ([31, 32, 104, 153, 261, 264, 387, 388, 492, 495, 554, 555, 557], [-152, -151, -155, -153, 390, -154, 390, -28, -27, 390, -29, -30, 390]), 'DEFAULT': ([31, 32, 104, 153, 264, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 412, 558, 580, 582, 583, 612, 613, 615, 617, 619, 620, 636, 660, 661, 662, 663, 668, 688, 699], [-152, -151, -155, -153, -154, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -197, 614, -199, -201, -202, 614, -178, -180, -182, -184, -185, -200, -177, -179, -181, -183, -187, -186, -188]), 'NULL': ([31, 32, 104, 153, 264, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 410, 412, 558, 580, 582, 583, 612, 613, 615, 616, 617, 619, 620, 636, 660, 661, 662, 663, 668, 688, 699], [-152, -151, -155, -153, -154, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 520, -197, 615, -199, -201, -202, 615, -178, -180, 662, -182, -184, -185, -200, -177, -179, -181, -183, -187, -186, -188]), 'UNIQUE': ([31, 32, 104, 153, 165, 264, 279, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 392, 412, 558, 560, 580, 582, 583, 612, 613, 615, 617, 619, 620, 636, 660, 661, 662, 663, 664, 668, 688, 699], [-152, -151, -155, -153, 310, -154, 310, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 499, -197, 617, 499, -199, -201, -202, 617, -178, -180, -182, -184, -185, -200, -177, -179, -181, -183, 688, -187, -186, -188]), 'INTO': ([36], [155]), 'KEY': ([42, 43, 309, 506, 507, 618], [163, 164, 420, 564, 565, 663]), 'SYMMETRIC': ([127, 254], [251, 383]), 'REPLACE': ([137], [262]), 'IF': ([144], [269]), 'SET': ([156, 161, 267], [276, 281, 281]), 'TYPE': ([161, 267], [282, 282]), 'SMALLINT': ([161, 278, 282, 496], [283, 283, 283, 283]), 'INTEGER': ([161, 278, 282, 496], [284, 284, 284, 284]), 'BIGINT': ([161, 278, 282, 496], [285, 285, 285, 285]), 'NUMERIC': ([161, 278, 282, 496], [287, 287, 287, 287]), 'REAL': ([161, 278, 282, 496], [288, 288, 288, 288]), 'DOUBLE': ([161, 278, 282, 496], [289, 289, 289, 289]), 'MONEY': ([161, 278, 282, 496], [290, 290, 290, 290]), 'VARCHAR': ([161, 278, 282, 496], [291, 291, 291, 291]), 'CHARACTER': ([161, 278, 282, 496], [292, 292, 292, 292]), 'CHAR': ([161, 278, 282, 496], [293, 293, 293, 293]), 'TEXT': ([161, 278, 282, 496], [294, 294, 294, 294]), 'BOOLEAN': ([161, 278, 282, 496], [295, 295, 295, 295]), 'TIMESTAMP': ([161, 278, 282, 496], [296, 296, 296, 296]), 'TIME': ([161, 278, 282, 496], [297, 297, 297, 297]), 'INTERVAL': ([161, 278, 282, 496], [298, 298, 298, 298]), 'DATE': ([161, 278, 282, 496], [299, 299, 299, 299]), 'YEAR': ([161, 278, 282, 496], [300, 300, 300, 300]), 'MONTH': ([161, 278, 282, 496], [301, 301, 301, 301]), 'DAY': ([161, 278, 282, 496], [302, 302, 302, 302]), 'HOUR': ([161, 278, 282, 496], [303, 303, 303, 303]), 'MINUTE': ([161, 278, 282, 496], [304, 304, 304, 304]), 'SECOND': ([161, 278, 282, 496], [305, 305, 305, 305]), 'LEADING': ([217], [365]), 'TRAILING': ([217], [366]), 'BOTH': ([217], [367]), 'RENAME': ([265], [393]), 'EXISTS': ([269], [400]), 'VALUES': ([275, 574], [403, 633]), 'PRECISION': ([289], [412]), 'VARYING': ([292], [414]), 'TO': ([393, 394], [508, 509]), 'CURRENT_USER': ([509], [568]), 'SESSION_USER': ([509], [569]), 'REFERENCES': ([525, 692], [584, 700]), 'INHERITS': ([559], [623]), 'BY': ([645, 647], [678, 680])}
_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 = {'inicio': ([0], [1]), 'queries': ([0], [2]), 'query': ([0, 2], [3, 105]), 'mostrarBD': ([0, 2], [4, 4]), 'crearBD': ([0, 2], [5, 5]), 'alterBD': ([0, 2], [6, 6]), 'dropBD': ([0, 2], [7, 7]), 'operacion': ([0, 2, 30, 33, 45, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 151, 162, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 251, 253, 254, 311, 313, 314, 315, 316, 364, 379, 383, 402, 409, 436, 437, 440, 441, 448, 455, 456, 473, 475, 477, 478, 479, 480, 483, 484, 486, 488, 516, 530, 532, 533, 542, 553, 563, 588, 590, 597, 602, 603, 604, 607, 641, 642, 644, 646, 667, 678, 680, 683, 694], [8, 8, 152, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 255, 273, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 168, 382, 168, 423, 425, 168, 427, 472, 485, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 576, 589, 591, 589, 600, 610, 627, 649, 651, 654, 656, 657, 658, 659, 589, 589, 677, 168, 690, 168, 168, 697, 702]), 'insertinBD': ([0, 2], [9, 9]), 'updateinBD': ([0, 2], [10, 10]), 'deleteinBD': ([0, 2], [11, 11]), 'createTable': ([0, 2], [12, 12]), 'inheritsBD': ([0, 2], [13, 13]), 'dropTable': ([0, 2], [14, 14]), 'alterTable': ([0, 2], [15, 15]), 'variantesAt': ([0, 2, 266], [16, 16, 396]), 'contAdd': ([0, 2, 39, 397], [17, 17, 158, 158]), 'contDrop': ([0, 2, 27, 398], [18, 18, 146, 146]), 'contAlter': ([0, 2, 26, 395], [19, 19, 142, 142]), 'listaid': ([0, 2, 421], [20, 20, 529]), 'tipoAlter': ([0, 2], [21, 21]), 'selectData': ([0, 2], [22, 22]), 'funcionBasica': ([0, 2, 30, 33, 45, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 151, 162, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 251, 253, 254, 311, 313, 314, 315, 316, 364, 379, 383, 402, 409, 436, 437, 440, 441, 448, 455, 456, 473, 475, 477, 478, 479, 480, 483, 484, 486, 488, 516, 530, 532, 533, 542, 553, 563, 588, 590, 597, 602, 603, 604, 607, 641, 642, 644, 646, 667, 678, 680, 683, 694], [34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34]), 'final': ([0, 2, 30, 33, 45, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 151, 162, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 251, 253, 254, 311, 313, 314, 315, 316, 364, 379, 383, 402, 404, 409, 436, 437, 440, 441, 448, 455, 456, 473, 475, 477, 478, 479, 480, 483, 484, 486, 488, 493, 494, 509, 513, 516, 530, 532, 533, 542, 553, 561, 563, 575, 588, 590, 597, 602, 603, 604, 607, 614, 628, 629, 641, 642, 644, 646, 667, 672, 678, 680, 683, 694, 710], [35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 515, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 554, 555, 570, 515, 35, 35, 35, 35, 35, 35, 515, 35, 634, 35, 35, 35, 35, 35, 35, 35, 661, 515, 515, 35, 35, 35, 35, 35, 515, 35, 35, 35, 35, 515]), 'condicion_select': ([8, 45, 152, 154, 166, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 253, 255, 273, 306, 311, 315, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 422, 423, 425, 426, 427, 472, 485, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 576, 589, 591, 600, 610, 627, 646, 649, 651, 654, 656, 657, 658, 659, 677, 678, 679, 680, 690, 695, 696, 697, 702], [131, 170, 131, 131, 314, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 170, 131, 131, 131, 170, 170, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 314, 131, 314, 131, 131, 314, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 170, 131, 131, 131, 131, 131, 131, 131, 131, 170, 314, 170, 131, 314, 314, 131, 131]), 'select_list': ([45, 253, 311, 315, 646, 678, 680], [166, 381, 422, 426, 679, 695, 696]), 'asignacion': ([45, 253, 311, 313, 315, 646, 678, 680], [169, 169, 169, 424, 169, 169, 169, 169]), 'tipo': ([161, 278, 282, 496], [280, 280, 411, 558]), 'opcionTrim': ([217], [364]), 'parametrosCrearBD': ([261, 495], [387, 557]), 'parametroCrearBD': ([261, 387, 495, 557], [388, 492, 388, 492]), 'asignaciones': ([276, 517], [406, 577]), 'asigna': ([276, 517, 518], [407, 407, 578]), 'creaColumnas': ([392], [497]), 'Columna': ([392, 560], [498, 624]), 'constraintcheck': ([392, 558, 560, 612], [500, 619, 500, 619]), 'checkinColumn': ([392, 558, 560, 612], [501, 620, 501, 620]), 'primaryKey': ([392, 560], [502, 502]), 'foreignKey': ([392, 560], [503, 503]), 'listaParam': ([404, 513, 561, 628, 629, 672, 710], [514, 573, 625, 669, 670, 693, 711]), 'parametroAlterUser': ([509], [567]), 'search_condition': ([530, 533, 588, 590, 641, 642], [587, 592, 648, 650, 675, 676]), 'paramOpcional': ([558], [612]), 'paramopc': ([558, 612], [613, 660]), 'opcionesSelect': ([587, 592], [639, 652]), 'opcionSelect': ([587, 592, 639, 652], [643, 643, 674, 674]), 'ordenamiento': ([696], [703])}
_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' -> inicio", "S'", 1, None, None, None), ('inicio -> queries', 'inicio', 1, 'p_inicio_1', 'gramaticaAscendenteTree.py', 414), ('queries -> queries query', 'queries', 2, 'p_queries_1', 'gramaticaAscendenteTree.py', 425), ('queries -> query', 'queries', 1, 'p_queries_2', 'gramaticaAscendenteTree.py', 438), ('query -> mostrarBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 449), ('query -> crearBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 450), ('query -> alterBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 451), ('query -> dropBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 452), ('query -> operacion', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 453), ('query -> insertinBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 454), ('query -> updateinBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 455), ('query -> deleteinBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 456), ('query -> createTable', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 457), ('query -> inheritsBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 458), ('query -> dropTable', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 459), ('query -> alterTable', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 460), ('query -> variantesAt', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 461), ('query -> contAdd', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 462), ('query -> contDrop', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 463), ('query -> contAlter', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 464), ('query -> listaid', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 465), ('query -> tipoAlter', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 466), ('query -> selectData', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 467), ('crearBD -> CREATE DATABASE ID PUNTOYCOMA', 'crearBD', 4, 'p_crearBaseDatos_1', 'gramaticaAscendenteTree.py', 486), ('crearBD -> CREATE OR REPLACE DATABASE ID PUNTOYCOMA', 'crearBD', 6, 'p_crearBaseDatos_2', 'gramaticaAscendenteTree.py', 509), ('crearBD -> CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMA', 'crearBD', 7, 'p_crearBaseDatos_3', 'gramaticaAscendenteTree.py', 515), ('crearBD -> CREATE DATABASE ID parametrosCrearBD PUNTOYCOMA', 'crearBD', 5, 'p_crearBaseDatos_4', 'gramaticaAscendenteTree.py', 521), ('parametrosCrearBD -> parametrosCrearBD parametroCrearBD', 'parametrosCrearBD', 2, 'p_parametrosCrearBD_1', 'gramaticaAscendenteTree.py', 528), ('parametrosCrearBD -> parametroCrearBD', 'parametrosCrearBD', 1, 'p_parametrosCrearBD_2', 'gramaticaAscendenteTree.py', 535), ('parametroCrearBD -> OWNER IGUAL final', 'parametroCrearBD', 3, 'p_parametroCrearBD', 'gramaticaAscendenteTree.py', 541), ('parametroCrearBD -> MODE IGUAL final', 'parametroCrearBD', 3, 'p_parametroCrearBD', 'gramaticaAscendenteTree.py', 542), ('mostrarBD -> SHOW DATABASES PUNTOYCOMA', 'mostrarBD', 3, 'p_mostrarBD', 'gramaticaAscendenteTree.py', 554), ('alterBD -> ALTER DATABASE ID RENAME TO ID PUNTOYCOMA', 'alterBD', 7, 'p_alterBD_1', 'gramaticaAscendenteTree.py', 560), ('alterBD -> ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMA', 'alterBD', 7, 'p_alterBD_2', 'gramaticaAscendenteTree.py', 566), ('parametroAlterUser -> CURRENT_USER', 'parametroAlterUser', 1, 'p_parametroAlterUser', 'gramaticaAscendenteTree.py', 572), ('parametroAlterUser -> SESSION_USER', 'parametroAlterUser', 1, 'p_parametroAlterUser', 'gramaticaAscendenteTree.py', 573), ('parametroAlterUser -> final', 'parametroAlterUser', 1, 'p_parametroAlterUser', 'gramaticaAscendenteTree.py', 574), ('dropTable -> DROP TABLE ID PUNTOYCOMA', 'dropTable', 4, 'p_dropTable', 'gramaticaAscendenteTree.py', 581), ('alterTable -> ALTER TABLE ID variantesAt PUNTOYCOMA', 'alterTable', 5, 'p_alterTable', 'gramaticaAscendenteTree.py', 587), ('variantesAt -> ADD contAdd', 'variantesAt', 2, 'p_variantesAt', 'gramaticaAscendenteTree.py', 597), ('variantesAt -> ALTER contAlter', 'variantesAt', 2, 'p_variantesAt', 'gramaticaAscendenteTree.py', 598), ('variantesAt -> DROP contDrop', 'variantesAt', 2, 'p_variantesAt', 'gramaticaAscendenteTree.py', 599), ('listaContAlter -> listaContAlter COMA contAlter', 'listaContAlter', 3, 'p_listaContAlter', 'gramaticaAscendenteTree.py', 617), ('listaContAlter -> contAlter', 'listaContAlter', 1, 'p_listaContAlter_2', 'gramaticaAscendenteTree.py', 623), ('contAlter -> COLUMN ID SET NOT NULL', 'contAlter', 5, 'p_contAlter', 'gramaticaAscendenteTree.py', 630), ('contAlter -> COLUMN ID TYPE tipo', 'contAlter', 4, 'p_contAlter', 'gramaticaAscendenteTree.py', 631), ('contAdd -> COLUMN ID tipo', 'contAdd', 3, 'p_contAdd', 'gramaticaAscendenteTree.py', 645), ('contAdd -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'contAdd', 4, 'p_contAdd', 'gramaticaAscendenteTree.py', 646), ('contAdd -> FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID', 'contAdd', 7, 'p_contAdd', 'gramaticaAscendenteTree.py', 647), ('contAdd -> PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA', 'contAdd', 5, 'p_contAdd', 'gramaticaAscendenteTree.py', 648), ('contAdd -> CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA', 'contAdd', 7, 'p_contAdd', 'gramaticaAscendenteTree.py', 649), ('contAdd -> CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA', 'contAdd', 6, 'p_contAdd', 'gramaticaAscendenteTree.py', 650), ('contDrop -> COLUMN ID', 'contDrop', 2, 'p_contDrop', 'gramaticaAscendenteTree.py', 677), ('contDrop -> CONSTRAINT ID', 'contDrop', 2, 'p_contDrop', 'gramaticaAscendenteTree.py', 678), ('listaid -> listaid COMA ID', 'listaid', 3, 'p_listaID', 'gramaticaAscendenteTree.py', 692), ('listaid -> ID', 'listaid', 1, 'p_listaID_2', 'gramaticaAscendenteTree.py', 701), ('tipoAlter -> ADD', 'tipoAlter', 1, 'p_tipoAlter', 'gramaticaAscendenteTree.py', 710), ('tipoAlter -> DROP', 'tipoAlter', 1, 'p_tipoAlter', 'gramaticaAscendenteTree.py', 711), ('dropBD -> DROP DATABASE ID PUNTOYCOMA', 'dropBD', 4, 'p_dropBD_1', 'gramaticaAscendenteTree.py', 716), ('dropBD -> DROP DATABASE IF EXISTS ID PUNTOYCOMA', 'dropBD', 6, 'p_dropBD_2', 'gramaticaAscendenteTree.py', 723), ('operacion -> operacion MAS operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 729), ('operacion -> operacion MENOS operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 730), ('operacion -> operacion POR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 731), ('operacion -> operacion DIV operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 732), ('operacion -> operacion RESIDUO operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 733), ('operacion -> operacion POTENCIA operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 734), ('operacion -> operacion AND operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 735), ('operacion -> operacion OR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 736), ('operacion -> operacion SIMBOLOOR2 operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 737), ('operacion -> operacion SIMBOLOOR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 738), ('operacion -> operacion SIMBOLOAND2 operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 739), ('operacion -> operacion DESPLAZAMIENTOIZQUIERDA operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 740), ('operacion -> operacion DESPLAZAMIENTODERECHA operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 741), ('operacion -> operacion IGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 742), ('operacion -> operacion IGUALIGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 743), ('operacion -> operacion NOTEQUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 744), ('operacion -> operacion MAYORIGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 745), ('operacion -> operacion MENORIGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 746), ('operacion -> operacion MAYOR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 747), ('operacion -> operacion MENOR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 748), ('operacion -> operacion DIFERENTE operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 749), ('operacion -> PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 750), ('operacion -> MENOS ENTERO', 'operacion', 2, 'p_operacion_menos_unario', 'gramaticaAscendenteTree.py', 863), ('operacion -> MENOS DECIMAL', 'operacion', 2, 'p_operacion_menos_unario', 'gramaticaAscendenteTree.py', 864), ('operacion -> NOT operacion', 'operacion', 2, 'p_operacion_not_unario', 'gramaticaAscendenteTree.py', 872), ('operacion -> funcionBasica', 'operacion', 1, 'p_operacion_funcion', 'gramaticaAscendenteTree.py', 878), ('operacion -> final', 'operacion', 1, 'p_operacion_final', 'gramaticaAscendenteTree.py', 884), ('funcionBasica -> ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 891), ('funcionBasica -> CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 892), ('funcionBasica -> CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 893), ('funcionBasica -> CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 894), ('funcionBasica -> DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 895), ('funcionBasica -> DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 896), ('funcionBasica -> EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 897), ('funcionBasica -> FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 898), ('funcionBasica -> FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 899), ('funcionBasica -> GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 900), ('funcionBasica -> LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 901), ('funcionBasica -> LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 902), ('funcionBasica -> LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 903), ('funcionBasica -> MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 904), ('funcionBasica -> PI PARENTESISIZQUIERDA PARENTESISDERECHA', 'funcionBasica', 3, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 905), ('funcionBasica -> POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 906), ('funcionBasica -> RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 907), ('funcionBasica -> ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 908), ('funcionBasica -> SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 909), ('funcionBasica -> SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 910), ('funcionBasica -> TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 911), ('funcionBasica -> TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 912), ('funcionBasica -> WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 10, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 913), ('funcionBasica -> RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA', 'funcionBasica', 3, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 914), ('funcionBasica -> ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 917), ('funcionBasica -> ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 918), ('funcionBasica -> ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 919), ('funcionBasica -> ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 920), ('funcionBasica -> ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 921), ('funcionBasica -> ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 922), ('funcionBasica -> ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 923), ('funcionBasica -> ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 924), ('funcionBasica -> COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 927), ('funcionBasica -> COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 928), ('funcionBasica -> COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 929), ('funcionBasica -> COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 930), ('funcionBasica -> SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 931), ('funcionBasica -> SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 932), ('funcionBasica -> TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 933), ('funcionBasica -> TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 934), ('funcionBasica -> SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 935), ('funcionBasica -> COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 939), ('funcionBasica -> TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 940), ('funcionBasica -> ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 941), ('funcionBasica -> ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 942), ('funcionBasica -> ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 943), ('funcionBasica -> LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 944), ('funcionBasica -> TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA', 'funcionBasica', 7, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 945), ('funcionBasica -> GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 946), ('funcionBasica -> MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 947), ('funcionBasica -> SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 948), ('funcionBasica -> SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 949), ('funcionBasica -> SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 950), ('funcionBasica -> CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 951), ('funcionBasica -> ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 952), ('funcionBasica -> DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 953), ('funcionBasica -> AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 954), ('funcionBasica -> SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 955), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica_1', 'gramaticaAscendenteTree.py', 1129), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica_2', 'gramaticaAscendenteTree.py', 1133), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica_3', 'gramaticaAscendenteTree.py', 1137), ('opcionTrim -> LEADING', 'opcionTrim', 1, 'p_opcionTrim', 'gramaticaAscendenteTree.py', 1142), ('opcionTrim -> TRAILING', 'opcionTrim', 1, 'p_opcionTrim', 'gramaticaAscendenteTree.py', 1143), ('opcionTrim -> BOTH', 'opcionTrim', 1, 'p_opcionTrim', 'gramaticaAscendenteTree.py', 1144), ('final -> DECIMAL', 'final', 1, 'p_final', 'gramaticaAscendenteTree.py', 1151), ('final -> ENTERO', 'final', 1, 'p_final', 'gramaticaAscendenteTree.py', 1152), ('final -> ID', 'final', 1, 'p_final_id', 'gramaticaAscendenteTree.py', 1165), ('final -> ID PUNTO ID', 'final', 3, 'p_final_invocacion', 'gramaticaAscendenteTree.py', 1177), ('final -> CADENA', 'final', 1, 'p_final_cadena', 'gramaticaAscendenteTree.py', 1184), ('insertinBD -> INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA', 'insertinBD', 8, 'p_insertBD_1', 'gramaticaAscendenteTree.py', 1197), ('insertinBD -> INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA', 'insertinBD', 11, 'p_insertBD_2', 'gramaticaAscendenteTree.py', 1227), ('listaParam -> listaParam COMA final', 'listaParam', 3, 'p_listaParam', 'gramaticaAscendenteTree.py', 1232), ('listaParam -> final', 'listaParam', 1, 'p_listaParam_2', 'gramaticaAscendenteTree.py', 1246), ('updateinBD -> UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMA', 'updateinBD', 7, 'p_updateBD', 'gramaticaAscendenteTree.py', 1257), ('asignaciones -> asignaciones COMA asigna', 'asignaciones', 3, 'p_asignaciones', 'gramaticaAscendenteTree.py', 1291), ('asignaciones -> asigna', 'asignaciones', 1, 'p_asignaciones_2', 'gramaticaAscendenteTree.py', 1305), ('asigna -> ID IGUAL operacion', 'asigna', 3, 'p_asigna', 'gramaticaAscendenteTree.py', 1316), ('deleteinBD -> DELETE FROM ID PUNTOYCOMA', 'deleteinBD', 4, 'p_deleteinBD_1', 'gramaticaAscendenteTree.py', 1332), ('deleteinBD -> DELETE FROM ID WHERE operacion PUNTOYCOMA', 'deleteinBD', 6, 'p_deleteinBD_2', 'gramaticaAscendenteTree.py', 1336), ('inheritsBD -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMA', 'inheritsBD', 11, 'p_inheritsBD', 'gramaticaAscendenteTree.py', 1368), ('createTable -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMA', 'createTable', 7, 'p_createTable', 'gramaticaAscendenteTree.py', 1402), ('creaColumnas -> creaColumnas COMA Columna', 'creaColumnas', 3, 'p_creaColumna', 'gramaticaAscendenteTree.py', 1429), ('creaColumnas -> Columna', 'creaColumnas', 1, 'p_creaColumna_2', 'gramaticaAscendenteTree.py', 1442), ('Columna -> ID tipo', 'Columna', 2, 'p_columna_1', 'gramaticaAscendenteTree.py', 1454), ('Columna -> ID tipo paramOpcional', 'Columna', 3, 'p_columna_2', 'gramaticaAscendenteTree.py', 1469), ('Columna -> UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHA', 'Columna', 4, 'p_columna_3', 'gramaticaAscendenteTree.py', 1487), ('Columna -> constraintcheck', 'Columna', 1, 'p_columna_4', 'gramaticaAscendenteTree.py', 1502), ('Columna -> checkinColumn', 'Columna', 1, 'p_columna_5', 'gramaticaAscendenteTree.py', 1512), ('Columna -> primaryKey', 'Columna', 1, 'p_columna_6', 'gramaticaAscendenteTree.py', 1522), ('Columna -> foreignKey', 'Columna', 1, 'p_columna_7', 'gramaticaAscendenteTree.py', 1532), ('paramOpcional -> paramOpcional paramopc', 'paramOpcional', 2, 'p_paramOpcional', 'gramaticaAscendenteTree.py', 1545), ('paramOpcional -> paramopc', 'paramOpcional', 1, 'p_paramOpcional_1', 'gramaticaAscendenteTree.py', 1558), ('paramopc -> DEFAULT final', 'paramopc', 2, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1570), ('paramopc -> NULL', 'paramopc', 1, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1571), ('paramopc -> NOT NULL', 'paramopc', 2, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1572), ('paramopc -> UNIQUE', 'paramopc', 1, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1573), ('paramopc -> PRIMARY KEY', 'paramopc', 2, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1574), ('paramopc -> constraintcheck', 'paramopc', 1, 'p_paramopc_2', 'gramaticaAscendenteTree.py', 1651), ('paramopc -> checkinColumn', 'paramopc', 1, 'p_paramopc_3', 'gramaticaAscendenteTree.py', 1661), ('paramopc -> CONSTRAINT ID UNIQUE', 'paramopc', 3, 'p_paramopc_4', 'gramaticaAscendenteTree.py', 1674), ('checkinColumn -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'checkinColumn', 4, 'p_checkcolumna', 'gramaticaAscendenteTree.py', 1699), ('constraintcheck -> CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'constraintcheck', 6, 'p_constraintcheck', 'gramaticaAscendenteTree.py', 1715), ('primaryKey -> PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA', 'primaryKey', 5, 'p_primaryKey', 'gramaticaAscendenteTree.py', 1741), ('foreignKey -> FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA', 'foreignKey', 10, 'p_foreingkey', 'gramaticaAscendenteTree.py', 1761), ('tipo -> SMALLINT', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1796), ('tipo -> INTEGER', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1797), ('tipo -> BIGINT', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1798), ('tipo -> DECIMAL', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1799), ('tipo -> NUMERIC', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1800), ('tipo -> REAL', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1801), ('tipo -> DOUBLE PRECISION', 'tipo', 2, 'p_tipo', 'gramaticaAscendenteTree.py', 1802), ('tipo -> MONEY', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1803), ('tipo -> VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 4, 'p_tipo', 'gramaticaAscendenteTree.py', 1804), ('tipo -> CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 5, 'p_tipo', 'gramaticaAscendenteTree.py', 1805), ('tipo -> CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 4, 'p_tipo', 'gramaticaAscendenteTree.py', 1806), ('tipo -> CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 4, 'p_tipo', 'gramaticaAscendenteTree.py', 1807), ('tipo -> TEXT', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1808), ('tipo -> BOOLEAN', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1809), ('tipo -> TIMESTAMP', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1810), ('tipo -> TIME', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1811), ('tipo -> INTERVAL', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1812), ('tipo -> DATE', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1813), ('tipo -> YEAR', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1814), ('tipo -> MONTH', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1815), ('tipo -> DAY', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1816), ('tipo -> HOUR', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1817), ('tipo -> MINUTE', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1818), ('tipo -> SECOND', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1819), ('selectData -> SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA', 'selectData', 8, 'p_select', 'gramaticaAscendenteTree.py', 2129), ('selectData -> SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA', 'selectData', 8, 'p_select', 'gramaticaAscendenteTree.py', 2130), ('selectData -> SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA', 'selectData', 7, 'p_select_1', 'gramaticaAscendenteTree.py', 2139), ('selectData -> SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA', 'selectData', 7, 'p_select_1', 'gramaticaAscendenteTree.py', 2140), ('selectData -> SELECT select_list FROM select_list PUNTOYCOMA', 'selectData', 5, 'p_select_2', 'gramaticaAscendenteTree.py', 2148), ('selectData -> SELECT POR FROM select_list PUNTOYCOMA', 'selectData', 5, 'p_select_2', 'gramaticaAscendenteTree.py', 2149), ('selectData -> SELECT select_list PUNTOYCOMA', 'selectData', 3, 'p_select_3', 'gramaticaAscendenteTree.py', 2169), ('opcionesSelect -> opcionesSelect opcionSelect', 'opcionesSelect', 2, 'p_opcionesSelect_1', 'gramaticaAscendenteTree.py', 2175), ('opcionesSelect -> opcionSelect', 'opcionesSelect', 1, 'p_opcionesSelect_2', 'gramaticaAscendenteTree.py', 2180), ('opcionSelect -> LIMIT operacion', 'opcionSelect', 2, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2186), ('opcionSelect -> GROUP BY select_list', 'opcionSelect', 3, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2187), ('opcionSelect -> HAVING select_list', 'opcionSelect', 2, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2188), ('opcionSelect -> ORDER BY select_list', 'opcionSelect', 3, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2189), ('opcionSelect -> LIMIT operacion OFFSET operacion', 'opcionSelect', 4, 'p_opcionesSelect_4', 'gramaticaAscendenteTree.py', 2201), ('opcionSelect -> ORDER BY select_list ordenamiento', 'opcionSelect', 4, 'p_opcionesSelect_4', 'gramaticaAscendenteTree.py', 2202), ('ordenamiento -> ASC', 'ordenamiento', 1, 'p_ordenamiento', 'gramaticaAscendenteTree.py', 2212), ('ordenamiento -> DESC', 'ordenamiento', 1, 'p_ordenamiento', 'gramaticaAscendenteTree.py', 2213), ('search_condition -> search_condition AND search_condition', 'search_condition', 3, 'p_search_condition_1', 'gramaticaAscendenteTree.py', 2217), ('search_condition -> search_condition OR search_condition', 'search_condition', 3, 'p_search_condition_1', 'gramaticaAscendenteTree.py', 2218), ('search_condition -> NOT search_condition', 'search_condition', 2, 'p_search_condition_2', 'gramaticaAscendenteTree.py', 2223), ('search_condition -> operacion', 'search_condition', 1, 'p_search_condition_3', 'gramaticaAscendenteTree.py', 2227), ('search_condition -> PARENTESISIZQUIERDA search_condition PARENTESISDERECHA', 'search_condition', 3, 'p_search_condition_4', 'gramaticaAscendenteTree.py', 2231), ('select_list -> select_list COMA operacion', 'select_list', 3, 'p_select_list_1', 'gramaticaAscendenteTree.py', 2236), ('select_list -> select_list COMA asignacion', 'select_list', 3, 'p_select_list_6', 'gramaticaAscendenteTree.py', 2246), ('select_list -> asignacion', 'select_list', 1, 'p_select_list_7', 'gramaticaAscendenteTree.py', 2253), ('select_list -> operacion', 'select_list', 1, 'p_select_list_2', 'gramaticaAscendenteTree.py', 2262), ('select_list -> select_list condicion_select operacion COMA operacion', 'select_list', 5, 'p_select_list_3', 'gramaticaAscendenteTree.py', 2269), ('select_list -> condicion_select operacion', 'select_list', 2, 'p_select_list_4', 'gramaticaAscendenteTree.py', 2273), ('asignacion -> operacion AS operacion', 'asignacion', 3, 'p_asignacion_', 'gramaticaAscendenteTree.py', 2278), ('condicion_select -> DISTINCT FROM', 'condicion_select', 2, 'p_condicion_select', 'gramaticaAscendenteTree.py', 2286), ('condicion_select -> IS DISTINCT FROM', 'condicion_select', 3, 'p_condicion_select_2', 'gramaticaAscendenteTree.py', 2291), ('condicion_select -> IS NOT DISTINCT FROM', 'condicion_select', 4, 'p_condicion_select_3', 'gramaticaAscendenteTree.py', 2297), ('condicion_select -> DISTINCT', 'condicion_select', 1, 'p_condicion_select_4', 'gramaticaAscendenteTree.py', 2301), ('condicion_select -> IS DISTINCT', 'condicion_select', 2, 'p_condicion_select_5', 'gramaticaAscendenteTree.py', 2305), ('condicion_select -> IS NOT DISTINCT', 'condicion_select', 3, 'p_condicion_select_6', 'gramaticaAscendenteTree.py', 2310), ('funcionBasica -> operacion BETWEEN operacion AND operacion', 'funcionBasica', 5, 'p_funcion_basica_4', 'gramaticaAscendenteTree.py', 2315), ('funcionBasica -> operacion LIKE CADENA', 'funcionBasica', 3, 'p_funcion_basica_5', 'gramaticaAscendenteTree.py', 2319), ('funcionBasica -> operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA', 'funcionBasica', 5, 'p_funcion_basica_6', 'gramaticaAscendenteTree.py', 2323), ('funcionBasica -> operacion NOT BETWEEN operacion AND operacion', 'funcionBasica', 6, 'p_funcion_basica_7', 'gramaticaAscendenteTree.py', 2327), ('funcionBasica -> operacion BETWEEN SYMMETRIC operacion AND operacion', 'funcionBasica', 6, 'p_funcion_basica_8', 'gramaticaAscendenteTree.py', 2331), ('funcionBasica -> operacion NOT BETWEEN SYMMETRIC operacion AND operacion', 'funcionBasica', 7, 'p_funcion_basica_9', 'gramaticaAscendenteTree.py', 2335), ('funcionBasica -> operacion condicion_select operacion', 'funcionBasica', 3, 'p_funcion_basica_10', 'gramaticaAscendenteTree.py', 2340)]
|
def read(filename):
with open(filename, "r") as file:
lines = file.readlines()
result = {}
mode = "main"
result[mode] = {}
for i in lines:
i = i.replace("\n", "")
if i.startswith(" "):
i = i[4:]
if i.startswith(" "):
i = i[2:]
if "//" in i:
i = i.split("//")[0]
if ":" in i:
mode = i.split(":")[0]
result[mode] = {}
elif "=" in i:
key, value = i.split("=")
if value.replace(".", "", 1).isdigit():
if "." in value:
value = float(value)
else:
value = int(value)
elif value == "true":
value = True
elif value == "false":
value = False
result[mode][key] = value
return result
def write(filename, data):
result = ""
spaces = 0
if "main" not in data:
data = {"main" : data}
for i in data:
if spaces != 0:
spaces -= 1
result += "\n"
result += i + ":" + "\n"
for j in data[i]:
value = data[i][j]
if not isinstance(value, bool):
if isinstance(value, int) or isinstance(value, float):
value = str(value)
elif value == True:
value = "true"
elif value == False:
value = "false"
result += " " + j + "=" + value + "\n"
spaces += 1
with open(filename, "w") as file:
file.write(result)
def append(filename, data):
if "main" not in data:
data = {"main" : data}
temp_data = data
data = read(filename)
data.update(temp_data)
write(filename, data)
def change(filename, key, value):
append(filename, {key : value})
|
def read(filename):
with open(filename, 'r') as file:
lines = file.readlines()
result = {}
mode = 'main'
result[mode] = {}
for i in lines:
i = i.replace('\n', '')
if i.startswith(' '):
i = i[4:]
if i.startswith(' '):
i = i[2:]
if '//' in i:
i = i.split('//')[0]
if ':' in i:
mode = i.split(':')[0]
result[mode] = {}
elif '=' in i:
(key, value) = i.split('=')
if value.replace('.', '', 1).isdigit():
if '.' in value:
value = float(value)
else:
value = int(value)
elif value == 'true':
value = True
elif value == 'false':
value = False
result[mode][key] = value
return result
def write(filename, data):
result = ''
spaces = 0
if 'main' not in data:
data = {'main': data}
for i in data:
if spaces != 0:
spaces -= 1
result += '\n'
result += i + ':' + '\n'
for j in data[i]:
value = data[i][j]
if not isinstance(value, bool):
if isinstance(value, int) or isinstance(value, float):
value = str(value)
elif value == True:
value = 'true'
elif value == False:
value = 'false'
result += ' ' + j + '=' + value + '\n'
spaces += 1
with open(filename, 'w') as file:
file.write(result)
def append(filename, data):
if 'main' not in data:
data = {'main': data}
temp_data = data
data = read(filename)
data.update(temp_data)
write(filename, data)
def change(filename, key, value):
append(filename, {key: value})
|
description = ''
pages = ['header']
def setup(data):
pass
def test(data):
navigate('http://store.demoqa.com/')
click(header.my_account)
verify_text('You must be logged in to use this page. Please use the form below to login to your account.')
def teardown(data):
pass
|
description = ''
pages = ['header']
def setup(data):
pass
def test(data):
navigate('http://store.demoqa.com/')
click(header.my_account)
verify_text('You must be logged in to use this page. Please use the form below to login to your account.')
def teardown(data):
pass
|
mystr = "banana"
for x in mystr:
print(x)
|
mystr = 'banana'
for x in mystr:
print(x)
|
FETCH_DATA_SOURCES_SQL = "select description, downloaded, url, data_source_type, group_name " \
"from data_source " \
"order by downloaded, group_name, description;"
class DataSourcesQueryNames(object):
DESCRIPTION = 'description'
DOWNLOADED = 'downloaded'
URL = 'url'
DATA_SOURCE_TYPE = 'data_source_type'
GROUP_NAME = 'group_name'
class DataSourcesQuery(object):
def make_query_and_params(self):
return FETCH_DATA_SOURCES_SQL, []
|
fetch_data_sources_sql = 'select description, downloaded, url, data_source_type, group_name from data_source order by downloaded, group_name, description;'
class Datasourcesquerynames(object):
description = 'description'
downloaded = 'downloaded'
url = 'url'
data_source_type = 'data_source_type'
group_name = 'group_name'
class Datasourcesquery(object):
def make_query_and_params(self):
return (FETCH_DATA_SOURCES_SQL, [])
|
geral = {}
aproveitamento = list()
geral['nome'] = str(input('Nome jogador: '))
partidas = int(input(f'Quantas partidas {geral["nome"]} jogou ?'))
count = 0
total = 0
while count < partidas:
gols_games = (int(input(f'Quantos gols na partida {count}?')))
aproveitamento.append(gols_games)
total = total + gols_games
count +=1
geral['gols'] = aproveitamento[:]
geral['total'] = total
print('-='*30)
print(geral)
print('-='*30)
for k,v in geral.items():
print(f'o campo {k} tem o valor {v}.')
print('-='*30)
print(f'O jogador {geral["nome"]} jogou {count} partidas')
i = 0
count2 = 0
for c in aproveitamento:
print(f' {"=>":>5} Na partida {count2+1}, fez {geral["gols"][i]}')
i +=1
count2 +=1
|
geral = {}
aproveitamento = list()
geral['nome'] = str(input('Nome jogador: '))
partidas = int(input(f"Quantas partidas {geral['nome']} jogou ?"))
count = 0
total = 0
while count < partidas:
gols_games = int(input(f'Quantos gols na partida {count}?'))
aproveitamento.append(gols_games)
total = total + gols_games
count += 1
geral['gols'] = aproveitamento[:]
geral['total'] = total
print('-=' * 30)
print(geral)
print('-=' * 30)
for (k, v) in geral.items():
print(f'o campo {k} tem o valor {v}.')
print('-=' * 30)
print(f"O jogador {geral['nome']} jogou {count} partidas")
i = 0
count2 = 0
for c in aproveitamento:
print(f" {'=>':>5} Na partida {count2 + 1}, fez {geral['gols'][i]}")
i += 1
count2 += 1
|
INTEGER = "int"
FLOAT = "float"
BOOLEAN = "bool"
STRING = "str"
EMAIL = "email"
ALPHA = "alpha"
ALPHANUMERIC = "alphanumeric"
STD = "std"
LIST = "list"
DICT = "dict"
FILE = "file"
ALLOWED_TYPES = {INTEGER: {"type": "integer"}, FLOAT: {"type": "number"}, BOOLEAN: {"type": "boolean"}, STRING: {"type": "string"},
EMAIL: {"type": "string", "format": "emaili", "pattern": "[^@]+@[^@]+\.[^@]+"}, ALPHA: {"type": "string", "pattern": r"^[a-zA-Z]+$"},
ALPHANUMERIC: {"type": "string", "pattern": r"^[a-zA-Z0-9]+$"}, STD: {"type": "string", "pattern": r"^[a-zA-Z0-9_]+$"},
LIST: {"type": "array"}, DICT: {"type": "object"}}
|
integer = 'int'
float = 'float'
boolean = 'bool'
string = 'str'
email = 'email'
alpha = 'alpha'
alphanumeric = 'alphanumeric'
std = 'std'
list = 'list'
dict = 'dict'
file = 'file'
allowed_types = {INTEGER: {'type': 'integer'}, FLOAT: {'type': 'number'}, BOOLEAN: {'type': 'boolean'}, STRING: {'type': 'string'}, EMAIL: {'type': 'string', 'format': 'emaili', 'pattern': '[^@]+@[^@]+\\.[^@]+'}, ALPHA: {'type': 'string', 'pattern': '^[a-zA-Z]+$'}, ALPHANUMERIC: {'type': 'string', 'pattern': '^[a-zA-Z0-9]+$'}, STD: {'type': 'string', 'pattern': '^[a-zA-Z0-9_]+$'}, LIST: {'type': 'array'}, DICT: {'type': 'object'}}
|
APP_ID_TO_ARN_IDS = {
'co.justyo.yoapp': [
'ios',
'ios-beta',
'ios-development',
'android',
'winphone'
],
'co.justyo.yopolls': [
'com.flashpolls.beta.dev',
'com.flashpolls.beta.prod',
'com.flashpolls.flashpolls.dev',
'com.flashpolls.flashpolls.prod',
'com.flashpolls.beta',
'com.thenet.flashpolls.dev',
'com.thenet.flashpolls.prod',
'com.flashpolls.android',
'co.justyo.polls.android',
'com.yo.polls.dev',
'com.yo.polls.prod',
'co.justyo.polls.enterprise.dev',
'co.justyo.polls.enterprise.prod'
],
'co.justyo.yostatus': [
'com.orarbel.yostatus.ios.dev',
'com.orarbel.yostatus.ios.prod',
'co.justyo.status.ios.dev',
'co.justyo.status.ios.prod',
'co.justyo.status.android.prod',
'co.justyo.yostatus.android'
],
'co.justyo.noapp': [
'co.justyo.noapp.ios.dev',
'co.justyo.noapp.ios.prod',
'co.orarbel.noapp.ios.prod'
]
}
|
app_id_to_arn_ids = {'co.justyo.yoapp': ['ios', 'ios-beta', 'ios-development', 'android', 'winphone'], 'co.justyo.yopolls': ['com.flashpolls.beta.dev', 'com.flashpolls.beta.prod', 'com.flashpolls.flashpolls.dev', 'com.flashpolls.flashpolls.prod', 'com.flashpolls.beta', 'com.thenet.flashpolls.dev', 'com.thenet.flashpolls.prod', 'com.flashpolls.android', 'co.justyo.polls.android', 'com.yo.polls.dev', 'com.yo.polls.prod', 'co.justyo.polls.enterprise.dev', 'co.justyo.polls.enterprise.prod'], 'co.justyo.yostatus': ['com.orarbel.yostatus.ios.dev', 'com.orarbel.yostatus.ios.prod', 'co.justyo.status.ios.dev', 'co.justyo.status.ios.prod', 'co.justyo.status.android.prod', 'co.justyo.yostatus.android'], 'co.justyo.noapp': ['co.justyo.noapp.ios.dev', 'co.justyo.noapp.ios.prod', 'co.orarbel.noapp.ios.prod']}
|
#!/usr/bin/python
zoo = ('python', 'elephant', 'penguin') # remember the parentheses are optional
print('Number of animals in the zoo is', len(zoo))
new_zoo = ('monkey', 'camel', zoo)
print('Number of cages in the zoo is', len(new_zoo))
print('All animals in new zoo are', new_zoo)
print('Animals brought from old zoo is', new_zoo[2])
print('last animal brought from old zoo is', new_zoo[2][2])
print('Number of animals in the new zoo is', len(new_zoo) - 1 + len(new_zoo[2]))
|
zoo = ('python', 'elephant', 'penguin')
print('Number of animals in the zoo is', len(zoo))
new_zoo = ('monkey', 'camel', zoo)
print('Number of cages in the zoo is', len(new_zoo))
print('All animals in new zoo are', new_zoo)
print('Animals brought from old zoo is', new_zoo[2])
print('last animal brought from old zoo is', new_zoo[2][2])
print('Number of animals in the new zoo is', len(new_zoo) - 1 + len(new_zoo[2]))
|
def interest_template(isPlain, user_id, sim_percent):
percent = int(sim_percent * 100)
if isPlain:
text = "Connect with {{user-%d}} as you have %d%% interests in common" \
% (user_id, percent)
else:
text = "<orange>Connect with {{user-%d}}</orange> as you have %d%% interests in common" \
% (user_id, percent)
return text
def mutual_template(isPlain, user_id, num_of_mutual_friends):
if isPlain:
text = "Connect with {{user-%d}} as you have %d mutual friends in common" % (user_id, num_of_mutual_friends)
else:
text = "<orange>Connect with {{user-%d}}</orange> as you have %d mutual friends in common" % (user_id, num_of_mutual_friends)
return text
|
def interest_template(isPlain, user_id, sim_percent):
percent = int(sim_percent * 100)
if isPlain:
text = 'Connect with {{user-%d}} as you have %d%% interests in common' % (user_id, percent)
else:
text = '<orange>Connect with {{user-%d}}</orange> as you have %d%% interests in common' % (user_id, percent)
return text
def mutual_template(isPlain, user_id, num_of_mutual_friends):
if isPlain:
text = 'Connect with {{user-%d}} as you have %d mutual friends in common' % (user_id, num_of_mutual_friends)
else:
text = '<orange>Connect with {{user-%d}}</orange> as you have %d mutual friends in common' % (user_id, num_of_mutual_friends)
return text
|
# Implementation of Binary Search #
print('hello world')
print(' ')
# Define the Binary search variables #
def binary_Search(array, start, end, x):
if end >= start: # Alot the mid value #
mid = (start + end) // 2
if array[mid] == x: # Array pointer equal to mid value #
return mid
elif array[mid] > x: # Array value greater than x #
return binary_Search(array, start, mid - 1, x)
else: # else less than x #
return binary_Search(array, mid + 1, end, x)
else:
return -1
# define array #
arr = [2, 10, 20, 40, 50, 60]
x = 10
# main function #
result = binary_Search(arr, 0, len(arr)-1, x)
# result statment #
if result != -1:
print("Element is present at %d" % result)
else:
print("Element is not present.")
|
print('hello world')
print(' ')
def binary__search(array, start, end, x):
if end >= start:
mid = (start + end) // 2
if array[mid] == x:
return mid
elif array[mid] > x:
return binary__search(array, start, mid - 1, x)
else:
return binary__search(array, mid + 1, end, x)
else:
return -1
arr = [2, 10, 20, 40, 50, 60]
x = 10
result = binary__search(arr, 0, len(arr) - 1, x)
if result != -1:
print('Element is present at %d' % result)
else:
print('Element is not present.')
|
with open('1X-PBS_CurrentVsTime_10000sWait_Still.csv', 'r') as f:
f.readline()
f.readline()
lastVoltage = 0.0
line = f.readline()
o = None
while line:
splits = line.split(',')
voltage = float(splits[1])
if voltage != lastVoltage:
if o is not None:
o.close()
o = open('1X-PBS_CurrentVsTime_10000s_' + splits[1] + 'V.csv', 'w')
o.write(line)
line = f.readline()
lastVoltage = voltage
o.close()
|
with open('1X-PBS_CurrentVsTime_10000sWait_Still.csv', 'r') as f:
f.readline()
f.readline()
last_voltage = 0.0
line = f.readline()
o = None
while line:
splits = line.split(',')
voltage = float(splits[1])
if voltage != lastVoltage:
if o is not None:
o.close()
o = open('1X-PBS_CurrentVsTime_10000s_' + splits[1] + 'V.csv', 'w')
o.write(line)
line = f.readline()
last_voltage = voltage
o.close()
|
length = int(input())
width = int(input())
height = int(input())
number = float(input())
volume = length * width * height
total_liters = volume * 0.001
percent = number * 0.01
result = total_liters * (1 - percent)
print('{0:.3f}'.format(result))
|
length = int(input())
width = int(input())
height = int(input())
number = float(input())
volume = length * width * height
total_liters = volume * 0.001
percent = number * 0.01
result = total_liters * (1 - percent)
print('{0:.3f}'.format(result))
|
class HandshakeRequestMessage(object):
def __init__(self, protocol, version):
self.protocol = protocol
self.version = version
|
class Handshakerequestmessage(object):
def __init__(self, protocol, version):
self.protocol = protocol
self.version = version
|
a, b, c = input().split(' ')
a = int(a)
b = int(b)
c = int(c)
MaiorAB = (a + b + abs(a - b)) / 2
MaiorABC = (MaiorAB + c + abs(MaiorAB - c)) / 2
print(f'{MaiorABC:.0f} eh o maior')
|
(a, b, c) = input().split(' ')
a = int(a)
b = int(b)
c = int(c)
maior_ab = (a + b + abs(a - b)) / 2
maior_abc = (MaiorAB + c + abs(MaiorAB - c)) / 2
print(f'{MaiorABC:.0f} eh o maior')
|
def while_loop():
cycle = 1
print('While loop: ')
while cycle < 6:
print('Inside a loop -> cycle : ', cycle)
cycle = cycle + 1
print('Done - cycle =', cycle)
def multiplication_table():
print(' -------------------- ')
print('Multiplication table: ')
number = 1; count = 1
while count <= 10:
result = count * number
print('{0} * {1} = {2}'.format(number,count,result))
count = count + 1
def countdown():
print(' -------------------- ')
print('Countdown :')
count = 10
while count >= 0:
print(count)
count = count - 1
print ('Booooooooooom')
def add_natural():
print(' -------------------- ')
# sum = 1+2+3+...+n
sum = 0
n = 10
i = 0
while n >= 0:
sum = sum + i
i = i + 1
n = n - 1
print (' sum = 1 + 2 + 3 + ... + n ')
print (' n = 10 => 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 =', sum)
def loop_with_else():
print(' -------------------- ')
print('While loop with else')
count = 0
while count < 5:
print ('Inside while loop. condition -> count < 5.')
print ('count = ', count)
count = count + 1
else:
print ('Inside else.')
print('count = ', count)
if __name__ == '__main__':
while_loop()
multiplication_table()
countdown()
add_natural()
loop_with_else()
|
def while_loop():
cycle = 1
print('While loop: ')
while cycle < 6:
print('Inside a loop -> cycle : ', cycle)
cycle = cycle + 1
print('Done - cycle =', cycle)
def multiplication_table():
print(' -------------------- ')
print('Multiplication table: ')
number = 1
count = 1
while count <= 10:
result = count * number
print('{0} * {1} = {2}'.format(number, count, result))
count = count + 1
def countdown():
print(' -------------------- ')
print('Countdown :')
count = 10
while count >= 0:
print(count)
count = count - 1
print('Booooooooooom')
def add_natural():
print(' -------------------- ')
sum = 0
n = 10
i = 0
while n >= 0:
sum = sum + i
i = i + 1
n = n - 1
print(' sum = 1 + 2 + 3 + ... + n ')
print(' n = 10 => 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 =', sum)
def loop_with_else():
print(' -------------------- ')
print('While loop with else')
count = 0
while count < 5:
print('Inside while loop. condition -> count < 5.')
print('count = ', count)
count = count + 1
else:
print('Inside else.')
print('count = ', count)
if __name__ == '__main__':
while_loop()
multiplication_table()
countdown()
add_natural()
loop_with_else()
|
class Solution:
def lengthOfLongestSubstring(self, s: str) -> int:
# simplest case
if len(s) == 0: return 0
longestSubstr = ""
tempLongest = ""
for i in range(0, len(s)):
currentChar = s[i]
tempLongest = self.getFirstNonrepeatingSubstr(s[i:])
if len(tempLongest) > len(longestSubstr):
longestSubstr = tempLongest
return len(longestSubstr)
def getFirstNonrepeatingSubstr(self, s: str) -> str:
if len(s) == 0:
return s
if len(s) == 1:
return s
nonrepeating = ""
for i in range(0, len(s)):
current_char = s[i]
if current_char in nonrepeating:
return nonrepeating
else:
nonrepeating = nonrepeating + current_char
return nonrepeating
|
class Solution:
def length_of_longest_substring(self, s: str) -> int:
if len(s) == 0:
return 0
longest_substr = ''
temp_longest = ''
for i in range(0, len(s)):
current_char = s[i]
temp_longest = self.getFirstNonrepeatingSubstr(s[i:])
if len(tempLongest) > len(longestSubstr):
longest_substr = tempLongest
return len(longestSubstr)
def get_first_nonrepeating_substr(self, s: str) -> str:
if len(s) == 0:
return s
if len(s) == 1:
return s
nonrepeating = ''
for i in range(0, len(s)):
current_char = s[i]
if current_char in nonrepeating:
return nonrepeating
else:
nonrepeating = nonrepeating + current_char
return nonrepeating
|
#python3 code
def solution(x, y):
# Your code here
res = ((x+y-1)*(x+y-2))/2 + x
return str(res)
|
def solution(x, y):
res = (x + y - 1) * (x + y - 2) / 2 + x
return str(res)
|
class GameState(object):
def __init__(self, boxes, worker, parent):
self.boxes = boxes
self.worker = worker
self.parent = parent
def __eq__(self, other):
return self.boxes == other.boxes and self.worker == other.worker
def __hash__(self):
return hash( (self.worker, frozenset(self.boxes)))
def get_history(self):
history = []
current = self
while current is not None:
history.append(current.worker)
current = current.parent
history.reverse()
return history
|
class Gamestate(object):
def __init__(self, boxes, worker, parent):
self.boxes = boxes
self.worker = worker
self.parent = parent
def __eq__(self, other):
return self.boxes == other.boxes and self.worker == other.worker
def __hash__(self):
return hash((self.worker, frozenset(self.boxes)))
def get_history(self):
history = []
current = self
while current is not None:
history.append(current.worker)
current = current.parent
history.reverse()
return history
|
def parse_adjustment(data):
return parse_adjustment_data(data['$objects'], data['$top']['root'].data)
def parse_adjustment_data(data, root_index):
out = {}
for idx, key in enumerate(data[root_index]['NS.keys']):
objkey = data[key.data]
keyval = data[root_index]['NS.objects'][idx].data
objval = data[keyval]
if type(objval) == dict:
keycls = objval['$class']
if data[keycls]['$classname'] == "NSMutableDictionary":
objval = parse_adjustment_data(data, keyval)
out[objkey] = objval
return out
|
def parse_adjustment(data):
return parse_adjustment_data(data['$objects'], data['$top']['root'].data)
def parse_adjustment_data(data, root_index):
out = {}
for (idx, key) in enumerate(data[root_index]['NS.keys']):
objkey = data[key.data]
keyval = data[root_index]['NS.objects'][idx].data
objval = data[keyval]
if type(objval) == dict:
keycls = objval['$class']
if data[keycls]['$classname'] == 'NSMutableDictionary':
objval = parse_adjustment_data(data, keyval)
out[objkey] = objval
return out
|
def binaryTreePaths(root: Optional[TreeNode]) -> List[str]:
paths = []
if not root:
return paths
if (not root.right) and (not root.left):
# This is a leaf
paths.append(str(root.val))
if root.right:
# append result of subtree on right
paths.extend([f"{root.val}->{subpath}" for subpath in self.binaryTreePaths(root.right)])
if root.left:
# append result of subtree on left
paths.extend([f"{root.val}->{subpath}" for subpath in self.binaryTreePaths(root.left)])
return paths
|
def binary_tree_paths(root: Optional[TreeNode]) -> List[str]:
paths = []
if not root:
return paths
if not root.right and (not root.left):
paths.append(str(root.val))
if root.right:
paths.extend([f'{root.val}->{subpath}' for subpath in self.binaryTreePaths(root.right)])
if root.left:
paths.extend([f'{root.val}->{subpath}' for subpath in self.binaryTreePaths(root.left)])
return paths
|
class InnerClass:
def __init__(self, a, b, c):
self.a = a
self.b = b
self.c = c
def generate_stuff(self):
return self.a+10*self.b+100*self.c
|
class Innerclass:
def __init__(self, a, b, c):
self.a = a
self.b = b
self.c = c
def generate_stuff(self):
return self.a + 10 * self.b + 100 * self.c
|
def for_pentagon():
for row in range(10):
for col in range(9):
if (row==9) or (row>4 and (col==0 or col==8)) or (row+col==4 or col-row==4):
print("*",end=" ")
else:
print(end=" ")
print()
def while_pentagon():
row=0
while row<10:
col=0
while col<9:
if (row==9) or (row>4 and (col==0 or col==8)) or (row+col==4 or col-row==4):
print("*",end=" ")
else:
print(end=" ")
col+=1
row+=1
print()
|
def for_pentagon():
for row in range(10):
for col in range(9):
if row == 9 or (row > 4 and (col == 0 or col == 8)) or (row + col == 4 or col - row == 4):
print('*', end=' ')
else:
print(end=' ')
print()
def while_pentagon():
row = 0
while row < 10:
col = 0
while col < 9:
if row == 9 or (row > 4 and (col == 0 or col == 8)) or (row + col == 4 or col - row == 4):
print('*', end=' ')
else:
print(end=' ')
col += 1
row += 1
print()
|
# Definition for a binary tree node.
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
def __repr__(self):
return "{}".format(self.val)
class Solution(object):
# @param root, a tree node
# @return a boolean
# Time: N
# Space: N
def isValidBST(self, root):
output = []
self.inOrderTraversal(root, output)
for i in range(1, len(output)):
if output[i - 1].val >= output[i].val:
return False
return True
def inOrderTraversal(self, root, output):
if root is None:
return
self.inOrderTraversal(root.left, output)
output.append(root)
self.inOrderTraversal(root.right, output)
if __name__ == "__main__":
root = TreeNode(4)
root.left = TreeNode(2)
root.right = TreeNode(5)
root.left.left = TreeNode(1)
root.left.right = TreeNode(3)
print(Solution().isValidBST(root))
|
class Treenode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
def __repr__(self):
return '{}'.format(self.val)
class Solution(object):
def is_valid_bst(self, root):
output = []
self.inOrderTraversal(root, output)
for i in range(1, len(output)):
if output[i - 1].val >= output[i].val:
return False
return True
def in_order_traversal(self, root, output):
if root is None:
return
self.inOrderTraversal(root.left, output)
output.append(root)
self.inOrderTraversal(root.right, output)
if __name__ == '__main__':
root = tree_node(4)
root.left = tree_node(2)
root.right = tree_node(5)
root.left.left = tree_node(1)
root.left.right = tree_node(3)
print(solution().isValidBST(root))
|
#https://www.hackerearth.com/practice/basic-programming/input-output/basics-of-input-output/practice-problems/algorithm/two-strings-4/
entry = int(input())
for i in range(entry):
string1, string2 = input().split()
for c in string1:
if c in string2:
string1 = string1.replace(c, '', 1)
string2 = string2.replace(c, '', 1)
if len(string1) + len(string2) > 1:
print('NO')
else:
print('YES')
|
entry = int(input())
for i in range(entry):
(string1, string2) = input().split()
for c in string1:
if c in string2:
string1 = string1.replace(c, '', 1)
string2 = string2.replace(c, '', 1)
if len(string1) + len(string2) > 1:
print('NO')
else:
print('YES')
|
#a1q2c.py
#HUGHXIE
#input for color and time from light
color = input("What color is the light? (G/Y/R) :")
speed = float(input("Enter speed of car in m/s: "))
distance = float(input("Enter distance from light in meters: "))
time = (distance / speed)
#checks if color is red and time is greater than 2 or color is yellow and time is less than or equal to 5
if (color == "R" and time <= 2) or (color == "Y" and time <= 5) or (color == "G"):
#output
print("Go")
else:
#output
print("Stop")
|
color = input('What color is the light? (G/Y/R) :')
speed = float(input('Enter speed of car in m/s: '))
distance = float(input('Enter distance from light in meters: '))
time = distance / speed
if color == 'R' and time <= 2 or (color == 'Y' and time <= 5) or color == 'G':
print('Go')
else:
print('Stop')
|
def without_end(str):
if len(str) == 2:
return ''
else:
str = str[1:]
l = len(str) -1
str = str[:l]
return str
|
def without_end(str):
if len(str) == 2:
return ''
else:
str = str[1:]
l = len(str) - 1
str = str[:l]
return str
|
inFile = open("/etc/php5/fpm/pool.d/www.conf", "r", encoding = "utf-8")
string = inFile.read()
string = string.replace("pm.max_children = 5", "pm.max_children = 100")
inFile.close()
out = open("/etc/php5/fpm/pool.d/www.conf", "w", encoding = "utf-8")
out.write(string)
out.close()
|
in_file = open('/etc/php5/fpm/pool.d/www.conf', 'r', encoding='utf-8')
string = inFile.read()
string = string.replace('pm.max_children = 5', 'pm.max_children = 100')
inFile.close()
out = open('/etc/php5/fpm/pool.d/www.conf', 'w', encoding='utf-8')
out.write(string)
out.close()
|
class Calculator():
def __init__(self, number_1, number_2):
self.number_1 = number_1
self.number_2 = number_2
def add(self):
return self.number_1 + self.number_2
def subtract(self):
return self.number_1 - self.number_2
def multiply(self):
return self.number_1 * self.number_2
def divide(self):
return self.number_1 / self.number_2
|
class Calculator:
def __init__(self, number_1, number_2):
self.number_1 = number_1
self.number_2 = number_2
def add(self):
return self.number_1 + self.number_2
def subtract(self):
return self.number_1 - self.number_2
def multiply(self):
return self.number_1 * self.number_2
def divide(self):
return self.number_1 / self.number_2
|
happy_nums = set()
happy_nums.add(1)
class Solution:
def sqrSum(self, n: int) -> int:
res = 0
for c in str(n):
res += int(c)**2
return res
def isHappy(self, n: int) -> bool:
global happy_nums
temp = set()
while True:
sqr = self.sqrSum(n)
if sqr in happy_nums:
happy_nums = happy_nums.union(temp)
return True
elif sqr in temp:
return False
else:
temp.add(n)
n = sqr
|
happy_nums = set()
happy_nums.add(1)
class Solution:
def sqr_sum(self, n: int) -> int:
res = 0
for c in str(n):
res += int(c) ** 2
return res
def is_happy(self, n: int) -> bool:
global happy_nums
temp = set()
while True:
sqr = self.sqrSum(n)
if sqr in happy_nums:
happy_nums = happy_nums.union(temp)
return True
elif sqr in temp:
return False
else:
temp.add(n)
n = sqr
|
def swap(lst):
if len(lst) < 2:
return lst
first = lst[0]
last = lst[-1]
return [last] + lst[1:-1] + [first]
print(swap([12, 35, 9, 56, 24]))
print(swap([1, 2, 3]))
|
def swap(lst):
if len(lst) < 2:
return lst
first = lst[0]
last = lst[-1]
return [last] + lst[1:-1] + [first]
print(swap([12, 35, 9, 56, 24]))
print(swap([1, 2, 3]))
|
a, b, c = input().split(" ")
a = int(a)
b = int(b)
c = int(c)
if (c < a + b) and (b < c + a) and (a < b + c) and (0 < a,b,c < 10**5):
if((a != b and b == c) or ( a == c and a != b) or ( a == b and c != b)):
print("Valido-Isoceles")
if ((a**2 == b**2 + c**2) or (b**2 == a**2 + c**2) or (c**2 == b**2 + a**2)):
print("Retangulo: S")
elif ((a**2 != b**2 + c**2) or (b**2 != a**2 + c**2) or (c**2 != b**2 + a**2)):
print("Retangulo: N")
elif (a == b == c):
print("Valido-Equilatero")
if ((a**2 == b**2 + c**2) or (b**2 == a**2 + c**2) or (c**2 == b**2 + a**2)):
print("Retangulo: S")
elif ((a**2 != b**2 + c**2) or (b**2 != a**2 + c**2) or (c**2 != b**2 + a**2)):
print("Retangulo: N")
elif (a != b != c):
print("Valido-Escaleno")
if ((a**2 == b**2 + c**2) or (b**2 == a**2 + c**2) or (c**2 == b**2 + a**2)):
print("Retangulo: S")
elif ((a**2 != b**2 + c**2) or (b**2 != a**2 + c**2) or (c**2 != b**2 + a**2)):
print("Retangulo: N")
else:
print("Invalido")
|
(a, b, c) = input().split(' ')
a = int(a)
b = int(b)
c = int(c)
if c < a + b and b < c + a and (a < b + c) and (0 < a, b, c < 10 ** 5):
if a != b and b == c or (a == c and a != b) or (a == b and c != b):
print('Valido-Isoceles')
if a ** 2 == b ** 2 + c ** 2 or b ** 2 == a ** 2 + c ** 2 or c ** 2 == b ** 2 + a ** 2:
print('Retangulo: S')
elif a ** 2 != b ** 2 + c ** 2 or b ** 2 != a ** 2 + c ** 2 or c ** 2 != b ** 2 + a ** 2:
print('Retangulo: N')
elif a == b == c:
print('Valido-Equilatero')
if a ** 2 == b ** 2 + c ** 2 or b ** 2 == a ** 2 + c ** 2 or c ** 2 == b ** 2 + a ** 2:
print('Retangulo: S')
elif a ** 2 != b ** 2 + c ** 2 or b ** 2 != a ** 2 + c ** 2 or c ** 2 != b ** 2 + a ** 2:
print('Retangulo: N')
elif a != b != c:
print('Valido-Escaleno')
if a ** 2 == b ** 2 + c ** 2 or b ** 2 == a ** 2 + c ** 2 or c ** 2 == b ** 2 + a ** 2:
print('Retangulo: S')
elif a ** 2 != b ** 2 + c ** 2 or b ** 2 != a ** 2 + c ** 2 or c ** 2 != b ** 2 + a ** 2:
print('Retangulo: N')
else:
print('Invalido')
|
def main():
f = [line.rstrip("\n") for line in open("Data.txt")]
coordinates = []
for line in f:
coordinate = [int(i) for i in line.split(", ")]
coordinates.append(coordinate)
count = 0
for i in range(400):
for j in range(400):
sum_ = 0
for coordinate in coordinates:
sum_ += abs(coordinate[0] - i) + abs(coordinate[1] - j)
if sum_ < 10000:
count += 1
print(count)
if __name__ == "__main__":
main()
|
def main():
f = [line.rstrip('\n') for line in open('Data.txt')]
coordinates = []
for line in f:
coordinate = [int(i) for i in line.split(', ')]
coordinates.append(coordinate)
count = 0
for i in range(400):
for j in range(400):
sum_ = 0
for coordinate in coordinates:
sum_ += abs(coordinate[0] - i) + abs(coordinate[1] - j)
if sum_ < 10000:
count += 1
print(count)
if __name__ == '__main__':
main()
|
class Solution:
def mostCommonWord(self, paragraph: str, banned) -> str:
helper = {}
tmp_word = ""
for i in paragraph:
if (ord('a') <= ord(i) <= ord('z') or ord('A') <= ord(i) <= ord('Z')) is False:
if len(tmp_word) > 0:
if helper.__contains__(tmp_word):
helper[tmp_word] += 1
else:
helper[tmp_word] = 1
tmp_word = ""
else:
tmp_word += i.lower()
if len(tmp_word) > 0:
if helper.__contains__(tmp_word):
helper[tmp_word] += 1
else:
helper[tmp_word] = 1
max_times = 0
max_word = ""
print(helper)
for word in helper:
if helper[word] > max_times and word not in banned:
max_times = helper[word]
max_word = word
return max_word
slu = Solution()
print(slu.mostCommonWord("Bob", ["hit"]))
'''
"Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. Bob hit a ball
the hit BALL flew far after it was hit. "
["hit"]
"Bob hit a ball, the hit BALL flew far after it was hit."
["hit"]
'''
|
class Solution:
def most_common_word(self, paragraph: str, banned) -> str:
helper = {}
tmp_word = ''
for i in paragraph:
if (ord('a') <= ord(i) <= ord('z') or ord('A') <= ord(i) <= ord('Z')) is False:
if len(tmp_word) > 0:
if helper.__contains__(tmp_word):
helper[tmp_word] += 1
else:
helper[tmp_word] = 1
tmp_word = ''
else:
tmp_word += i.lower()
if len(tmp_word) > 0:
if helper.__contains__(tmp_word):
helper[tmp_word] += 1
else:
helper[tmp_word] = 1
max_times = 0
max_word = ''
print(helper)
for word in helper:
if helper[word] > max_times and word not in banned:
max_times = helper[word]
max_word = word
return max_word
slu = solution()
print(slu.mostCommonWord('Bob', ['hit']))
'\n"Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. Bob hit a ball\nthe hit BALL flew far after it was hit. "\n["hit"]\n\n"Bob hit a ball, the hit BALL flew far after it was hit."\n["hit"]\n'
|
#!python
# -*- coding: utf-8 -*-
# @author: Kun
'''
Author: Kun
Date: 2021-09-30 00:48:14
LastEditTime: 2021-09-30 00:48:14
LastEditors: Kun
Description:
FilePath: /HomoglyphAttacksDetector/utils/__init__.py
'''
|
"""
Author: Kun
Date: 2021-09-30 00:48:14
LastEditTime: 2021-09-30 00:48:14
LastEditors: Kun
Description:
FilePath: /HomoglyphAttacksDetector/utils/__init__.py
"""
|
{
'includes':[
'../common/common.gypi',
],
'targets': [
{
'target_name': 'tizen_network_bearer_selection',
'type': 'loadable_module',
'sources': [
'network_bearer_selection_api.js',
'network_bearer_selection_connection_mobile.cc',
'network_bearer_selection_connection_mobile.h',
'network_bearer_selection_context.cc',
'network_bearer_selection_context.h',
'network_bearer_selection_context_desktop.cc',
'network_bearer_selection_context_desktop.h',
'network_bearer_selection_context_mobile.cc',
'network_bearer_selection_context_mobile.h',
'network_bearer_selection_request.cc',
'network_bearer_selection_request.h',
],
'conditions': [
[ 'extension_host_os=="mobile"', {
'includes': [
'../common/pkg-config.gypi',
],
'variables': {
'packages': [
'capi-network-connection',
],
},
}],
],
},
],
}
|
{'includes': ['../common/common.gypi'], 'targets': [{'target_name': 'tizen_network_bearer_selection', 'type': 'loadable_module', 'sources': ['network_bearer_selection_api.js', 'network_bearer_selection_connection_mobile.cc', 'network_bearer_selection_connection_mobile.h', 'network_bearer_selection_context.cc', 'network_bearer_selection_context.h', 'network_bearer_selection_context_desktop.cc', 'network_bearer_selection_context_desktop.h', 'network_bearer_selection_context_mobile.cc', 'network_bearer_selection_context_mobile.h', 'network_bearer_selection_request.cc', 'network_bearer_selection_request.h'], 'conditions': [['extension_host_os=="mobile"', {'includes': ['../common/pkg-config.gypi'], 'variables': {'packages': ['capi-network-connection']}}]]}]}
|
def DEBUG(s):
#pass
print(s)
|
def debug(s):
print(s)
|
def add_to(subparsers):
parser = subparsers.add_parser(
"wifi",
help="Get and set WiFi configuration",
)
parser.add_children(__name__, __path__)
|
def add_to(subparsers):
parser = subparsers.add_parser('wifi', help='Get and set WiFi configuration')
parser.add_children(__name__, __path__)
|
'''
1. Write a Python program to print the following string in a specific format (see the output). Go to the editor
Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high,
Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are"
Output:
Twinkle, twinkle, little star,
How I wonder what you are!
Up above the world so high,
Like a diamond in the sky.
Twinkle, twinkle, little star,
How I wonder what you are
'''
print("Twinkle, twinkle, little star, \n\tHow I wonder what you are! \n\t\tUp above the world so high, \n\t\tLike a diamond in the sky. \nTwinkle, twinkle, little star, \n\tHow I wonder what you are!")
|
"""
1. Write a Python program to print the following string in a specific format (see the output). Go to the editor
Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high,
Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are"
Output:
Twinkle, twinkle, little star,
How I wonder what you are!
Up above the world so high,
Like a diamond in the sky.
Twinkle, twinkle, little star,
How I wonder what you are
"""
print('Twinkle, twinkle, little star, \n\tHow I wonder what you are! \n\t\tUp above the world so high, \n\t\tLike a diamond in the sky. \nTwinkle, twinkle, little star, \n\tHow I wonder what you are!')
|
'''
Fill in your credentials from Twitter
'''
consumer_key = ''
consumer_secret = ''
access_token_key = ''
access_token_secret = ''
account_name = "@"
kytten_name = "" #Screen Name without the "@"
|
"""
Fill in your credentials from Twitter
"""
consumer_key = ''
consumer_secret = ''
access_token_key = ''
access_token_secret = ''
account_name = '@'
kytten_name = ''
|
class Solution:
def longestRepeatingSubstring(self, S: str) -> int:
# dp[i][j] means the longest repeating string ends at i and j.
# (aka the target ends at i and the repeating one ends at j)
n = len(S) + 1
dp = [[0] * n for _ in range(n)]
result = 0
for i in range(1, n):
for j in range(i + 1, n):
if S[i - 1] == S[j - 1]:
dp[i][j] = dp[i - 1][j - 1] + 1
result = max(result, dp[i][j])
return result
# TLE
def longestRepeatingSubstring(self, S: str) -> int:
if not S:
return 0
result = 0
for i in range(len(S) - 1):
for length in range(1, len(S)):
target = S[i: i + length]
for j in range(i + 1, len(S) - length + 1):
if S[j: j + length] == target:
result = max(result, length)
return result
|
class Solution:
def longest_repeating_substring(self, S: str) -> int:
n = len(S) + 1
dp = [[0] * n for _ in range(n)]
result = 0
for i in range(1, n):
for j in range(i + 1, n):
if S[i - 1] == S[j - 1]:
dp[i][j] = dp[i - 1][j - 1] + 1
result = max(result, dp[i][j])
return result
def longest_repeating_substring(self, S: str) -> int:
if not S:
return 0
result = 0
for i in range(len(S) - 1):
for length in range(1, len(S)):
target = S[i:i + length]
for j in range(i + 1, len(S) - length + 1):
if S[j:j + length] == target:
result = max(result, length)
return result
|
emojis = \
{
29000000: "<:Unranked:601618883853680653>",
29000001: "<:BronzeLeagueIII:601611929311510528>",
29000002: "<:BronzeLeagueII:601611942850986014>",
29000003: "<:BronzeLeagueI:601611950228635648>",
29000004: "<:SilverLeagueIII:601611958067920906>",
29000005: "<:SilverLeagueII:601611965550428160>",
29000006: "<:SilverLeagueI:601611974849331222>",
29000007: "<:GoldLeagueIII:601611988992262144>",
29000008: "<:GoldLeagueII:601611996290613249>",
29000009: "<:GoldLeagueI:601612010492526592>",
29000010: "<:CrystalLeagueIII:601612021472952330>",
29000011: "<:CrystalLeagueII:601612033976434698>",
29000012: "<:CrystalLeagueI:601612045359775746>",
29000013: "<:MasterLeagueIII:601612064913621002>",
29000014: "<:MasterLeagueII:601612075474616399>",
29000015: "<:MasterLeagueI:601612085327036436>",
29000016: "<:ChampionLeagueIII:601612099226959892>",
29000017: "<:ChampionLeagueII:601612113345249290>",
29000018: "<:ChampionLeagueI:601612124447440912>",
29000019: "<:TitanLeagueIII:601612137491726374>",
29000020: "<:TitanLeagueII:601612148325744640>",
29000021: "<:TitanLeagueI:601612159327141888>",
29000022: "<:LegendLeague:601612163169255436>",
17: "<:clanbadgelv17:601613723630829568>",
13: "<:clanbadgelv13:601613734070321153>",
15: "<:clanbadgelv15:601613740550651944>",
16: "<:clanbadgelv16:601613754773405716>",
18: "<:clanbadgelv18:601613767582679051>",
19: "<:clanbadgelv19:601613781071822886>",
14: "<:clanbadgelv14:601613784393580563>",
12: "<:clanbadgelv12:601613795428663306>",
4: "<:clanbadgelv4:601613804396347392>",
10: "<:clanbadgelv10:601613814894559232>",
11: "<:clanbadgelv11:601613823929090049>",
3: "<:clanbadgelv3:601613825698955275>",
8: "<:clanbadgelv8:601613837526892544>",
7: "<:clanbadgelv7:601613849094782987>",
9: "<:clanbadgelv9:601615742248550400>",
1: "<:clanbadgelv1:601615752696430592>",
2: "<:clanbadgelv2:601615764805517324>",
6: "<:clanbadgelv6:601615768483790864>",
5: "<:clanbadgelv5:601615779309551633>",
}
number_emojis = \
{
48: "<:rcs48:569362943884656664>",
49: "<:rcs49:569362943951503386>",
47: "<:rcs47:569362944241172491>",
50: "<:rcs50:569362944312475676>",
45: "<:rcs45:569371105752514572>",
46: "<:rcs46:569371105874280459>",
42: "<:rcs42:569371105953972225>",
44: "<:rcs44:569371105966686210>",
37: "<:rcs37:569371106096447498>",
38: "<:rcs38:569371106142715904>",
36: "<:rcs36:569371106176270345>",
43: "<:rcs43:569371106205499402>",
40: "<:rcs40:569371106356756491>",
41: "<:rcs41:569371106373402650>",
39: "<:rcs39:569371106377596949>",
1: "<:rcs1:570030365146873858>",
3: "<:rcs3:570030366128340993>",
2: "<:rcs2:570030366186930219>",
9: "<:rcs9:570030366308564993>",
6: "<:rcs6:570030366400839701>",
4: "<:rcs4:570030366543577098>",
17: "<:rcs17:570030366581063711>",
13: "<:rcs13:570030366593908797>",
8: "<:rcs8:570030366648434698>",
5: "<:rcs5:570030366652366858>",
7: "<:rcs7:570030366656823296>",
27: "<:rcs27:570030366656823348>",
20: "<:rcs20:570030366669275163>",
12: "<:rcs12:570030366690377733>",
21: "<:rcs21:570030366690377779>",
10: "<:rcs10:570030366719606814>",
11: "<:rcs11:570030366740447280>",
14: "<:rcs14:570030366761680906>",
15: "<:rcs15:570030366820270081>",
16: "<:rcs16:570030366820270100>",
18: "<:rcs18:570030366824333332>",
19: "<:rcs19:570030366870470677>",
24: "<:rcs24:570030366979653645>",
22: "<:rcs22:570030367067865088>",
23: "<:rcs23:570030367084380160>",
30: "<:rcs30:570030367084380221>",
31: "<:rcs31:570030367084511233>",
26: "<:rcs26:570030367097094165>",
32: "<:rcs32:570030367109808158>",
34: "<:rcs34:570030367118065664>",
29: "<:rcs29:570030367118065684>",
33: "<:rcs33:570030367122128901>",
35: "<:rcs35:570030367134973962>",
25: "<:rcs25:570030367399084042>",
28: "<:rcs28:570030368422363136>",
55: "<:rcs55:569361240623939616>",
54: "<:rcs54:569361240695242753>",
58: "<:rcs58:569361240858558476>",
57: "<:rcs57:569361240858689573>",
53: "<:rcs53:569361240879661074>",
51: "<:rcs51:569361240904826881>",
52: "<:rcs52:569361240929861674>",
56: "<:rcs56:569361241060147211>",
59: "<:rcs59:569361241110216704>",
60: "<:rcs60:569359633181835265>",
61: "<:rcs61:602126479903424512>",
62: "<:rcs62:602126479652028437>",
63: "<:rcs63:602126480377511966>",
64: "<:rcs64:602126480134242315>",
65: "<:rcs65:602126479995699203>",
66: "<:rcs66:602126480394289172>",
67: "<:rcs67:602126480000155670>",
68: "<:rcs68:602126480390225930>",
69: "<:rcs69:602130664158003202>",
70: "<:rcs70:602130663981711385>",
71: "<:rcs71:602130664581758976>",
72: "<:rcs72:602130664447410196>",
73: "<:rcs73:602130664447279134>",
74: "<:rcs74:602130664581758987>",
75: "<:rcs75:602130664430501911>",
76: "<:rcs76:602132432959045642>",
77: "<:rcs77:602132433038737408>",
78: "<:rcs78:602132433105846272>",
79: "<:rcs79:602132433068097536>",
80: "<:rcs80:602132433286201344>",
81: "<:rcs81:602132433097457665>",
82: "<:rcs82:602132433038606357>",
83: "<:rcs83:602132433063903233>",
84: "<:rcs84:602132433055252480>",
85: "<:rcs85:602132433323950080>",
86: "<:rcs86:602132433063772180>",
87: "<:rcs87:602132433059708928>",
88: "<:rcs88:602132433097457664>",
89: "<:rcs89:602132432744873987>",
90: "<:rcs90:602132432946200588>",
91: "<:rcs91:602132433084612638>",
92: "<:rcs92:602132433051058206>",
93: "<:rcs93:602132433055514624>",
94: "<:rcs94:602132432707125289>",
95: "<:rcs95:602132433080549386>",
96: "<:rcs96:602132433374019584>",
97: "<:rcs97:602132433420419082>",
98: "<:rcs98:602132433030217751>",
99: "<:rcs99:602132433168498699>",
100: "<:rcs100:602132433311236096>",
}
townhall_emojis = \
{
11: "<:rcsth11:506863668449771526>",
3: "<:rcsth3:506863668563148811>",
10: "<:rcsth10:506863668689108994>",
9: "<:rcsth9:506863668722401290>",
6: "<:rcsth6:506863668726726664>",
4: "<:rcsth4:506863668731052032>",
7: "<:rcsth7:506863668743503872>",
12: "<:rcsth12:506863668802224138>",
5: "<:rcsth5:506863668819001345>",
8: "<:rcsth8:506863668827258919>"
}
troop_emojis = \
{
"babydragon": "<:babydragon:531661745031348235>",
"archer": "<:archer:531661745157046274>",
"archerqueen": "<:archerqueen:531661745266098200>",
"barbking": "<:barbking:531661752027447296>",
"hogrider": "<:hogrider:531661752090230785>",
"earthquake": "<:earthquake:531661752119853071>",
"smair1": "<:smair1:531661752660787201>",
"bomber": "<:bomber:531661752706793472>",
"barbarian": "<:barbarian:531661752757125149>",
"miner": "<:miner:531661752954257430>",
"drag": "<:drag:531661752971165708>",
"cannoncart": "<:cannoncart:531661753008914451>",
"boxergiant": "<:boxergiant:531661753042337793>",
"bowler": "<:bowler:531661753495584768>",
"haste": "<:haste:531661753541722121>",
"battlemachine": "<:battlemachine:531661753642254338>",
"smground": "<:smground:531661753721815040>",
"poison": "<:poison:531661754007158794>",
"loon": "<:loon:531661754162216970>",
"skeleton": "<:skeleton:531661754204291101>",
"ragedbarb": "<:ragedbarb:531661754254491649>",
"wizard": "<:wizard:531661754653212692>",
"betaminion": "<:betaminion:531661755022049281>",
"grandwarden": "<:grandwarden:531661755022311446>",
"clone": "<:clone:531661755114586113>",
"goblin": "<:goblin:531661755185627156>",
"healer": "<:healer:531661755286552587>",
"heal": "<:heal:531661755370307604>",
"giant": "<:giant:531661755428896789>",
"golem": "<:golem:531661755542405131>",
"pekka": "<:pekka:531661755558920203>",
"jump": "<:jump:531661755651325962>",
"valkyrie": "<:valkyrie:531661755688943627>",
"lavahound": "<:lavahound:531661755714371594>",
"edrag": "<:edrag:531661755781349396>",
"wallbreaker": "<:wallbreaker:531661755815034890>",
"sneakyarcher": "<:sneakyarcher:531661755848327178>",
"freeze": "<:freeze:531661755873492992>",
"lightning": "<:lightning:531661755894595584>",
"superpekka": "<:superpekka:531661755911372821>",
"rage": "<:rage:531661755940864030>",
"witch": "<:witch:531661755953446922>",
"dropship": "<:dropship:531661755961835550>",
"minion": "<:minion:531661755978481675>",
"nightwitch": "<:nightwitch:531661756452569098>",
"smair2": "<:smair2:531661989504876553>",
"icegolem": "<:icegolem:531662117690933268>",
"batspell": "<:batspell:531667965813325832>",
}
misc = \
{
"donated": "<:donated:601622865451941896>",
"received": "<:received:601622788515692552>",
"offline": "<:offline:604943449241681950>",
"online": "<:online:604943467982094347>",
"number": "<:number:601623596070338598>",
"idle": "<:idle:601626135306043452>",
"rcsgap": "<:rcsgap:506646497149059074>",
"slack": "<:slack:521472987556216837>",
"star_empty": "<:star_empty:524801903016804363>",
"star_new": "<:star_new:524801903109079041>",
"star_old": "<:star_old:524801903234646017>",
"red_x_mark": "<:red_x_mark:531163415335403531>",
"upvote": "<:upvote:531246808999919628>",
"downvote": "<:downvote:531246835185221643>",
"swords": "<:swords:557035830175072257>",
"per": "<:per:569361815683858433>",
"discord": "<:discord:571884537500401664>",
"legend": "<:legend:592028469068824607>",
"legendcup": "<:legendcup:592028799768592405>",
"tank": "<:tank:594601895163723816>",
"clashchamps": "<:clashchamps:600807746664792084>",
"greentick": "<:greentick:601900670823694357>",
"redtick": "<:redtick:601900691312607242>",
"greytick": "<:greytick:601900711974010905>",
"trophygain": "<:trophygain:628561448519335946>",
"trophyloss": "<:trophyloss:628561532141436960>",
"trophygreen": "<:trophygreen:628561697480900618>",
"trophyred": "<:trophyred:628561718276128789>",
"green_clock": "<:green_clock:629481616091119617>",
"defense": "<:defense:632517053953081354>",
"attack": "<:attack:632518458713571329>",
"trophygold": "<:trophygold:632521243278442505>"
}
|
emojis = {29000000: '<:Unranked:601618883853680653>', 29000001: '<:BronzeLeagueIII:601611929311510528>', 29000002: '<:BronzeLeagueII:601611942850986014>', 29000003: '<:BronzeLeagueI:601611950228635648>', 29000004: '<:SilverLeagueIII:601611958067920906>', 29000005: '<:SilverLeagueII:601611965550428160>', 29000006: '<:SilverLeagueI:601611974849331222>', 29000007: '<:GoldLeagueIII:601611988992262144>', 29000008: '<:GoldLeagueII:601611996290613249>', 29000009: '<:GoldLeagueI:601612010492526592>', 29000010: '<:CrystalLeagueIII:601612021472952330>', 29000011: '<:CrystalLeagueII:601612033976434698>', 29000012: '<:CrystalLeagueI:601612045359775746>', 29000013: '<:MasterLeagueIII:601612064913621002>', 29000014: '<:MasterLeagueII:601612075474616399>', 29000015: '<:MasterLeagueI:601612085327036436>', 29000016: '<:ChampionLeagueIII:601612099226959892>', 29000017: '<:ChampionLeagueII:601612113345249290>', 29000018: '<:ChampionLeagueI:601612124447440912>', 29000019: '<:TitanLeagueIII:601612137491726374>', 29000020: '<:TitanLeagueII:601612148325744640>', 29000021: '<:TitanLeagueI:601612159327141888>', 29000022: '<:LegendLeague:601612163169255436>', 17: '<:clanbadgelv17:601613723630829568>', 13: '<:clanbadgelv13:601613734070321153>', 15: '<:clanbadgelv15:601613740550651944>', 16: '<:clanbadgelv16:601613754773405716>', 18: '<:clanbadgelv18:601613767582679051>', 19: '<:clanbadgelv19:601613781071822886>', 14: '<:clanbadgelv14:601613784393580563>', 12: '<:clanbadgelv12:601613795428663306>', 4: '<:clanbadgelv4:601613804396347392>', 10: '<:clanbadgelv10:601613814894559232>', 11: '<:clanbadgelv11:601613823929090049>', 3: '<:clanbadgelv3:601613825698955275>', 8: '<:clanbadgelv8:601613837526892544>', 7: '<:clanbadgelv7:601613849094782987>', 9: '<:clanbadgelv9:601615742248550400>', 1: '<:clanbadgelv1:601615752696430592>', 2: '<:clanbadgelv2:601615764805517324>', 6: '<:clanbadgelv6:601615768483790864>', 5: '<:clanbadgelv5:601615779309551633>'}
number_emojis = {48: '<:rcs48:569362943884656664>', 49: '<:rcs49:569362943951503386>', 47: '<:rcs47:569362944241172491>', 50: '<:rcs50:569362944312475676>', 45: '<:rcs45:569371105752514572>', 46: '<:rcs46:569371105874280459>', 42: '<:rcs42:569371105953972225>', 44: '<:rcs44:569371105966686210>', 37: '<:rcs37:569371106096447498>', 38: '<:rcs38:569371106142715904>', 36: '<:rcs36:569371106176270345>', 43: '<:rcs43:569371106205499402>', 40: '<:rcs40:569371106356756491>', 41: '<:rcs41:569371106373402650>', 39: '<:rcs39:569371106377596949>', 1: '<:rcs1:570030365146873858>', 3: '<:rcs3:570030366128340993>', 2: '<:rcs2:570030366186930219>', 9: '<:rcs9:570030366308564993>', 6: '<:rcs6:570030366400839701>', 4: '<:rcs4:570030366543577098>', 17: '<:rcs17:570030366581063711>', 13: '<:rcs13:570030366593908797>', 8: '<:rcs8:570030366648434698>', 5: '<:rcs5:570030366652366858>', 7: '<:rcs7:570030366656823296>', 27: '<:rcs27:570030366656823348>', 20: '<:rcs20:570030366669275163>', 12: '<:rcs12:570030366690377733>', 21: '<:rcs21:570030366690377779>', 10: '<:rcs10:570030366719606814>', 11: '<:rcs11:570030366740447280>', 14: '<:rcs14:570030366761680906>', 15: '<:rcs15:570030366820270081>', 16: '<:rcs16:570030366820270100>', 18: '<:rcs18:570030366824333332>', 19: '<:rcs19:570030366870470677>', 24: '<:rcs24:570030366979653645>', 22: '<:rcs22:570030367067865088>', 23: '<:rcs23:570030367084380160>', 30: '<:rcs30:570030367084380221>', 31: '<:rcs31:570030367084511233>', 26: '<:rcs26:570030367097094165>', 32: '<:rcs32:570030367109808158>', 34: '<:rcs34:570030367118065664>', 29: '<:rcs29:570030367118065684>', 33: '<:rcs33:570030367122128901>', 35: '<:rcs35:570030367134973962>', 25: '<:rcs25:570030367399084042>', 28: '<:rcs28:570030368422363136>', 55: '<:rcs55:569361240623939616>', 54: '<:rcs54:569361240695242753>', 58: '<:rcs58:569361240858558476>', 57: '<:rcs57:569361240858689573>', 53: '<:rcs53:569361240879661074>', 51: '<:rcs51:569361240904826881>', 52: '<:rcs52:569361240929861674>', 56: '<:rcs56:569361241060147211>', 59: '<:rcs59:569361241110216704>', 60: '<:rcs60:569359633181835265>', 61: '<:rcs61:602126479903424512>', 62: '<:rcs62:602126479652028437>', 63: '<:rcs63:602126480377511966>', 64: '<:rcs64:602126480134242315>', 65: '<:rcs65:602126479995699203>', 66: '<:rcs66:602126480394289172>', 67: '<:rcs67:602126480000155670>', 68: '<:rcs68:602126480390225930>', 69: '<:rcs69:602130664158003202>', 70: '<:rcs70:602130663981711385>', 71: '<:rcs71:602130664581758976>', 72: '<:rcs72:602130664447410196>', 73: '<:rcs73:602130664447279134>', 74: '<:rcs74:602130664581758987>', 75: '<:rcs75:602130664430501911>', 76: '<:rcs76:602132432959045642>', 77: '<:rcs77:602132433038737408>', 78: '<:rcs78:602132433105846272>', 79: '<:rcs79:602132433068097536>', 80: '<:rcs80:602132433286201344>', 81: '<:rcs81:602132433097457665>', 82: '<:rcs82:602132433038606357>', 83: '<:rcs83:602132433063903233>', 84: '<:rcs84:602132433055252480>', 85: '<:rcs85:602132433323950080>', 86: '<:rcs86:602132433063772180>', 87: '<:rcs87:602132433059708928>', 88: '<:rcs88:602132433097457664>', 89: '<:rcs89:602132432744873987>', 90: '<:rcs90:602132432946200588>', 91: '<:rcs91:602132433084612638>', 92: '<:rcs92:602132433051058206>', 93: '<:rcs93:602132433055514624>', 94: '<:rcs94:602132432707125289>', 95: '<:rcs95:602132433080549386>', 96: '<:rcs96:602132433374019584>', 97: '<:rcs97:602132433420419082>', 98: '<:rcs98:602132433030217751>', 99: '<:rcs99:602132433168498699>', 100: '<:rcs100:602132433311236096>'}
townhall_emojis = {11: '<:rcsth11:506863668449771526>', 3: '<:rcsth3:506863668563148811>', 10: '<:rcsth10:506863668689108994>', 9: '<:rcsth9:506863668722401290>', 6: '<:rcsth6:506863668726726664>', 4: '<:rcsth4:506863668731052032>', 7: '<:rcsth7:506863668743503872>', 12: '<:rcsth12:506863668802224138>', 5: '<:rcsth5:506863668819001345>', 8: '<:rcsth8:506863668827258919>'}
troop_emojis = {'babydragon': '<:babydragon:531661745031348235>', 'archer': '<:archer:531661745157046274>', 'archerqueen': '<:archerqueen:531661745266098200>', 'barbking': '<:barbking:531661752027447296>', 'hogrider': '<:hogrider:531661752090230785>', 'earthquake': '<:earthquake:531661752119853071>', 'smair1': '<:smair1:531661752660787201>', 'bomber': '<:bomber:531661752706793472>', 'barbarian': '<:barbarian:531661752757125149>', 'miner': '<:miner:531661752954257430>', 'drag': '<:drag:531661752971165708>', 'cannoncart': '<:cannoncart:531661753008914451>', 'boxergiant': '<:boxergiant:531661753042337793>', 'bowler': '<:bowler:531661753495584768>', 'haste': '<:haste:531661753541722121>', 'battlemachine': '<:battlemachine:531661753642254338>', 'smground': '<:smground:531661753721815040>', 'poison': '<:poison:531661754007158794>', 'loon': '<:loon:531661754162216970>', 'skeleton': '<:skeleton:531661754204291101>', 'ragedbarb': '<:ragedbarb:531661754254491649>', 'wizard': '<:wizard:531661754653212692>', 'betaminion': '<:betaminion:531661755022049281>', 'grandwarden': '<:grandwarden:531661755022311446>', 'clone': '<:clone:531661755114586113>', 'goblin': '<:goblin:531661755185627156>', 'healer': '<:healer:531661755286552587>', 'heal': '<:heal:531661755370307604>', 'giant': '<:giant:531661755428896789>', 'golem': '<:golem:531661755542405131>', 'pekka': '<:pekka:531661755558920203>', 'jump': '<:jump:531661755651325962>', 'valkyrie': '<:valkyrie:531661755688943627>', 'lavahound': '<:lavahound:531661755714371594>', 'edrag': '<:edrag:531661755781349396>', 'wallbreaker': '<:wallbreaker:531661755815034890>', 'sneakyarcher': '<:sneakyarcher:531661755848327178>', 'freeze': '<:freeze:531661755873492992>', 'lightning': '<:lightning:531661755894595584>', 'superpekka': '<:superpekka:531661755911372821>', 'rage': '<:rage:531661755940864030>', 'witch': '<:witch:531661755953446922>', 'dropship': '<:dropship:531661755961835550>', 'minion': '<:minion:531661755978481675>', 'nightwitch': '<:nightwitch:531661756452569098>', 'smair2': '<:smair2:531661989504876553>', 'icegolem': '<:icegolem:531662117690933268>', 'batspell': '<:batspell:531667965813325832>'}
misc = {'donated': '<:donated:601622865451941896>', 'received': '<:received:601622788515692552>', 'offline': '<:offline:604943449241681950>', 'online': '<:online:604943467982094347>', 'number': '<:number:601623596070338598>', 'idle': '<:idle:601626135306043452>', 'rcsgap': '<:rcsgap:506646497149059074>', 'slack': '<:slack:521472987556216837>', 'star_empty': '<:star_empty:524801903016804363>', 'star_new': '<:star_new:524801903109079041>', 'star_old': '<:star_old:524801903234646017>', 'red_x_mark': '<:red_x_mark:531163415335403531>', 'upvote': '<:upvote:531246808999919628>', 'downvote': '<:downvote:531246835185221643>', 'swords': '<:swords:557035830175072257>', 'per': '<:per:569361815683858433>', 'discord': '<:discord:571884537500401664>', 'legend': '<:legend:592028469068824607>', 'legendcup': '<:legendcup:592028799768592405>', 'tank': '<:tank:594601895163723816>', 'clashchamps': '<:clashchamps:600807746664792084>', 'greentick': '<:greentick:601900670823694357>', 'redtick': '<:redtick:601900691312607242>', 'greytick': '<:greytick:601900711974010905>', 'trophygain': '<:trophygain:628561448519335946>', 'trophyloss': '<:trophyloss:628561532141436960>', 'trophygreen': '<:trophygreen:628561697480900618>', 'trophyred': '<:trophyred:628561718276128789>', 'green_clock': '<:green_clock:629481616091119617>', 'defense': '<:defense:632517053953081354>', 'attack': '<:attack:632518458713571329>', 'trophygold': '<:trophygold:632521243278442505>'}
|
course = 'Python for Beginners'
#print the length of the string
print(len(course))
#print all in upper
print(course.upper())
#print all in lower
print(course.lower())
#Find index of the first instance of 'P'
print(course.find('P'))
#Find index of the first instance of 'o'
print(course.find('o'))
#Find index of the first instance of '0' --> returns -1 (not found)
print(course.find('0'))
#Find index of the first instance of 'Beginners'
print(course.find('Beginners'))
#replace 'Beginners' with 'Absolute Beginners'
print(course.replace('Beginners','Absolute Beginners'))
#return boolean value if 'Python' is in the course variable
print('Python' in course)
#return boolean value if 'python' is in the course variable
print('python' in course)
|
course = 'Python for Beginners'
print(len(course))
print(course.upper())
print(course.lower())
print(course.find('P'))
print(course.find('o'))
print(course.find('0'))
print(course.find('Beginners'))
print(course.replace('Beginners', 'Absolute Beginners'))
print('Python' in course)
print('python' in course)
|
#4.2
list_with_integers = [26, 3, 22, 5.9, 1337, 988, 69.544]
for i in list_with_integers:
print(float(i))
|
list_with_integers = [26, 3, 22, 5.9, 1337, 988, 69.544]
for i in list_with_integers:
print(float(i))
|
projectTwitterDataFile = open("project_twitter_data.csv","r")
resultingDataFile = open("resulting_data.csv","w")
punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
# lists of words to use
positive_words = []
with open("positive_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())
def get_pos(strSentences):
strSentences = strip_punctuation(strSentences)
listStrSentences= strSentences.split()
count=0
for word in listStrSentences:
for positiveWord in positive_words:
if word == positiveWord:
count+=1
return count
negative_words = []
with open("negative_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
negative_words.append(lin.strip())
def get_neg(strSentences):
strSentences = strip_punctuation(strSentences)
listStrSentences = strSentences.split()
count=0
for word in listStrSentences:
for negativeWord in negative_words:
if word == negativeWord:
count+=1
return count
def strip_punctuation(strWord):
for charPunct in punctuation_chars:
strWord = strWord.replace(charPunct, "")
return strWord
def writeInDataFile(resultingDataFile):
resultingDataFile.write("Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score")
resultingDataFile.write("\n")
linesPTDF = projectTwitterDataFile.readlines()
headerDontUsed= linesPTDF.pop(0)
for linesTD in linesPTDF:
listTD = linesTD.strip().split(',')
resultingDataFile.write("{}, {}, {}, {}, {}".format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), (get_pos(listTD[0])-get_neg(listTD[0]))))
resultingDataFile.write("\n")
writeInDataFile(resultingDataFile)
projectTwitterDataFile.close()
resultingDataFile.close()
###############################################
punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
# list of positive words to use
positive_words = []
with open("positive_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())
def get_pos(strSentences):
strSentences = strip_punctuation(strSentences)
listStrSentences= strSentences.split()
count=0
for word in listStrSentences:
for positiveWord in positive_words:
if word == positiveWord:
count+=1
return count
def strip_punctuation(strWord):
for charPunct in punctuation_chars:
strWord = strWord.replace(charPunct, "")
return strWord
##################################
punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
negative_words = []
with open("negative_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
negative_words.append(lin.strip())
def get_neg(strSentences):
strSentences = strip_punctuation(strSentences)
listStrSentences = strSentences.split()
count=0
for word in listStrSentences:
for negativeWord in negative_words:
if word == negativeWord:
count+=1
return count
def strip_punctuation(strWord):
for charPunct in punctuation_chars:
strWord = strWord.replace(charPunct, "")
return strWord
#################################################################
projectTwitterDataFile = open("project_twitter_data.csv","r")
resultingDataFile = open("resulting_data.csv","w")
punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
# lists of words to use
positive_words = []
with open("positive_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())
def get_pos(strSentences):
strSentences = strip_punctuation(strSentences)
listStrSentences= strSentences.split()
count=0
for word in listStrSentences:
for positiveWord in positive_words:
if word == positiveWord:
count+=1
return count
negative_words = []
with open("negative_words.txt") as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
negative_words.append(lin.strip())
def get_neg(strSentences):
strSentences = strip_punctuation(strSentences)
listStrSentences = strSentences.split()
count=0
for word in listStrSentences:
for negativeWord in negative_words:
if word == negativeWord:
count+=1
return count
def strip_punctuation(strWord):
for charPunct in punctuation_chars:
strWord = strWord.replace(charPunct, "")
return strWord
def writeInDataFile(resultingDataFile):
resultingDataFile.write("Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score")
resultingDataFile.write("\n")
linesPTDF = projectTwitterDataFile.readlines()
headerDontUsed= linesPTDF.pop(0)
for linesTD in linesPTDF:
listTD = linesTD.strip().split(',')
resultingDataFile.write("{}, {}, {}, {}, {}".format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), (get_pos(listTD[0])-get_neg(listTD[0]))))
resultingDataFile.write("\n")
writeInDataFile(resultingDataFile)
projectTwitterDataFile.close()
resultingDataFile.close()
|
project_twitter_data_file = open('project_twitter_data.csv', 'r')
resulting_data_file = open('resulting_data.csv', 'w')
punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@']
positive_words = []
with open('positive_words.txt') as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())
def get_pos(strSentences):
str_sentences = strip_punctuation(strSentences)
list_str_sentences = strSentences.split()
count = 0
for word in listStrSentences:
for positive_word in positive_words:
if word == positiveWord:
count += 1
return count
negative_words = []
with open('negative_words.txt') as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
negative_words.append(lin.strip())
def get_neg(strSentences):
str_sentences = strip_punctuation(strSentences)
list_str_sentences = strSentences.split()
count = 0
for word in listStrSentences:
for negative_word in negative_words:
if word == negativeWord:
count += 1
return count
def strip_punctuation(strWord):
for char_punct in punctuation_chars:
str_word = strWord.replace(charPunct, '')
return strWord
def write_in_data_file(resultingDataFile):
resultingDataFile.write('Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score')
resultingDataFile.write('\n')
lines_ptdf = projectTwitterDataFile.readlines()
header_dont_used = linesPTDF.pop(0)
for lines_td in linesPTDF:
list_td = linesTD.strip().split(',')
resultingDataFile.write('{}, {}, {}, {}, {}'.format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), get_pos(listTD[0]) - get_neg(listTD[0])))
resultingDataFile.write('\n')
write_in_data_file(resultingDataFile)
projectTwitterDataFile.close()
resultingDataFile.close()
punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@']
positive_words = []
with open('positive_words.txt') as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())
def get_pos(strSentences):
str_sentences = strip_punctuation(strSentences)
list_str_sentences = strSentences.split()
count = 0
for word in listStrSentences:
for positive_word in positive_words:
if word == positiveWord:
count += 1
return count
def strip_punctuation(strWord):
for char_punct in punctuation_chars:
str_word = strWord.replace(charPunct, '')
return strWord
punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@']
negative_words = []
with open('negative_words.txt') as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
negative_words.append(lin.strip())
def get_neg(strSentences):
str_sentences = strip_punctuation(strSentences)
list_str_sentences = strSentences.split()
count = 0
for word in listStrSentences:
for negative_word in negative_words:
if word == negativeWord:
count += 1
return count
def strip_punctuation(strWord):
for char_punct in punctuation_chars:
str_word = strWord.replace(charPunct, '')
return strWord
project_twitter_data_file = open('project_twitter_data.csv', 'r')
resulting_data_file = open('resulting_data.csv', 'w')
punctuation_chars = ["'", '"', ',', '.', '!', ':', ';', '#', '@']
positive_words = []
with open('positive_words.txt') as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
positive_words.append(lin.strip())
def get_pos(strSentences):
str_sentences = strip_punctuation(strSentences)
list_str_sentences = strSentences.split()
count = 0
for word in listStrSentences:
for positive_word in positive_words:
if word == positiveWord:
count += 1
return count
negative_words = []
with open('negative_words.txt') as pos_f:
for lin in pos_f:
if lin[0] != ';' and lin[0] != '\n':
negative_words.append(lin.strip())
def get_neg(strSentences):
str_sentences = strip_punctuation(strSentences)
list_str_sentences = strSentences.split()
count = 0
for word in listStrSentences:
for negative_word in negative_words:
if word == negativeWord:
count += 1
return count
def strip_punctuation(strWord):
for char_punct in punctuation_chars:
str_word = strWord.replace(charPunct, '')
return strWord
def write_in_data_file(resultingDataFile):
resultingDataFile.write('Number of Retweets, Number of Replies, Positive Score, Negative Score, Net Score')
resultingDataFile.write('\n')
lines_ptdf = projectTwitterDataFile.readlines()
header_dont_used = linesPTDF.pop(0)
for lines_td in linesPTDF:
list_td = linesTD.strip().split(',')
resultingDataFile.write('{}, {}, {}, {}, {}'.format(listTD[1], listTD[2], get_pos(listTD[0]), get_neg(listTD[0]), get_pos(listTD[0]) - get_neg(listTD[0])))
resultingDataFile.write('\n')
write_in_data_file(resultingDataFile)
projectTwitterDataFile.close()
resultingDataFile.close()
|
def sum_repeat_digits(offset):
l = []
for i, c in enumerate(digits):
index_to_check = int((i + offset) % len(digits))
if c == digits[index_to_check]:
l.append(int(c))
return sum(l)
def main():
with open('inputs/solution1.txt') as f:
digits = f.read().strip()
print('Part 1', sum_repeat_digits(1))
print('Part 2', sum_repeat_digits(len(digits)/2))
if __name__ == '__main__':
main()
|
def sum_repeat_digits(offset):
l = []
for (i, c) in enumerate(digits):
index_to_check = int((i + offset) % len(digits))
if c == digits[index_to_check]:
l.append(int(c))
return sum(l)
def main():
with open('inputs/solution1.txt') as f:
digits = f.read().strip()
print('Part 1', sum_repeat_digits(1))
print('Part 2', sum_repeat_digits(len(digits) / 2))
if __name__ == '__main__':
main()
|
employees = {
'Alice': 100000,
'Bob': 98000,
'Cena': 127000,
'Dwayne': 158000,
'Frank': 88000
}
# find the top earner (every one with salary greater than or equal to 1 lakh)
top_earners = []
for name,salary in employees.items():
if salary >= 100000:
top_earners.append((name,salary))
print(top_earners)
## One-liner
top_earners = [(n,s) for n,s in employees.items() if s >= 100000 ]
print(top_earners)
|
employees = {'Alice': 100000, 'Bob': 98000, 'Cena': 127000, 'Dwayne': 158000, 'Frank': 88000}
top_earners = []
for (name, salary) in employees.items():
if salary >= 100000:
top_earners.append((name, salary))
print(top_earners)
top_earners = [(n, s) for (n, s) in employees.items() if s >= 100000]
print(top_earners)
|
VALID_AZURE_ENVIRONMENTS = [
'AzurePublicCloud',
'AzureUSGovernmentCloud',
'AzureChinaCloud',
'AzureGermanCloud',
]
|
valid_azure_environments = ['AzurePublicCloud', 'AzureUSGovernmentCloud', 'AzureChinaCloud', 'AzureGermanCloud']
|
class Lane:
def __init__(self, position, objectType, player_id):
self.position = position
self.object = objectType
self.occupied_by_player_id = player_id
|
class Lane:
def __init__(self, position, objectType, player_id):
self.position = position
self.object = objectType
self.occupied_by_player_id = player_id
|
coordinates_E0E1E1 = ((123, 110),
(123, 112), (123, 113), (123, 114), (123, 115), (123, 116), (123, 117), (123, 118), (123, 119), (123, 120), (123, 122), (124, 110), (124, 122), (125, 110), (125, 112), (125, 113), (125, 114), (125, 115), (125, 116), (125, 117), (125, 118), (125, 119), (125, 120), (125, 122), (126, 109), (126, 111), (126, 112), (126, 113), (126, 114), (126, 115), (126, 116), (126, 117), (126, 118), (126, 119), (126, 120), (126, 122), (127, 66), (127, 72), (127, 80), (127, 82), (127, 104), (127, 109), (127, 111), (127, 112), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 119), (127, 120), (127, 122), (128, 65), (128, 67), (128, 72), (128, 75), (128, 76), (128, 77), (128, 78), (128, 79), (128, 82), (128, 103), (128, 104), (128, 109), (128, 111), (128, 112), (128, 113), (128, 114), (128, 115), (128, 116), (128, 117), (128, 118),
(128, 119), (128, 120), (128, 122), (129, 65), (129, 67), (129, 73), (129, 76), (129, 80), (129, 82), (129, 102), (129, 109), (129, 111), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 117), (129, 118), (129, 119), (129, 120), (129, 122), (130, 65), (130, 68), (130, 73), (130, 75), (130, 76), (130, 77), (130, 78), (130, 79), (130, 80), (130, 82), (130, 91), (130, 102), (130, 103), (130, 108), (130, 110), (130, 111), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 117), (130, 118), (130, 119), (130, 120), (130, 122), (131, 65), (131, 68), (131, 73), (131, 75), (131, 76), (131, 77), (131, 78), (131, 79), (131, 81), (131, 91), (131, 92), (131, 103), (131, 108), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 118), (131, 119), (131, 120),
(131, 122), (132, 65), (132, 67), (132, 69), (132, 72), (132, 73), (132, 74), (132, 75), (132, 76), (132, 77), (132, 78), (132, 79), (132, 81), (132, 92), (132, 101), (132, 103), (132, 104), (132, 107), (132, 109), (132, 110), (132, 111), (132, 117), (132, 118), (132, 119), (132, 120), (132, 122), (133, 66), (133, 68), (133, 71), (133, 73), (133, 74), (133, 75), (133, 76), (133, 77), (133, 78), (133, 79), (133, 81), (133, 93), (133, 101), (133, 103), (133, 104), (133, 105), (133, 106), (133, 108), (133, 109), (133, 110), (133, 113), (133, 114), (133, 115), (133, 118), (133, 119), (133, 120), (133, 122), (134, 66), (134, 68), (134, 69), (134, 72), (134, 77), (134, 78), (134, 79), (134, 80), (134, 82), (134, 95), (134, 100), (134, 102), (134, 103), (134, 104), (134, 107), (134, 108), (134, 109), (134, 111), (134, 117),
(134, 120), (134, 122), (134, 128), (135, 66), (135, 68), (135, 69), (135, 70), (135, 73), (135, 74), (135, 75), (135, 76), (135, 78), (135, 79), (135, 80), (135, 81), (135, 83), (135, 94), (135, 96), (135, 97), (135, 98), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 110), (135, 118), (135, 121), (135, 122), (135, 128), (135, 129), (136, 67), (136, 69), (136, 72), (136, 77), (136, 79), (136, 80), (136, 81), (136, 82), (136, 84), (136, 95), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 109), (136, 120), (136, 123), (137, 67), (137, 70), (137, 78), (137, 80), (137, 81), (137, 82), (137, 85), (137, 95), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105),
(137, 106), (137, 108), (137, 121), (137, 123), (137, 129), (137, 130), (138, 67), (138, 69), (138, 79), (138, 81), (138, 82), (138, 83), (138, 84), (138, 86), (138, 94), (138, 96), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 122), (138, 124), (138, 130), (139, 67), (139, 69), (139, 79), (139, 81), (139, 82), (139, 83), (139, 84), (139, 85), (139, 88), (139, 93), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 107), (139, 123), (139, 124), (139, 130), (139, 132), (140, 67), (140, 70), (140, 78), (140, 80), (140, 85), (140, 86), (140, 89), (140, 90), (140, 91), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100),
(140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 107), (140, 123), (140, 124), (140, 132), (141, 67), (141, 69), (141, 71), (141, 76), (141, 82), (141, 83), (141, 84), (141, 87), (141, 88), (141, 93), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 107), (141, 124), (141, 131), (141, 133), (142, 66), (142, 68), (142, 69), (142, 70), (142, 72), (142, 73), (142, 74), (142, 75), (142, 80), (142, 86), (142, 88), (142, 89), (142, 90), (142, 91), (142, 92), (142, 93), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 131), (142, 133), (143, 67), (143, 69), (143, 70), (143, 71), (143, 78),
(143, 87), (143, 89), (143, 90), (143, 91), (143, 92), (143, 93), (143, 94), (143, 95), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 107), (143, 131), (143, 132), (144, 67), (144, 73), (144, 74), (144, 75), (144, 87), (144, 88), (144, 89), (144, 90), (144, 91), (144, 92), (144, 93), (144, 94), (144, 95), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 107), (144, 131), (144, 132), (145, 69), (145, 71), (145, 72), (145, 88), (145, 90), (145, 91), (145, 92), (145, 93), (145, 94), (145, 95), (145, 96), (145, 97), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 108), (145, 131), (145, 132), (146, 88),
(146, 90), (146, 91), (146, 92), (146, 93), (146, 94), (146, 95), (146, 96), (146, 97), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 109), (146, 131), (146, 132), (147, 88), (147, 90), (147, 91), (147, 92), (147, 93), (147, 94), (147, 95), (147, 96), (147, 97), (147, 98), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 110), (147, 131), (147, 132), (148, 89), (148, 91), (148, 92), (148, 93), (148, 94), (148, 95), (148, 96), (148, 97), (148, 98), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 111), (148, 131), (148, 132), (149, 90), (149, 92), (149, 93), (149, 94), (149, 95), (149, 96), (149, 97),
(149, 98), (149, 99), (149, 100), (149, 101), (149, 102), (149, 103), (149, 104), (149, 105), (149, 106), (149, 107), (149, 108), (149, 109), (149, 112), (149, 131), (149, 132), (150, 90), (150, 92), (150, 93), (150, 94), (150, 95), (150, 96), (150, 97), (150, 98), (150, 99), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (150, 111), (150, 114), (150, 115), (150, 132), (151, 90), (151, 92), (151, 93), (151, 96), (151, 97), (151, 98), (151, 99), (151, 100), (151, 101), (151, 102), (151, 103), (151, 104), (151, 105), (151, 106), (151, 107), (151, 108), (151, 109), (151, 110), (151, 111), (151, 112), (151, 113), (151, 116), (151, 118), (151, 132), (151, 144), (152, 89), (152, 91), (152, 92), (152, 95), (152, 98), (152, 99), (152, 100), (152, 101),
(152, 102), (152, 103), (152, 104), (152, 105), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 112), (152, 113), (152, 114), (152, 115), (152, 119), (152, 121), (152, 132), (152, 143), (152, 144), (153, 89), (153, 91), (153, 93), (153, 96), (153, 98), (153, 99), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 106), (153, 107), (153, 108), (153, 109), (153, 110), (153, 111), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 122), (153, 124), (153, 133), (153, 143), (154, 88), (154, 90), (154, 92), (154, 98), (154, 100), (154, 101), (154, 102), (154, 103), (154, 104), (154, 105), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119),
(154, 120), (154, 121), (154, 125), (154, 133), (154, 142), (154, 143), (155, 88), (155, 91), (155, 98), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 132), (155, 133), (155, 142), (155, 143), (156, 87), (156, 90), (156, 99), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 128), (156, 133), (156, 142), (157, 86), (157, 89), (157, 100),
(157, 102), (157, 103), (157, 104), (157, 105), (157, 106), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 129), (157, 130), (157, 133), (157, 141), (157, 142), (158, 85), (158, 88), (158, 100), (158, 102), (158, 103), (158, 104), (158, 105), (158, 106), (158, 107), (158, 108), (158, 109), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 132), (158, 133), (158, 135), (158, 140), (158, 142), (159, 84), (159, 86), (159, 99), (159, 100), (159, 102), (159, 103), (159, 104),
(159, 105), (159, 106), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 133), (159, 139), (159, 142), (160, 83), (160, 85), (160, 99), (160, 101), (160, 102), (160, 103), (160, 104), (160, 105), (160, 106), (160, 107), (160, 108), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 118), (160, 119), (160, 120), (160, 121), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 132), (160, 133), (160, 134), (160, 135), (160, 137), (160, 140), (160, 142), (161, 99), (161, 101), (161, 102), (161, 103), (161, 104),
(161, 105), (161, 106), (161, 107), (161, 108), (161, 109), (161, 110), (161, 111), (161, 112), (161, 113), (161, 116), (161, 122), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 132), (161, 133), (161, 134), (161, 135), (161, 136), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (162, 99), (162, 101), (162, 102), (162, 103), (162, 104), (162, 105), (162, 106), (162, 107), (162, 108), (162, 109), (162, 110), (162, 111), (162, 112), (162, 114), (162, 118), (162, 120), (162, 124), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 131), (162, 132), (162, 133), (162, 134), (162, 135), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (163, 98), (163, 100), (163, 101), (163, 102), (163, 103), (163, 104), (163, 105), (163, 106), (163, 107), (163, 108), (163, 109),
(163, 110), (163, 111), (163, 113), (163, 125), (163, 127), (163, 128), (163, 129), (163, 130), (163, 131), (163, 132), (163, 133), (163, 134), (163, 135), (163, 136), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 143), (164, 98), (164, 100), (164, 101), (164, 102), (164, 103), (164, 104), (164, 105), (164, 106), (164, 107), (164, 108), (164, 109), (164, 110), (164, 112), (164, 126), (164, 128), (164, 129), (164, 130), (164, 131), (164, 132), (164, 133), (164, 134), (164, 135), (164, 136), (164, 137), (164, 138), (164, 139), (164, 140), (164, 142), (165, 96), (165, 98), (165, 99), (165, 100), (165, 101), (165, 102), (165, 103), (165, 104), (165, 107), (165, 108), (165, 109), (165, 110), (165, 111), (165, 112), (165, 126), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 133), (165, 134), (165, 135), (165, 136),
(165, 137), (165, 138), (165, 139), (165, 140), (165, 142), (166, 92), (166, 93), (166, 94), (166, 95), (166, 98), (166, 99), (166, 100), (166, 101), (166, 102), (166, 105), (166, 107), (166, 108), (166, 109), (166, 111), (166, 126), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 133), (166, 134), (166, 135), (166, 136), (166, 137), (166, 138), (166, 139), (166, 140), (166, 142), (167, 88), (167, 89), (167, 90), (167, 96), (167, 97), (167, 98), (167, 99), (167, 100), (167, 101), (167, 102), (167, 103), (167, 104), (167, 107), (167, 108), (167, 109), (167, 111), (167, 127), (167, 129), (167, 130), (167, 131), (167, 132), (167, 133), (167, 134), (167, 135), (167, 136), (167, 137), (167, 138), (167, 139), (167, 140), (167, 142), (168, 85), (168, 90), (168, 91), (168, 92), (168, 93), (168, 96), (168, 97), (168, 98),
(168, 99), (168, 100), (168, 102), (168, 107), (168, 109), (168, 111), (168, 127), (168, 129), (168, 130), (168, 131), (168, 132), (168, 133), (168, 134), (168, 138), (168, 139), (168, 140), (168, 141), (169, 84), (169, 86), (169, 87), (169, 88), (169, 94), (169, 95), (169, 97), (169, 98), (169, 99), (169, 100), (169, 102), (169, 108), (169, 111), (169, 127), (169, 129), (169, 130), (169, 131), (169, 132), (169, 133), (169, 136), (169, 137), (169, 140), (169, 142), (170, 96), (170, 98), (170, 99), (170, 100), (170, 102), (170, 108), (170, 111), (170, 127), (170, 129), (170, 130), (170, 131), (170, 132), (170, 134), (170, 138), (170, 141), (171, 97), (171, 99), (171, 100), (171, 102), (171, 109), (171, 111), (171, 127), (171, 129), (171, 130), (171, 131), (171, 133), (171, 140), (171, 141), (172, 97), (172, 99), (172, 100), (172, 101),
(172, 103), (172, 109), (172, 112), (172, 127), (172, 129), (172, 130), (172, 131), (172, 133), (173, 97), (173, 99), (173, 100), (173, 101), (173, 103), (173, 110), (173, 112), (173, 127), (173, 129), (173, 130), (173, 131), (173, 133), (173, 141), (174, 96), (174, 101), (174, 103), (174, 110), (174, 112), (174, 127), (174, 133), (175, 95), (175, 98), (175, 99), (175, 100), (175, 104), (175, 110), (175, 112), (175, 127), (175, 129), (175, 130), (175, 133), (175, 142), (176, 97), (176, 101), (176, 106), (176, 110), (176, 112), (176, 127), (176, 128), (176, 132), (176, 133), (176, 143), (177, 94), (177, 95), (177, 107), (177, 108), (177, 110), (177, 112), (177, 126), (177, 128), (177, 132), (177, 133), (177, 143), (178, 104), (178, 106), (178, 107), (178, 108), (178, 109), (178, 112), (178, 126), (178, 128), (178, 133), (178, 134), (178, 144),
(179, 105), (179, 110), (179, 112), (179, 125), (179, 128), (179, 133), (179, 134), (179, 144), (180, 112), (180, 113), (180, 125), (180, 128), (180, 134), (181, 113), (181, 128), (181, 134), (182, 114), (182, 128), (182, 134), (183, 115), (183, 134), (184, 134), )
coordinates_E1E1E1 = ((62, 122),
(63, 123), (64, 122), (64, 123), (64, 140), (65, 122), (65, 123), (65, 140), (65, 141), (66, 122), (66, 123), (66, 140), (66, 142), (67, 97), (67, 122), (67, 123), (67, 130), (67, 140), (67, 144), (68, 96), (68, 97), (68, 122), (68, 130), (68, 140), (68, 142), (68, 144), (69, 96), (69, 97), (69, 122), (69, 130), (69, 131), (69, 139), (69, 141), (69, 143), (70, 95), (70, 97), (70, 122), (70, 130), (70, 131), (70, 139), (70, 142), (71, 91), (71, 92), (71, 93), (71, 97), (71, 130), (71, 132), (71, 138), (71, 141), (72, 84), (72, 86), (72, 87), (72, 88), (72, 89), (72, 90), (72, 95), (72, 97), (72, 121), (72, 130), (72, 133), (72, 137), (72, 139), (72, 141), (73, 82), (73, 91), (73, 92), (73, 93), (73, 94), (73, 95), (73, 96), (73, 98), (73, 121), (73, 130),
(73, 132), (73, 134), (73, 135), (73, 138), (73, 139), (73, 141), (74, 82), (74, 84), (74, 85), (74, 86), (74, 87), (74, 88), (74, 91), (74, 92), (74, 93), (74, 94), (74, 95), (74, 96), (74, 97), (74, 99), (74, 117), (74, 119), (74, 121), (74, 130), (74, 132), (74, 133), (74, 137), (74, 138), (74, 139), (74, 141), (75, 89), (75, 93), (75, 94), (75, 95), (75, 96), (75, 97), (75, 117), (75, 121), (75, 130), (75, 132), (75, 133), (75, 134), (75, 135), (75, 136), (75, 137), (75, 138), (75, 139), (75, 141), (76, 91), (76, 94), (76, 95), (76, 96), (76, 97), (76, 98), (76, 101), (76, 105), (76, 106), (76, 107), (76, 117), (76, 119), (76, 121), (76, 130), (76, 132), (76, 133), (76, 134), (76, 135), (76, 136), (76, 137), (76, 138), (76, 139), (76, 141), (77, 93),
(77, 96), (77, 97), (77, 98), (77, 99), (77, 102), (77, 103), (77, 104), (77, 106), (77, 117), (77, 119), (77, 121), (77, 129), (77, 131), (77, 132), (77, 133), (77, 134), (77, 135), (77, 136), (77, 137), (77, 138), (77, 139), (77, 140), (77, 141), (77, 143), (78, 94), (78, 97), (78, 98), (78, 99), (78, 100), (78, 101), (78, 106), (78, 117), (78, 119), (78, 120), (78, 122), (78, 129), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 139), (78, 140), (78, 141), (78, 143), (79, 96), (79, 99), (79, 100), (79, 101), (79, 102), (79, 103), (79, 104), (79, 106), (79, 117), (79, 119), (79, 120), (79, 121), (79, 123), (79, 128), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139),
(79, 140), (79, 141), (79, 143), (80, 97), (80, 99), (80, 100), (80, 101), (80, 102), (80, 103), (80, 104), (80, 106), (80, 117), (80, 119), (80, 120), (80, 121), (80, 122), (80, 124), (80, 127), (80, 129), (80, 130), (80, 131), (80, 132), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 141), (80, 143), (81, 87), (81, 98), (81, 99), (81, 100), (81, 101), (81, 102), (81, 103), (81, 104), (81, 105), (81, 107), (81, 117), (81, 119), (81, 120), (81, 121), (81, 122), (81, 123), (81, 125), (81, 128), (81, 129), (81, 130), (81, 131), (81, 132), (81, 133), (81, 134), (81, 135), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 143), (82, 99), (82, 101), (82, 102), (82, 103), (82, 104), (82, 105), (82, 106), (82, 108),
(82, 117), (82, 119), (82, 120), (82, 121), (82, 122), (82, 123), (82, 124), (82, 127), (82, 128), (82, 129), (82, 130), (82, 131), (82, 132), (82, 133), (82, 134), (82, 135), (82, 136), (82, 137), (82, 138), (82, 139), (82, 140), (82, 141), (82, 143), (83, 99), (83, 100), (83, 101), (83, 102), (83, 103), (83, 104), (83, 105), (83, 106), (83, 107), (83, 109), (83, 117), (83, 119), (83, 120), (83, 121), (83, 122), (83, 123), (83, 124), (83, 125), (83, 126), (83, 127), (83, 128), (83, 129), (83, 130), (83, 131), (83, 132), (83, 133), (83, 134), (83, 135), (83, 136), (83, 137), (83, 138), (83, 139), (83, 140), (83, 141), (83, 143), (84, 100), (84, 102), (84, 103), (84, 104), (84, 105), (84, 106), (84, 107), (84, 108), (84, 110), (84, 116), (84, 118), (84, 119), (84, 120), (84, 121),
(84, 122), (84, 123), (84, 124), (84, 125), (84, 126), (84, 127), (84, 128), (84, 129), (84, 130), (84, 131), (84, 132), (84, 133), (84, 134), (84, 135), (84, 136), (84, 137), (84, 138), (84, 139), (84, 140), (84, 142), (85, 99), (85, 101), (85, 102), (85, 103), (85, 104), (85, 105), (85, 106), (85, 107), (85, 108), (85, 109), (85, 112), (85, 115), (85, 116), (85, 117), (85, 118), (85, 119), (85, 120), (85, 121), (85, 122), (85, 123), (85, 124), (85, 125), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 133), (85, 134), (85, 135), (85, 136), (85, 140), (85, 142), (86, 95), (86, 99), (86, 101), (86, 102), (86, 103), (86, 104), (86, 105), (86, 106), (86, 107), (86, 108), (86, 109), (86, 110), (86, 113), (86, 114), (86, 116), (86, 117), (86, 118),
(86, 119), (86, 120), (86, 121), (86, 122), (86, 123), (86, 124), (86, 125), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 135), (86, 139), (86, 141), (86, 143), (87, 95), (87, 99), (87, 100), (87, 101), (87, 102), (87, 103), (87, 104), (87, 105), (87, 106), (87, 107), (87, 108), (87, 109), (87, 110), (87, 111), (87, 112), (87, 115), (87, 116), (87, 117), (87, 118), (87, 119), (87, 120), (87, 121), (87, 122), (87, 123), (87, 124), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 130), (87, 131), (87, 132), (87, 133), (87, 134), (87, 136), (87, 140), (87, 142), (88, 97), (88, 100), (88, 101), (88, 102), (88, 103), (88, 104), (88, 105), (88, 106), (88, 107), (88, 108), (88, 109), (88, 110), (88, 111), (88, 112),
(88, 113), (88, 114), (88, 115), (88, 116), (88, 117), (88, 118), (88, 119), (88, 120), (88, 121), (88, 122), (88, 123), (88, 124), (88, 125), (88, 126), (88, 127), (88, 128), (88, 129), (88, 132), (88, 133), (88, 135), (88, 141), (88, 143), (88, 146), (89, 100), (89, 102), (89, 103), (89, 104), (89, 105), (89, 106), (89, 107), (89, 108), (89, 109), (89, 110), (89, 111), (89, 112), (89, 113), (89, 114), (89, 115), (89, 116), (89, 117), (89, 118), (89, 119), (89, 120), (89, 121), (89, 122), (89, 123), (89, 124), (89, 125), (89, 126), (89, 127), (89, 130), (89, 131), (89, 134), (89, 142), (89, 144), (89, 146), (90, 100), (90, 102), (90, 103), (90, 104), (90, 105), (90, 106), (90, 107), (90, 108), (90, 109), (90, 110), (90, 111), (90, 112), (90, 113), (90, 114), (90, 115), (90, 116),
(90, 117), (90, 118), (90, 119), (90, 120), (90, 121), (90, 122), (90, 123), (90, 124), (90, 125), (90, 126), (90, 129), (90, 132), (90, 134), (90, 143), (90, 146), (91, 100), (91, 102), (91, 103), (91, 104), (91, 105), (91, 106), (91, 107), (91, 108), (91, 109), (91, 110), (91, 111), (91, 112), (91, 113), (91, 114), (91, 115), (91, 116), (91, 117), (91, 118), (91, 119), (91, 120), (91, 121), (91, 122), (91, 123), (91, 124), (91, 125), (91, 127), (91, 133), (91, 143), (91, 145), (92, 100), (92, 102), (92, 103), (92, 104), (92, 105), (92, 106), (92, 107), (92, 108), (92, 109), (92, 110), (92, 111), (92, 112), (92, 113), (92, 114), (92, 115), (92, 116), (92, 117), (92, 118), (92, 119), (92, 120), (92, 121), (92, 122), (92, 123), (92, 126), (92, 133), (92, 143), (92, 145), (93, 99),
(93, 101), (93, 102), (93, 103), (93, 104), (93, 105), (93, 106), (93, 107), (93, 108), (93, 109), (93, 110), (93, 111), (93, 112), (93, 113), (93, 114), (93, 115), (93, 116), (93, 117), (93, 118), (93, 119), (93, 125), (93, 133), (93, 144), (94, 98), (94, 100), (94, 101), (94, 102), (94, 103), (94, 104), (94, 105), (94, 106), (94, 107), (94, 108), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 115), (94, 116), (94, 120), (94, 121), (94, 123), (94, 133), (94, 144), (95, 100), (95, 101), (95, 102), (95, 103), (95, 104), (95, 105), (95, 106), (95, 107), (95, 108), (95, 109), (95, 110), (95, 111), (95, 112), (95, 113), (95, 114), (95, 117), (95, 118), (95, 119), (95, 133), (96, 70), (96, 96), (96, 99), (96, 100), (96, 101), (96, 102), (96, 103), (96, 104),
(96, 105), (96, 106), (96, 107), (96, 108), (96, 109), (96, 110), (96, 111), (96, 112), (96, 115), (96, 116), (96, 133), (96, 134), (97, 69), (97, 71), (97, 96), (97, 98), (97, 99), (97, 100), (97, 101), (97, 102), (97, 103), (97, 104), (97, 105), (97, 106), (97, 107), (97, 108), (97, 109), (97, 110), (97, 113), (97, 134), (98, 69), (98, 73), (98, 75), (98, 95), (98, 97), (98, 98), (98, 99), (98, 100), (98, 101), (98, 102), (98, 103), (98, 104), (98, 105), (98, 106), (98, 107), (98, 108), (98, 109), (98, 111), (98, 134), (98, 135), (99, 68), (99, 70), (99, 71), (99, 77), (99, 87), (99, 89), (99, 90), (99, 91), (99, 92), (99, 93), (99, 96), (99, 97), (99, 98), (99, 99), (99, 100), (99, 101), (99, 102), (99, 103), (99, 104), (99, 105), (99, 106), (99, 107),
(99, 108), (99, 110), (99, 134), (99, 135), (100, 68), (100, 70), (100, 71), (100, 72), (100, 73), (100, 74), (100, 75), (100, 80), (100, 86), (100, 95), (100, 96), (100, 97), (100, 98), (100, 99), (100, 100), (100, 101), (100, 102), (100, 103), (100, 104), (100, 105), (100, 106), (100, 107), (100, 109), (100, 135), (101, 68), (101, 70), (101, 71), (101, 72), (101, 73), (101, 74), (101, 75), (101, 76), (101, 77), (101, 81), (101, 82), (101, 85), (101, 88), (101, 89), (101, 90), (101, 91), (101, 92), (101, 93), (101, 94), (101, 95), (101, 96), (101, 97), (101, 98), (101, 99), (101, 100), (101, 101), (101, 102), (101, 103), (101, 104), (101, 105), (101, 106), (101, 108), (101, 134), (101, 135), (102, 68), (102, 70), (102, 71), (102, 72), (102, 73), (102, 74), (102, 75), (102, 76), (102, 77), (102, 78),
(102, 79), (102, 80), (102, 83), (102, 86), (102, 87), (102, 88), (102, 89), (102, 90), (102, 97), (102, 98), (102, 99), (102, 100), (102, 101), (102, 102), (102, 103), (102, 104), (102, 105), (102, 107), (102, 134), (103, 68), (103, 71), (103, 72), (103, 73), (103, 74), (103, 75), (103, 76), (103, 77), (103, 78), (103, 79), (103, 80), (103, 81), (103, 82), (103, 84), (103, 85), (103, 86), (103, 87), (103, 88), (103, 91), (103, 92), (103, 93), (103, 94), (103, 95), (103, 99), (103, 100), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 107), (103, 133), (103, 134), (104, 69), (104, 72), (104, 73), (104, 74), (104, 75), (104, 76), (104, 77), (104, 78), (104, 79), (104, 80), (104, 81), (104, 82), (104, 83), (104, 84), (104, 85), (104, 86), (104, 90), (104, 97), (104, 99), (104, 100),
(104, 101), (104, 102), (104, 103), (104, 104), (104, 105), (104, 107), (104, 133), (104, 134), (105, 71), (105, 73), (105, 74), (105, 75), (105, 76), (105, 77), (105, 78), (105, 79), (105, 80), (105, 81), (105, 82), (105, 83), (105, 84), (105, 85), (105, 88), (105, 99), (105, 101), (105, 102), (105, 103), (105, 104), (105, 105), (105, 107), (105, 108), (105, 132), (105, 133), (106, 72), (106, 74), (106, 75), (106, 76), (106, 77), (106, 78), (106, 79), (106, 80), (106, 81), (106, 82), (106, 83), (106, 86), (106, 100), (106, 102), (106, 103), (106, 104), (106, 105), (106, 106), (106, 108), (106, 123), (106, 131), (106, 133), (107, 73), (107, 75), (107, 76), (107, 77), (107, 78), (107, 79), (107, 80), (107, 81), (107, 82), (107, 85), (107, 100), (107, 102), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107),
(107, 109), (107, 123), (107, 131), (107, 132), (108, 73), (108, 75), (108, 76), (108, 77), (108, 78), (108, 79), (108, 80), (108, 81), (108, 83), (108, 99), (108, 101), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 109), (108, 122), (108, 123), (108, 130), (108, 132), (109, 72), (109, 74), (109, 75), (109, 76), (109, 77), (109, 78), (109, 79), (109, 80), (109, 82), (109, 98), (109, 100), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 108), (109, 110), (109, 121), (109, 123), (109, 131), (110, 69), (110, 70), (110, 73), (110, 74), (110, 75), (110, 76), (110, 77), (110, 78), (110, 79), (110, 81), (110, 97), (110, 99), (110, 100), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 106), (110, 107), (110, 108), (110, 109), (110, 111),
(110, 120), (110, 123), (111, 65), (111, 67), (111, 68), (111, 72), (111, 73), (111, 74), (111, 75), (111, 76), (111, 77), (111, 78), (111, 79), (111, 81), (111, 97), (111, 99), (111, 100), (111, 101), (111, 102), (111, 103), (111, 104), (111, 105), (111, 108), (111, 109), (111, 110), (111, 112), (111, 119), (111, 121), (111, 123), (112, 64), (112, 68), (112, 69), (112, 70), (112, 71), (112, 73), (112, 74), (112, 75), (112, 76), (112, 77), (112, 78), (112, 79), (112, 81), (112, 97), (112, 99), (112, 100), (112, 101), (112, 102), (112, 103), (112, 104), (112, 105), (112, 107), (112, 109), (112, 110), (112, 111), (112, 113), (112, 118), (112, 120), (112, 121), (112, 123), (113, 64), (113, 66), (113, 67), (113, 73), (113, 74), (113, 75), (113, 76), (113, 77), (113, 78), (113, 79), (113, 81), (113, 97), (113, 100),
(113, 101), (113, 102), (113, 103), (113, 105), (113, 109), (113, 110), (113, 111), (113, 112), (113, 115), (113, 116), (113, 117), (113, 119), (113, 120), (113, 121), (113, 123), (114, 73), (114, 75), (114, 76), (114, 77), (114, 78), (114, 79), (114, 80), (114, 82), (114, 97), (114, 99), (114, 100), (114, 102), (114, 103), (114, 105), (114, 109), (114, 111), (114, 112), (114, 113), (114, 118), (114, 119), (114, 120), (114, 121), (114, 123), (115, 73), (115, 75), (115, 76), (115, 77), (115, 78), (115, 79), (115, 80), (115, 82), (115, 101), (115, 103), (115, 105), (115, 109), (115, 111), (115, 112), (115, 113), (115, 114), (115, 115), (115, 116), (115, 117), (115, 118), (115, 119), (115, 120), (115, 121), (115, 123), (116, 73), (116, 75), (116, 76), (116, 77), (116, 78), (116, 79), (116, 80), (116, 81), (116, 83), (116, 102),
(116, 104), (116, 109), (116, 110), (116, 111), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 117), (116, 118), (116, 119), (116, 120), (116, 121), (116, 123), (117, 73), (117, 77), (117, 78), (117, 79), (117, 80), (117, 81), (117, 83), (117, 103), (117, 104), (117, 110), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 118), (117, 119), (117, 120), (117, 121), (117, 123), (118, 75), (118, 76), (118, 77), (118, 78), (118, 79), (118, 80), (118, 81), (118, 83), (118, 110), (118, 112), (118, 113), (118, 114), (118, 115), (118, 116), (118, 117), (118, 118), (118, 119), (118, 120), (118, 121), (118, 123), (119, 72), (119, 110), (119, 123), (120, 110), (120, 112), (120, 113), (120, 114), (120, 115), (120, 116), (120, 117), (120, 118), (120, 119), (120, 120), (120, 121), (120, 123), )
coordinates_CC3E4E = ()
coordinates_771286 = ((135, 113),
(135, 115), (136, 111), (136, 116), (137, 113), (137, 114), (137, 115), (137, 118), (138, 110), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 119), (139, 109), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 121), (140, 109), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 121), (141, 109), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 121), (142, 109), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 122), (143, 109), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (144, 109),
(144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 123), (145, 110), (145, 113), (145, 114), (145, 115), (145, 116), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 124), (146, 111), (146, 114), (146, 115), (146, 116), (146, 117), (146, 118), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (147, 112), (147, 113), (147, 117), (147, 118), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 125), (148, 114), (148, 116), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (149, 117), (149, 119), (149, 123), (149, 124), (149, 125), (149, 128), (150, 120), (150, 122), (150, 125), (150, 126), (150, 129), (151, 123), (151, 124), (151, 127), (151, 128), (151, 130), (152, 128), (152, 130),
(153, 127), (153, 130), (154, 128), (154, 130), (155, 130), )
coordinates_781286 = ((91, 131),
(92, 129), (92, 131), (93, 128), (93, 131), (94, 126), (94, 129), (95, 125), (95, 128), (96, 121), (96, 122), (96, 123), (96, 124), (97, 118), (97, 125), (98, 115), (98, 116), (98, 117), (98, 120), (98, 121), (98, 122), (98, 124), (99, 113), (99, 118), (99, 119), (99, 120), (99, 121), (99, 122), (99, 124), (100, 112), (100, 115), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 121), (100, 123), (101, 110), (101, 113), (101, 114), (101, 115), (101, 116), (101, 117), (101, 118), (101, 119), (101, 120), (101, 122), (102, 110), (102, 112), (102, 113), (102, 114), (102, 115), (102, 116), (102, 117), (102, 118), (102, 119), (102, 120), (102, 122), (103, 109), (103, 111), (103, 112), (103, 113), (103, 114), (103, 115), (103, 116), (103, 117), (103, 118), (103, 119), (103, 120), (103, 122), (104, 110), (104, 111),
(104, 112), (104, 113), (104, 114), (104, 115), (104, 116), (104, 117), (104, 118), (104, 119), (104, 120), (104, 122), (105, 110), (105, 112), (105, 113), (105, 114), (105, 115), (105, 116), (105, 117), (105, 118), (105, 119), (105, 120), (105, 121), (106, 110), (106, 112), (106, 113), (106, 114), (106, 115), (106, 116), (106, 117), (106, 118), (106, 119), (106, 121), (107, 111), (107, 113), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 120), (108, 112), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 120), (109, 113), (109, 115), (109, 116), (109, 119), (110, 114), (110, 118), (111, 115), (111, 116), )
coordinates_EE0000 = ((116, 71),
(117, 70), (118, 69), (118, 70), (119, 68), (119, 70), )
coordinates_CF2090 = ((163, 116),
(164, 114), (164, 117), (164, 118), (164, 119), (164, 121), (165, 114), (165, 116), (165, 121), (166, 113), (166, 115), (166, 116), (166, 117), (166, 118), (166, 119), (166, 121), (167, 113), (167, 115), (167, 116), (167, 117), (167, 118), (167, 119), (167, 121), (168, 113), (168, 115), (168, 116), (168, 117), (168, 118), (168, 119), (168, 121), (169, 113), (169, 115), (169, 116), (169, 117), (169, 118), (169, 119), (169, 121), (170, 114), (170, 116), (170, 117), (170, 118), (170, 119), (170, 121), (171, 114), (171, 116), (171, 117), (171, 118), (171, 119), (171, 121), (172, 114), (172, 116), (172, 117), (172, 120), (173, 114), (173, 116), (173, 119), (174, 114), (174, 117), (175, 114), (175, 116), (176, 114), (176, 116), (177, 114), (177, 115), (178, 114), (178, 115), (179, 114), (179, 115), (180, 108), (180, 115), (181, 109), (181, 110), (181, 116),
(182, 110), (182, 116), (183, 111), (183, 112), (183, 117), (184, 111), (184, 113), (184, 117), (185, 112), (185, 114), (185, 118), (186, 112), (186, 116), (186, 117), (186, 119), (187, 113), (187, 119), (188, 114), (188, 116), (188, 117), (188, 119), )
coordinates_EFE68C = ((165, 124),
(166, 124), (167, 124), (168, 124), (169, 123), (169, 125), (170, 123), (170, 125), (171, 123), (171, 125), (171, 135), (172, 122), (172, 125), (172, 135), (173, 122), (173, 125), (173, 135), (173, 136), (174, 120), (174, 123), (174, 125), (174, 135), (174, 136), (175, 119), (175, 122), (175, 123), (175, 125), (175, 135), (175, 137), (176, 118), (176, 120), (176, 121), (176, 122), (176, 124), (176, 135), (176, 137), (177, 118), (177, 120), (177, 121), (177, 122), (177, 124), (177, 130), (177, 136), (177, 138), (178, 117), (178, 119), (178, 120), (178, 121), (178, 123), (178, 130), (178, 131), (178, 136), (178, 138), (179, 117), (179, 119), (179, 120), (179, 121), (179, 123), (179, 130), (179, 131), (179, 136), (179, 138), (180, 118), (180, 120), (180, 122), (180, 130), (180, 131), (180, 136), (180, 138), (181, 118), (181, 120), (181, 121), (181, 122),
(181, 123), (181, 130), (181, 132), (181, 136), (181, 138), (182, 119), (182, 121), (182, 122), (182, 123), (182, 125), (182, 132), (182, 136), (182, 139), (183, 119), (183, 121), (183, 122), (183, 123), (183, 126), (183, 131), (183, 132), (183, 136), (183, 138), (184, 120), (184, 122), (184, 123), (184, 124), (184, 126), (184, 131), (184, 132), (184, 136), (184, 138), (185, 120), (185, 122), (185, 123), (185, 124), (185, 125), (185, 127), (185, 131), (185, 132), (185, 136), (185, 138), (186, 121), (186, 123), (186, 124), (186, 125), (186, 127), (186, 130), (186, 132), (186, 133), (186, 134), (186, 138), (187, 121), (187, 123), (187, 124), (187, 125), (187, 126), (187, 127), (187, 129), (187, 134), (187, 135), (187, 136), (187, 138), (188, 122), (188, 124), (188, 125), (188, 130), (188, 131), (188, 132), (188, 133), (188, 137), (189, 122), (189, 126),
(189, 127), (189, 128), (189, 129), (190, 122), (190, 124), (190, 125), )
coordinates_31CD32 = ((166, 144),
(167, 144), (167, 146), (168, 145), (168, 147), (169, 145), (169, 149), (170, 144), (170, 146), (170, 147), (170, 148), (170, 152), (171, 137), (171, 143), (171, 145), (171, 146), (171, 147), (171, 148), (171, 152), (172, 138), (172, 143), (172, 145), (172, 146), (172, 147), (172, 148), (172, 150), (173, 138), (173, 139), (173, 143), (173, 145), (173, 146), (173, 147), (173, 148), (174, 139), (174, 143), (174, 145), (174, 146), (174, 148), (175, 139), (175, 140), (175, 144), (175, 147), (176, 140), (176, 141), (176, 145), (176, 147), (177, 140), (177, 141), (177, 146), (177, 148), (178, 141), (178, 146), (178, 148), (179, 141), (179, 142), (179, 146), (179, 149), (180, 141), (180, 142), (180, 145), (180, 149), (181, 141), (181, 142), (181, 145), (181, 148), (182, 141), (182, 143), (182, 147), (183, 140), (183, 141), (183, 142), (183, 146), (184, 140),
(184, 142), (184, 143), (184, 145), (185, 140), (185, 142), (185, 144), (186, 141), (186, 143), (187, 142), )
coordinates_D02090 = ((57, 122),
(57, 124), (57, 126), (58, 120), (58, 125), (59, 119), (59, 125), (60, 122), (60, 125), (61, 120), (61, 124), (61, 125), (62, 125), (63, 125), (64, 125), (65, 125), (66, 125), (67, 125), (69, 124), (70, 124), (71, 124), (72, 123), (73, 123), (74, 123), (75, 123), (75, 124), (76, 123), (76, 124), (77, 124), (78, 124), )
coordinates_F0E68C = ((57, 128),
(57, 136), (58, 127), (58, 129), (58, 130), (58, 131), (58, 132), (58, 133), (58, 134), (58, 136), (59, 127), (59, 136), (60, 127), (60, 129), (60, 130), (60, 131), (60, 132), (60, 133), (60, 134), (60, 135), (60, 137), (61, 127), (61, 129), (61, 130), (61, 131), (61, 132), (61, 133), (61, 134), (61, 135), (61, 137), (62, 127), (62, 129), (62, 130), (62, 131), (62, 132), (62, 133), (62, 134), (62, 135), (62, 137), (63, 127), (63, 131), (63, 132), (63, 133), (63, 134), (63, 135), (63, 136), (63, 138), (64, 127), (64, 132), (64, 133), (64, 134), (64, 135), (64, 136), (64, 138), (65, 127), (65, 131), (65, 133), (65, 134), (65, 135), (65, 136), (65, 138), (66, 127), (66, 128), (66, 132), (66, 134), (66, 135), (66, 136), (66, 138), (67, 127), (67, 128), (67, 132), (67, 134), (67, 135),
(67, 136), (67, 138), (68, 127), (68, 133), (68, 135), (68, 137), (69, 126), (69, 127), (69, 133), (69, 135), (69, 137), (70, 126), (70, 128), (70, 134), (70, 136), (71, 126), (71, 128), (71, 134), (71, 135), (72, 126), (72, 128), (73, 126), (73, 128), (74, 126), (74, 128), (75, 126), (75, 128), (76, 126), (76, 128), (77, 126), (77, 127), (78, 126), )
coordinates_32CD32 = ((57, 138),
(58, 138), (58, 140), (59, 141), (60, 139), (60, 142), (61, 139), (61, 141), (61, 143), (62, 140), (62, 142), (62, 145), (62, 147), (63, 141), (63, 143), (64, 142), (64, 146), (64, 147), (65, 143), (65, 145), (65, 146), (65, 147), (65, 148), (65, 150), (66, 147), (66, 148), (66, 150), (67, 147), (67, 150), (68, 146), (68, 148), (68, 149), (68, 151), (69, 145), (69, 146), (69, 148), (69, 149), (69, 150), (69, 152), (70, 144), (70, 147), (70, 148), (70, 149), (70, 150), (70, 152), (71, 143), (71, 146), (71, 147), (71, 148), (71, 149), (71, 150), (71, 152), (72, 143), (72, 145), (72, 146), (72, 147), (72, 148), (72, 149), (72, 150), (72, 152), (73, 143), (73, 145), (73, 146), (73, 147), (73, 148), (73, 149), (73, 150), (73, 152), (74, 143), (74, 145), (74, 146), (74, 147), (74, 148),
(74, 149), (74, 150), (74, 152), (75, 143), (75, 145), (75, 146), (75, 147), (75, 148), (75, 149), (75, 150), (75, 152), (76, 146), (76, 147), (76, 148), (76, 149), (76, 150), (76, 151), (76, 153), (77, 145), (77, 147), (77, 148), (77, 149), (77, 150), (77, 151), (77, 153), (78, 145), (78, 147), (78, 148), (78, 149), (78, 150), (78, 151), (78, 152), (78, 153), (78, 154), (79, 145), (79, 147), (79, 148), (79, 149), (79, 150), (79, 151), (79, 152), (79, 154), (80, 145), (80, 147), (80, 148), (80, 149), (80, 150), (80, 151), (80, 152), (80, 154), (81, 145), (81, 154), (82, 145), (82, 147), (82, 148), (82, 149), (82, 150), (82, 151), (82, 153), (83, 145), )
coordinates_01FF7F = ((129, 62),
(130, 62), (130, 63), (131, 62), (131, 63), (132, 62), (132, 63), (133, 63), (134, 63), (135, 64), (136, 63), (136, 64), (137, 63), (137, 65), (137, 73), (137, 75), (138, 63), (138, 65), (138, 72), (139, 63), (139, 65), (139, 71), (139, 72), (139, 74), (139, 76), (140, 63), (140, 64), (140, 73), (141, 63), (141, 64), (142, 63), (142, 64), (143, 63), (143, 64), (143, 82), (143, 83), (144, 63), (144, 65), (144, 80), (145, 64), (145, 66), (145, 78), (146, 64), (146, 67), (146, 75), (146, 76), (147, 65), (147, 69), (147, 70), (147, 71), (147, 72), (147, 73), (147, 74), (148, 67), (148, 68), (148, 69), )
coordinates_00FF7F = ((81, 74),
(81, 76), (82, 73), (82, 77), (83, 72), (83, 74), (83, 75), (83, 76), (83, 78), (84, 72), (84, 74), (84, 75), (84, 76), (84, 77), (84, 79), (85, 71), (85, 73), (85, 74), (85, 75), (85, 78), (86, 71), (86, 73), (86, 74), (86, 75), (86, 76), (87, 71), (87, 73), (87, 75), (88, 70), (88, 72), (88, 73), (88, 75), (89, 70), (89, 72), (89, 73), (89, 74), (89, 75), (89, 77), (90, 70), (90, 72), (90, 73), (90, 74), (90, 75), (90, 78), (91, 70), (91, 72), (91, 73), (91, 74), (91, 75), (91, 76), (91, 77), (91, 80), (92, 69), (92, 71), (92, 72), (92, 73), (92, 74), (92, 75), (92, 76), (92, 77), (92, 78), (92, 81), (93, 68), (93, 72), (93, 73), (93, 74), (93, 75), (93, 76), (93, 77), (93, 78), (93, 79), (93, 80), (93, 83),
(94, 67), (94, 70), (94, 73), (94, 74), (94, 75), (94, 76), (94, 77), (94, 78), (94, 79), (94, 80), (94, 81), (94, 84), (94, 85), (95, 66), (95, 68), (95, 72), (95, 77), (95, 78), (95, 79), (95, 80), (95, 81), (95, 82), (95, 83), (95, 86), (95, 87), (96, 67), (96, 73), (96, 75), (96, 76), (96, 79), (96, 80), (96, 81), (96, 82), (96, 83), (96, 84), (96, 85), (96, 89), (96, 90), (96, 91), (96, 92), (96, 94), (97, 64), (97, 67), (97, 77), (97, 78), (97, 82), (97, 83), (97, 84), (97, 87), (97, 88), (97, 89), (97, 90), (97, 91), (97, 93), (98, 64), (98, 66), (98, 79), (98, 80), (98, 86), (99, 64), (99, 66), (99, 82), (99, 84), (99, 85), (100, 66), (101, 65), (101, 66), (102, 65), (102, 66), (102, 78), (102, 80), (103, 66),
(103, 77), (103, 80), (104, 66), (104, 78), (104, 79), (105, 66), (106, 66), (106, 69), (107, 65), (107, 67), (107, 71), (108, 63), (108, 68), (108, 70), (109, 61), (109, 65), (109, 66), (109, 67), (110, 61), (110, 63), (111, 62), (112, 62), (113, 62), (114, 62), (114, 69), (114, 71), (115, 62), (115, 65), (115, 66), (115, 67), (115, 69), (116, 62), (116, 64), (116, 68), (117, 62), (117, 67), (118, 63), (118, 65), (118, 66), (118, 67), (119, 66), )
coordinates_FF6347 = ((89, 137),
(90, 136), (90, 137), (91, 136), (91, 138), (92, 135), (92, 138), (93, 135), (93, 137), (93, 139), (94, 135), (94, 137), (94, 139), (95, 135), (95, 137), (95, 139), (96, 136), (96, 139), (97, 137), (97, 139), (98, 137), (98, 139), (99, 137), (99, 139), (99, 140), (100, 137), (100, 140), (101, 137), (101, 140), (102, 137), (102, 140), (103, 136), (103, 138), (103, 140), (104, 136), (104, 138), (104, 140), (105, 135), (105, 136), (105, 138), (105, 140), (106, 135), (106, 137), (106, 140), (107, 135), (107, 136), (107, 139), (108, 134), (108, 138), (109, 125), (109, 133), (109, 137), (110, 125), (110, 129), (110, 135), (110, 136), (111, 125), (111, 127), (111, 131), (112, 125), (112, 132), (113, 126), (113, 127), (113, 128), (113, 129), (113, 131), (114, 125), )
coordinates_DBD814 = ((137, 126),
(137, 127), (138, 126), (139, 126), (139, 128), (140, 126), (140, 128), (141, 126), (141, 128), (142, 126), (142, 129), (143, 126), (143, 129), (144, 126), (144, 129), (145, 126), (145, 129), (146, 127), (146, 129), (147, 128), (147, 129), (148, 129), )
coordinates_DCD814 = ((96, 129),
(96, 131), (97, 128), (97, 131), (98, 127), (98, 129), (98, 130), (98, 132), (99, 126), (99, 128), (99, 129), (99, 130), (99, 132), (100, 126), (100, 127), (100, 128), (100, 129), (100, 130), (100, 132), (101, 126), (101, 127), (101, 128), (101, 129), (101, 130), (101, 132), (102, 125), (102, 126), (102, 127), (102, 128), (102, 129), (102, 130), (102, 132), (103, 125), (103, 126), (103, 127), (103, 128), (103, 129), (103, 131), (104, 125), (104, 126), (104, 127), (104, 128), (104, 130), (105, 126), (105, 128), (105, 130), (106, 125), (106, 126), (106, 127), (106, 129), (107, 126), (107, 129), (108, 128), (109, 127), )
coordinates_2E8B57 = ((60, 117),
(61, 117), (61, 118), (62, 117), (62, 119), (63, 118), (63, 119), (64, 118), (65, 118), (65, 120), (66, 118), (66, 120), (67, 118), (67, 120), (68, 116), (68, 118), (68, 120), (69, 115), (69, 118), (69, 120), (70, 115), (70, 117), (70, 118), (70, 120), (71, 115), (71, 120), (72, 114), (72, 117), (72, 119), (73, 114), (74, 114), (74, 115), (75, 113), (75, 114), (76, 113), (76, 114), (77, 113), (77, 114), (78, 113), (79, 113), (79, 115), (80, 113), (80, 115), (81, 114), (81, 115), (82, 115), )
coordinates_CC5C5C = ((140, 141),
(141, 141), (141, 142), (142, 141), (142, 142), (143, 141), (143, 143), (144, 141), (144, 144), (145, 141), (145, 144), (146, 141), (146, 143), (146, 145), (147, 141), (147, 143), (147, 144), (147, 146), (148, 141), (148, 146), (149, 141), (149, 144), (149, 145), (149, 147), (150, 140), (150, 142), (150, 146), (150, 148), (151, 140), (151, 142), (151, 146), (151, 148), (152, 139), (152, 141), (152, 146), (152, 149), (153, 139), (153, 141), (153, 146), (153, 149), (154, 138), (154, 140), (154, 145), (154, 147), (154, 149), (155, 138), (155, 140), (155, 145), (155, 147), (155, 148), (156, 137), (156, 139), (156, 145), (156, 147), (156, 149), (157, 137), (157, 139), (157, 144), (157, 146), (157, 147), (157, 149), (158, 137), (158, 144), (158, 146), (158, 147), (158, 148), (159, 144), (159, 146), (159, 147), (159, 148), (159, 149), (159, 152), (159, 153),
(160, 144), (160, 146), (160, 147), (160, 148), (160, 149), (160, 150), (160, 151), (160, 153), (161, 145), (161, 147), (161, 148), (161, 149), (161, 150), (161, 151), (161, 152), (161, 154), (162, 146), (162, 148), (162, 149), (162, 150), (162, 151), (162, 152), (162, 154), (163, 145), (163, 147), (163, 148), (163, 149), (163, 150), (163, 151), (163, 152), (163, 154), (164, 144), (164, 147), (164, 148), (164, 149), (164, 150), (164, 151), (164, 153), (165, 146), (165, 149), (165, 150), (165, 151), (165, 153), (166, 148), (166, 151), (166, 153), (167, 149), (167, 153), (168, 151), (168, 152), )
coordinates_CD5C5C = ((84, 148),
(84, 149), (84, 150), (84, 151), (84, 153), (85, 145), (85, 147), (85, 153), (86, 146), (86, 148), (86, 149), (86, 150), (86, 151), (86, 152), (86, 154), (87, 147), (87, 149), (87, 150), (87, 151), (87, 153), (88, 138), (88, 139), (88, 148), (88, 150), (88, 152), (89, 139), (89, 140), (89, 149), (89, 151), (90, 141), (90, 148), (90, 150), (91, 140), (91, 141), (91, 148), (91, 150), (92, 141), (92, 147), (92, 149), (93, 141), (93, 147), (93, 148), (94, 141), (94, 142), (94, 146), (94, 148), (95, 141), (95, 142), (95, 147), (96, 142), (96, 144), (96, 146), (97, 142), (97, 145), (98, 142), (98, 144), (99, 142), (99, 144), (100, 142), (101, 142), (101, 143), (102, 142), (102, 143), (103, 142), )
coordinates_779FB0 = ((114, 163),
(114, 165), (115, 162), (115, 167), (116, 161), (116, 164), (116, 165), (116, 169), (117, 160), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 170), (117, 171), (118, 158), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 172), (118, 173), (118, 175), (119, 158), (119, 160), (119, 161), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 176), (120, 158), (120, 160), (120, 161), (120, 162), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 175), (120, 177), (121, 159), (121, 161), (121, 162), (121, 163), (121, 164), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170),
(121, 171), (121, 172), (121, 173), (121, 174), (121, 175), (121, 176), (121, 178), (122, 159), (122, 161), (122, 162), (122, 163), (122, 164), (122, 165), (122, 166), (122, 167), (122, 168), (122, 169), (122, 170), (122, 171), (122, 172), (122, 173), (122, 174), (122, 175), (122, 176), (122, 177), (122, 179), (123, 159), (123, 161), (123, 162), (123, 163), (123, 164), (123, 165), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (123, 175), (123, 176), (123, 177), (123, 178), (123, 180), (124, 159), (124, 161), (124, 162), (124, 163), (124, 164), (124, 165), (124, 166), (124, 167), (124, 168), (124, 169), (124, 170), (124, 171), (124, 172), (124, 173), (124, 174), (124, 175), (124, 176), (124, 177), (124, 178), (124, 180), (125, 158), (125, 160), (125, 161), (125, 162), (125, 163), (125, 164),
(125, 165), (125, 166), (125, 167), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 176), (125, 177), (125, 178), (125, 179), (125, 181), (126, 158), (126, 160), (126, 161), (126, 162), (126, 163), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 169), (126, 170), (126, 171), (126, 172), (126, 173), (126, 174), (126, 175), (126, 176), (126, 177), (126, 178), (126, 181), (127, 158), (127, 160), (127, 161), (127, 162), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 180), (128, 157), (128, 159), (128, 160), (128, 161), (128, 162), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173),
(128, 174), (128, 175), (128, 178), (129, 157), (129, 159), (129, 160), (129, 161), (129, 162), (129, 163), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 176), (130, 157), (130, 159), (130, 160), (130, 161), (130, 162), (130, 163), (130, 164), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 173), (130, 175), (131, 158), (131, 160), (131, 161), (131, 162), (131, 163), (131, 164), (131, 165), (131, 166), (131, 167), (131, 170), (131, 171), (132, 159), (132, 161), (132, 162), (132, 163), (132, 164), (132, 165), (132, 168), (133, 160), (133, 162), (133, 163), (133, 164), (133, 167), (134, 161), (134, 163), (134, 165), (135, 162), (135, 164), (136, 163), )
coordinates_FEA600 = ((158, 97),
(159, 97), (160, 96), (160, 97), (161, 95), (161, 97), (162, 96), (163, 90), (163, 92), (163, 93), (163, 96), (164, 88), (164, 91), (164, 92), (164, 93), (164, 94), (165, 87), (165, 89), (166, 85), (167, 80), (167, 82), (167, 83), (167, 84), (168, 78), (168, 82), (168, 105), (169, 78), (169, 80), (169, 82), (169, 104), (170, 78), (170, 80), (170, 81), (170, 82), (170, 90), (170, 92), (170, 104), (170, 106), (171, 78), (171, 80), (171, 84), (171, 85), (171, 86), (171, 87), (171, 88), (171, 89), (171, 95), (171, 105), (171, 106), (172, 81), (172, 82), (172, 90), (172, 91), (172, 92), (172, 93), (172, 95), (172, 105), (172, 107), (173, 79), (173, 80), (173, 84), (173, 87), (173, 88), (173, 89), (173, 90), (173, 91), (173, 92), (173, 94), (173, 105), (173, 107), (174, 85), (174, 87), (174, 88),
(174, 89), (174, 90), (174, 91), (174, 92), (174, 94), (174, 106), (174, 108), (175, 88), (175, 90), (175, 91), (175, 93), (175, 108), (176, 88), (176, 90), (176, 92), (177, 88), (177, 90), (177, 92), (177, 98), (177, 100), (178, 88), (178, 90), (178, 91), (178, 92), (178, 97), (178, 101), (179, 88), (179, 91), (179, 92), (179, 93), (179, 94), (179, 95), (179, 98), (179, 99), (179, 100), (179, 102), (180, 88), (180, 97), (180, 98), (180, 99), (180, 100), (180, 101), (180, 103), (180, 106), (181, 91), (181, 92), (181, 96), (181, 101), (181, 102), (181, 105), (181, 107), (182, 94), (182, 95), (182, 96), (182, 98), (182, 99), (182, 100), (182, 103), (182, 107), (183, 96), (183, 101), (183, 105), (183, 106), (183, 108), (184, 103), (184, 105), (184, 106), (184, 107), (184, 109), (185, 105), (185, 107), (185, 108),
(185, 110), )
coordinates_FEA501 = ((60, 107),
(60, 109), (60, 110), (60, 111), (60, 112), (60, 114), (61, 103), (61, 104), (61, 105), (61, 106), (61, 107), (61, 108), (61, 109), (61, 110), (61, 113), (61, 115), (62, 96), (62, 98), (62, 99), (62, 100), (62, 101), (62, 102), (62, 107), (62, 108), (62, 109), (62, 110), (62, 111), (62, 112), (62, 115), (63, 95), (63, 103), (63, 104), (63, 105), (63, 106), (63, 107), (63, 108), (63, 110), (63, 113), (63, 115), (64, 93), (64, 99), (64, 100), (64, 101), (64, 102), (64, 103), (64, 104), (64, 105), (64, 106), (64, 107), (64, 108), (64, 110), (64, 114), (64, 116), (65, 91), (65, 92), (65, 97), (65, 98), (65, 99), (65, 100), (65, 101), (65, 102), (65, 103), (65, 104), (65, 105), (65, 106), (65, 107), (65, 108), (65, 110), (65, 115), (65, 116), (66, 87), (66, 89), (66, 90),
(66, 93), (66, 95), (66, 99), (66, 101), (66, 102), (66, 103), (66, 104), (66, 105), (66, 106), (66, 107), (66, 108), (66, 110), (66, 115), (66, 116), (67, 86), (67, 91), (67, 92), (67, 93), (67, 94), (67, 99), (67, 101), (67, 102), (67, 103), (67, 104), (67, 105), (67, 106), (67, 107), (67, 109), (68, 82), (68, 84), (68, 87), (68, 94), (68, 99), (68, 101), (68, 102), (68, 103), (68, 104), (68, 105), (68, 106), (68, 107), (68, 109), (69, 81), (69, 88), (69, 89), (69, 90), (69, 91), (69, 93), (69, 99), (69, 101), (69, 102), (69, 103), (69, 104), (69, 105), (69, 106), (69, 107), (69, 109), (70, 80), (70, 83), (70, 84), (70, 85), (70, 86), (70, 87), (70, 99), (70, 101), (70, 102), (70, 103), (70, 104), (70, 105), (70, 106), (70, 108), (71, 79), (71, 82),
(71, 99), (71, 101), (71, 102), (71, 103), (71, 104), (71, 105), (71, 106), (71, 108), (72, 78), (72, 80), (72, 100), (72, 102), (72, 103), (72, 104), (72, 105), (72, 107), (72, 108), (73, 77), (73, 80), (73, 100), (73, 107), (74, 76), (74, 79), (74, 101), (74, 103), (74, 104), (74, 105), (74, 107), (75, 76), (75, 78), (75, 80), (76, 77), (76, 79), (76, 80), (76, 81), (76, 82), (76, 83), (76, 84), (76, 85), (76, 87), (77, 77), (77, 79), (77, 80), (77, 89), (78, 77), (78, 79), (78, 80), (78, 81), (78, 82), (78, 83), (78, 84), (78, 91), (79, 77), (79, 79), (79, 80), (79, 81), (79, 82), (79, 83), (79, 84), (79, 86), (79, 87), (79, 93), (80, 77), (80, 80), (80, 81), (80, 82), (80, 84), (80, 88), (80, 91), (80, 94), (81, 78), (81, 81),
(81, 82), (81, 84), (81, 90), (81, 92), (81, 93), (81, 96), (82, 79), (82, 84), (82, 86), (82, 91), (82, 93), (82, 94), (82, 97), (83, 80), (83, 82), (83, 83), (83, 87), (83, 88), (83, 92), (83, 93), (83, 97), (84, 85), (84, 86), (84, 90), (84, 91), (84, 92), (84, 93), (84, 95), (84, 97), (85, 87), (85, 93), (85, 96), (85, 97), (86, 90), (86, 91), (86, 93), (86, 97), )
coordinates_D2B48C = ((64, 112),
(65, 112), (66, 112), (66, 113), (67, 112), (67, 114), (68, 111), (68, 113), (69, 111), (69, 113), (70, 111), (70, 113), (71, 110), (71, 112), (72, 110), (72, 112), (73, 110), (73, 112), (74, 109), (74, 111), (75, 109), (75, 111), (76, 109), (76, 111), (77, 109), (77, 111), (78, 108), (78, 110), (79, 108), (79, 110), (80, 109), (80, 111), (81, 110), (81, 111), (82, 111), (82, 112), (83, 112), (83, 113), (84, 113), )
coordinates_DCF8A4 = ((98, 155),
(98, 157), (99, 154), (99, 158), (100, 153), (100, 155), (100, 156), (100, 157), (100, 159), (101, 152), (101, 154), (101, 155), (101, 156), (101, 157), (101, 159), (102, 151), (102, 154), (102, 155), (102, 156), (102, 157), (102, 159), (103, 151), (103, 153), (103, 154), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (104, 150), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 160), (105, 150), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 160), (106, 150), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 160), (107, 150), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 160), (108, 150), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157),
(108, 158), (108, 160), (109, 150), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 160), (110, 150), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 160), (111, 152), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 161), (112, 153), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 162), (113, 153), (113, 154), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 162), (114, 154), (114, 156), (114, 157), (114, 158), (114, 161), (115, 153), (115, 155), (115, 156), (115, 159), (116, 152), (116, 154), (116, 155), (116, 156), (116, 158), (117, 148), (117, 150), (117, 151), (117, 152), (117, 153), (117, 154), (117, 156), (118, 147), )
coordinates_DBF8A4 = ((129, 149),
(132, 156), (132, 157), (133, 155), (133, 157), (134, 154), (134, 156), (134, 158), (135, 155), (135, 156), (135, 157), (135, 159), (136, 150), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 160), (137, 151), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 161), (138, 150), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 161), (139, 150), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 162), (140, 150), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 162), (141, 150), (141, 152), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 162), (142, 151), (142, 152),
(142, 153), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 161), (143, 151), (143, 153), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 161), (144, 152), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 159), (144, 161), (145, 152), (145, 154), (145, 155), (145, 156), (145, 157), (145, 158), (145, 160), (146, 153), (146, 155), (146, 156), (146, 157), (146, 158), (146, 160), (147, 156), (147, 157), (147, 159), (148, 154), (148, 157), (148, 159), (149, 155), (149, 159), (150, 156), (150, 158), (151, 157), )
coordinates_2ACCA4 = ((119, 148),
(119, 149), (119, 150), (119, 151), (119, 152), (119, 153), (119, 155), (120, 147), (120, 156), (121, 146), (121, 148), (121, 149), (121, 150), (121, 151), (121, 152), (121, 153), (121, 154), (121, 156), (122, 146), (122, 148), (122, 149), (122, 150), (122, 151), (122, 152), (122, 153), (122, 154), (122, 155), (122, 157), (123, 146), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 154), (123, 155), (123, 157), (124, 146), (124, 148), (124, 149), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 156), (125, 147), (125, 149), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 156), (126, 147), (126, 148), (126, 156), (127, 149), (127, 151), (127, 152), (127, 153), (127, 155), )
coordinates_87324A = ((105, 92),
(105, 95), (106, 90), (106, 94), (107, 88), (107, 92), (108, 86), (108, 87), (108, 90), (109, 85), (109, 88), (109, 90), (110, 84), (110, 86), (110, 87), (110, 89), (111, 83), (111, 85), (111, 86), (111, 87), (111, 89), (112, 83), (112, 85), (112, 86), (112, 87), (112, 89), (113, 84), (113, 86), (113, 87), (113, 89), (114, 84), (114, 86), (114, 87), (114, 89), (115, 85), (115, 87), (115, 89), (116, 85), (116, 87), (116, 89), (117, 86), (117, 89), (118, 86), (118, 88), (118, 89), (119, 85), (119, 86), (119, 88), (120, 75), (120, 76), (120, 77), (120, 78), (120, 79), (120, 80), (120, 81), (120, 82), (120, 83), (120, 84), (120, 88), (121, 68), (121, 70), (121, 71), (121, 72), (121, 73), (121, 74), (121, 75), (121, 77), (121, 78), (121, 79), (121, 80), (121, 81), (121, 82), (121, 83),
(121, 84), (121, 85), (121, 86), (121, 88), (122, 69), (122, 70), (122, 71), (122, 72), (122, 73), (122, 74), )
coordinates_60CC60 = ((82, 162),
(82, 163), (83, 161), (83, 164), (84, 160), (84, 162), (84, 164), (85, 159), (85, 161), (85, 162), (85, 163), (85, 165), (86, 160), (86, 161), (86, 162), (86, 163), (86, 165), (87, 155), (87, 159), (87, 160), (87, 161), (87, 162), (87, 163), (87, 165), (87, 170), (88, 157), (88, 158), (88, 159), (88, 160), (88, 161), (88, 162), (88, 163), (88, 164), (88, 165), (88, 166), (88, 169), (89, 154), (89, 156), (89, 157), (89, 158), (89, 159), (89, 160), (89, 161), (89, 162), (89, 163), (89, 164), (89, 165), (89, 167), (90, 153), (90, 155), (90, 156), (90, 157), (90, 158), (90, 159), (90, 160), (90, 161), (90, 162), (90, 163), (90, 164), (90, 165), (90, 167), (91, 152), (91, 154), (91, 155), (91, 156), (91, 157), (91, 158), (91, 159), (91, 160), (91, 161), (91, 162), (91, 163), (91, 164),
(91, 165), (91, 167), (91, 170), (92, 151), (92, 153), (92, 154), (92, 155), (92, 156), (92, 157), (92, 158), (92, 159), (92, 160), (92, 161), (92, 162), (92, 163), (92, 164), (92, 165), (92, 166), (92, 167), (92, 168), (92, 170), (93, 151), (93, 153), (93, 154), (93, 155), (93, 156), (93, 157), (93, 158), (93, 159), (93, 160), (93, 161), (93, 162), (93, 163), (93, 164), (93, 165), (93, 166), (93, 167), (93, 169), (94, 150), (94, 152), (94, 153), (94, 154), (94, 155), (94, 157), (94, 158), (94, 159), (94, 160), (94, 161), (94, 162), (94, 163), (94, 164), (94, 165), (94, 166), (94, 167), (94, 169), (95, 149), (95, 151), (95, 152), (95, 153), (95, 156), (95, 159), (95, 160), (95, 161), (95, 162), (95, 163), (95, 164), (95, 165), (95, 166), (95, 167), (95, 169), (96, 148), (96, 150),
(96, 151), (96, 152), (96, 155), (96, 157), (96, 160), (96, 161), (96, 162), (96, 163), (96, 164), (96, 165), (96, 166), (96, 167), (96, 169), (97, 148), (97, 150), (97, 151), (97, 153), (97, 159), (97, 161), (97, 162), (97, 163), (97, 164), (97, 165), (97, 166), (97, 167), (97, 168), (97, 170), (98, 147), (98, 149), (98, 150), (98, 152), (98, 160), (98, 162), (98, 163), (98, 164), (98, 165), (98, 166), (98, 167), (98, 168), (98, 169), (98, 171), (99, 146), (99, 148), (99, 149), (99, 150), (99, 152), (99, 160), (99, 162), (99, 163), (99, 164), (99, 165), (99, 166), (99, 167), (99, 168), (99, 169), (99, 171), (100, 146), (100, 148), (100, 149), (100, 151), (100, 161), (100, 163), (100, 164), (100, 165), (100, 166), (100, 167), (100, 168), (100, 169), (100, 170), (100, 172), (101, 145), (101, 147),
(101, 148), (101, 150), (101, 161), (101, 162), (101, 164), (101, 165), (101, 166), (101, 167), (101, 168), (101, 169), (101, 170), (101, 172), (102, 145), (102, 147), (102, 149), (102, 162), (102, 164), (102, 165), (102, 166), (102, 167), (102, 168), (102, 169), (102, 170), (102, 172), (103, 145), (103, 148), (103, 162), (103, 164), (103, 165), (103, 166), (103, 167), (103, 168), (103, 169), (103, 170), (103, 171), (104, 144), (104, 146), (104, 148), (104, 162), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 170), (105, 143), (105, 145), (105, 146), (105, 148), (105, 162), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 170), (106, 143), (106, 145), (106, 146), (106, 148), (106, 162), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 170), (107, 141), (107, 143), (107, 144), (107, 145), (107, 147),
(107, 162), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 171), (108, 140), (108, 143), (108, 144), (108, 145), (108, 147), (108, 162), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 172), (109, 139), (109, 141), (109, 142), (109, 143), (109, 144), (109, 145), (109, 147), (109, 162), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 173), (110, 138), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 145), (110, 146), (110, 148), (110, 163), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 174), (111, 137), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 145), (111, 146), (111, 147), (111, 149), (111, 164), (111, 167), (111, 168),
(111, 169), (111, 170), (111, 171), (111, 172), (112, 137), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (112, 148), (112, 150), (112, 164), (112, 166), (112, 169), (112, 170), (112, 171), (112, 172), (112, 174), (113, 136), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 146), (113, 147), (113, 148), (113, 149), (113, 151), (113, 167), (113, 171), (113, 173), (114, 137), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 146), (114, 147), (114, 151), (114, 169), (114, 172), (115, 135), (115, 138), (115, 139), (115, 140), (115, 141), (115, 142), (115, 143), (115, 144), (115, 145), (115, 148), (115, 150), (115, 151), (115, 172), (116, 136), (116, 137), (116, 140), (116, 141), (116, 142),
(116, 143), (116, 144), (116, 145), (117, 138), (117, 141), (117, 142), (117, 143), (117, 145), (118, 140), (118, 143), (118, 145), (119, 141), (119, 145), (120, 143), (121, 144), )
coordinates_5FCC60 = ((126, 144),
(127, 136), (127, 138), (127, 139), (127, 140), (127, 141), (127, 142), (127, 144), (128, 135), (128, 137), (128, 145), (129, 135), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 143), (129, 144), (129, 146), (129, 152), (129, 154), (129, 155), (130, 135), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 144), (130, 145), (130, 147), (130, 151), (130, 153), (130, 155), (131, 136), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 145), (131, 146), (131, 149), (131, 150), (131, 151), (131, 152), (131, 154), (132, 136), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 146), (132, 147), (132, 151), (132, 153), (132, 173), (132, 175), (133, 136), (133, 139), (133, 140), (133, 141), (133, 142),
(133, 143), (133, 144), (133, 145), (133, 146), (133, 149), (133, 152), (133, 170), (133, 173), (133, 175), (134, 138), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 147), (134, 150), (134, 151), (134, 168), (134, 173), (134, 175), (135, 139), (135, 142), (135, 143), (135, 144), (135, 145), (135, 147), (135, 167), (135, 170), (135, 173), (135, 174), (135, 176), (136, 140), (136, 143), (136, 144), (136, 145), (136, 146), (136, 148), (136, 166), (136, 168), (136, 169), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 177), (137, 142), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 164), (137, 167), (137, 168), (137, 169), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 178), (138, 142), (138, 144), (138, 145), (138, 146), (138, 148), (138, 166),
(138, 167), (138, 168), (138, 169), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 179), (139, 143), (139, 145), (139, 147), (139, 164), (139, 166), (139, 167), (139, 168), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 179), (140, 143), (140, 145), (140, 147), (140, 164), (140, 166), (140, 167), (140, 168), (140, 169), (140, 170), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 179), (141, 144), (141, 146), (141, 148), (141, 164), (141, 166), (141, 167), (141, 168), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 176), (141, 178), (142, 145), (142, 148), (142, 164), (142, 166), (142, 167), (142, 168), (142, 169), (142, 170), (142, 171), (142, 172), (142, 173), (142, 175), (143, 145),
(143, 147), (143, 149), (143, 163), (143, 165), (143, 166), (143, 167), (143, 168), (143, 169), (143, 170), (143, 171), (143, 172), (144, 146), (144, 149), (144, 163), (144, 165), (144, 166), (144, 167), (144, 168), (144, 169), (144, 170), (144, 171), (144, 173), (145, 147), (145, 150), (145, 163), (145, 165), (145, 166), (145, 167), (145, 168), (145, 169), (145, 170), (145, 172), (146, 147), (146, 150), (146, 162), (146, 164), (146, 165), (146, 166), (146, 167), (146, 168), (146, 169), (146, 170), (146, 172), (147, 148), (147, 151), (147, 162), (147, 164), (147, 165), (147, 166), (147, 167), (147, 168), (147, 169), (147, 170), (147, 172), (148, 149), (148, 152), (148, 161), (148, 163), (148, 164), (148, 165), (148, 166), (148, 167), (148, 168), (148, 169), (148, 170), (148, 172), (149, 149), (149, 151), (149, 153), (149, 161), (149, 163), (149, 164),
(149, 165), (149, 166), (149, 167), (149, 168), (149, 169), (149, 170), (149, 172), (150, 150), (150, 152), (150, 154), (150, 160), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 168), (150, 169), (150, 170), (150, 172), (151, 151), (151, 153), (151, 155), (151, 160), (151, 162), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 168), (151, 169), (151, 171), (152, 151), (152, 153), (152, 154), (152, 156), (152, 159), (152, 161), (152, 162), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 169), (152, 171), (153, 151), (153, 153), (153, 154), (153, 155), (153, 157), (153, 160), (153, 161), (153, 162), (153, 163), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 169), (153, 171), (154, 152), (154, 154), (154, 155), (154, 156), (154, 159), (154, 160), (154, 161),
(154, 162), (154, 163), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 171), (155, 152), (155, 153), (155, 154), (155, 155), (155, 156), (155, 157), (155, 158), (155, 159), (155, 160), (155, 161), (155, 162), (155, 163), (155, 164), (155, 165), (155, 166), (155, 167), (155, 168), (155, 170), (156, 153), (156, 155), (156, 156), (156, 157), (156, 158), (156, 159), (156, 160), (156, 161), (156, 162), (156, 163), (156, 164), (156, 165), (156, 166), (156, 167), (156, 169), (157, 153), (157, 155), (157, 156), (157, 157), (157, 158), (157, 159), (157, 160), (157, 161), (157, 162), (157, 163), (157, 164), (157, 165), (157, 166), (157, 168), (158, 154), (158, 156), (158, 157), (158, 158), (158, 159), (158, 160), (158, 161), (158, 162), (158, 163), (158, 164), (158, 165), (158, 166), (158, 168), (159, 155), (159, 157), (159, 158), (159, 161),
(159, 162), (159, 163), (159, 164), (159, 165), (159, 167), (160, 156), (160, 159), (160, 161), (160, 162), (160, 163), (160, 164), (160, 166), (161, 156), (161, 161), (161, 163), (161, 165), (162, 161), (162, 164), (163, 161), (163, 164), (164, 161), (164, 164), (165, 161), (165, 163), )
coordinates_F4DEB3 = ((144, 85),
(145, 83), (145, 85), (146, 80), (146, 82), (146, 85), (147, 78), (147, 82), (147, 83), (147, 85), (148, 76), (148, 80), (148, 81), (148, 82), (148, 83), (148, 84), (148, 86), (149, 72), (149, 73), (149, 74), (149, 78), (149, 79), (149, 80), (149, 81), (149, 82), (149, 83), (149, 84), (149, 85), (149, 87), (150, 69), (150, 71), (150, 75), (150, 76), (150, 77), (150, 78), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 84), (150, 85), (150, 86), (150, 88), (151, 69), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 79), (151, 80), (151, 82), (151, 83), (151, 84), (151, 85), (151, 87), (152, 68), (152, 70), (152, 71), (152, 72), (152, 73), (152, 74), (152, 75), (152, 76), (152, 77), (152, 78), (152, 79), (152, 81), (152, 83), (152, 84),
(152, 85), (152, 87), (153, 69), (153, 71), (153, 72), (153, 73), (153, 74), (153, 80), (153, 83), (153, 84), (153, 85), (153, 87), (154, 69), (154, 72), (154, 73), (154, 75), (154, 76), (154, 77), (154, 79), (154, 83), (154, 86), (155, 70), (155, 71), (155, 74), (155, 83), (155, 94), (155, 96), (156, 73), (156, 82), (156, 85), (156, 93), (156, 96), (157, 81), (157, 83), (157, 92), (157, 94), (157, 95), (158, 80), (158, 82), (158, 91), (158, 93), (158, 95), (159, 79), (159, 81), (159, 90), (159, 92), (159, 94), (160, 78), (160, 80), (160, 88), (160, 94), (161, 77), (161, 79), (161, 87), (161, 90), (161, 91), (161, 93), (162, 76), (162, 79), (162, 83), (162, 85), (162, 88), (163, 76), (163, 78), (163, 79), (163, 80), (163, 81), (163, 82), (163, 83), (163, 87), (164, 76), (164, 77),
(164, 78), (164, 85), (165, 76), (165, 79), (165, 80), (165, 81), (165, 82), (165, 83), (165, 84), (166, 77), (166, 78), )
coordinates_FF00FE = ((123, 125),
(124, 96), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 105), (124, 106), (124, 108), (125, 96), (125, 104), (125, 107), (125, 124), (126, 97), (126, 99), (126, 100), (126, 106), (126, 107), (127, 97), (127, 99), (127, 101), (127, 106), (127, 107), (127, 124), (128, 97), (128, 99), (128, 101), (128, 106), (128, 107), (128, 124), (129, 97), (129, 100), (129, 106), (130, 98), (130, 100), (130, 106), (130, 125), (130, 126), (131, 98), (131, 99), (131, 105), (131, 125), (131, 127), (131, 128), (131, 129), (132, 98), (132, 99), (132, 125), (132, 128), (132, 129), (132, 131), (133, 98), (133, 125), (133, 127), (133, 130), (133, 132), (134, 126), (134, 131), (134, 132), (135, 125), (135, 131), (135, 133), (136, 132), (136, 133), (137, 132), (137, 133), (138, 133), )
coordinates_FE00FF = ((106, 97),
(106, 98), (107, 97), (108, 94), (109, 92), (109, 95), (110, 92), (110, 95), (111, 92), (111, 95), (112, 92), (112, 95), (113, 92), (113, 95), (114, 92), (114, 95), (114, 107), (115, 92), (115, 95), (115, 107), (116, 92), (116, 94), (116, 95), (116, 96), (116, 97), (116, 107), (117, 91), (117, 93), (117, 94), (117, 95), (117, 98), (117, 99), (117, 101), (117, 106), (117, 107), (118, 91), (118, 93), (118, 94), (118, 95), (118, 96), (118, 97), (118, 106), (118, 107), (118, 108), (119, 90), (119, 92), (119, 93), (119, 94), (119, 95), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 103), (119, 104), (119, 106), (119, 108), (120, 90), (120, 94), (120, 95), (120, 96), (120, 108), (121, 90), (121, 92), (121, 93), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102),
(121, 103), (121, 104), (121, 105), (121, 106), (121, 108), (122, 95), (122, 109), )
coordinates_26408B = ((124, 87),
(124, 89), (124, 90), (124, 91), (124, 93), (124, 94), (125, 87), (125, 94), (126, 87), (126, 89), (126, 91), (126, 92), (126, 94), (127, 87), (127, 89), (127, 90), (127, 92), (127, 93), (127, 95), (128, 87), (128, 89), (128, 93), (128, 95), (129, 87), (129, 89), (129, 92), (129, 95), (130, 87), (130, 89), (130, 93), (130, 95), (131, 88), (131, 89), (131, 94), (131, 96), (132, 88), (132, 89), (132, 95), (132, 96), (133, 88), (133, 90), (133, 96), (134, 89), (134, 91), (135, 89), (135, 92), (136, 90), (137, 91), (137, 92), )
coordinates_798732 = ((124, 68),
(124, 70), (124, 71), (124, 75), (124, 79), (124, 81), (124, 82), (124, 84), (125, 65), (125, 73), (125, 77), (125, 80), (125, 85), (126, 68), (126, 70), (126, 75), (126, 78), (126, 83), (126, 85), (127, 70), (127, 84), (127, 85), (128, 69), (128, 70), (128, 84), (128, 85), (129, 69), (129, 84), (129, 85), (130, 70), (130, 71), (130, 84), (130, 85), (131, 84), (131, 85), (132, 84), (132, 86), (133, 84), (133, 86), (134, 84), (134, 86), (135, 85), (135, 87), (136, 86), (136, 87), (137, 88), (138, 90), )
coordinates_F5DEB3 = ((85, 81),
(85, 83), (86, 80), (86, 84), (86, 85), (87, 79), (87, 81), (87, 82), (87, 83), (87, 87), (87, 88), (88, 79), (88, 81), (88, 82), (88, 83), (88, 84), (88, 85), (88, 89), (88, 90), (88, 91), (88, 92), (89, 80), (89, 83), (89, 84), (89, 85), (89, 86), (89, 87), (89, 88), (89, 93), (89, 95), (90, 81), (90, 84), (90, 85), (90, 86), (90, 87), (90, 88), (90, 89), (90, 90), (90, 91), (90, 92), (90, 96), (90, 98), (91, 83), (91, 86), (91, 87), (91, 88), (91, 89), (91, 90), (91, 91), (91, 92), (91, 93), (91, 94), (91, 95), (91, 98), (92, 84), (92, 89), (92, 90), (92, 91), (92, 92), (92, 93), (92, 94), (92, 95), (92, 96), (92, 98), (93, 87), (93, 88), (93, 89), (93, 97), (94, 90), (94, 91), (94, 92), (94, 93), (94, 94),
(94, 96), )
coordinates_016400 = ((134, 135),
(135, 135), (136, 135), (136, 138), (137, 135), (137, 139), (138, 135), (138, 137), (138, 138), (138, 140), (139, 135), (139, 137), (139, 138), (139, 140), (140, 135), (140, 137), (140, 139), (141, 135), (141, 137), (141, 139), (142, 135), (142, 137), (142, 139), (143, 135), (143, 137), (143, 139), (144, 134), (144, 136), (144, 137), (144, 139), (145, 134), (145, 136), (145, 137), (145, 139), (146, 134), (146, 136), (146, 137), (146, 139), (147, 134), (147, 136), (147, 137), (147, 139), (148, 134), (148, 136), (148, 137), (148, 139), (149, 134), (149, 136), (149, 138), (150, 134), (150, 136), (150, 138), (151, 134), (151, 135), (151, 137), (152, 135), (152, 137), (153, 135), (153, 136), (154, 135), (154, 136), (155, 135), (156, 135), )
coordinates_B8EDC2 = ((121, 140),
(121, 142), (122, 137), (122, 143), (123, 137), (123, 140), (123, 141), (123, 144), (124, 144), (125, 137), (125, 139), (125, 140), (125, 141), (125, 142), )
|
coordinates_e0_e1_e1 = ((123, 110), (123, 112), (123, 113), (123, 114), (123, 115), (123, 116), (123, 117), (123, 118), (123, 119), (123, 120), (123, 122), (124, 110), (124, 122), (125, 110), (125, 112), (125, 113), (125, 114), (125, 115), (125, 116), (125, 117), (125, 118), (125, 119), (125, 120), (125, 122), (126, 109), (126, 111), (126, 112), (126, 113), (126, 114), (126, 115), (126, 116), (126, 117), (126, 118), (126, 119), (126, 120), (126, 122), (127, 66), (127, 72), (127, 80), (127, 82), (127, 104), (127, 109), (127, 111), (127, 112), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 119), (127, 120), (127, 122), (128, 65), (128, 67), (128, 72), (128, 75), (128, 76), (128, 77), (128, 78), (128, 79), (128, 82), (128, 103), (128, 104), (128, 109), (128, 111), (128, 112), (128, 113), (128, 114), (128, 115), (128, 116), (128, 117), (128, 118), (128, 119), (128, 120), (128, 122), (129, 65), (129, 67), (129, 73), (129, 76), (129, 80), (129, 82), (129, 102), (129, 109), (129, 111), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 117), (129, 118), (129, 119), (129, 120), (129, 122), (130, 65), (130, 68), (130, 73), (130, 75), (130, 76), (130, 77), (130, 78), (130, 79), (130, 80), (130, 82), (130, 91), (130, 102), (130, 103), (130, 108), (130, 110), (130, 111), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 117), (130, 118), (130, 119), (130, 120), (130, 122), (131, 65), (131, 68), (131, 73), (131, 75), (131, 76), (131, 77), (131, 78), (131, 79), (131, 81), (131, 91), (131, 92), (131, 103), (131, 108), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 118), (131, 119), (131, 120), (131, 122), (132, 65), (132, 67), (132, 69), (132, 72), (132, 73), (132, 74), (132, 75), (132, 76), (132, 77), (132, 78), (132, 79), (132, 81), (132, 92), (132, 101), (132, 103), (132, 104), (132, 107), (132, 109), (132, 110), (132, 111), (132, 117), (132, 118), (132, 119), (132, 120), (132, 122), (133, 66), (133, 68), (133, 71), (133, 73), (133, 74), (133, 75), (133, 76), (133, 77), (133, 78), (133, 79), (133, 81), (133, 93), (133, 101), (133, 103), (133, 104), (133, 105), (133, 106), (133, 108), (133, 109), (133, 110), (133, 113), (133, 114), (133, 115), (133, 118), (133, 119), (133, 120), (133, 122), (134, 66), (134, 68), (134, 69), (134, 72), (134, 77), (134, 78), (134, 79), (134, 80), (134, 82), (134, 95), (134, 100), (134, 102), (134, 103), (134, 104), (134, 107), (134, 108), (134, 109), (134, 111), (134, 117), (134, 120), (134, 122), (134, 128), (135, 66), (135, 68), (135, 69), (135, 70), (135, 73), (135, 74), (135, 75), (135, 76), (135, 78), (135, 79), (135, 80), (135, 81), (135, 83), (135, 94), (135, 96), (135, 97), (135, 98), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 110), (135, 118), (135, 121), (135, 122), (135, 128), (135, 129), (136, 67), (136, 69), (136, 72), (136, 77), (136, 79), (136, 80), (136, 81), (136, 82), (136, 84), (136, 95), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 109), (136, 120), (136, 123), (137, 67), (137, 70), (137, 78), (137, 80), (137, 81), (137, 82), (137, 85), (137, 95), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 108), (137, 121), (137, 123), (137, 129), (137, 130), (138, 67), (138, 69), (138, 79), (138, 81), (138, 82), (138, 83), (138, 84), (138, 86), (138, 94), (138, 96), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 122), (138, 124), (138, 130), (139, 67), (139, 69), (139, 79), (139, 81), (139, 82), (139, 83), (139, 84), (139, 85), (139, 88), (139, 93), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 107), (139, 123), (139, 124), (139, 130), (139, 132), (140, 67), (140, 70), (140, 78), (140, 80), (140, 85), (140, 86), (140, 89), (140, 90), (140, 91), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 107), (140, 123), (140, 124), (140, 132), (141, 67), (141, 69), (141, 71), (141, 76), (141, 82), (141, 83), (141, 84), (141, 87), (141, 88), (141, 93), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 107), (141, 124), (141, 131), (141, 133), (142, 66), (142, 68), (142, 69), (142, 70), (142, 72), (142, 73), (142, 74), (142, 75), (142, 80), (142, 86), (142, 88), (142, 89), (142, 90), (142, 91), (142, 92), (142, 93), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 131), (142, 133), (143, 67), (143, 69), (143, 70), (143, 71), (143, 78), (143, 87), (143, 89), (143, 90), (143, 91), (143, 92), (143, 93), (143, 94), (143, 95), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 107), (143, 131), (143, 132), (144, 67), (144, 73), (144, 74), (144, 75), (144, 87), (144, 88), (144, 89), (144, 90), (144, 91), (144, 92), (144, 93), (144, 94), (144, 95), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 107), (144, 131), (144, 132), (145, 69), (145, 71), (145, 72), (145, 88), (145, 90), (145, 91), (145, 92), (145, 93), (145, 94), (145, 95), (145, 96), (145, 97), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 108), (145, 131), (145, 132), (146, 88), (146, 90), (146, 91), (146, 92), (146, 93), (146, 94), (146, 95), (146, 96), (146, 97), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 109), (146, 131), (146, 132), (147, 88), (147, 90), (147, 91), (147, 92), (147, 93), (147, 94), (147, 95), (147, 96), (147, 97), (147, 98), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 110), (147, 131), (147, 132), (148, 89), (148, 91), (148, 92), (148, 93), (148, 94), (148, 95), (148, 96), (148, 97), (148, 98), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 111), (148, 131), (148, 132), (149, 90), (149, 92), (149, 93), (149, 94), (149, 95), (149, 96), (149, 97), (149, 98), (149, 99), (149, 100), (149, 101), (149, 102), (149, 103), (149, 104), (149, 105), (149, 106), (149, 107), (149, 108), (149, 109), (149, 112), (149, 131), (149, 132), (150, 90), (150, 92), (150, 93), (150, 94), (150, 95), (150, 96), (150, 97), (150, 98), (150, 99), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (150, 111), (150, 114), (150, 115), (150, 132), (151, 90), (151, 92), (151, 93), (151, 96), (151, 97), (151, 98), (151, 99), (151, 100), (151, 101), (151, 102), (151, 103), (151, 104), (151, 105), (151, 106), (151, 107), (151, 108), (151, 109), (151, 110), (151, 111), (151, 112), (151, 113), (151, 116), (151, 118), (151, 132), (151, 144), (152, 89), (152, 91), (152, 92), (152, 95), (152, 98), (152, 99), (152, 100), (152, 101), (152, 102), (152, 103), (152, 104), (152, 105), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 112), (152, 113), (152, 114), (152, 115), (152, 119), (152, 121), (152, 132), (152, 143), (152, 144), (153, 89), (153, 91), (153, 93), (153, 96), (153, 98), (153, 99), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 106), (153, 107), (153, 108), (153, 109), (153, 110), (153, 111), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 122), (153, 124), (153, 133), (153, 143), (154, 88), (154, 90), (154, 92), (154, 98), (154, 100), (154, 101), (154, 102), (154, 103), (154, 104), (154, 105), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 125), (154, 133), (154, 142), (154, 143), (155, 88), (155, 91), (155, 98), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 132), (155, 133), (155, 142), (155, 143), (156, 87), (156, 90), (156, 99), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 128), (156, 133), (156, 142), (157, 86), (157, 89), (157, 100), (157, 102), (157, 103), (157, 104), (157, 105), (157, 106), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 129), (157, 130), (157, 133), (157, 141), (157, 142), (158, 85), (158, 88), (158, 100), (158, 102), (158, 103), (158, 104), (158, 105), (158, 106), (158, 107), (158, 108), (158, 109), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 132), (158, 133), (158, 135), (158, 140), (158, 142), (159, 84), (159, 86), (159, 99), (159, 100), (159, 102), (159, 103), (159, 104), (159, 105), (159, 106), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 133), (159, 139), (159, 142), (160, 83), (160, 85), (160, 99), (160, 101), (160, 102), (160, 103), (160, 104), (160, 105), (160, 106), (160, 107), (160, 108), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 118), (160, 119), (160, 120), (160, 121), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 132), (160, 133), (160, 134), (160, 135), (160, 137), (160, 140), (160, 142), (161, 99), (161, 101), (161, 102), (161, 103), (161, 104), (161, 105), (161, 106), (161, 107), (161, 108), (161, 109), (161, 110), (161, 111), (161, 112), (161, 113), (161, 116), (161, 122), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 132), (161, 133), (161, 134), (161, 135), (161, 136), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (162, 99), (162, 101), (162, 102), (162, 103), (162, 104), (162, 105), (162, 106), (162, 107), (162, 108), (162, 109), (162, 110), (162, 111), (162, 112), (162, 114), (162, 118), (162, 120), (162, 124), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 131), (162, 132), (162, 133), (162, 134), (162, 135), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (163, 98), (163, 100), (163, 101), (163, 102), (163, 103), (163, 104), (163, 105), (163, 106), (163, 107), (163, 108), (163, 109), (163, 110), (163, 111), (163, 113), (163, 125), (163, 127), (163, 128), (163, 129), (163, 130), (163, 131), (163, 132), (163, 133), (163, 134), (163, 135), (163, 136), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 143), (164, 98), (164, 100), (164, 101), (164, 102), (164, 103), (164, 104), (164, 105), (164, 106), (164, 107), (164, 108), (164, 109), (164, 110), (164, 112), (164, 126), (164, 128), (164, 129), (164, 130), (164, 131), (164, 132), (164, 133), (164, 134), (164, 135), (164, 136), (164, 137), (164, 138), (164, 139), (164, 140), (164, 142), (165, 96), (165, 98), (165, 99), (165, 100), (165, 101), (165, 102), (165, 103), (165, 104), (165, 107), (165, 108), (165, 109), (165, 110), (165, 111), (165, 112), (165, 126), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 133), (165, 134), (165, 135), (165, 136), (165, 137), (165, 138), (165, 139), (165, 140), (165, 142), (166, 92), (166, 93), (166, 94), (166, 95), (166, 98), (166, 99), (166, 100), (166, 101), (166, 102), (166, 105), (166, 107), (166, 108), (166, 109), (166, 111), (166, 126), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 133), (166, 134), (166, 135), (166, 136), (166, 137), (166, 138), (166, 139), (166, 140), (166, 142), (167, 88), (167, 89), (167, 90), (167, 96), (167, 97), (167, 98), (167, 99), (167, 100), (167, 101), (167, 102), (167, 103), (167, 104), (167, 107), (167, 108), (167, 109), (167, 111), (167, 127), (167, 129), (167, 130), (167, 131), (167, 132), (167, 133), (167, 134), (167, 135), (167, 136), (167, 137), (167, 138), (167, 139), (167, 140), (167, 142), (168, 85), (168, 90), (168, 91), (168, 92), (168, 93), (168, 96), (168, 97), (168, 98), (168, 99), (168, 100), (168, 102), (168, 107), (168, 109), (168, 111), (168, 127), (168, 129), (168, 130), (168, 131), (168, 132), (168, 133), (168, 134), (168, 138), (168, 139), (168, 140), (168, 141), (169, 84), (169, 86), (169, 87), (169, 88), (169, 94), (169, 95), (169, 97), (169, 98), (169, 99), (169, 100), (169, 102), (169, 108), (169, 111), (169, 127), (169, 129), (169, 130), (169, 131), (169, 132), (169, 133), (169, 136), (169, 137), (169, 140), (169, 142), (170, 96), (170, 98), (170, 99), (170, 100), (170, 102), (170, 108), (170, 111), (170, 127), (170, 129), (170, 130), (170, 131), (170, 132), (170, 134), (170, 138), (170, 141), (171, 97), (171, 99), (171, 100), (171, 102), (171, 109), (171, 111), (171, 127), (171, 129), (171, 130), (171, 131), (171, 133), (171, 140), (171, 141), (172, 97), (172, 99), (172, 100), (172, 101), (172, 103), (172, 109), (172, 112), (172, 127), (172, 129), (172, 130), (172, 131), (172, 133), (173, 97), (173, 99), (173, 100), (173, 101), (173, 103), (173, 110), (173, 112), (173, 127), (173, 129), (173, 130), (173, 131), (173, 133), (173, 141), (174, 96), (174, 101), (174, 103), (174, 110), (174, 112), (174, 127), (174, 133), (175, 95), (175, 98), (175, 99), (175, 100), (175, 104), (175, 110), (175, 112), (175, 127), (175, 129), (175, 130), (175, 133), (175, 142), (176, 97), (176, 101), (176, 106), (176, 110), (176, 112), (176, 127), (176, 128), (176, 132), (176, 133), (176, 143), (177, 94), (177, 95), (177, 107), (177, 108), (177, 110), (177, 112), (177, 126), (177, 128), (177, 132), (177, 133), (177, 143), (178, 104), (178, 106), (178, 107), (178, 108), (178, 109), (178, 112), (178, 126), (178, 128), (178, 133), (178, 134), (178, 144), (179, 105), (179, 110), (179, 112), (179, 125), (179, 128), (179, 133), (179, 134), (179, 144), (180, 112), (180, 113), (180, 125), (180, 128), (180, 134), (181, 113), (181, 128), (181, 134), (182, 114), (182, 128), (182, 134), (183, 115), (183, 134), (184, 134))
coordinates_e1_e1_e1 = ((62, 122), (63, 123), (64, 122), (64, 123), (64, 140), (65, 122), (65, 123), (65, 140), (65, 141), (66, 122), (66, 123), (66, 140), (66, 142), (67, 97), (67, 122), (67, 123), (67, 130), (67, 140), (67, 144), (68, 96), (68, 97), (68, 122), (68, 130), (68, 140), (68, 142), (68, 144), (69, 96), (69, 97), (69, 122), (69, 130), (69, 131), (69, 139), (69, 141), (69, 143), (70, 95), (70, 97), (70, 122), (70, 130), (70, 131), (70, 139), (70, 142), (71, 91), (71, 92), (71, 93), (71, 97), (71, 130), (71, 132), (71, 138), (71, 141), (72, 84), (72, 86), (72, 87), (72, 88), (72, 89), (72, 90), (72, 95), (72, 97), (72, 121), (72, 130), (72, 133), (72, 137), (72, 139), (72, 141), (73, 82), (73, 91), (73, 92), (73, 93), (73, 94), (73, 95), (73, 96), (73, 98), (73, 121), (73, 130), (73, 132), (73, 134), (73, 135), (73, 138), (73, 139), (73, 141), (74, 82), (74, 84), (74, 85), (74, 86), (74, 87), (74, 88), (74, 91), (74, 92), (74, 93), (74, 94), (74, 95), (74, 96), (74, 97), (74, 99), (74, 117), (74, 119), (74, 121), (74, 130), (74, 132), (74, 133), (74, 137), (74, 138), (74, 139), (74, 141), (75, 89), (75, 93), (75, 94), (75, 95), (75, 96), (75, 97), (75, 117), (75, 121), (75, 130), (75, 132), (75, 133), (75, 134), (75, 135), (75, 136), (75, 137), (75, 138), (75, 139), (75, 141), (76, 91), (76, 94), (76, 95), (76, 96), (76, 97), (76, 98), (76, 101), (76, 105), (76, 106), (76, 107), (76, 117), (76, 119), (76, 121), (76, 130), (76, 132), (76, 133), (76, 134), (76, 135), (76, 136), (76, 137), (76, 138), (76, 139), (76, 141), (77, 93), (77, 96), (77, 97), (77, 98), (77, 99), (77, 102), (77, 103), (77, 104), (77, 106), (77, 117), (77, 119), (77, 121), (77, 129), (77, 131), (77, 132), (77, 133), (77, 134), (77, 135), (77, 136), (77, 137), (77, 138), (77, 139), (77, 140), (77, 141), (77, 143), (78, 94), (78, 97), (78, 98), (78, 99), (78, 100), (78, 101), (78, 106), (78, 117), (78, 119), (78, 120), (78, 122), (78, 129), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 139), (78, 140), (78, 141), (78, 143), (79, 96), (79, 99), (79, 100), (79, 101), (79, 102), (79, 103), (79, 104), (79, 106), (79, 117), (79, 119), (79, 120), (79, 121), (79, 123), (79, 128), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 140), (79, 141), (79, 143), (80, 97), (80, 99), (80, 100), (80, 101), (80, 102), (80, 103), (80, 104), (80, 106), (80, 117), (80, 119), (80, 120), (80, 121), (80, 122), (80, 124), (80, 127), (80, 129), (80, 130), (80, 131), (80, 132), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 141), (80, 143), (81, 87), (81, 98), (81, 99), (81, 100), (81, 101), (81, 102), (81, 103), (81, 104), (81, 105), (81, 107), (81, 117), (81, 119), (81, 120), (81, 121), (81, 122), (81, 123), (81, 125), (81, 128), (81, 129), (81, 130), (81, 131), (81, 132), (81, 133), (81, 134), (81, 135), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 143), (82, 99), (82, 101), (82, 102), (82, 103), (82, 104), (82, 105), (82, 106), (82, 108), (82, 117), (82, 119), (82, 120), (82, 121), (82, 122), (82, 123), (82, 124), (82, 127), (82, 128), (82, 129), (82, 130), (82, 131), (82, 132), (82, 133), (82, 134), (82, 135), (82, 136), (82, 137), (82, 138), (82, 139), (82, 140), (82, 141), (82, 143), (83, 99), (83, 100), (83, 101), (83, 102), (83, 103), (83, 104), (83, 105), (83, 106), (83, 107), (83, 109), (83, 117), (83, 119), (83, 120), (83, 121), (83, 122), (83, 123), (83, 124), (83, 125), (83, 126), (83, 127), (83, 128), (83, 129), (83, 130), (83, 131), (83, 132), (83, 133), (83, 134), (83, 135), (83, 136), (83, 137), (83, 138), (83, 139), (83, 140), (83, 141), (83, 143), (84, 100), (84, 102), (84, 103), (84, 104), (84, 105), (84, 106), (84, 107), (84, 108), (84, 110), (84, 116), (84, 118), (84, 119), (84, 120), (84, 121), (84, 122), (84, 123), (84, 124), (84, 125), (84, 126), (84, 127), (84, 128), (84, 129), (84, 130), (84, 131), (84, 132), (84, 133), (84, 134), (84, 135), (84, 136), (84, 137), (84, 138), (84, 139), (84, 140), (84, 142), (85, 99), (85, 101), (85, 102), (85, 103), (85, 104), (85, 105), (85, 106), (85, 107), (85, 108), (85, 109), (85, 112), (85, 115), (85, 116), (85, 117), (85, 118), (85, 119), (85, 120), (85, 121), (85, 122), (85, 123), (85, 124), (85, 125), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 133), (85, 134), (85, 135), (85, 136), (85, 140), (85, 142), (86, 95), (86, 99), (86, 101), (86, 102), (86, 103), (86, 104), (86, 105), (86, 106), (86, 107), (86, 108), (86, 109), (86, 110), (86, 113), (86, 114), (86, 116), (86, 117), (86, 118), (86, 119), (86, 120), (86, 121), (86, 122), (86, 123), (86, 124), (86, 125), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 135), (86, 139), (86, 141), (86, 143), (87, 95), (87, 99), (87, 100), (87, 101), (87, 102), (87, 103), (87, 104), (87, 105), (87, 106), (87, 107), (87, 108), (87, 109), (87, 110), (87, 111), (87, 112), (87, 115), (87, 116), (87, 117), (87, 118), (87, 119), (87, 120), (87, 121), (87, 122), (87, 123), (87, 124), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 130), (87, 131), (87, 132), (87, 133), (87, 134), (87, 136), (87, 140), (87, 142), (88, 97), (88, 100), (88, 101), (88, 102), (88, 103), (88, 104), (88, 105), (88, 106), (88, 107), (88, 108), (88, 109), (88, 110), (88, 111), (88, 112), (88, 113), (88, 114), (88, 115), (88, 116), (88, 117), (88, 118), (88, 119), (88, 120), (88, 121), (88, 122), (88, 123), (88, 124), (88, 125), (88, 126), (88, 127), (88, 128), (88, 129), (88, 132), (88, 133), (88, 135), (88, 141), (88, 143), (88, 146), (89, 100), (89, 102), (89, 103), (89, 104), (89, 105), (89, 106), (89, 107), (89, 108), (89, 109), (89, 110), (89, 111), (89, 112), (89, 113), (89, 114), (89, 115), (89, 116), (89, 117), (89, 118), (89, 119), (89, 120), (89, 121), (89, 122), (89, 123), (89, 124), (89, 125), (89, 126), (89, 127), (89, 130), (89, 131), (89, 134), (89, 142), (89, 144), (89, 146), (90, 100), (90, 102), (90, 103), (90, 104), (90, 105), (90, 106), (90, 107), (90, 108), (90, 109), (90, 110), (90, 111), (90, 112), (90, 113), (90, 114), (90, 115), (90, 116), (90, 117), (90, 118), (90, 119), (90, 120), (90, 121), (90, 122), (90, 123), (90, 124), (90, 125), (90, 126), (90, 129), (90, 132), (90, 134), (90, 143), (90, 146), (91, 100), (91, 102), (91, 103), (91, 104), (91, 105), (91, 106), (91, 107), (91, 108), (91, 109), (91, 110), (91, 111), (91, 112), (91, 113), (91, 114), (91, 115), (91, 116), (91, 117), (91, 118), (91, 119), (91, 120), (91, 121), (91, 122), (91, 123), (91, 124), (91, 125), (91, 127), (91, 133), (91, 143), (91, 145), (92, 100), (92, 102), (92, 103), (92, 104), (92, 105), (92, 106), (92, 107), (92, 108), (92, 109), (92, 110), (92, 111), (92, 112), (92, 113), (92, 114), (92, 115), (92, 116), (92, 117), (92, 118), (92, 119), (92, 120), (92, 121), (92, 122), (92, 123), (92, 126), (92, 133), (92, 143), (92, 145), (93, 99), (93, 101), (93, 102), (93, 103), (93, 104), (93, 105), (93, 106), (93, 107), (93, 108), (93, 109), (93, 110), (93, 111), (93, 112), (93, 113), (93, 114), (93, 115), (93, 116), (93, 117), (93, 118), (93, 119), (93, 125), (93, 133), (93, 144), (94, 98), (94, 100), (94, 101), (94, 102), (94, 103), (94, 104), (94, 105), (94, 106), (94, 107), (94, 108), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 115), (94, 116), (94, 120), (94, 121), (94, 123), (94, 133), (94, 144), (95, 100), (95, 101), (95, 102), (95, 103), (95, 104), (95, 105), (95, 106), (95, 107), (95, 108), (95, 109), (95, 110), (95, 111), (95, 112), (95, 113), (95, 114), (95, 117), (95, 118), (95, 119), (95, 133), (96, 70), (96, 96), (96, 99), (96, 100), (96, 101), (96, 102), (96, 103), (96, 104), (96, 105), (96, 106), (96, 107), (96, 108), (96, 109), (96, 110), (96, 111), (96, 112), (96, 115), (96, 116), (96, 133), (96, 134), (97, 69), (97, 71), (97, 96), (97, 98), (97, 99), (97, 100), (97, 101), (97, 102), (97, 103), (97, 104), (97, 105), (97, 106), (97, 107), (97, 108), (97, 109), (97, 110), (97, 113), (97, 134), (98, 69), (98, 73), (98, 75), (98, 95), (98, 97), (98, 98), (98, 99), (98, 100), (98, 101), (98, 102), (98, 103), (98, 104), (98, 105), (98, 106), (98, 107), (98, 108), (98, 109), (98, 111), (98, 134), (98, 135), (99, 68), (99, 70), (99, 71), (99, 77), (99, 87), (99, 89), (99, 90), (99, 91), (99, 92), (99, 93), (99, 96), (99, 97), (99, 98), (99, 99), (99, 100), (99, 101), (99, 102), (99, 103), (99, 104), (99, 105), (99, 106), (99, 107), (99, 108), (99, 110), (99, 134), (99, 135), (100, 68), (100, 70), (100, 71), (100, 72), (100, 73), (100, 74), (100, 75), (100, 80), (100, 86), (100, 95), (100, 96), (100, 97), (100, 98), (100, 99), (100, 100), (100, 101), (100, 102), (100, 103), (100, 104), (100, 105), (100, 106), (100, 107), (100, 109), (100, 135), (101, 68), (101, 70), (101, 71), (101, 72), (101, 73), (101, 74), (101, 75), (101, 76), (101, 77), (101, 81), (101, 82), (101, 85), (101, 88), (101, 89), (101, 90), (101, 91), (101, 92), (101, 93), (101, 94), (101, 95), (101, 96), (101, 97), (101, 98), (101, 99), (101, 100), (101, 101), (101, 102), (101, 103), (101, 104), (101, 105), (101, 106), (101, 108), (101, 134), (101, 135), (102, 68), (102, 70), (102, 71), (102, 72), (102, 73), (102, 74), (102, 75), (102, 76), (102, 77), (102, 78), (102, 79), (102, 80), (102, 83), (102, 86), (102, 87), (102, 88), (102, 89), (102, 90), (102, 97), (102, 98), (102, 99), (102, 100), (102, 101), (102, 102), (102, 103), (102, 104), (102, 105), (102, 107), (102, 134), (103, 68), (103, 71), (103, 72), (103, 73), (103, 74), (103, 75), (103, 76), (103, 77), (103, 78), (103, 79), (103, 80), (103, 81), (103, 82), (103, 84), (103, 85), (103, 86), (103, 87), (103, 88), (103, 91), (103, 92), (103, 93), (103, 94), (103, 95), (103, 99), (103, 100), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 107), (103, 133), (103, 134), (104, 69), (104, 72), (104, 73), (104, 74), (104, 75), (104, 76), (104, 77), (104, 78), (104, 79), (104, 80), (104, 81), (104, 82), (104, 83), (104, 84), (104, 85), (104, 86), (104, 90), (104, 97), (104, 99), (104, 100), (104, 101), (104, 102), (104, 103), (104, 104), (104, 105), (104, 107), (104, 133), (104, 134), (105, 71), (105, 73), (105, 74), (105, 75), (105, 76), (105, 77), (105, 78), (105, 79), (105, 80), (105, 81), (105, 82), (105, 83), (105, 84), (105, 85), (105, 88), (105, 99), (105, 101), (105, 102), (105, 103), (105, 104), (105, 105), (105, 107), (105, 108), (105, 132), (105, 133), (106, 72), (106, 74), (106, 75), (106, 76), (106, 77), (106, 78), (106, 79), (106, 80), (106, 81), (106, 82), (106, 83), (106, 86), (106, 100), (106, 102), (106, 103), (106, 104), (106, 105), (106, 106), (106, 108), (106, 123), (106, 131), (106, 133), (107, 73), (107, 75), (107, 76), (107, 77), (107, 78), (107, 79), (107, 80), (107, 81), (107, 82), (107, 85), (107, 100), (107, 102), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 109), (107, 123), (107, 131), (107, 132), (108, 73), (108, 75), (108, 76), (108, 77), (108, 78), (108, 79), (108, 80), (108, 81), (108, 83), (108, 99), (108, 101), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 109), (108, 122), (108, 123), (108, 130), (108, 132), (109, 72), (109, 74), (109, 75), (109, 76), (109, 77), (109, 78), (109, 79), (109, 80), (109, 82), (109, 98), (109, 100), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 108), (109, 110), (109, 121), (109, 123), (109, 131), (110, 69), (110, 70), (110, 73), (110, 74), (110, 75), (110, 76), (110, 77), (110, 78), (110, 79), (110, 81), (110, 97), (110, 99), (110, 100), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 106), (110, 107), (110, 108), (110, 109), (110, 111), (110, 120), (110, 123), (111, 65), (111, 67), (111, 68), (111, 72), (111, 73), (111, 74), (111, 75), (111, 76), (111, 77), (111, 78), (111, 79), (111, 81), (111, 97), (111, 99), (111, 100), (111, 101), (111, 102), (111, 103), (111, 104), (111, 105), (111, 108), (111, 109), (111, 110), (111, 112), (111, 119), (111, 121), (111, 123), (112, 64), (112, 68), (112, 69), (112, 70), (112, 71), (112, 73), (112, 74), (112, 75), (112, 76), (112, 77), (112, 78), (112, 79), (112, 81), (112, 97), (112, 99), (112, 100), (112, 101), (112, 102), (112, 103), (112, 104), (112, 105), (112, 107), (112, 109), (112, 110), (112, 111), (112, 113), (112, 118), (112, 120), (112, 121), (112, 123), (113, 64), (113, 66), (113, 67), (113, 73), (113, 74), (113, 75), (113, 76), (113, 77), (113, 78), (113, 79), (113, 81), (113, 97), (113, 100), (113, 101), (113, 102), (113, 103), (113, 105), (113, 109), (113, 110), (113, 111), (113, 112), (113, 115), (113, 116), (113, 117), (113, 119), (113, 120), (113, 121), (113, 123), (114, 73), (114, 75), (114, 76), (114, 77), (114, 78), (114, 79), (114, 80), (114, 82), (114, 97), (114, 99), (114, 100), (114, 102), (114, 103), (114, 105), (114, 109), (114, 111), (114, 112), (114, 113), (114, 118), (114, 119), (114, 120), (114, 121), (114, 123), (115, 73), (115, 75), (115, 76), (115, 77), (115, 78), (115, 79), (115, 80), (115, 82), (115, 101), (115, 103), (115, 105), (115, 109), (115, 111), (115, 112), (115, 113), (115, 114), (115, 115), (115, 116), (115, 117), (115, 118), (115, 119), (115, 120), (115, 121), (115, 123), (116, 73), (116, 75), (116, 76), (116, 77), (116, 78), (116, 79), (116, 80), (116, 81), (116, 83), (116, 102), (116, 104), (116, 109), (116, 110), (116, 111), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 117), (116, 118), (116, 119), (116, 120), (116, 121), (116, 123), (117, 73), (117, 77), (117, 78), (117, 79), (117, 80), (117, 81), (117, 83), (117, 103), (117, 104), (117, 110), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 118), (117, 119), (117, 120), (117, 121), (117, 123), (118, 75), (118, 76), (118, 77), (118, 78), (118, 79), (118, 80), (118, 81), (118, 83), (118, 110), (118, 112), (118, 113), (118, 114), (118, 115), (118, 116), (118, 117), (118, 118), (118, 119), (118, 120), (118, 121), (118, 123), (119, 72), (119, 110), (119, 123), (120, 110), (120, 112), (120, 113), (120, 114), (120, 115), (120, 116), (120, 117), (120, 118), (120, 119), (120, 120), (120, 121), (120, 123))
coordinates_cc3_e4_e = ()
coordinates_771286 = ((135, 113), (135, 115), (136, 111), (136, 116), (137, 113), (137, 114), (137, 115), (137, 118), (138, 110), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 119), (139, 109), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 121), (140, 109), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 121), (141, 109), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 121), (142, 109), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 122), (143, 109), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (144, 109), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 123), (145, 110), (145, 113), (145, 114), (145, 115), (145, 116), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 124), (146, 111), (146, 114), (146, 115), (146, 116), (146, 117), (146, 118), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (147, 112), (147, 113), (147, 117), (147, 118), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 125), (148, 114), (148, 116), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (149, 117), (149, 119), (149, 123), (149, 124), (149, 125), (149, 128), (150, 120), (150, 122), (150, 125), (150, 126), (150, 129), (151, 123), (151, 124), (151, 127), (151, 128), (151, 130), (152, 128), (152, 130), (153, 127), (153, 130), (154, 128), (154, 130), (155, 130))
coordinates_781286 = ((91, 131), (92, 129), (92, 131), (93, 128), (93, 131), (94, 126), (94, 129), (95, 125), (95, 128), (96, 121), (96, 122), (96, 123), (96, 124), (97, 118), (97, 125), (98, 115), (98, 116), (98, 117), (98, 120), (98, 121), (98, 122), (98, 124), (99, 113), (99, 118), (99, 119), (99, 120), (99, 121), (99, 122), (99, 124), (100, 112), (100, 115), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 121), (100, 123), (101, 110), (101, 113), (101, 114), (101, 115), (101, 116), (101, 117), (101, 118), (101, 119), (101, 120), (101, 122), (102, 110), (102, 112), (102, 113), (102, 114), (102, 115), (102, 116), (102, 117), (102, 118), (102, 119), (102, 120), (102, 122), (103, 109), (103, 111), (103, 112), (103, 113), (103, 114), (103, 115), (103, 116), (103, 117), (103, 118), (103, 119), (103, 120), (103, 122), (104, 110), (104, 111), (104, 112), (104, 113), (104, 114), (104, 115), (104, 116), (104, 117), (104, 118), (104, 119), (104, 120), (104, 122), (105, 110), (105, 112), (105, 113), (105, 114), (105, 115), (105, 116), (105, 117), (105, 118), (105, 119), (105, 120), (105, 121), (106, 110), (106, 112), (106, 113), (106, 114), (106, 115), (106, 116), (106, 117), (106, 118), (106, 119), (106, 121), (107, 111), (107, 113), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 120), (108, 112), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 120), (109, 113), (109, 115), (109, 116), (109, 119), (110, 114), (110, 118), (111, 115), (111, 116))
coordinates_ee0000 = ((116, 71), (117, 70), (118, 69), (118, 70), (119, 68), (119, 70))
coordinates_cf2090 = ((163, 116), (164, 114), (164, 117), (164, 118), (164, 119), (164, 121), (165, 114), (165, 116), (165, 121), (166, 113), (166, 115), (166, 116), (166, 117), (166, 118), (166, 119), (166, 121), (167, 113), (167, 115), (167, 116), (167, 117), (167, 118), (167, 119), (167, 121), (168, 113), (168, 115), (168, 116), (168, 117), (168, 118), (168, 119), (168, 121), (169, 113), (169, 115), (169, 116), (169, 117), (169, 118), (169, 119), (169, 121), (170, 114), (170, 116), (170, 117), (170, 118), (170, 119), (170, 121), (171, 114), (171, 116), (171, 117), (171, 118), (171, 119), (171, 121), (172, 114), (172, 116), (172, 117), (172, 120), (173, 114), (173, 116), (173, 119), (174, 114), (174, 117), (175, 114), (175, 116), (176, 114), (176, 116), (177, 114), (177, 115), (178, 114), (178, 115), (179, 114), (179, 115), (180, 108), (180, 115), (181, 109), (181, 110), (181, 116), (182, 110), (182, 116), (183, 111), (183, 112), (183, 117), (184, 111), (184, 113), (184, 117), (185, 112), (185, 114), (185, 118), (186, 112), (186, 116), (186, 117), (186, 119), (187, 113), (187, 119), (188, 114), (188, 116), (188, 117), (188, 119))
coordinates_efe68_c = ((165, 124), (166, 124), (167, 124), (168, 124), (169, 123), (169, 125), (170, 123), (170, 125), (171, 123), (171, 125), (171, 135), (172, 122), (172, 125), (172, 135), (173, 122), (173, 125), (173, 135), (173, 136), (174, 120), (174, 123), (174, 125), (174, 135), (174, 136), (175, 119), (175, 122), (175, 123), (175, 125), (175, 135), (175, 137), (176, 118), (176, 120), (176, 121), (176, 122), (176, 124), (176, 135), (176, 137), (177, 118), (177, 120), (177, 121), (177, 122), (177, 124), (177, 130), (177, 136), (177, 138), (178, 117), (178, 119), (178, 120), (178, 121), (178, 123), (178, 130), (178, 131), (178, 136), (178, 138), (179, 117), (179, 119), (179, 120), (179, 121), (179, 123), (179, 130), (179, 131), (179, 136), (179, 138), (180, 118), (180, 120), (180, 122), (180, 130), (180, 131), (180, 136), (180, 138), (181, 118), (181, 120), (181, 121), (181, 122), (181, 123), (181, 130), (181, 132), (181, 136), (181, 138), (182, 119), (182, 121), (182, 122), (182, 123), (182, 125), (182, 132), (182, 136), (182, 139), (183, 119), (183, 121), (183, 122), (183, 123), (183, 126), (183, 131), (183, 132), (183, 136), (183, 138), (184, 120), (184, 122), (184, 123), (184, 124), (184, 126), (184, 131), (184, 132), (184, 136), (184, 138), (185, 120), (185, 122), (185, 123), (185, 124), (185, 125), (185, 127), (185, 131), (185, 132), (185, 136), (185, 138), (186, 121), (186, 123), (186, 124), (186, 125), (186, 127), (186, 130), (186, 132), (186, 133), (186, 134), (186, 138), (187, 121), (187, 123), (187, 124), (187, 125), (187, 126), (187, 127), (187, 129), (187, 134), (187, 135), (187, 136), (187, 138), (188, 122), (188, 124), (188, 125), (188, 130), (188, 131), (188, 132), (188, 133), (188, 137), (189, 122), (189, 126), (189, 127), (189, 128), (189, 129), (190, 122), (190, 124), (190, 125))
coordinates_31_cd32 = ((166, 144), (167, 144), (167, 146), (168, 145), (168, 147), (169, 145), (169, 149), (170, 144), (170, 146), (170, 147), (170, 148), (170, 152), (171, 137), (171, 143), (171, 145), (171, 146), (171, 147), (171, 148), (171, 152), (172, 138), (172, 143), (172, 145), (172, 146), (172, 147), (172, 148), (172, 150), (173, 138), (173, 139), (173, 143), (173, 145), (173, 146), (173, 147), (173, 148), (174, 139), (174, 143), (174, 145), (174, 146), (174, 148), (175, 139), (175, 140), (175, 144), (175, 147), (176, 140), (176, 141), (176, 145), (176, 147), (177, 140), (177, 141), (177, 146), (177, 148), (178, 141), (178, 146), (178, 148), (179, 141), (179, 142), (179, 146), (179, 149), (180, 141), (180, 142), (180, 145), (180, 149), (181, 141), (181, 142), (181, 145), (181, 148), (182, 141), (182, 143), (182, 147), (183, 140), (183, 141), (183, 142), (183, 146), (184, 140), (184, 142), (184, 143), (184, 145), (185, 140), (185, 142), (185, 144), (186, 141), (186, 143), (187, 142))
coordinates_d02090 = ((57, 122), (57, 124), (57, 126), (58, 120), (58, 125), (59, 119), (59, 125), (60, 122), (60, 125), (61, 120), (61, 124), (61, 125), (62, 125), (63, 125), (64, 125), (65, 125), (66, 125), (67, 125), (69, 124), (70, 124), (71, 124), (72, 123), (73, 123), (74, 123), (75, 123), (75, 124), (76, 123), (76, 124), (77, 124), (78, 124))
coordinates_f0_e68_c = ((57, 128), (57, 136), (58, 127), (58, 129), (58, 130), (58, 131), (58, 132), (58, 133), (58, 134), (58, 136), (59, 127), (59, 136), (60, 127), (60, 129), (60, 130), (60, 131), (60, 132), (60, 133), (60, 134), (60, 135), (60, 137), (61, 127), (61, 129), (61, 130), (61, 131), (61, 132), (61, 133), (61, 134), (61, 135), (61, 137), (62, 127), (62, 129), (62, 130), (62, 131), (62, 132), (62, 133), (62, 134), (62, 135), (62, 137), (63, 127), (63, 131), (63, 132), (63, 133), (63, 134), (63, 135), (63, 136), (63, 138), (64, 127), (64, 132), (64, 133), (64, 134), (64, 135), (64, 136), (64, 138), (65, 127), (65, 131), (65, 133), (65, 134), (65, 135), (65, 136), (65, 138), (66, 127), (66, 128), (66, 132), (66, 134), (66, 135), (66, 136), (66, 138), (67, 127), (67, 128), (67, 132), (67, 134), (67, 135), (67, 136), (67, 138), (68, 127), (68, 133), (68, 135), (68, 137), (69, 126), (69, 127), (69, 133), (69, 135), (69, 137), (70, 126), (70, 128), (70, 134), (70, 136), (71, 126), (71, 128), (71, 134), (71, 135), (72, 126), (72, 128), (73, 126), (73, 128), (74, 126), (74, 128), (75, 126), (75, 128), (76, 126), (76, 128), (77, 126), (77, 127), (78, 126))
coordinates_32_cd32 = ((57, 138), (58, 138), (58, 140), (59, 141), (60, 139), (60, 142), (61, 139), (61, 141), (61, 143), (62, 140), (62, 142), (62, 145), (62, 147), (63, 141), (63, 143), (64, 142), (64, 146), (64, 147), (65, 143), (65, 145), (65, 146), (65, 147), (65, 148), (65, 150), (66, 147), (66, 148), (66, 150), (67, 147), (67, 150), (68, 146), (68, 148), (68, 149), (68, 151), (69, 145), (69, 146), (69, 148), (69, 149), (69, 150), (69, 152), (70, 144), (70, 147), (70, 148), (70, 149), (70, 150), (70, 152), (71, 143), (71, 146), (71, 147), (71, 148), (71, 149), (71, 150), (71, 152), (72, 143), (72, 145), (72, 146), (72, 147), (72, 148), (72, 149), (72, 150), (72, 152), (73, 143), (73, 145), (73, 146), (73, 147), (73, 148), (73, 149), (73, 150), (73, 152), (74, 143), (74, 145), (74, 146), (74, 147), (74, 148), (74, 149), (74, 150), (74, 152), (75, 143), (75, 145), (75, 146), (75, 147), (75, 148), (75, 149), (75, 150), (75, 152), (76, 146), (76, 147), (76, 148), (76, 149), (76, 150), (76, 151), (76, 153), (77, 145), (77, 147), (77, 148), (77, 149), (77, 150), (77, 151), (77, 153), (78, 145), (78, 147), (78, 148), (78, 149), (78, 150), (78, 151), (78, 152), (78, 153), (78, 154), (79, 145), (79, 147), (79, 148), (79, 149), (79, 150), (79, 151), (79, 152), (79, 154), (80, 145), (80, 147), (80, 148), (80, 149), (80, 150), (80, 151), (80, 152), (80, 154), (81, 145), (81, 154), (82, 145), (82, 147), (82, 148), (82, 149), (82, 150), (82, 151), (82, 153), (83, 145))
coordinates_01_ff7_f = ((129, 62), (130, 62), (130, 63), (131, 62), (131, 63), (132, 62), (132, 63), (133, 63), (134, 63), (135, 64), (136, 63), (136, 64), (137, 63), (137, 65), (137, 73), (137, 75), (138, 63), (138, 65), (138, 72), (139, 63), (139, 65), (139, 71), (139, 72), (139, 74), (139, 76), (140, 63), (140, 64), (140, 73), (141, 63), (141, 64), (142, 63), (142, 64), (143, 63), (143, 64), (143, 82), (143, 83), (144, 63), (144, 65), (144, 80), (145, 64), (145, 66), (145, 78), (146, 64), (146, 67), (146, 75), (146, 76), (147, 65), (147, 69), (147, 70), (147, 71), (147, 72), (147, 73), (147, 74), (148, 67), (148, 68), (148, 69))
coordinates_00_ff7_f = ((81, 74), (81, 76), (82, 73), (82, 77), (83, 72), (83, 74), (83, 75), (83, 76), (83, 78), (84, 72), (84, 74), (84, 75), (84, 76), (84, 77), (84, 79), (85, 71), (85, 73), (85, 74), (85, 75), (85, 78), (86, 71), (86, 73), (86, 74), (86, 75), (86, 76), (87, 71), (87, 73), (87, 75), (88, 70), (88, 72), (88, 73), (88, 75), (89, 70), (89, 72), (89, 73), (89, 74), (89, 75), (89, 77), (90, 70), (90, 72), (90, 73), (90, 74), (90, 75), (90, 78), (91, 70), (91, 72), (91, 73), (91, 74), (91, 75), (91, 76), (91, 77), (91, 80), (92, 69), (92, 71), (92, 72), (92, 73), (92, 74), (92, 75), (92, 76), (92, 77), (92, 78), (92, 81), (93, 68), (93, 72), (93, 73), (93, 74), (93, 75), (93, 76), (93, 77), (93, 78), (93, 79), (93, 80), (93, 83), (94, 67), (94, 70), (94, 73), (94, 74), (94, 75), (94, 76), (94, 77), (94, 78), (94, 79), (94, 80), (94, 81), (94, 84), (94, 85), (95, 66), (95, 68), (95, 72), (95, 77), (95, 78), (95, 79), (95, 80), (95, 81), (95, 82), (95, 83), (95, 86), (95, 87), (96, 67), (96, 73), (96, 75), (96, 76), (96, 79), (96, 80), (96, 81), (96, 82), (96, 83), (96, 84), (96, 85), (96, 89), (96, 90), (96, 91), (96, 92), (96, 94), (97, 64), (97, 67), (97, 77), (97, 78), (97, 82), (97, 83), (97, 84), (97, 87), (97, 88), (97, 89), (97, 90), (97, 91), (97, 93), (98, 64), (98, 66), (98, 79), (98, 80), (98, 86), (99, 64), (99, 66), (99, 82), (99, 84), (99, 85), (100, 66), (101, 65), (101, 66), (102, 65), (102, 66), (102, 78), (102, 80), (103, 66), (103, 77), (103, 80), (104, 66), (104, 78), (104, 79), (105, 66), (106, 66), (106, 69), (107, 65), (107, 67), (107, 71), (108, 63), (108, 68), (108, 70), (109, 61), (109, 65), (109, 66), (109, 67), (110, 61), (110, 63), (111, 62), (112, 62), (113, 62), (114, 62), (114, 69), (114, 71), (115, 62), (115, 65), (115, 66), (115, 67), (115, 69), (116, 62), (116, 64), (116, 68), (117, 62), (117, 67), (118, 63), (118, 65), (118, 66), (118, 67), (119, 66))
coordinates_ff6347 = ((89, 137), (90, 136), (90, 137), (91, 136), (91, 138), (92, 135), (92, 138), (93, 135), (93, 137), (93, 139), (94, 135), (94, 137), (94, 139), (95, 135), (95, 137), (95, 139), (96, 136), (96, 139), (97, 137), (97, 139), (98, 137), (98, 139), (99, 137), (99, 139), (99, 140), (100, 137), (100, 140), (101, 137), (101, 140), (102, 137), (102, 140), (103, 136), (103, 138), (103, 140), (104, 136), (104, 138), (104, 140), (105, 135), (105, 136), (105, 138), (105, 140), (106, 135), (106, 137), (106, 140), (107, 135), (107, 136), (107, 139), (108, 134), (108, 138), (109, 125), (109, 133), (109, 137), (110, 125), (110, 129), (110, 135), (110, 136), (111, 125), (111, 127), (111, 131), (112, 125), (112, 132), (113, 126), (113, 127), (113, 128), (113, 129), (113, 131), (114, 125))
coordinates_dbd814 = ((137, 126), (137, 127), (138, 126), (139, 126), (139, 128), (140, 126), (140, 128), (141, 126), (141, 128), (142, 126), (142, 129), (143, 126), (143, 129), (144, 126), (144, 129), (145, 126), (145, 129), (146, 127), (146, 129), (147, 128), (147, 129), (148, 129))
coordinates_dcd814 = ((96, 129), (96, 131), (97, 128), (97, 131), (98, 127), (98, 129), (98, 130), (98, 132), (99, 126), (99, 128), (99, 129), (99, 130), (99, 132), (100, 126), (100, 127), (100, 128), (100, 129), (100, 130), (100, 132), (101, 126), (101, 127), (101, 128), (101, 129), (101, 130), (101, 132), (102, 125), (102, 126), (102, 127), (102, 128), (102, 129), (102, 130), (102, 132), (103, 125), (103, 126), (103, 127), (103, 128), (103, 129), (103, 131), (104, 125), (104, 126), (104, 127), (104, 128), (104, 130), (105, 126), (105, 128), (105, 130), (106, 125), (106, 126), (106, 127), (106, 129), (107, 126), (107, 129), (108, 128), (109, 127))
coordinates_2_e8_b57 = ((60, 117), (61, 117), (61, 118), (62, 117), (62, 119), (63, 118), (63, 119), (64, 118), (65, 118), (65, 120), (66, 118), (66, 120), (67, 118), (67, 120), (68, 116), (68, 118), (68, 120), (69, 115), (69, 118), (69, 120), (70, 115), (70, 117), (70, 118), (70, 120), (71, 115), (71, 120), (72, 114), (72, 117), (72, 119), (73, 114), (74, 114), (74, 115), (75, 113), (75, 114), (76, 113), (76, 114), (77, 113), (77, 114), (78, 113), (79, 113), (79, 115), (80, 113), (80, 115), (81, 114), (81, 115), (82, 115))
coordinates_cc5_c5_c = ((140, 141), (141, 141), (141, 142), (142, 141), (142, 142), (143, 141), (143, 143), (144, 141), (144, 144), (145, 141), (145, 144), (146, 141), (146, 143), (146, 145), (147, 141), (147, 143), (147, 144), (147, 146), (148, 141), (148, 146), (149, 141), (149, 144), (149, 145), (149, 147), (150, 140), (150, 142), (150, 146), (150, 148), (151, 140), (151, 142), (151, 146), (151, 148), (152, 139), (152, 141), (152, 146), (152, 149), (153, 139), (153, 141), (153, 146), (153, 149), (154, 138), (154, 140), (154, 145), (154, 147), (154, 149), (155, 138), (155, 140), (155, 145), (155, 147), (155, 148), (156, 137), (156, 139), (156, 145), (156, 147), (156, 149), (157, 137), (157, 139), (157, 144), (157, 146), (157, 147), (157, 149), (158, 137), (158, 144), (158, 146), (158, 147), (158, 148), (159, 144), (159, 146), (159, 147), (159, 148), (159, 149), (159, 152), (159, 153), (160, 144), (160, 146), (160, 147), (160, 148), (160, 149), (160, 150), (160, 151), (160, 153), (161, 145), (161, 147), (161, 148), (161, 149), (161, 150), (161, 151), (161, 152), (161, 154), (162, 146), (162, 148), (162, 149), (162, 150), (162, 151), (162, 152), (162, 154), (163, 145), (163, 147), (163, 148), (163, 149), (163, 150), (163, 151), (163, 152), (163, 154), (164, 144), (164, 147), (164, 148), (164, 149), (164, 150), (164, 151), (164, 153), (165, 146), (165, 149), (165, 150), (165, 151), (165, 153), (166, 148), (166, 151), (166, 153), (167, 149), (167, 153), (168, 151), (168, 152))
coordinates_cd5_c5_c = ((84, 148), (84, 149), (84, 150), (84, 151), (84, 153), (85, 145), (85, 147), (85, 153), (86, 146), (86, 148), (86, 149), (86, 150), (86, 151), (86, 152), (86, 154), (87, 147), (87, 149), (87, 150), (87, 151), (87, 153), (88, 138), (88, 139), (88, 148), (88, 150), (88, 152), (89, 139), (89, 140), (89, 149), (89, 151), (90, 141), (90, 148), (90, 150), (91, 140), (91, 141), (91, 148), (91, 150), (92, 141), (92, 147), (92, 149), (93, 141), (93, 147), (93, 148), (94, 141), (94, 142), (94, 146), (94, 148), (95, 141), (95, 142), (95, 147), (96, 142), (96, 144), (96, 146), (97, 142), (97, 145), (98, 142), (98, 144), (99, 142), (99, 144), (100, 142), (101, 142), (101, 143), (102, 142), (102, 143), (103, 142))
coordinates_779_fb0 = ((114, 163), (114, 165), (115, 162), (115, 167), (116, 161), (116, 164), (116, 165), (116, 169), (117, 160), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 170), (117, 171), (118, 158), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 172), (118, 173), (118, 175), (119, 158), (119, 160), (119, 161), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 176), (120, 158), (120, 160), (120, 161), (120, 162), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 175), (120, 177), (121, 159), (121, 161), (121, 162), (121, 163), (121, 164), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 175), (121, 176), (121, 178), (122, 159), (122, 161), (122, 162), (122, 163), (122, 164), (122, 165), (122, 166), (122, 167), (122, 168), (122, 169), (122, 170), (122, 171), (122, 172), (122, 173), (122, 174), (122, 175), (122, 176), (122, 177), (122, 179), (123, 159), (123, 161), (123, 162), (123, 163), (123, 164), (123, 165), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (123, 175), (123, 176), (123, 177), (123, 178), (123, 180), (124, 159), (124, 161), (124, 162), (124, 163), (124, 164), (124, 165), (124, 166), (124, 167), (124, 168), (124, 169), (124, 170), (124, 171), (124, 172), (124, 173), (124, 174), (124, 175), (124, 176), (124, 177), (124, 178), (124, 180), (125, 158), (125, 160), (125, 161), (125, 162), (125, 163), (125, 164), (125, 165), (125, 166), (125, 167), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 176), (125, 177), (125, 178), (125, 179), (125, 181), (126, 158), (126, 160), (126, 161), (126, 162), (126, 163), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 169), (126, 170), (126, 171), (126, 172), (126, 173), (126, 174), (126, 175), (126, 176), (126, 177), (126, 178), (126, 181), (127, 158), (127, 160), (127, 161), (127, 162), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 180), (128, 157), (128, 159), (128, 160), (128, 161), (128, 162), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 178), (129, 157), (129, 159), (129, 160), (129, 161), (129, 162), (129, 163), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 176), (130, 157), (130, 159), (130, 160), (130, 161), (130, 162), (130, 163), (130, 164), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 173), (130, 175), (131, 158), (131, 160), (131, 161), (131, 162), (131, 163), (131, 164), (131, 165), (131, 166), (131, 167), (131, 170), (131, 171), (132, 159), (132, 161), (132, 162), (132, 163), (132, 164), (132, 165), (132, 168), (133, 160), (133, 162), (133, 163), (133, 164), (133, 167), (134, 161), (134, 163), (134, 165), (135, 162), (135, 164), (136, 163))
coordinates_fea600 = ((158, 97), (159, 97), (160, 96), (160, 97), (161, 95), (161, 97), (162, 96), (163, 90), (163, 92), (163, 93), (163, 96), (164, 88), (164, 91), (164, 92), (164, 93), (164, 94), (165, 87), (165, 89), (166, 85), (167, 80), (167, 82), (167, 83), (167, 84), (168, 78), (168, 82), (168, 105), (169, 78), (169, 80), (169, 82), (169, 104), (170, 78), (170, 80), (170, 81), (170, 82), (170, 90), (170, 92), (170, 104), (170, 106), (171, 78), (171, 80), (171, 84), (171, 85), (171, 86), (171, 87), (171, 88), (171, 89), (171, 95), (171, 105), (171, 106), (172, 81), (172, 82), (172, 90), (172, 91), (172, 92), (172, 93), (172, 95), (172, 105), (172, 107), (173, 79), (173, 80), (173, 84), (173, 87), (173, 88), (173, 89), (173, 90), (173, 91), (173, 92), (173, 94), (173, 105), (173, 107), (174, 85), (174, 87), (174, 88), (174, 89), (174, 90), (174, 91), (174, 92), (174, 94), (174, 106), (174, 108), (175, 88), (175, 90), (175, 91), (175, 93), (175, 108), (176, 88), (176, 90), (176, 92), (177, 88), (177, 90), (177, 92), (177, 98), (177, 100), (178, 88), (178, 90), (178, 91), (178, 92), (178, 97), (178, 101), (179, 88), (179, 91), (179, 92), (179, 93), (179, 94), (179, 95), (179, 98), (179, 99), (179, 100), (179, 102), (180, 88), (180, 97), (180, 98), (180, 99), (180, 100), (180, 101), (180, 103), (180, 106), (181, 91), (181, 92), (181, 96), (181, 101), (181, 102), (181, 105), (181, 107), (182, 94), (182, 95), (182, 96), (182, 98), (182, 99), (182, 100), (182, 103), (182, 107), (183, 96), (183, 101), (183, 105), (183, 106), (183, 108), (184, 103), (184, 105), (184, 106), (184, 107), (184, 109), (185, 105), (185, 107), (185, 108), (185, 110))
coordinates_fea501 = ((60, 107), (60, 109), (60, 110), (60, 111), (60, 112), (60, 114), (61, 103), (61, 104), (61, 105), (61, 106), (61, 107), (61, 108), (61, 109), (61, 110), (61, 113), (61, 115), (62, 96), (62, 98), (62, 99), (62, 100), (62, 101), (62, 102), (62, 107), (62, 108), (62, 109), (62, 110), (62, 111), (62, 112), (62, 115), (63, 95), (63, 103), (63, 104), (63, 105), (63, 106), (63, 107), (63, 108), (63, 110), (63, 113), (63, 115), (64, 93), (64, 99), (64, 100), (64, 101), (64, 102), (64, 103), (64, 104), (64, 105), (64, 106), (64, 107), (64, 108), (64, 110), (64, 114), (64, 116), (65, 91), (65, 92), (65, 97), (65, 98), (65, 99), (65, 100), (65, 101), (65, 102), (65, 103), (65, 104), (65, 105), (65, 106), (65, 107), (65, 108), (65, 110), (65, 115), (65, 116), (66, 87), (66, 89), (66, 90), (66, 93), (66, 95), (66, 99), (66, 101), (66, 102), (66, 103), (66, 104), (66, 105), (66, 106), (66, 107), (66, 108), (66, 110), (66, 115), (66, 116), (67, 86), (67, 91), (67, 92), (67, 93), (67, 94), (67, 99), (67, 101), (67, 102), (67, 103), (67, 104), (67, 105), (67, 106), (67, 107), (67, 109), (68, 82), (68, 84), (68, 87), (68, 94), (68, 99), (68, 101), (68, 102), (68, 103), (68, 104), (68, 105), (68, 106), (68, 107), (68, 109), (69, 81), (69, 88), (69, 89), (69, 90), (69, 91), (69, 93), (69, 99), (69, 101), (69, 102), (69, 103), (69, 104), (69, 105), (69, 106), (69, 107), (69, 109), (70, 80), (70, 83), (70, 84), (70, 85), (70, 86), (70, 87), (70, 99), (70, 101), (70, 102), (70, 103), (70, 104), (70, 105), (70, 106), (70, 108), (71, 79), (71, 82), (71, 99), (71, 101), (71, 102), (71, 103), (71, 104), (71, 105), (71, 106), (71, 108), (72, 78), (72, 80), (72, 100), (72, 102), (72, 103), (72, 104), (72, 105), (72, 107), (72, 108), (73, 77), (73, 80), (73, 100), (73, 107), (74, 76), (74, 79), (74, 101), (74, 103), (74, 104), (74, 105), (74, 107), (75, 76), (75, 78), (75, 80), (76, 77), (76, 79), (76, 80), (76, 81), (76, 82), (76, 83), (76, 84), (76, 85), (76, 87), (77, 77), (77, 79), (77, 80), (77, 89), (78, 77), (78, 79), (78, 80), (78, 81), (78, 82), (78, 83), (78, 84), (78, 91), (79, 77), (79, 79), (79, 80), (79, 81), (79, 82), (79, 83), (79, 84), (79, 86), (79, 87), (79, 93), (80, 77), (80, 80), (80, 81), (80, 82), (80, 84), (80, 88), (80, 91), (80, 94), (81, 78), (81, 81), (81, 82), (81, 84), (81, 90), (81, 92), (81, 93), (81, 96), (82, 79), (82, 84), (82, 86), (82, 91), (82, 93), (82, 94), (82, 97), (83, 80), (83, 82), (83, 83), (83, 87), (83, 88), (83, 92), (83, 93), (83, 97), (84, 85), (84, 86), (84, 90), (84, 91), (84, 92), (84, 93), (84, 95), (84, 97), (85, 87), (85, 93), (85, 96), (85, 97), (86, 90), (86, 91), (86, 93), (86, 97))
coordinates_d2_b48_c = ((64, 112), (65, 112), (66, 112), (66, 113), (67, 112), (67, 114), (68, 111), (68, 113), (69, 111), (69, 113), (70, 111), (70, 113), (71, 110), (71, 112), (72, 110), (72, 112), (73, 110), (73, 112), (74, 109), (74, 111), (75, 109), (75, 111), (76, 109), (76, 111), (77, 109), (77, 111), (78, 108), (78, 110), (79, 108), (79, 110), (80, 109), (80, 111), (81, 110), (81, 111), (82, 111), (82, 112), (83, 112), (83, 113), (84, 113))
coordinates_dcf8_a4 = ((98, 155), (98, 157), (99, 154), (99, 158), (100, 153), (100, 155), (100, 156), (100, 157), (100, 159), (101, 152), (101, 154), (101, 155), (101, 156), (101, 157), (101, 159), (102, 151), (102, 154), (102, 155), (102, 156), (102, 157), (102, 159), (103, 151), (103, 153), (103, 154), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (104, 150), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 160), (105, 150), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 160), (106, 150), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 160), (107, 150), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 160), (108, 150), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 160), (109, 150), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 160), (110, 150), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 160), (111, 152), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 161), (112, 153), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 162), (113, 153), (113, 154), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 162), (114, 154), (114, 156), (114, 157), (114, 158), (114, 161), (115, 153), (115, 155), (115, 156), (115, 159), (116, 152), (116, 154), (116, 155), (116, 156), (116, 158), (117, 148), (117, 150), (117, 151), (117, 152), (117, 153), (117, 154), (117, 156), (118, 147))
coordinates_dbf8_a4 = ((129, 149), (132, 156), (132, 157), (133, 155), (133, 157), (134, 154), (134, 156), (134, 158), (135, 155), (135, 156), (135, 157), (135, 159), (136, 150), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 160), (137, 151), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 161), (138, 150), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 161), (139, 150), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 162), (140, 150), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 162), (141, 150), (141, 152), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 162), (142, 151), (142, 152), (142, 153), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 161), (143, 151), (143, 153), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 161), (144, 152), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 159), (144, 161), (145, 152), (145, 154), (145, 155), (145, 156), (145, 157), (145, 158), (145, 160), (146, 153), (146, 155), (146, 156), (146, 157), (146, 158), (146, 160), (147, 156), (147, 157), (147, 159), (148, 154), (148, 157), (148, 159), (149, 155), (149, 159), (150, 156), (150, 158), (151, 157))
coordinates_2_acca4 = ((119, 148), (119, 149), (119, 150), (119, 151), (119, 152), (119, 153), (119, 155), (120, 147), (120, 156), (121, 146), (121, 148), (121, 149), (121, 150), (121, 151), (121, 152), (121, 153), (121, 154), (121, 156), (122, 146), (122, 148), (122, 149), (122, 150), (122, 151), (122, 152), (122, 153), (122, 154), (122, 155), (122, 157), (123, 146), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 154), (123, 155), (123, 157), (124, 146), (124, 148), (124, 149), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 156), (125, 147), (125, 149), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 156), (126, 147), (126, 148), (126, 156), (127, 149), (127, 151), (127, 152), (127, 153), (127, 155))
coordinates_87324_a = ((105, 92), (105, 95), (106, 90), (106, 94), (107, 88), (107, 92), (108, 86), (108, 87), (108, 90), (109, 85), (109, 88), (109, 90), (110, 84), (110, 86), (110, 87), (110, 89), (111, 83), (111, 85), (111, 86), (111, 87), (111, 89), (112, 83), (112, 85), (112, 86), (112, 87), (112, 89), (113, 84), (113, 86), (113, 87), (113, 89), (114, 84), (114, 86), (114, 87), (114, 89), (115, 85), (115, 87), (115, 89), (116, 85), (116, 87), (116, 89), (117, 86), (117, 89), (118, 86), (118, 88), (118, 89), (119, 85), (119, 86), (119, 88), (120, 75), (120, 76), (120, 77), (120, 78), (120, 79), (120, 80), (120, 81), (120, 82), (120, 83), (120, 84), (120, 88), (121, 68), (121, 70), (121, 71), (121, 72), (121, 73), (121, 74), (121, 75), (121, 77), (121, 78), (121, 79), (121, 80), (121, 81), (121, 82), (121, 83), (121, 84), (121, 85), (121, 86), (121, 88), (122, 69), (122, 70), (122, 71), (122, 72), (122, 73), (122, 74))
coordinates_60_cc60 = ((82, 162), (82, 163), (83, 161), (83, 164), (84, 160), (84, 162), (84, 164), (85, 159), (85, 161), (85, 162), (85, 163), (85, 165), (86, 160), (86, 161), (86, 162), (86, 163), (86, 165), (87, 155), (87, 159), (87, 160), (87, 161), (87, 162), (87, 163), (87, 165), (87, 170), (88, 157), (88, 158), (88, 159), (88, 160), (88, 161), (88, 162), (88, 163), (88, 164), (88, 165), (88, 166), (88, 169), (89, 154), (89, 156), (89, 157), (89, 158), (89, 159), (89, 160), (89, 161), (89, 162), (89, 163), (89, 164), (89, 165), (89, 167), (90, 153), (90, 155), (90, 156), (90, 157), (90, 158), (90, 159), (90, 160), (90, 161), (90, 162), (90, 163), (90, 164), (90, 165), (90, 167), (91, 152), (91, 154), (91, 155), (91, 156), (91, 157), (91, 158), (91, 159), (91, 160), (91, 161), (91, 162), (91, 163), (91, 164), (91, 165), (91, 167), (91, 170), (92, 151), (92, 153), (92, 154), (92, 155), (92, 156), (92, 157), (92, 158), (92, 159), (92, 160), (92, 161), (92, 162), (92, 163), (92, 164), (92, 165), (92, 166), (92, 167), (92, 168), (92, 170), (93, 151), (93, 153), (93, 154), (93, 155), (93, 156), (93, 157), (93, 158), (93, 159), (93, 160), (93, 161), (93, 162), (93, 163), (93, 164), (93, 165), (93, 166), (93, 167), (93, 169), (94, 150), (94, 152), (94, 153), (94, 154), (94, 155), (94, 157), (94, 158), (94, 159), (94, 160), (94, 161), (94, 162), (94, 163), (94, 164), (94, 165), (94, 166), (94, 167), (94, 169), (95, 149), (95, 151), (95, 152), (95, 153), (95, 156), (95, 159), (95, 160), (95, 161), (95, 162), (95, 163), (95, 164), (95, 165), (95, 166), (95, 167), (95, 169), (96, 148), (96, 150), (96, 151), (96, 152), (96, 155), (96, 157), (96, 160), (96, 161), (96, 162), (96, 163), (96, 164), (96, 165), (96, 166), (96, 167), (96, 169), (97, 148), (97, 150), (97, 151), (97, 153), (97, 159), (97, 161), (97, 162), (97, 163), (97, 164), (97, 165), (97, 166), (97, 167), (97, 168), (97, 170), (98, 147), (98, 149), (98, 150), (98, 152), (98, 160), (98, 162), (98, 163), (98, 164), (98, 165), (98, 166), (98, 167), (98, 168), (98, 169), (98, 171), (99, 146), (99, 148), (99, 149), (99, 150), (99, 152), (99, 160), (99, 162), (99, 163), (99, 164), (99, 165), (99, 166), (99, 167), (99, 168), (99, 169), (99, 171), (100, 146), (100, 148), (100, 149), (100, 151), (100, 161), (100, 163), (100, 164), (100, 165), (100, 166), (100, 167), (100, 168), (100, 169), (100, 170), (100, 172), (101, 145), (101, 147), (101, 148), (101, 150), (101, 161), (101, 162), (101, 164), (101, 165), (101, 166), (101, 167), (101, 168), (101, 169), (101, 170), (101, 172), (102, 145), (102, 147), (102, 149), (102, 162), (102, 164), (102, 165), (102, 166), (102, 167), (102, 168), (102, 169), (102, 170), (102, 172), (103, 145), (103, 148), (103, 162), (103, 164), (103, 165), (103, 166), (103, 167), (103, 168), (103, 169), (103, 170), (103, 171), (104, 144), (104, 146), (104, 148), (104, 162), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 170), (105, 143), (105, 145), (105, 146), (105, 148), (105, 162), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 170), (106, 143), (106, 145), (106, 146), (106, 148), (106, 162), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 170), (107, 141), (107, 143), (107, 144), (107, 145), (107, 147), (107, 162), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 171), (108, 140), (108, 143), (108, 144), (108, 145), (108, 147), (108, 162), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 172), (109, 139), (109, 141), (109, 142), (109, 143), (109, 144), (109, 145), (109, 147), (109, 162), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 173), (110, 138), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 145), (110, 146), (110, 148), (110, 163), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 174), (111, 137), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 145), (111, 146), (111, 147), (111, 149), (111, 164), (111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (112, 137), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (112, 148), (112, 150), (112, 164), (112, 166), (112, 169), (112, 170), (112, 171), (112, 172), (112, 174), (113, 136), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 146), (113, 147), (113, 148), (113, 149), (113, 151), (113, 167), (113, 171), (113, 173), (114, 137), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 146), (114, 147), (114, 151), (114, 169), (114, 172), (115, 135), (115, 138), (115, 139), (115, 140), (115, 141), (115, 142), (115, 143), (115, 144), (115, 145), (115, 148), (115, 150), (115, 151), (115, 172), (116, 136), (116, 137), (116, 140), (116, 141), (116, 142), (116, 143), (116, 144), (116, 145), (117, 138), (117, 141), (117, 142), (117, 143), (117, 145), (118, 140), (118, 143), (118, 145), (119, 141), (119, 145), (120, 143), (121, 144))
coordinates_5_fcc60 = ((126, 144), (127, 136), (127, 138), (127, 139), (127, 140), (127, 141), (127, 142), (127, 144), (128, 135), (128, 137), (128, 145), (129, 135), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 143), (129, 144), (129, 146), (129, 152), (129, 154), (129, 155), (130, 135), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 144), (130, 145), (130, 147), (130, 151), (130, 153), (130, 155), (131, 136), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 145), (131, 146), (131, 149), (131, 150), (131, 151), (131, 152), (131, 154), (132, 136), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 146), (132, 147), (132, 151), (132, 153), (132, 173), (132, 175), (133, 136), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 149), (133, 152), (133, 170), (133, 173), (133, 175), (134, 138), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 147), (134, 150), (134, 151), (134, 168), (134, 173), (134, 175), (135, 139), (135, 142), (135, 143), (135, 144), (135, 145), (135, 147), (135, 167), (135, 170), (135, 173), (135, 174), (135, 176), (136, 140), (136, 143), (136, 144), (136, 145), (136, 146), (136, 148), (136, 166), (136, 168), (136, 169), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 177), (137, 142), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 164), (137, 167), (137, 168), (137, 169), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 178), (138, 142), (138, 144), (138, 145), (138, 146), (138, 148), (138, 166), (138, 167), (138, 168), (138, 169), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 179), (139, 143), (139, 145), (139, 147), (139, 164), (139, 166), (139, 167), (139, 168), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 179), (140, 143), (140, 145), (140, 147), (140, 164), (140, 166), (140, 167), (140, 168), (140, 169), (140, 170), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 179), (141, 144), (141, 146), (141, 148), (141, 164), (141, 166), (141, 167), (141, 168), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 176), (141, 178), (142, 145), (142, 148), (142, 164), (142, 166), (142, 167), (142, 168), (142, 169), (142, 170), (142, 171), (142, 172), (142, 173), (142, 175), (143, 145), (143, 147), (143, 149), (143, 163), (143, 165), (143, 166), (143, 167), (143, 168), (143, 169), (143, 170), (143, 171), (143, 172), (144, 146), (144, 149), (144, 163), (144, 165), (144, 166), (144, 167), (144, 168), (144, 169), (144, 170), (144, 171), (144, 173), (145, 147), (145, 150), (145, 163), (145, 165), (145, 166), (145, 167), (145, 168), (145, 169), (145, 170), (145, 172), (146, 147), (146, 150), (146, 162), (146, 164), (146, 165), (146, 166), (146, 167), (146, 168), (146, 169), (146, 170), (146, 172), (147, 148), (147, 151), (147, 162), (147, 164), (147, 165), (147, 166), (147, 167), (147, 168), (147, 169), (147, 170), (147, 172), (148, 149), (148, 152), (148, 161), (148, 163), (148, 164), (148, 165), (148, 166), (148, 167), (148, 168), (148, 169), (148, 170), (148, 172), (149, 149), (149, 151), (149, 153), (149, 161), (149, 163), (149, 164), (149, 165), (149, 166), (149, 167), (149, 168), (149, 169), (149, 170), (149, 172), (150, 150), (150, 152), (150, 154), (150, 160), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 168), (150, 169), (150, 170), (150, 172), (151, 151), (151, 153), (151, 155), (151, 160), (151, 162), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 168), (151, 169), (151, 171), (152, 151), (152, 153), (152, 154), (152, 156), (152, 159), (152, 161), (152, 162), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 169), (152, 171), (153, 151), (153, 153), (153, 154), (153, 155), (153, 157), (153, 160), (153, 161), (153, 162), (153, 163), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 169), (153, 171), (154, 152), (154, 154), (154, 155), (154, 156), (154, 159), (154, 160), (154, 161), (154, 162), (154, 163), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 171), (155, 152), (155, 153), (155, 154), (155, 155), (155, 156), (155, 157), (155, 158), (155, 159), (155, 160), (155, 161), (155, 162), (155, 163), (155, 164), (155, 165), (155, 166), (155, 167), (155, 168), (155, 170), (156, 153), (156, 155), (156, 156), (156, 157), (156, 158), (156, 159), (156, 160), (156, 161), (156, 162), (156, 163), (156, 164), (156, 165), (156, 166), (156, 167), (156, 169), (157, 153), (157, 155), (157, 156), (157, 157), (157, 158), (157, 159), (157, 160), (157, 161), (157, 162), (157, 163), (157, 164), (157, 165), (157, 166), (157, 168), (158, 154), (158, 156), (158, 157), (158, 158), (158, 159), (158, 160), (158, 161), (158, 162), (158, 163), (158, 164), (158, 165), (158, 166), (158, 168), (159, 155), (159, 157), (159, 158), (159, 161), (159, 162), (159, 163), (159, 164), (159, 165), (159, 167), (160, 156), (160, 159), (160, 161), (160, 162), (160, 163), (160, 164), (160, 166), (161, 156), (161, 161), (161, 163), (161, 165), (162, 161), (162, 164), (163, 161), (163, 164), (164, 161), (164, 164), (165, 161), (165, 163))
coordinates_f4_deb3 = ((144, 85), (145, 83), (145, 85), (146, 80), (146, 82), (146, 85), (147, 78), (147, 82), (147, 83), (147, 85), (148, 76), (148, 80), (148, 81), (148, 82), (148, 83), (148, 84), (148, 86), (149, 72), (149, 73), (149, 74), (149, 78), (149, 79), (149, 80), (149, 81), (149, 82), (149, 83), (149, 84), (149, 85), (149, 87), (150, 69), (150, 71), (150, 75), (150, 76), (150, 77), (150, 78), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 84), (150, 85), (150, 86), (150, 88), (151, 69), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 79), (151, 80), (151, 82), (151, 83), (151, 84), (151, 85), (151, 87), (152, 68), (152, 70), (152, 71), (152, 72), (152, 73), (152, 74), (152, 75), (152, 76), (152, 77), (152, 78), (152, 79), (152, 81), (152, 83), (152, 84), (152, 85), (152, 87), (153, 69), (153, 71), (153, 72), (153, 73), (153, 74), (153, 80), (153, 83), (153, 84), (153, 85), (153, 87), (154, 69), (154, 72), (154, 73), (154, 75), (154, 76), (154, 77), (154, 79), (154, 83), (154, 86), (155, 70), (155, 71), (155, 74), (155, 83), (155, 94), (155, 96), (156, 73), (156, 82), (156, 85), (156, 93), (156, 96), (157, 81), (157, 83), (157, 92), (157, 94), (157, 95), (158, 80), (158, 82), (158, 91), (158, 93), (158, 95), (159, 79), (159, 81), (159, 90), (159, 92), (159, 94), (160, 78), (160, 80), (160, 88), (160, 94), (161, 77), (161, 79), (161, 87), (161, 90), (161, 91), (161, 93), (162, 76), (162, 79), (162, 83), (162, 85), (162, 88), (163, 76), (163, 78), (163, 79), (163, 80), (163, 81), (163, 82), (163, 83), (163, 87), (164, 76), (164, 77), (164, 78), (164, 85), (165, 76), (165, 79), (165, 80), (165, 81), (165, 82), (165, 83), (165, 84), (166, 77), (166, 78))
coordinates_ff00_fe = ((123, 125), (124, 96), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 105), (124, 106), (124, 108), (125, 96), (125, 104), (125, 107), (125, 124), (126, 97), (126, 99), (126, 100), (126, 106), (126, 107), (127, 97), (127, 99), (127, 101), (127, 106), (127, 107), (127, 124), (128, 97), (128, 99), (128, 101), (128, 106), (128, 107), (128, 124), (129, 97), (129, 100), (129, 106), (130, 98), (130, 100), (130, 106), (130, 125), (130, 126), (131, 98), (131, 99), (131, 105), (131, 125), (131, 127), (131, 128), (131, 129), (132, 98), (132, 99), (132, 125), (132, 128), (132, 129), (132, 131), (133, 98), (133, 125), (133, 127), (133, 130), (133, 132), (134, 126), (134, 131), (134, 132), (135, 125), (135, 131), (135, 133), (136, 132), (136, 133), (137, 132), (137, 133), (138, 133))
coordinates_fe00_ff = ((106, 97), (106, 98), (107, 97), (108, 94), (109, 92), (109, 95), (110, 92), (110, 95), (111, 92), (111, 95), (112, 92), (112, 95), (113, 92), (113, 95), (114, 92), (114, 95), (114, 107), (115, 92), (115, 95), (115, 107), (116, 92), (116, 94), (116, 95), (116, 96), (116, 97), (116, 107), (117, 91), (117, 93), (117, 94), (117, 95), (117, 98), (117, 99), (117, 101), (117, 106), (117, 107), (118, 91), (118, 93), (118, 94), (118, 95), (118, 96), (118, 97), (118, 106), (118, 107), (118, 108), (119, 90), (119, 92), (119, 93), (119, 94), (119, 95), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 103), (119, 104), (119, 106), (119, 108), (120, 90), (120, 94), (120, 95), (120, 96), (120, 108), (121, 90), (121, 92), (121, 93), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104), (121, 105), (121, 106), (121, 108), (122, 95), (122, 109))
coordinates_26408_b = ((124, 87), (124, 89), (124, 90), (124, 91), (124, 93), (124, 94), (125, 87), (125, 94), (126, 87), (126, 89), (126, 91), (126, 92), (126, 94), (127, 87), (127, 89), (127, 90), (127, 92), (127, 93), (127, 95), (128, 87), (128, 89), (128, 93), (128, 95), (129, 87), (129, 89), (129, 92), (129, 95), (130, 87), (130, 89), (130, 93), (130, 95), (131, 88), (131, 89), (131, 94), (131, 96), (132, 88), (132, 89), (132, 95), (132, 96), (133, 88), (133, 90), (133, 96), (134, 89), (134, 91), (135, 89), (135, 92), (136, 90), (137, 91), (137, 92))
coordinates_798732 = ((124, 68), (124, 70), (124, 71), (124, 75), (124, 79), (124, 81), (124, 82), (124, 84), (125, 65), (125, 73), (125, 77), (125, 80), (125, 85), (126, 68), (126, 70), (126, 75), (126, 78), (126, 83), (126, 85), (127, 70), (127, 84), (127, 85), (128, 69), (128, 70), (128, 84), (128, 85), (129, 69), (129, 84), (129, 85), (130, 70), (130, 71), (130, 84), (130, 85), (131, 84), (131, 85), (132, 84), (132, 86), (133, 84), (133, 86), (134, 84), (134, 86), (135, 85), (135, 87), (136, 86), (136, 87), (137, 88), (138, 90))
coordinates_f5_deb3 = ((85, 81), (85, 83), (86, 80), (86, 84), (86, 85), (87, 79), (87, 81), (87, 82), (87, 83), (87, 87), (87, 88), (88, 79), (88, 81), (88, 82), (88, 83), (88, 84), (88, 85), (88, 89), (88, 90), (88, 91), (88, 92), (89, 80), (89, 83), (89, 84), (89, 85), (89, 86), (89, 87), (89, 88), (89, 93), (89, 95), (90, 81), (90, 84), (90, 85), (90, 86), (90, 87), (90, 88), (90, 89), (90, 90), (90, 91), (90, 92), (90, 96), (90, 98), (91, 83), (91, 86), (91, 87), (91, 88), (91, 89), (91, 90), (91, 91), (91, 92), (91, 93), (91, 94), (91, 95), (91, 98), (92, 84), (92, 89), (92, 90), (92, 91), (92, 92), (92, 93), (92, 94), (92, 95), (92, 96), (92, 98), (93, 87), (93, 88), (93, 89), (93, 97), (94, 90), (94, 91), (94, 92), (94, 93), (94, 94), (94, 96))
coordinates_016400 = ((134, 135), (135, 135), (136, 135), (136, 138), (137, 135), (137, 139), (138, 135), (138, 137), (138, 138), (138, 140), (139, 135), (139, 137), (139, 138), (139, 140), (140, 135), (140, 137), (140, 139), (141, 135), (141, 137), (141, 139), (142, 135), (142, 137), (142, 139), (143, 135), (143, 137), (143, 139), (144, 134), (144, 136), (144, 137), (144, 139), (145, 134), (145, 136), (145, 137), (145, 139), (146, 134), (146, 136), (146, 137), (146, 139), (147, 134), (147, 136), (147, 137), (147, 139), (148, 134), (148, 136), (148, 137), (148, 139), (149, 134), (149, 136), (149, 138), (150, 134), (150, 136), (150, 138), (151, 134), (151, 135), (151, 137), (152, 135), (152, 137), (153, 135), (153, 136), (154, 135), (154, 136), (155, 135), (156, 135))
coordinates_b8_edc2 = ((121, 140), (121, 142), (122, 137), (122, 143), (123, 137), (123, 140), (123, 141), (123, 144), (124, 144), (125, 137), (125, 139), (125, 140), (125, 141), (125, 142))
|
class Adam:
def __init__(self, lr=0.001, beta1=0.9, beta2=0.999):
self.lr = lr
self.beta1 = beta1
self.beta2 = beta2
self.iter = 0
self.m = None
self.v = None
def update(self, params, grads):
if self.m is None:
self.m, self.v = {}, {}
for key, val in params.items():
self.m[key] = np.zeros_like(val)
self.v[key] = np.zeros_like(val)
self.iter += 1
for key in params.keys():
#self.m[key] = self.beta1 * self.m[key] + (1 - np.power(self.beta1,self.iter))
#self.v[key] = self.beta2 * self.v[key] + (1 - np.power(self.beta1,self.iter))
self.m[key] = self.beta1 * self.m[key] + (1 - self.beta1) * grads[key]
self.v[key] = self.beta2 * self.v[key] + (1 - self.beta2) * (grads[key] * grads[key])
#self.v[key] = self.beta2 * self.v[key] + (1 - self.beta2) * (grads[key]**2)
#m_unbias = (1 - self.beta1) * (grads[key] - self.m[key])
#v_unbias = (1 - self.beta2) * (grads[key]**2 - self.v[key])
m_unbias = self.m[key] / (1 - self.beta1 ** self.iter)
v_unbias = self.v[key] / (1 - self.beta2 ** self.iter)
params[key] -= self.lr * m_unbias / (np.sqrt(v_unbias) + 1e-7)
|
class Adam:
def __init__(self, lr=0.001, beta1=0.9, beta2=0.999):
self.lr = lr
self.beta1 = beta1
self.beta2 = beta2
self.iter = 0
self.m = None
self.v = None
def update(self, params, grads):
if self.m is None:
(self.m, self.v) = ({}, {})
for (key, val) in params.items():
self.m[key] = np.zeros_like(val)
self.v[key] = np.zeros_like(val)
self.iter += 1
for key in params.keys():
self.m[key] = self.beta1 * self.m[key] + (1 - self.beta1) * grads[key]
self.v[key] = self.beta2 * self.v[key] + (1 - self.beta2) * (grads[key] * grads[key])
m_unbias = self.m[key] / (1 - self.beta1 ** self.iter)
v_unbias = self.v[key] / (1 - self.beta2 ** self.iter)
params[key] -= self.lr * m_unbias / (np.sqrt(v_unbias) + 1e-07)
|
#
# PySNMP MIB module HH3C-RCP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-RCP-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:29:20 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion")
hh3cRCP, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cRCP")
InterfaceIndexOrZero, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndexOrZero")
InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ObjectIdentity, Counter32, Bits, Counter64, Integer32, Gauge32, MibIdentifier, TimeTicks, ModuleIdentity, Unsigned32, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, iso = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Counter32", "Bits", "Counter64", "Integer32", "Gauge32", "MibIdentifier", "TimeTicks", "ModuleIdentity", "Unsigned32", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "iso")
RowStatus, DisplayString, TruthValue, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "DisplayString", "TruthValue", "TextualConvention")
hh3cRCPMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1))
hh3cRCPMIB.setRevisions(('2006-09-20 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: hh3cRCPMIB.setRevisionsDescriptions(('The Initial Version of h3cRCPMIB.',))
if mibBuilder.loadTexts: hh3cRCPMIB.setLastUpdated('200609200000Z')
if mibBuilder.loadTexts: hh3cRCPMIB.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
if mibBuilder.loadTexts: hh3cRCPMIB.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ')
if mibBuilder.loadTexts: hh3cRCPMIB.setDescription('The MIB module is used for managing RCP protocol server.')
hh3cRCPLeaf = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1))
hh3cRCPServerEnableStatus = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cRCPServerEnableStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPServerEnableStatus.setDescription('This attribute controls the system wide operation of RCP server. The value TRUE means that the RCP server is enabled. The value FALSE means that the RCP server is disabled.')
hh3cRCPConnTimeout = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cRCPConnTimeout.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPConnTimeout.setDescription('Specifies the maximum time in seconds that a RCP client connection is idle.')
hh3cRCPRuleTimeout = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cRCPRuleTimeout.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPRuleTimeout.setDescription('Specifies the time in seconds before a RCP rule is aged out. If its value is 0, it indicates RCP rule will not be aged out.')
hh3cRCPServerMaxConn = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cRCPServerMaxConn.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPServerMaxConn.setDescription('Specifies the maximum number of clients that permitted to connect with RCP server at the same time.')
hh3cRCPServerCurConn = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPServerCurConn.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPServerCurConn.setDescription('The current actual number of clients that connecting with RCP server.')
hh3cRCPConnTimeoutMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPConnTimeoutMaxValue.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPConnTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPConnTimeout.')
hh3cRCPRuleTimeoutMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPRuleTimeoutMaxValue.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPRuleTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPRuleTimeout.')
hh3cRCPServerMaxConnMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPServerMaxConnMaxValue.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPServerMaxConnMaxValue.setDescription('Specifies the maximum value of hh3cRCPServerMaxConn.')
hh3cRCPBalanceGroupIdMinValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMinValue.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMinValue.setDescription('Specifies the minimum value of balance group identity.')
hh3cRCPBalanceGroupIdMaxValue = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMaxValue.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPBalanceGroupIdMaxValue.setDescription('Specifies the maximum value of balance group identity.')
hh3cRCPTotalUsers = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPTotalUsers.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPTotalUsers.setDescription('Specifies the total number of RCP user.')
hh3cRCPTotalClientIPs = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPTotalClientIPs.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPTotalClientIPs.setDescription('Specifies the total number of RCP client IP.')
hh3cRCPTable = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2))
hh3cRCPUserTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1), )
if mibBuilder.loadTexts: hh3cRCPUserTable.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserTable.setDescription('RCP User Info Table.')
hh3cRCPUserEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1), ).setIndexNames((0, "HH3C-RCP-MIB", "hh3cRCPUserName"))
if mibBuilder.loadTexts: hh3cRCPUserEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserEntry.setDescription('The entry of hh3cRCPUserTable.')
hh3cRCPUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 16)))
if mibBuilder.loadTexts: hh3cRCPUserName.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserName.setDescription('The name of RCP user.')
hh3cRCPUserPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cRCPUserPassword.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserPassword.setDescription(" The password of RCP user. It is invisible to users and displayed as '***'.")
hh3cRCPUserRedirectInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 3), InterfaceIndexOrZero()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cRCPUserRedirectInterface.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserRedirectInterface.setDescription('The redirect interface index of RCP user. The RCP rule assigned by the user can be associated with the redirect interface. If the redirect interface is invalid, its value is set to be 0.')
hh3cRCPUserRedirectBalanceGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cRCPUserRedirectBalanceGroup.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserRedirectBalanceGroup.setDescription('The redirect balance group identity of RCP user. The RCP rule assigned by the user can be associated with the redirect balance group. If the balance group is invalid, its value is set to be 0.')
hh3cRCPUserRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cRCPUserRowStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPUserRowStatus.setDescription('This manages the creation and deletion of rows, and shows the current status of the indexed user name. This object has the following values. active(1) The indexed user name is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new user. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPUserRowStatus is active(1). When deleting an inexistence entry, return noError.')
hh3cRCPClientIPTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2), )
if mibBuilder.loadTexts: hh3cRCPClientIPTable.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPClientIPTable.setDescription('RCP Client IP Table.')
hh3cRCPClientIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1), ).setIndexNames((0, "HH3C-RCP-MIB", "hh3cRCPClientIPType"), (0, "HH3C-RCP-MIB", "hh3cRCPClientIP"))
if mibBuilder.loadTexts: hh3cRCPClientIPEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPClientIPEntry.setDescription('The entry of hh3cRCPClientIPTable.')
hh3cRCPClientIPType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 1), InetAddressType())
if mibBuilder.loadTexts: hh3cRCPClientIPType.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.')
hh3cRCPClientIP = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 2), InetAddress())
if mibBuilder.loadTexts: hh3cRCPClientIP.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPClientIP.setDescription('The IP address of RCP client.')
hh3cRCPClientIPRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cRCPClientIPRowStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPClientIPRowStatus.setDescription('This manages the creation and deletion or rows, and shows the current status of the indexed client IP address. This object has the following values. active(1) The indexed client IP is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new client IP. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPClientIPRowStatus is active(1). When deleting an inexistence entry, return noError.')
hh3cRCPSessionTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3), )
if mibBuilder.loadTexts: hh3cRCPSessionTable.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionTable.setDescription('RCP session Table.')
hh3cRCPSessionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1), ).setIndexNames((0, "HH3C-RCP-MIB", "hh3cRCPSessionId"))
if mibBuilder.loadTexts: hh3cRCPSessionEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionEntry.setDescription('The entry of hh3cRCPSessionTable.')
hh3cRCPSessionId = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 1), Integer32())
if mibBuilder.loadTexts: hh3cRCPSessionId.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionId.setDescription('RCP session identity.')
hh3cRCPSessionClientIPType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 2), InetAddressType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPSessionClientIPType.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.')
hh3cRCPSessionClientIP = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 3), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPSessionClientIP.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionClientIP.setDescription('RCP client IP address.')
hh3cRCPSessionRunningStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("connected", 1), ("operational", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPSessionRunningStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionRunningStatus.setDescription('RCP server running status. It is one of the following status: connected: The connection is established and the RCP client is waiting for authentication. operational: The RCP client is authenticated and the server is ready for rule configuration request.')
hh3cRCPSessionUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cRCPSessionUserName.setStatus('current')
if mibBuilder.loadTexts: hh3cRCPSessionUserName.setDescription('RCP user name.')
mibBuilder.exportSymbols("HH3C-RCP-MIB", hh3cRCPTotalUsers=hh3cRCPTotalUsers, hh3cRCPUserTable=hh3cRCPUserTable, hh3cRCPUserPassword=hh3cRCPUserPassword, hh3cRCPSessionTable=hh3cRCPSessionTable, hh3cRCPUserEntry=hh3cRCPUserEntry, hh3cRCPSessionId=hh3cRCPSessionId, hh3cRCPSessionRunningStatus=hh3cRCPSessionRunningStatus, hh3cRCPConnTimeout=hh3cRCPConnTimeout, hh3cRCPUserRowStatus=hh3cRCPUserRowStatus, hh3cRCPClientIPType=hh3cRCPClientIPType, hh3cRCPRuleTimeout=hh3cRCPRuleTimeout, PYSNMP_MODULE_ID=hh3cRCPMIB, hh3cRCPServerCurConn=hh3cRCPServerCurConn, hh3cRCPBalanceGroupIdMinValue=hh3cRCPBalanceGroupIdMinValue, hh3cRCPSessionEntry=hh3cRCPSessionEntry, hh3cRCPRuleTimeoutMaxValue=hh3cRCPRuleTimeoutMaxValue, hh3cRCPUserName=hh3cRCPUserName, hh3cRCPClientIPTable=hh3cRCPClientIPTable, hh3cRCPServerMaxConn=hh3cRCPServerMaxConn, hh3cRCPUserRedirectBalanceGroup=hh3cRCPUserRedirectBalanceGroup, hh3cRCPServerMaxConnMaxValue=hh3cRCPServerMaxConnMaxValue, hh3cRCPBalanceGroupIdMaxValue=hh3cRCPBalanceGroupIdMaxValue, hh3cRCPSessionClientIP=hh3cRCPSessionClientIP, hh3cRCPUserRedirectInterface=hh3cRCPUserRedirectInterface, hh3cRCPTable=hh3cRCPTable, hh3cRCPSessionUserName=hh3cRCPSessionUserName, hh3cRCPSessionClientIPType=hh3cRCPSessionClientIPType, hh3cRCPClientIPRowStatus=hh3cRCPClientIPRowStatus, hh3cRCPServerEnableStatus=hh3cRCPServerEnableStatus, hh3cRCPClientIP=hh3cRCPClientIP, hh3cRCPLeaf=hh3cRCPLeaf, hh3cRCPMIB=hh3cRCPMIB, hh3cRCPTotalClientIPs=hh3cRCPTotalClientIPs, hh3cRCPClientIPEntry=hh3cRCPClientIPEntry, hh3cRCPConnTimeoutMaxValue=hh3cRCPConnTimeoutMaxValue)
|
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion')
(hh3c_rcp,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cRCP')
(interface_index_or_zero,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndexOrZero')
(inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(object_identity, counter32, bits, counter64, integer32, gauge32, mib_identifier, time_ticks, module_identity, unsigned32, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Counter32', 'Bits', 'Counter64', 'Integer32', 'Gauge32', 'MibIdentifier', 'TimeTicks', 'ModuleIdentity', 'Unsigned32', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'iso')
(row_status, display_string, truth_value, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'DisplayString', 'TruthValue', 'TextualConvention')
hh3c_rcpmib = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1))
hh3cRCPMIB.setRevisions(('2006-09-20 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
hh3cRCPMIB.setRevisionsDescriptions(('The Initial Version of h3cRCPMIB.',))
if mibBuilder.loadTexts:
hh3cRCPMIB.setLastUpdated('200609200000Z')
if mibBuilder.loadTexts:
hh3cRCPMIB.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
if mibBuilder.loadTexts:
hh3cRCPMIB.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ')
if mibBuilder.loadTexts:
hh3cRCPMIB.setDescription('The MIB module is used for managing RCP protocol server.')
hh3c_rcp_leaf = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1))
hh3c_rcp_server_enable_status = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cRCPServerEnableStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPServerEnableStatus.setDescription('This attribute controls the system wide operation of RCP server. The value TRUE means that the RCP server is enabled. The value FALSE means that the RCP server is disabled.')
hh3c_rcp_conn_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cRCPConnTimeout.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPConnTimeout.setDescription('Specifies the maximum time in seconds that a RCP client connection is idle.')
hh3c_rcp_rule_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cRCPRuleTimeout.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPRuleTimeout.setDescription('Specifies the time in seconds before a RCP rule is aged out. If its value is 0, it indicates RCP rule will not be aged out.')
hh3c_rcp_server_max_conn = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cRCPServerMaxConn.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPServerMaxConn.setDescription('Specifies the maximum number of clients that permitted to connect with RCP server at the same time.')
hh3c_rcp_server_cur_conn = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPServerCurConn.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPServerCurConn.setDescription('The current actual number of clients that connecting with RCP server.')
hh3c_rcp_conn_timeout_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPConnTimeoutMaxValue.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPConnTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPConnTimeout.')
hh3c_rcp_rule_timeout_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPRuleTimeoutMaxValue.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPRuleTimeoutMaxValue.setDescription('Specifies the maximum value of hh3cRCPRuleTimeout.')
hh3c_rcp_server_max_conn_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPServerMaxConnMaxValue.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPServerMaxConnMaxValue.setDescription('Specifies the maximum value of hh3cRCPServerMaxConn.')
hh3c_rcp_balance_group_id_min_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPBalanceGroupIdMinValue.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPBalanceGroupIdMinValue.setDescription('Specifies the minimum value of balance group identity.')
hh3c_rcp_balance_group_id_max_value = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPBalanceGroupIdMaxValue.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPBalanceGroupIdMaxValue.setDescription('Specifies the maximum value of balance group identity.')
hh3c_rcp_total_users = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPTotalUsers.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPTotalUsers.setDescription('Specifies the total number of RCP user.')
hh3c_rcp_total_client_i_ps = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPTotalClientIPs.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPTotalClientIPs.setDescription('Specifies the total number of RCP client IP.')
hh3c_rcp_table = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2))
hh3c_rcp_user_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1))
if mibBuilder.loadTexts:
hh3cRCPUserTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserTable.setDescription('RCP User Info Table.')
hh3c_rcp_user_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1)).setIndexNames((0, 'HH3C-RCP-MIB', 'hh3cRCPUserName'))
if mibBuilder.loadTexts:
hh3cRCPUserEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserEntry.setDescription('The entry of hh3cRCPUserTable.')
hh3c_rcp_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 16)))
if mibBuilder.loadTexts:
hh3cRCPUserName.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserName.setDescription('The name of RCP user.')
hh3c_rcp_user_password = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cRCPUserPassword.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserPassword.setDescription(" The password of RCP user. It is invisible to users and displayed as '***'.")
hh3c_rcp_user_redirect_interface = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 3), interface_index_or_zero()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cRCPUserRedirectInterface.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserRedirectInterface.setDescription('The redirect interface index of RCP user. The RCP rule assigned by the user can be associated with the redirect interface. If the redirect interface is invalid, its value is set to be 0.')
hh3c_rcp_user_redirect_balance_group = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cRCPUserRedirectBalanceGroup.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserRedirectBalanceGroup.setDescription('The redirect balance group identity of RCP user. The RCP rule assigned by the user can be associated with the redirect balance group. If the balance group is invalid, its value is set to be 0.')
hh3c_rcp_user_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 1, 1, 5), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cRCPUserRowStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPUserRowStatus.setDescription('This manages the creation and deletion of rows, and shows the current status of the indexed user name. This object has the following values. active(1) The indexed user name is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new user. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPUserRowStatus is active(1). When deleting an inexistence entry, return noError.')
hh3c_rcp_client_ip_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2))
if mibBuilder.loadTexts:
hh3cRCPClientIPTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPClientIPTable.setDescription('RCP Client IP Table.')
hh3c_rcp_client_ip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1)).setIndexNames((0, 'HH3C-RCP-MIB', 'hh3cRCPClientIPType'), (0, 'HH3C-RCP-MIB', 'hh3cRCPClientIP'))
if mibBuilder.loadTexts:
hh3cRCPClientIPEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPClientIPEntry.setDescription('The entry of hh3cRCPClientIPTable.')
hh3c_rcp_client_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
hh3cRCPClientIPType.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.')
hh3c_rcp_client_ip = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 2), inet_address())
if mibBuilder.loadTexts:
hh3cRCPClientIP.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPClientIP.setDescription('The IP address of RCP client.')
hh3c_rcp_client_ip_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 2, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cRCPClientIPRowStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPClientIPRowStatus.setDescription('This manages the creation and deletion or rows, and shows the current status of the indexed client IP address. This object has the following values. active(1) The indexed client IP is configured on the device. notInService(2) Not Supported. notReady(3) Not Supported. createAndGo(4) Create a new client IP. createAndWait(5) Not Supported. destroy(6) Delete this entry. The associated entry can be modified when the value of hh3cRCPClientIPRowStatus is active(1). When deleting an inexistence entry, return noError.')
hh3c_rcp_session_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3))
if mibBuilder.loadTexts:
hh3cRCPSessionTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionTable.setDescription('RCP session Table.')
hh3c_rcp_session_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1)).setIndexNames((0, 'HH3C-RCP-MIB', 'hh3cRCPSessionId'))
if mibBuilder.loadTexts:
hh3cRCPSessionEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionEntry.setDescription('The entry of hh3cRCPSessionTable.')
hh3c_rcp_session_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 1), integer32())
if mibBuilder.loadTexts:
hh3cRCPSessionId.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionId.setDescription('RCP session identity.')
hh3c_rcp_session_client_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 2), inet_address_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPSessionClientIPType.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionClientIPType.setDescription('The IP address type (IPv4 or IPv6) of RCP client.')
hh3c_rcp_session_client_ip = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 3), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPSessionClientIP.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionClientIP.setDescription('RCP client IP address.')
hh3c_rcp_session_running_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('connected', 1), ('operational', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPSessionRunningStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionRunningStatus.setDescription('RCP server running status. It is one of the following status: connected: The connection is established and the RCP client is waiting for authentication. operational: The RCP client is authenticated and the server is ready for rule configuration request.')
hh3c_rcp_session_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 73, 1, 2, 3, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cRCPSessionUserName.setStatus('current')
if mibBuilder.loadTexts:
hh3cRCPSessionUserName.setDescription('RCP user name.')
mibBuilder.exportSymbols('HH3C-RCP-MIB', hh3cRCPTotalUsers=hh3cRCPTotalUsers, hh3cRCPUserTable=hh3cRCPUserTable, hh3cRCPUserPassword=hh3cRCPUserPassword, hh3cRCPSessionTable=hh3cRCPSessionTable, hh3cRCPUserEntry=hh3cRCPUserEntry, hh3cRCPSessionId=hh3cRCPSessionId, hh3cRCPSessionRunningStatus=hh3cRCPSessionRunningStatus, hh3cRCPConnTimeout=hh3cRCPConnTimeout, hh3cRCPUserRowStatus=hh3cRCPUserRowStatus, hh3cRCPClientIPType=hh3cRCPClientIPType, hh3cRCPRuleTimeout=hh3cRCPRuleTimeout, PYSNMP_MODULE_ID=hh3cRCPMIB, hh3cRCPServerCurConn=hh3cRCPServerCurConn, hh3cRCPBalanceGroupIdMinValue=hh3cRCPBalanceGroupIdMinValue, hh3cRCPSessionEntry=hh3cRCPSessionEntry, hh3cRCPRuleTimeoutMaxValue=hh3cRCPRuleTimeoutMaxValue, hh3cRCPUserName=hh3cRCPUserName, hh3cRCPClientIPTable=hh3cRCPClientIPTable, hh3cRCPServerMaxConn=hh3cRCPServerMaxConn, hh3cRCPUserRedirectBalanceGroup=hh3cRCPUserRedirectBalanceGroup, hh3cRCPServerMaxConnMaxValue=hh3cRCPServerMaxConnMaxValue, hh3cRCPBalanceGroupIdMaxValue=hh3cRCPBalanceGroupIdMaxValue, hh3cRCPSessionClientIP=hh3cRCPSessionClientIP, hh3cRCPUserRedirectInterface=hh3cRCPUserRedirectInterface, hh3cRCPTable=hh3cRCPTable, hh3cRCPSessionUserName=hh3cRCPSessionUserName, hh3cRCPSessionClientIPType=hh3cRCPSessionClientIPType, hh3cRCPClientIPRowStatus=hh3cRCPClientIPRowStatus, hh3cRCPServerEnableStatus=hh3cRCPServerEnableStatus, hh3cRCPClientIP=hh3cRCPClientIP, hh3cRCPLeaf=hh3cRCPLeaf, hh3cRCPMIB=hh3cRCPMIB, hh3cRCPTotalClientIPs=hh3cRCPTotalClientIPs, hh3cRCPClientIPEntry=hh3cRCPClientIPEntry, hh3cRCPConnTimeoutMaxValue=hh3cRCPConnTimeoutMaxValue)
|
#Two words are blanagrams if they are anagrams but exactly one letter has been substituted for another.
#Given two words, check if they are blanagrams of each other.
def checkBlanagrams(word1, word2):
difference = 0
sortedWord1 = sorted(word1)
sortedWord2 = sorted(word2)
for a, b in zip(sortedWord1, sortedWord2):
if sortedWord1 == sortedWord2:
return False
if a != b:
difference += 1
if difference > 1:
return False
return True
#You are given a sorted array in ascending order that is rotated at some unknown pivot (i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2])
#and a target value.
#Write a function that returns the target value's index. If the target value is not present in the array, return -1.
#You may assume no duplicate exists in the array.
#Your algorithm's runtime complexity must be in the order of O(log n).
def findValueSortedShiftedArray(nums, target):
min = 0
max = len(nums) - 1
while min < max:
mid = (min + max) // 2
if nums[mid] == target:
return mid
if nums[min] <= nums[mid]:
if target >= nums[min] and target < nums[mid]:
max = mid
else:
min = mid + 1
else:
if target <= nums[max] and target > nums[mid]:
min = mid + 1
else:
max = mid
return -1
|
def check_blanagrams(word1, word2):
difference = 0
sorted_word1 = sorted(word1)
sorted_word2 = sorted(word2)
for (a, b) in zip(sortedWord1, sortedWord2):
if sortedWord1 == sortedWord2:
return False
if a != b:
difference += 1
if difference > 1:
return False
return True
def find_value_sorted_shifted_array(nums, target):
min = 0
max = len(nums) - 1
while min < max:
mid = (min + max) // 2
if nums[mid] == target:
return mid
if nums[min] <= nums[mid]:
if target >= nums[min] and target < nums[mid]:
max = mid
else:
min = mid + 1
elif target <= nums[max] and target > nums[mid]:
min = mid + 1
else:
max = mid
return -1
|
arr = [1, 2]
brr = [3, 4]
print(arr + brr)
print([1] * 3)
|
arr = [1, 2]
brr = [3, 4]
print(arr + brr)
print([1] * 3)
|
def check_is_prime(n):
if n == 2 or n == 3:
return True
if n % 2 == 0 or n < 2:
return False
for i in range(3, int(n**0.5)+1, 2):
if n % i == 0:
return False
return True
|
def check_is_prime(n):
if n == 2 or n == 3:
return True
if n % 2 == 0 or n < 2:
return False
for i in range(3, int(n ** 0.5) + 1, 2):
if n % i == 0:
return False
return True
|
if __name__ == '__main__':
input = [x.strip().split('-') for x in open('input', 'r').readlines()]
map = {}
for path in input:
if path[0] not in map: map[path[0]] = list()
map[path[0]].append(path[1])
if path[1] not in map: map[path[1]] = list()
map[path[1]].append(path[0])
paths_to_finish = [(['start'], False)]
counter = 0
all_paths = []
while paths_to_finish:
current_path, already_revisited = paths_to_finish.pop(-1)
if current_path[-1] == 'end':
counter += 1
all_paths.append(current_path)
continue
for next_cave in map[current_path[-1]]:
currently_revisiting = already_revisited
if next_cave == 'start':
continue
elif next_cave.islower() and next_cave in current_path and already_revisited:
continue
elif next_cave.islower() and next_cave in current_path and not already_revisited:
currently_revisiting = True
paths_to_finish.append((current_path + [next_cave], currently_revisiting))
print(counter)
|
if __name__ == '__main__':
input = [x.strip().split('-') for x in open('input', 'r').readlines()]
map = {}
for path in input:
if path[0] not in map:
map[path[0]] = list()
map[path[0]].append(path[1])
if path[1] not in map:
map[path[1]] = list()
map[path[1]].append(path[0])
paths_to_finish = [(['start'], False)]
counter = 0
all_paths = []
while paths_to_finish:
(current_path, already_revisited) = paths_to_finish.pop(-1)
if current_path[-1] == 'end':
counter += 1
all_paths.append(current_path)
continue
for next_cave in map[current_path[-1]]:
currently_revisiting = already_revisited
if next_cave == 'start':
continue
elif next_cave.islower() and next_cave in current_path and already_revisited:
continue
elif next_cave.islower() and next_cave in current_path and (not already_revisited):
currently_revisiting = True
paths_to_finish.append((current_path + [next_cave], currently_revisiting))
print(counter)
|
class DH_Endpoint(object):
def __init__(self, public_key1, public_key2, private_key):
self.public_key1 = public_key1
self.public_key2 = public_key2
self.private_key = private_key
self.full_key = None
def generate_partial_key(self):
partial_key = self.public_key1**self.private_key
partial_key = partial_key%self.public_key2
return partial_key
def generate_full_key(self, partial_key_r):
full_key = partial_key_r**self.private_key
full_key = full_key%self.public_key2
self.full_key = full_key
return full_key
def encrypt_message(self, message):
encrypted_message = ""
key = self.full_key
for c in message:
encrypted_message += chr(ord(c)+key)
return encrypted_message
def decrypt_message(self, encrypted_message):
decrypted_message = ""
key = self.full_key
for c in encrypted_message:
decrypted_message += chr(ord(c)-key)
return decrypted_message
message="This is a very secret message!!!"
s_public=197
s_private=199
m_public=151
m_private=157
Sadat = DH_Endpoint(s_public, m_public, s_private)
Michael = DH_Endpoint(s_public, m_public, m_private)
s_partial=Sadat.generate_partial_key()
print(s_partial)
m_partial=Michael.generate_partial_key()
print(m_partial)
s_full=Sadat.generate_full_key(m_partial)
print(s_full) #75
m_full=Michael.generate_full_key(s_partial)
print(m_full) #75
m_encrypted=Michael.encrypt_message(message)
print(m_encrypted)
message = Sadat.decrypt_message(m_encrypted)
print(message)
|
class Dh_Endpoint(object):
def __init__(self, public_key1, public_key2, private_key):
self.public_key1 = public_key1
self.public_key2 = public_key2
self.private_key = private_key
self.full_key = None
def generate_partial_key(self):
partial_key = self.public_key1 ** self.private_key
partial_key = partial_key % self.public_key2
return partial_key
def generate_full_key(self, partial_key_r):
full_key = partial_key_r ** self.private_key
full_key = full_key % self.public_key2
self.full_key = full_key
return full_key
def encrypt_message(self, message):
encrypted_message = ''
key = self.full_key
for c in message:
encrypted_message += chr(ord(c) + key)
return encrypted_message
def decrypt_message(self, encrypted_message):
decrypted_message = ''
key = self.full_key
for c in encrypted_message:
decrypted_message += chr(ord(c) - key)
return decrypted_message
message = 'This is a very secret message!!!'
s_public = 197
s_private = 199
m_public = 151
m_private = 157
sadat = dh__endpoint(s_public, m_public, s_private)
michael = dh__endpoint(s_public, m_public, m_private)
s_partial = Sadat.generate_partial_key()
print(s_partial)
m_partial = Michael.generate_partial_key()
print(m_partial)
s_full = Sadat.generate_full_key(m_partial)
print(s_full)
m_full = Michael.generate_full_key(s_partial)
print(m_full)
m_encrypted = Michael.encrypt_message(message)
print(m_encrypted)
message = Sadat.decrypt_message(m_encrypted)
print(message)
|
def make_sectional_content(data : list) -> list:
sections = []
section = []
for item in data:
if item == "~~~":
sections.append(section)
section = []
continue
section.append(item)
return sections
def print_sectional_content(sections : list) -> None:
for section in sections:
for item in section:
print(item)
input("Enter to continue...")
|
def make_sectional_content(data: list) -> list:
sections = []
section = []
for item in data:
if item == '~~~':
sections.append(section)
section = []
continue
section.append(item)
return sections
def print_sectional_content(sections: list) -> None:
for section in sections:
for item in section:
print(item)
input('Enter to continue...')
|
def test_find_or_create_invite(logged_rocket):
rid = 'GENERAL'
find_or_create_invite = logged_rocket.find_or_create_invite(rid=rid, days=7, max_uses=5).json()
assert find_or_create_invite.get('success')
assert find_or_create_invite.get('days') == 7
assert find_or_create_invite.get('maxUses') == 5
def test_list_invites(logged_rocket):
list_invites = logged_rocket.list_invites().json()
assert isinstance(list_invites, list)
|
def test_find_or_create_invite(logged_rocket):
rid = 'GENERAL'
find_or_create_invite = logged_rocket.find_or_create_invite(rid=rid, days=7, max_uses=5).json()
assert find_or_create_invite.get('success')
assert find_or_create_invite.get('days') == 7
assert find_or_create_invite.get('maxUses') == 5
def test_list_invites(logged_rocket):
list_invites = logged_rocket.list_invites().json()
assert isinstance(list_invites, list)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.