content
stringlengths 7
1.05M
|
---|
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 |
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'
|
'''
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
|
#todo function to access owner and forces more easily
CONNECTIONS = {'Alaska': ['Alberta', 'Northwest Territories', 'Kamchatka'],
'Northwest Territories': ['Alberta', 'Greenland', 'Ontario', 'Alaska'],
'Greenland': ['Quebec', 'Northwest Territories', 'Ontario', 'Iceland'],
'Alberta': ['Western United States', 'Northwest Territories', 'Ontario', 'Alaska'],
'Ontario': ['Alberta', 'Quebec', 'Eastern United States', 'Greenland', 'Northwest Territories',
'Western United States'], 'Quebec': ['Greenland', 'Ontario', 'Eastern United States'],
'Western United States': ['Alberta', 'Mexico', 'Ontario', 'Eastern United States'],
'Eastern United States': ['Quebec', 'Mexico', 'Ontario', 'Western United States'],
'Mexico': ['Venezuela', 'Eastern United States', 'Western United States'],
'Venezuela': ['Brazil', 'Mexico', 'Peru'], 'Brazil': ['North Africa', 'Venezuela', 'Argentina', 'Peru'],
'Peru': ['Brazil', 'Venezuela', 'Argentina'], 'Argentina': ['Brazil', 'Peru'],
'North Africa': ['East Africa', 'Egypt', 'Brazil', 'Southern Europe', 'Congo', 'Western Europe'],
'Egypt': ['Middle East', 'Southern Europe', 'North Africa', 'East Africa'],
'East Africa': ['North Africa', 'Madagascar', 'Egypt', 'South Africa', 'Middle East', 'Congo'],
'Congo': ['North Africa', 'East Africa', 'South Africa'],
'South Africa': ['Madagascar', 'East Africa', 'Congo'], 'Madagascar': ['East Africa', 'South Africa'],
'Iceland': ['Greenland', 'Great Britain', 'Scandinavia'],
'Great Britain': ['Scandinavia', 'Western Europe', 'Iceland', 'Northern Europe'],
'Scandinavia': ['Ukraine', 'Great Britain', 'Iceland', 'Northern Europe'],
'Ukraine': ['Afghanistan', 'Ural', 'Middle East', 'Southern Europe', 'Scandinavia', 'Northern Europe'],
'Northern Europe': ['Ukraine', 'Great Britain', 'Southern Europe', 'Scandinavia', 'Western Europe'],
'Western Europe': ['Great Britain', 'Southern Europe', 'North Africa', 'Northern Europe'],
'Southern Europe': ['North Africa', 'Ukraine', 'Egypt', 'Middle East', 'Northern Europe',
'Western Europe'],
'Middle East': ['Afghanistan', 'East Africa', 'Egypt', 'Ukraine', 'India', 'Southern Europe'],
'Afghanistan': ['Ukraine', 'India', 'Ural', 'China', 'Middle East'],
'India': ['South East Asia', 'Middle East', 'Afghanistan', 'China'],
'South East Asia': ['Indonesia', 'India', 'China'],
'China': ['Afghanistan', 'South East Asia', 'Ural', 'India', 'Siberia', 'Mongolia'],
'Mongolia': ['Kamchatka', 'China', 'Siberia', 'Japan', 'Irkutsk'], 'Japan': ['Mongolia', 'Kamchatka'],
'Kamchatka': ['Alaska', 'Mongolia', 'Yakutsk', 'Japan', 'Irkutsk'],
'Irkutsk': ['Mongolia', 'Siberia', 'Kamchatka', 'Yakutsk'],
'Yakutsk': ['Siberia', 'Kamchatka', 'Irkutsk'],
'Siberia': ['Ural', 'China', 'Mongolia', 'Yakutsk', 'Irkutsk'],
'Ural': ['Ukraine', 'Siberia', 'Afghanistan', 'China'],
'Indonesia': ['Western Australia', 'South East Asia', 'New Guinea'],
'New Guinea': ['Western Australia', 'Indonesia', 'Eastern Australia'],
'Eastern Australia': ['Western Australia', 'New Guinea'],
'Western Australia': ['Indonesia', 'Eastern Australia', 'New Guinea']}
AREAS = {
"North America": (5, ["Alaska", "Northwest Territories", "Greenland", "Alberta", "Ontario", "Quebec",
"Western United States", "Eastern United States", "Mexico"]),
"South America": (2, ["Venezuela", "Brazil", "Peru", "Argentina"]),
"Africa": (3, ["North Africa", "Egypt", "East Africa", "Congo", "South Africa", "Madagascar"]),
"Europe": (
5,
["Iceland", "Great Britain", "Scandinavia", "Ukraine", "Northern Europe", "Western Europe", "Southern Europe"]),
"Asia": (7, ["Middle East", "Afghanistan", "India", "South East Asia", "China", "Mongolia", "Japan", "Kamchatka",
"Irkutsk", "Yakutsk", "Siberia", "Ural"]),
"Australia": (2, ["Indonesia", "New Guinea", "Eastern Australia", "Western Australia"])
}
AREA_TERRITORIES = {key: value[1] for (key, value) in AREAS.items()}
MAP = """
aa bbbb b cccccc pp tB B BCCCCCDDDDDDDDFFFF
aaaaaaabbbbbbbbbb cccc ppptt tttBBBBBCCCCCDDDDDDDFFFFFFFFFFF
aaaaaaabbbbbbbbbbb ccc nnn pp pttttttBBBBBCCCCCDDDDDFFFFFFFFFFFF F
aaaaaaaaddddddde fff c o pp tttttttBBBBBCCCEEEEEEEFFFFFFFFFF
a adddddddeee fff oo p rtttttttBBBBBCCEEEEEEEEFFF F
adddddddeeeefffff ooo rrrrtttttGGGGBBBCCEEEEHHHHHFFF
ddddddeeeeffff f qqrrrrtttttGGGGGGBIIIIHHHHHHHHH
ggggggghh ffff qqsssss ttt GGGGGGIIIIIHHHHHHHH
ggggggghhhhh qqq ss ss tt GGGGGGIIIIIIIIIII J
gggggghhhh qq s ssAAAAAAKKKGGIIIIIIIII I JJ
gggghhhhhh uuuu AAAAAKKKKKKIIIIIIII JJ
ggghhh h uuuuuuvvvvAAA AKKKKKKKIIIIIII J
ii uuuuuuuvvvv AAAA KKKKKKLLLLII
ii uuuuuuuvvvvv AAA KKKK LLLL
iii uuuuuuuuwwww AA KK LLL
iiijj uuuuuuuuwwwww K L M
jjjjj uuuuuuxxwwwww K M MM NN
kjjjmmmm uxxwww MMMM NNNN
kkmmmmmmmm xxxwww N
kkkmmmmm xxxyyy zz PPPP
lkkmmmm yyyyy z OOPPPPP
lllll yyyy z OOOOOPPPP
llll yyy OOOOPPPP
lll yy OO PPPP
"""
KEY = {
"a": "Alaska",
"b": "Northwest Territories",
"c": "Greenland",
"d": "Alberta",
"e": "Ontario",
"f": "Quebec",
"g": "Western United States",
"h": "Eastern United States",
"i": "Mexico",
"j": "Venezuela",
"k": "Peru",
"l": "Argentina",
"m": "Brazil",
"n": "Iceland",
"o": "Great Britain",
"p": "Scandinavia",
"q": "Western Europe",
"r": "Northern Europe",
"s": "Southern Europe",
"t": "Ukraine",
"u": "North Africa",
"v": "Egypt",
"w": "East Africa",
"x": "Congo",
"y": "South Africa",
"z": "Madagascar",
"A": "Middle East",
"B": "Ural",
"C": "Siberia",
"D": "Yakutsk",
"E": "Irkutsk",
"F": "Kamchatka",
"G": "Afghanistan",
"H": "Mongolia",
"I": "China",
"J": "Japan",
"K": "India",
"L": "South East Asia",
"M": "Indonesia",
"N": "New Guinea",
"O": "Western Australia",
"P": "Eastern Australia",
}
# todo improve
class World(object):
def __init__(self, copy=None):
if copy is None:
self.owners = dict({name: None for name in KEY.values()})
self.forces = dict({name: 0 for name in KEY.values()})
#todo class attribute
self.connections = CONNECTIONS.copy()
self.areas = AREA_TERRITORIES.copy()
self.area_values = dict({key: value[0] for (key, value) in AREAS.items()})
else:
#todo check
self.owners = copy.owners.copy()
self.forces = copy.forces.copy()
self.connections = CONNECTIONS.copy()
self.areas = AREA_TERRITORIES.copy()
self.area_values = dict({key: value[0] for (key, value) in AREAS.items()})
def copy(self):
return World(self)
|
#!/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
|
# 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")
|
# 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
|
# 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
|
#
# 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 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
|
#! 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
|
#!/usr/bin/env python3
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',
} |
#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)
|
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
|
"""Holodeck Exceptions"""
class HolodeckException(Exception):
"""Base class for a generic exception in Holodeck."""
class HolodeckConfigurationException(HolodeckException):
"""The user provided an invalid configuration for Holodeck"""
class TimeoutException(HolodeckException):
"""Exception raised when communicating with the engine timed out."""
class NotFoundException(HolodeckException):
"""Raised when a package cannot be found"""
|
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()
|
#visibilidade public, protect and private
class caneta:
def __init__(self):
self.cor = 'Eu sou público'
self._tinta = 'Eu sou protegido'
self.__tampa = 'Eu sou privado'
obj = caneta()
print(obj.cor)
print(obj._tinta)
print(obj.__tampa) |
"""
Constants used in project.
"""
class VersionParts:
"""
Utility class with constants for version parts.
"""
ALPHA = "alpha"
BETA = "beta"
RC = "rc"
PRE = "pre"
POST = "post"
DEV = "dev"
MAJOR = "major"
MINOR = "minor"
MICRO = "micro"
LOCAL = "local"
EPOCH = "epoch"
|
# 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]
|
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
|
# -*- 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": "",
},
)
|
#
# @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 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))
|
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"
}) |
bidi_dir = 'ltr'
#########################################################################
# scrapbook.cache
#########################################################################
# map.html
cache_index_toggle_all = 'Toggle all'
cache_index_search_link_title = 'Search'
cache_index_source_link_title = 'Source link'
# search.html
cache_search_title = '%book% :: Search'
cache_search_view_in_map = 'View in map'
cache_search_start = 'go'
cache_search_help_label = 'Search syntax help'
cache_search_help_desc = """\
• Input keywords search from title, content, or comment.
• Use space to separate multiple keywords. For example, “w3c organization” means items containing “w3c” and “organization”.
• Use double quotes to demark a complete phrase, a literal double quote can be escaped by doubling. For example, “"Tom ""loves"" Mary."” means items containing “Tom "loves" Mary.”
• Use minus sign to exclude a keyword. For example, “-virus” means items without “virus”.
• Use “<command>:<keyword>” to specify a special search condition. A minus sign can be prefixed for exclusion or reversion. Available commands include:
• mc: each subsequent keyword matches case-sensitively. For example, “mc: CIA FBI -mc: president” means items containing “CIA” and “FBI” case-sensitively, and “president” case-insensitively.
• re: each subsequent keyword is treated as a regular expression. For example, “re: \\bcolou?r\\b -re: 1+1=2” means items that match regular expression “\\bcolou?r\\b” and contain keyword “1+1=2”.
• id: item whose ID equal to the keyword (or match the regular expression). Multiple values are “or”-connected. For example, “id:2020 id:2021” means items of ID “2020” or “2021”; “-id:2020” means items whose ID is not “2020”.
• type: items whose type equal to the keyword (or match the regular expression). Multiple values are “or”-connected. Available types are “” (page), “bookmark”, “file”, “note”, etc. For example, “type: type:bookmark” means items whose type is page or bookmark.
• title: items whose title contains the keyword.
• content: items whose fulltext contains the keyword.
• comment: items whose comment contains the keyword.
• tc: items whose title or comment contains the keyword.
• tcc: items whose title, fulltext, or comment contains the keyword.
• index: items whose index file path contains the keyword.
• source: items whose source URL contains the keyword.
• icon: items whose icon URL contains the keyword.
• charset: items whose charset contains the keyword.
• create: items whose create time matches the condition. The time condition is an interval with 0-17 digits, followed by a minus sign optionally, and then followed by 0-17 digits. The two 17-digit numbers means the year (4 digits), month (01-12), day (01-31), hours (00-59), minutes (00-59), seconds (00-59), and milliseconds (000-999) in local datetime. Each omitted digit is assumed to be a “0”, except that “999...” is assumed if the end datetime is totally omitted. For example, “create:2014-2015” means since 2014 until 2015; “create:-201309” means before Sep 2013; and “create:20110825” means after Aug 25, 2011.
• modify: items whose modify time matches the condition. Time format is same as create.
• marked: marked items.
• locked: locked items.
• location: items with geolocation information.
• file: items whose filename contains the keyword.
• root: items under the item of ID. Multiple values are “or”-connected.
• book: items in the specific scrapbook (by name). Multiple values are “or”-connected.
• sort: sort search results using the specific condition, which can be id, title, comment, file, content, source, type, create, or modify. For example, “sort:id -sort:modify” means sorting by ID in acending order and then sorting by modify time in descending order.
• limit: set a limit on the search result number. For example, “limit:10” means showing the first 10 results, “limit:-20” means removing the last 20 results, and “limit:0” or “-limit:” means unsetting the limit."""
cache_search_result = 'Found %length% results:'
cache_search_result_named = '(%name%) Found %length% results:'
cache_search_sort_last_created = 'Last Created'
cache_search_sort_last_modified = 'Last Modified'
cache_search_sort_title = 'Sort by title'
cache_search_sort_id = 'Sort by ID'
#########################################################################
# WebScrapBook
#########################################################################
EditorDeleteAnnotationConfirm = 'Delete this annotation?'
|
# 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),
]
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
class PyLabours(PythonPackage):
"""Python module dependency visualization."""
homepage = "https://github.com/src-d/hercules"
url = "https://github.com/src-d/hercules/archive/v10.7.2.tar.gz"
version('10.7.2', sha256='4654dcfb1eee5af1610fd05677c6734c2ca1161535fcc14d3933d6debda4bc34')
build_directory = 'python'
depends_on('py-setuptools', type=('build', 'run'))
depends_on('[email protected]:3.999', type=('build', 'run'))
depends_on('[email protected]:1.999', type=('build', 'run'))
depends_on('[email protected]:0.999', type=('build', 'run'))
depends_on('[email protected]:5.999', type=('build', 'run'))
depends_on('[email protected]:1.2.1', type=('build', 'run'))
depends_on('[email protected]:3.999', type=('build', 'run'))
depends_on('[email protected]:2.999', type=('build', 'run'))
depends_on('[email protected]:2.999', type=('build', 'run'))
depends_on('[email protected]:4.999', type=('build', 'run'))
depends_on('[email protected]:1.999', type=('build', 'run'))
depends_on('[email protected]:1.999', type=('build', 'run'))
depends_on('[email protected]:1.999', type=('build', 'run'))
depends_on('[email protected]:1.999', type=('build', 'run'))
|
"""Deployment rules
"""
load("//tools:providers.bzl", "DeploymentZoneInfo")
def _deployment_zone_impl(ctx):
if len(ctx.attr.account_id) != 12:
fail("AWS Account IDs are 12 characters long")
return [
DeploymentZoneInfo(
account_id = ctx.attr.account_id,
deployment_role = ctx.attr.deployment_role,
owner_role = ctx.attr.owner_role,
subnet_ids = ctx.attr.subnet_ids,
),
]
deployment_zone = rule(
implementation = _deployment_zone_impl,
attrs = {
"account_id": attr.string(doc = "The AWS Account ID.", mandatory = True),
"deployment_role": attr.string(doc = "The IAM Role used in deployment.", mandatory = True),
"owner_role": attr.string(doc = "The IAM Role used by support teams.", mandatory = True),
"subnet_ids": attr.string_list_dict(doc = "The AWS Subnets where application infrastructure will be deployed.", mandatory = True),
},
)
|
class GroupHelper:
def __init__(self, app):
self.app = app
def open_group_page(self):
wd = self.app.wd
wd.find_element_by_link_text("Групи").click()
def create(self, Group):
wd = self.app.wd
wd.find_element_by_name("new").click()
wd.find_element_by_name("group_name").click()
wd.find_element_by_name("group_name").clear()
wd.find_element_by_name("group_name").send_keys(Group.name)
wd.find_element_by_name("group_header").click()
wd.find_element_by_name("group_header").clear()
wd.find_element_by_name("group_header").send_keys(Group.header)
wd.find_element_by_name("group_footer").click()
wd.find_element_by_name("group_footer").clear()
wd.find_element_by_name("group_footer").send_keys(Group.footer)
wd.find_element_by_name("submit").click()
def return_to_groups_page(self):
wd = self.app.wd
wd.find_element_by_link_text("Групи").click()
def delete(self):
wd = self.app.wd
wd.find_element_by_name("selected[]").click()
wd.find_element_by_name("delete").click()
def change(self, Group):
wd = self.app.wd
wd.find_element_by_xpath("//input[@title='Select (myGroup)']").click()
wd.find_element_by_name("edit").click()
wd.find_element_by_name("group_name").clear()
wd.find_element_by_name("group_name").send_keys(Group.name)
wd.find_element_by_name("group_header").clear()
wd.find_element_by_name("group_header").send_keys(Group.header)
wd.find_element_by_name("group_footer").clear()
wd.find_element_by_name("group_footer").send_keys(Group.footer)
wd.find_element_by_name("update").click() |
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}) |
"""Interop with Java."""
load("@bazel_skylib//lib:collections.bzl", "collections")
JavaInteropInfo = provider(
doc = "Information needed for interop with Java rules.",
fields = {
"inputs": "Files needed during build.",
"env": "Dict with env variables that should be set during build.",
},
)
def java_interop_info(deps):
"""Gather information from any Java dependencies.
Args:
deps: Dependencies of a target that might include Java artifacts.
Returns:
JavaInteropInfo: Information needed for Java interop.
"""
inputs = depset(
transitive = [
# We only expose direct dependencies, though we could
# expose transitive ones as well. Only exposing the direct
# ones corresponds to Bazel's "strict Java dependencies"
# mode. See
# https://github.com/tweag/rules_haskell/issues/96.
dep[JavaInfo].compile_jars
for dep in deps
if JavaInfo in dep
],
)
env_dict = dict()
uniq_classpath = collections.uniq([
f.path
for f in inputs.to_list()
])
if len(uniq_classpath) > 0:
env_dict["CLASSPATH"] = ":".join(uniq_classpath)
return JavaInteropInfo(
inputs = inputs,
env = env_dict,
)
|
# @author:leacoder
# @des: 染色法 + DFS 岛屿的个数
class Solution:
# 便于 上下左右扩散
dx = [-1, 1, 0, 0]
dy = [ 0, 0,-1, 1]
def numIslands(self, grid: List[List[str]]) -> int:
if not grid or not grid[0]:
return 0 # 参数判断
self.max_x = len(grid) # 边界
self.max_y = len(grid[0]) # 边界
self.grid = grid
self.visited = set() # 不修改原数据
isCount= 0
for i in range(self.max_x):
for j in range(self.max_y):
res = self.floodfill_DFS(i,j) # dfs
if 1==res:
isCount+=1
return isCount
# 深度优先 染色
def floodfill_DFS(self,x,y):
# 递归终止条件
if not self.isvalid(x,y): # 判断节点是否合法
return 0
self.visited.add((x,y)) # 表示节点已经访问过
for k in range(4):
self.floodfill_DFS( x + self.dx[k], y + self.dy[k]) # 上下左右扩散
return 1 # 是岛屿返回1
def isvalid(self,x,y):
# max_X max_y边界
if x < 0 or x >= self.max_x or y < 0 or y >= self.max_y:
return False
# 是水或者已被处理过
if self.grid[x][y] == '0' or ((x,y) in self.visited):
return False
return True
# @author:leacoder
# @des: 染色法 + BFS 岛屿的个数
class Solution:
# 便于 上下左右扩散
dx = [-1, 1, 0, 0]
dy = [ 0, 0,-1, 1]
def numIslands(self, grid: List[List[str]]) -> int:
if not grid or not grid[0]:
return 0 # 参数判断
self.max_x = len(grid) # 边界
self.max_y = len(grid[0]) # 边界
self.grid = grid
self.visited = set() # 不修改原数据
isCount= 0
for i in range(self.max_x):
for j in range(self.max_y):
res = self.floodfill_BFS(i,j) # dfs
if 1==res:
isCount+=1
return isCount
# 广度优先 染色
def floodfill_BFS(self,x,y):
if not self.isvalid(x,y): # 判断节点是否合法
return 0
self.visited.add((x,y)) # 标记节点已经访问过
queue = collections.deque() # 队列
queue.append((x,y))
while queue:
cur_x, cur_y = queue.pop() # 从队列左端取数据
for i in range(4):
new_x, new_y = cur_x + self.dx[i], cur_y + self.dy[i] #上下左右扩散
if self.isvalid(new_x, new_y): # 扩散后的数据是否合法
self.visited.add((new_x, new_y)) # 合法标记节点已经访问过
queue.append((new_x, new_y)) # 从右端加入队列
return 1
def isvalid(self,x,y):
# max_X max_y边界
if x < 0 or x >= self.max_x or y < 0 or y >= self.max_y:
return False
# 是水或者已被处理过
if self.grid[x][y] == '0' or ((x,y) in self.visited):
return False
return True |
class StudentView:
def __dispaly_menu(self):
print("按1键录入学生信息")
print("按2键显示学生信息")
print("按3键删除学生信息")
print("按4键修改学生信息")
def __select_menu(self):
item=input("请输入选项:")
if item=="1":
self.__input_student()
def __input_student(self):
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
|
# Two City Scheduling
# There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th person to city B is costs[i][1].
# A function to return the minimum cost to fly every person to a city such that exactly N people arrive in each city.
class Solution(object):
def twoCitySchedCost(self, costs):
"""
:type costs: List[List[int]]
:rtype: int
"""
diff = {0:[], 1:[]}
a = 0
b = 0
total = 0
for cost in costs:
if cost[0] < cost[1]:
diff[0].append(abs(cost[0] - cost[1]))
a += 1
elif cost[0] > cost[1]:
diff[1].append(abs(cost[0] - cost[1]))
b += 1
else:
a += 1
b += 1
total += min(cost)
if a+b > len(costs):
if a > b:
a -= 1
if a < b:
b -= 1
if a == b:
return total
if a < b:
tmp = sorted(diff[1])
i = 0
while(a < b):
total += abs(tmp[i])
i += 1
a += 1
b -= 1
return total
if a > b:
tmp = sorted(diff[0])
i = 0
while(a > b):
total += abs(tmp[i])
i += 1
b += 1
a -= 1
return total
|
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, [] |
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
|
# Exports
__all__ = (
"CommandFailed",
"InputError",
"OutputError",
"ResourceUnavailable",
)
# Classes
class CommandFailed(Exception):
"""Occurs when a library function or method fails to successfully run a :py:class:`shell.Command`."""
pass
class InputError(Exception):
"""Occurs when improper or invalid input has been supplied from a command to a library function or class."""
pass
class OutputError(Exception):
"""Occurs when output cannot be generated."""
pass
class ResourceUnavailable(Exception):
"""Occurs when a library function, method, or class is unable to import or use an external resource."""
pass
|
class Pessoa:
__match_args__ = ('nome','idade','funcionario')
def __init__(self, nome, idade, funcionario=False) -> None:
self.nome: nome
self.idade: idade
self.funcionario= funcionario
def __repr__(self) -> str:
return self.nome
def valor_cinema(pessoas:list[Pessoa]) -> str:
match pessoas:
case [
Pessoa('Jarbas') as jarbas,
Pessoa('Eduardo', idade) as eduardo
]:
return jarbas.idade, eduardo, idade
case [Pessoa('Jarbas') | Pessoa('Eduardo') as pessoa ]:
return pessoa
#case [Pessoa('Jarbas' | 'Eduardo') as pessoa ]: # Tambem funciona
# return pessoa
print(valor_cinema([Pessoa('Jarbas',18,True), Pessoa('Eduardo',19,True)]))
print(valor_cinema([Pessoa('Jarbas',18,True)]))
#Observe a diferença do exemplo07 para o 08 |
#!/usr/bin/env python
# Exercicio 3.1 - Complete a tabela a seguir, marcando inteiro ou ponto flutuante dependendo do número apresentado.
print (' ')
print ('Os Numeros são 5, 5.0, 4.3, -2, 100, 1.333')
print ('Quais destes números são ponto flutuante "No livro existe uma tabale para preencher, farei diretamente aqui"')
print ('1° - linha [ 5 - Inteiro ]')
print ('2° - linha [ 5.0 - Ponto Flutuante ]')
print ('3° - linha [ 4.3 - ponto Flutuante ]')
print ('4° - linha [ -2 - Inteiro ]')
print ('5° - linha [ 100 - Inteiro ]')
print ('6° - linha [ 1.333 - Ponto Flutuante ]')
print (' ')
|
# Crie um programa que leia um numero inteiro e mostre na tela se ele é par ou impar.
numero = int(input('Informe um número qualquer: '))
if numero == 0 or numero % 2 == 0:
print(f'O número {numero} digitado é par.')
else:
print(f'O número {numero} digitado é impar.')
|
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"}}
|
# Change colours here --> format as (colour, colour on opposite side)
pairs = (("white","yellow"),
("yellow","white"),
("red","orange"),
("orange","red"),
("green","blue"),
("blue","green"))
# Make sure there are 6 logically valid pairs
class Piece:
def __init__(self,x,y,z,cx,cy,cz):
self.x = x
self.y = y
self.z = z
self.cx = cx
self.cy = cy
self.cz = cz
def status(self):
return (self.x, self.y, self.z, self.cx, self.cy, self.cz)
def status_2d(self,axis):
if axis == "x":
return (self.cx, "y = " + str(self.y), "z = " + str(self.z))
elif axis == "y":
return (self.cy, "x = " + str(self.x), "z = " + str(self.z))
else:
return (self.cz, "x = " + str(self.x), "y = " + str(self.y))
def get_coordinate(self,axis):
if axis == "x":
coord = self.x
elif axis == "y":
coord = self.y
else:
coord = self.z
return coord
def get_colour(self,axis):
if axis == "x":
colour = self.cx
elif axis == "y":
colour = self.cy
else:
colour = self.cz
return colour
#use completed pieces for default cube, if you wish to re-generate using new colours, clear the list, i.e. completed_pieces = []
# do note that this will require your input in assembling the cube piece by piece
completed_pieces = [Piece(-1,-1,-1,'red','blue','white'),
Piece(-1,-1,0,'red','blue',None),
Piece(-1,-1,1,'red','blue','yellow'),
Piece(-1,0,-1,'red',None,'white'),
Piece(-1,0,0,'red',None,None),
Piece(-1,0,1,'red',None,'yellow'),
Piece(-1,1,-1,'red','green','white'),
Piece(-1,1,0,'red','green',None),
Piece(-1,1,1,'red','green','yellow'),
Piece(0,-1,-1,None,'blue','white'),
Piece(0,-1,0,None,'blue',None),
Piece(0,-1,1,None,'blue','yellow'),
Piece(0,0,-1,None,None,'white'),
Piece(0,0,1,None,None,'yellow'),
Piece(0,1,-1,None,'green','white'),
Piece(0,1,0,None,'green',None),
Piece(0,1,1,None,'green','yellow'),
Piece(1,-1,-1,'orange','blue','white'),
Piece(1,-1,0,'orange','blue',None),
Piece(1,-1,1,'orange','blue','yellow'),
Piece(1,0,-1,'orange',None,'white'),
Piece(1,0,0,'orange',None,None),
Piece(1,0,1,'orange',None,'yellow'),
Piece(1,1,-1,'orange','green','white'),
Piece(1,1,0,'orange','green',None),
Piece(1,1,1,'orange','green','yellow')]
def check_duplicate(tup1,tup2):
return sorted(tup1) == sorted(tup2)
def create_pieces(pairs):
"""
generates the 26 possible cubes in a standard 3x3 rubik's cube,
given 6 pairs of colours in the following format:
(colour, colour on opposite side)
returns a dictionary with the following 3 keys: "centres", "sides", "corners"
"""
class Colour:
def __init__(self,name,opposite):
self.name = name
self.opposite = opposite
def generate_colours(pairs):
def remove_duplicates(tup):
new = []
for i in tup:
if i not in new:
new.append(i)
return new
base = []
colourdict = {}
colours = {'centres':[],'sides':[],'corners':[]}
for a in pairs:
base.append(Colour(*a))
for b in base:
colourdict[b.name] = b
#generating all possible pieces
combinations = list(map(lambda x: [x],colourdict.keys()))
current = list(colourdict.keys())
colours['centres'] = combinations.copy()
for i in current:
for j in current:
if (colourdict[i].name != j) and (colourdict[i].opposite != j):
combinations.append((i,) + (j,))
combinations = list(filter(lambda x: len(x) == 2,combinations))
colours['sides'] = remove_duplicates(list(map(sorted,combinations)))
temp = []
for side in combinations:
face1,face2 = side
for col in current:
if not((col == face1 or col == colourdict[face1].opposite) or (col == face2 or col == colourdict[face2].opposite)):
temp.append(side + (col,))
combinations = list(filter(lambda x: len(x) == 3,temp))
colours['corners'] = remove_duplicates(list(map(sorted,combinations)))
return colours
return generate_colours(pairs)
def generate_positions():
lst = []
pieces = []
for i in range(-1,2):
for j in range(-1,2):
for k in range(-1,2):
if k == 0 and j == 0 and i == 0:
continue
else:
lst.append([i,j,k])
for j in lst:
pieces.append(Piece(*j,None,None,None))
return pieces
def initialize():
"""
can probably be made better,
without requiring manual user input
"""
if completed_pieces:
print("Using pre-assembled default cube pieces!\n")
return completed_pieces
else:
print("Colours unrecognized! \nPlease assist me in building the cube manually \n(A solved cube may come in handy here)")
valid_combinations = create_pieces(pairs)
combis = []
for key in valid_combinations:
for combination in valid_combinations[key]:
combis.append(sorted(combination))
pieces = generate_positions()
assembled = []
for p in pieces:
ans = []
while not sorted(list(filter(lambda x: x != "None",ans))) in combis:
print(sorted(list(filter(lambda x: x != "None",ans))))
print("You will need to try again if you enter an invalid combination! Enter 'None' if that axis has no visible colour sticker \n\n")
ans = []
print("You can choose from the following valid combinations \n\n",combis,"\n")
print("x:",p.x,"y:",p.y,"z:",p.z)
ans.append(input("Enter x axis colour"))
ans.append(input("Enter y axis colour"))
ans.append(input("Enter z axis colour"))
p.cx,p.cy,p.cz = map(lambda x: None if x == "None" else x,ans)
assembled.append(p)
print(ans)
combis.remove(sorted(list(filter(lambda x: x != "None",ans))))
print("Successful! The piece has been added to the cube")
return assembled
|
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'
]
} |
class ObjectSerializer(object):
"""
The object serializer is responsible for converting objects to and
from basic data types. Basic data types are serializable to and
from most common data representation languages (such as yaml or json)
Basic data types are:
- str (basestring in Python2, str in Python3)
- float
- int
- None
- dict
- list
The serializer decides what it can and can not serialize, and should raise
an exception when a type it can not serialize is passed.
`SchematicsSerializer` is the default implementation used.
"""
def load(self, model, value):
"""
load the value from a basic datatype, into a class.
if the model or value is not valid, raise a SerializationException
"""
raise NotImplementedError()
def dump(self, model, value):
"""
dump the value from a class to a basic datatype.
if the model or value is not valid, raise a SerializationException
"""
raise NotImplementedError()
def to_json_schema(self, model):
"""
return a dictionary representing a jsonschema for the model.
"""
raise NotImplementedError()
|
############### BOT BILGILERI ###############
token = "NzgzNDI2OTcwOTE0MzkwMDY4.X8alOQ.gjPYhoth4OUp5oZVhSXizPcwG0c"
prefix = ['!!']
sahip_id = 735555273644703915
############### VERI TABANI BILGILERI ###############
db_host = 'localhost'
db_user = 'root'
db_password = ''
db_name = 'url_hunter'
db_charset = 'utf8mb4'
############### HAK KISMI ###############
haklar = {
'user_gecme': 'sınırsız',
'user_ekleme': 'sınırsız',
'vip_gecme': 'sınırsız',
'vip_ekleme': 'sınırsız',
'admin_gecme': 'sınırsız',
'admin_ekleme': 'sınırsız'
}
############### DIGERLERI ###############
ticket_min_karakter = 5
|
#!/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])) |
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 |
##############################################################################
# Parte do livro Introdução à Programação com Python
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2020
# Primeira edição - Novembro/2010 - ISBN 978-85-7522-250-8
# Segunda edição - Junho/2014 - ISBN 978-85-7522-408-3
# Terceira Edição - Janeiro/2019 - ISBN 978-85-7522-718-3
#
# Site: https://python.nilo.pro.br/
#
# Arquivo: exercicios3\capitulo 04\exercicio-04-10.py
##############################################################################
consumo = int(input("Consumo em kWh: "))
tipo = input("Tipo da instalação (R, C ou I): ")
if tipo == "R":
if consumo <= 500:
preço = 0.40
else:
preço = 0.65
elif tipo == "I":
if consumo <= 5000:
preço = 0.55
else:
preço = 0.60
elif tipo == "C":
if consumo <= 1000:
preço = 0.55
else:
preço = 0.60
else:
preço = 0
print("Erro ! Tipo de instalação desconhecido!")
custo = consumo * preço
print(f"Valor a pagar: R$ {custo:7.2f}")
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Helper functions for configuring scraper URLs.
"""
def house_url(path):
"""
Joins relative house url paths with stem or returns url if stem present.
:param path: String path to format.
:return: Full house URL.
"""
stem = "https://house.mo.gov"
# Replace insecure with secure
if "http://" in path:
path = path.replace("http://", "https://")
# If the path is a full URL, just return it.
if stem in path:
return path
# Reformat with or without slashes as necessary.
if path[0] == "/":
return "{}{}".format(stem, path)
return "{}/{}".format(stem, path)
|
# 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.")
|
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()
|
#ToDo remove version found in wp1 parser
def create_chr_mapper(mapper_file, chr_to_nc=True):
"""
First and second column of input file should be of the following
format:
First column: chr1
Second column: NC_000001.10
:param file: path to input file
:return dict= {'NC_000001.10': 'chr1'} or {'chr1': 'NC_000001.10'}
"""
chr_mapper = dict()
with open(mapper_file,'r') as lines:
for line in lines:
if not line.startswith("#"):
line = line.rstrip()
columns = line.split("\t")
if chr_to_nc:
chr_mapper[columns[0]] = columns[1]
else:
chr_mapper[columns[1]] = columns[0]
return chr_mapper
_column_bed_file = {'chr': 0, 'start': 1, 'end': 2, 'name': 3, 'score': 4, 'strand': 5}
def region_data_structure_generator(data, columns, mapper,start_position_modifier=1):
chrom = columns[mapper['chr']]
start = str(int(columns[mapper['start']]) + start_position_modifier) #int(columns[mapper['start']]) + start_position_modifier
end = columns[mapper['end']] #int(columns[mapper['end']])
name = columns[mapper['name']]
if not chrom in data:
data[chrom] = {}
data[chrom][start] = {}
data[chrom][start][end] = {}
data[chrom][start][end]['gene'] = name
data[chrom][start][end]['totDepth'] = 0
data[chrom][start][end]['covBases'] = 0
else:
if not start in data[chrom]:
data[chrom][start] = {}
data[chrom][start][end] = {}
data[chrom][start][end]['gene'] = name
data[chrom][start][end]['totDepth'] = 0
data[chrom][start][end]['covBases'] = 0
else:
if not end in data[chrom][start]:
data[chrom][start][end] = {}
data[chrom][start][end]['gene'] = name
data[chrom][start][end]['totDepth'] = 0
data[chrom][start][end]['covBases'] = 0
return data
def import_bed_file(input_file, chr_to_nc, region_data_structure_generator):
data = dict()
with open(input_file, 'r') as lines:
for line in lines:
if line.startswith("chr"):
columns = line.strip('\n').rstrip('\r').split("\t")
columns[_column_bed_file['chr']] = chr_to_nc[columns[_column_bed_file['chr']].replace("chr","")]
data = region_data_structure_generator(data,columns,_column_bed_file)
return data
_column_converter_ampregion = {
'chr': 1,
'start': 2,
'end': 3,
'seq': 4}
def import_ampregion_seq(ampregion_file):
"""
Convert ampregion file to dict.
:param file: path to tab separated input file with format name, chr,
start, end, seq
return dict= {'NC_000001.10': {'1000': {'1050': 'ACGT...AGCT'}}}
"""
regions = dict()
with open(ampregion_file, 'r') as lines:
for line in lines:
columns = line.rstrip('\r\n').rstrip('\n').split("\t")
if not columns[_column_converter_ampregion['chr']].startswith("NC_"):
raise Exception("Chromosome column should use NC format, ex NC_000001.10")
chrom = columns[_column_converter_ampregion['chr']]
start = int(columns[_column_converter_ampregion['start']])
end = int(columns[_column_converter_ampregion['end']])
seq = columns[_column_converter_ampregion['seq']]
if chrom in regions:
if start in regions[chrom]: # Check if start exists in the dictionary
if end > regions[chrom][start]: # Check if the end is greater than the one already existing
regions[chrom][start] = {key: value for key, value in regions[chrom][start].items() if value != regions[chrom][start]}
regions[chrom][start][end] = seq
else: # If start doesn't exist in dict create it
regions[chrom][start] = {}
regions[chrom][start][end] = seq # save sequence
else: # If chrom doesn't exist in dict create the whole structure
regions[chrom] = {}
regions[chrom][start] = {}
regions[chrom][start][end] = seq
return regions
|
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
|
"""Interface defines required methods for an action class"""
class ActionInterface:
def execute(self):
"""Primary method of any action is to execute the code required to
fulfil the action"""
pass
|
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') |
"""Package init."""
__author__ = """Ivan Savchenko"""
__email__ = '[email protected]'
__version__ = '0.2.0'
|
"""
15663 : N과 M (9)
URL : https://www.acmicpc.net/problem/15663
Input #1 :
3 1
4 4 2
Output #1 :
2
4
Input #2 :
4 2
9 7 9 1
Output #2 :
1 7
1 9
7 1
7 9
9 1
9 7
9 9
Input #3 :
4 4
1 1 1 1
Output #3 :
1 1 1 1
"""
def permutation(sequence, i):
last = None
for x in sequence:
if last == x:
continue
last = x
if i == 1:
yield [x]
else:
sub_sequence = sequence.copy()
sub_sequence.remove(x)
for sub_permutation in permutation(sub_sequence, i - 1):
yield [x] + sub_permutation
n, m = map(int, input().split())
a = sorted(map(int, input().split()))
for p in permutation(a, m):
print(' '.join(str(i) for i in p))
|
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()
|
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
|
#python3 code
def solution(x, y):
# Your code here
res = ((x+y-1)*(x+y-2))/2 + x
return str(res)
|
"""Top-level package for pytolanalyst."""
__author__ = """Rob Siegwart"""
__email__ = '[email protected]'
__version__ = '0.1.0'
|
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 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
|
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()
|
"""
--------------------------------------------------------------------------------
Description:
Generates a statistical report for genetic circuit scoring
Written by W.R. Jackson, Ben Bremer, Eric South
--------------------------------------------------------------------------------
"""
|
# 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))
|
#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') |
#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")
|
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()
|
"""
This file contains the implementation of functions
that are not represented as a single node in the
computational graph, but are
treated as a **compound** function.
Note
----
These functions should be replaced by a dedicated implementation in
* algopy.Function
* algopy.UTPM
so they are represented by a single node in the CGraph.
"""
|
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 |
# Copyright 2016-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
"""
Functions that handle correcting 'visiblity' arguments
"""
load("@fbcode_macros//build_defs:visibility_exceptions.bzl", "WHITELIST")
def get_visibility_for_base_path(visibility_attr, name_attr, base_path):
"""
Gets the default visibility for a given base_path.
If the base_path is an experimental path and isn't in a whitelist, this
ensures that the target is only visible to the experimental directory.
Otherwise, this returns either a default visibility if visibility_attr's
value is None, or returns the original value.
Args:
visibility_attr: The value of the rule's 'visibility' attribute, or None
name_attr: The name of the rule
base_path: The base path to the package that the target resides in.
This will eventually be removed, and native.package() will
be used instead.
Returns:
A visibility array
"""
if (base_path.startswith("experimental/") and
(base_path, name_attr) not in WHITELIST):
return ["//experimental/..."]
if visibility_attr == None:
return ["PUBLIC"]
else:
return visibility_attr
def get_visibility(visibility_attr, name_attr):
"""
Returns either the provided visibility list, or a default visibility if None
"""
return get_visibility_for_base_path(
visibility_attr,
name_attr,
native.package_name(),
)
|
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
|
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")
|
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"]
''' |
#!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
'''
|
{
'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',
],
},
}],
],
},
],
}
|
# Resolve the problem!!
PALINDROMES = [
'Acaso hubo buhos aca',
'A la catalana banal atacala',
'Amar da drama',
]
NOT_PALINDROMES = [
'Hola como estas',
'Platzi'
'Oscar',
]
def is_palindrome(palindrome):
"""
validates that the string palindrome is a
palindrome (it is a word or phrase that
read equal to right and back
param str palindrome is a word or Phrase
returns True if the word or phrase is a
palindorme or False if not.
"""
reversed_letters = palindrome[::-1]
if reversed_letters.lower().replace(' ','') == palindrome.lower().replace(' ',''):
return True
else:
return False
def validate():
for palindrome in PALINDROMES:
if not is_palindrome(palindrome):
return False
for not_palindrome in NOT_PALINDROMES:
if is_palindrome(not_palindrome):
return False
return True
def run():
if validate():
print('Completaste el test')
else:
print('No completaste el test')
if __name__ == '__main__':
run()
|
def DEBUG(s):
#pass
print(s)
|
def print_n(s, n):
"""write a function that prints a string n times"""
while n > 0:
print(s)
n = n - 1
print_n('string', 3)
|
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!")
|
'''
Fill in your credentials from Twitter
'''
consumer_key = ''
consumer_secret = ''
access_token_key = ''
access_token_secret = ''
account_name = "@"
kytten_name = "" #Screen Name without the "@"
|
"""Contain constants Ids and labels."""
# pylint: disable=R0903
class DataSourceType:
"""Data source type Ids."""
CLOUDERA_HIVE_ID = 1
CLOUDERA_IMPALA_ID = 2
MARIADB_ID = 3
MSSQL_ID = 4
MYSQL_ID = 5
ORACLE_ID = 6
POSTGRESQL_ID = 7
SQLITE_ID = 8
TERADATA_ID = 9
SNOWFLAKE_ID = 10
HORTONWORKS_HIVE_ID = 11
class IndicatorType:
"""Indicator type Ids."""
COMPLETENESS = 1
FRESHNESS = 2
LATENCY = 3
VALIDITY = 4
|
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
|
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) |
# -*—coding=utf_8-*—
# @Time :14:47
# @Author :Jonah
# @File :main ().py
# @Software :PyCharm
print("hello") |
#4.2
list_with_integers = [26, 3, 22, 5.9, 1337, 988, 69.544]
for i in list_with_integers:
print(float(i)) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.