content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class Person: id = None name = None def __init__(self, id=None, name=None): self.id = id self.name = name
class Person: id = None name = None def __init__(self, id=None, name=None): self.id = id self.name = name
def sort_gift_code(code: str) -> str: my_letter = [] for letter in code: my_letter.append(letter) return ''.join(sorted(my_letter))
def sort_gift_code(code: str) -> str: my_letter = [] for letter in code: my_letter.append(letter) return ''.join(sorted(my_letter))
n = int(input()) idx = [0]*(n+1) arr = [int(i) for i in input().split()] m = int(input()) quer = [int(i) for i in input().split()] for i in range(n): idx[arr[i]] = i+1 vasya = 0 petya = 0 for q in quer: vasya += idx[q] petya += n-idx[q]+1 print(vasya, petya) # Time complexity of above code O(n+m) # Time complexity of below code O(n*m) """ n = int(input()) arr = [int(i) for i in input().split()] m = int(input()) quer = [int(i) for i in input().split()] vasya = 0 petya = 0 idx = [0]*(n+1) for i in range(m): if idx[quer[i]-1] != 0: vasya += idx[quer[i]-1] + 1 petya += n - idx[quer[i]-1] else: for j in range(n): if arr[j] == quer[i]: idx[quer[i]-1] == j vasya += j+1 petya += n-j print(vasya, petya) """
n = int(input()) idx = [0] * (n + 1) arr = [int(i) for i in input().split()] m = int(input()) quer = [int(i) for i in input().split()] for i in range(n): idx[arr[i]] = i + 1 vasya = 0 petya = 0 for q in quer: vasya += idx[q] petya += n - idx[q] + 1 print(vasya, petya) '\nn = int(input())\n\narr = [int(i) for i in input().split()]\n\nm = int(input())\n\nquer = [int(i) for i in input().split()]\n\nvasya = 0\npetya = 0\n\nidx = [0]*(n+1)\n\nfor i in range(m):\n if idx[quer[i]-1] != 0:\n vasya += idx[quer[i]-1] + 1\n petya += n - idx[quer[i]-1]\n else:\n for j in range(n):\n if arr[j] == quer[i]:\n idx[quer[i]-1] == j\n vasya += j+1\n petya += n-j\n\nprint(vasya, petya)\n'
# # PySNMP MIB module PACKETEER-RTM-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PACKETEER-RTM-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:36:08 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion") classIndex, psCommonMib = mibBuilder.importSymbols("PACKETEER-MIB", "classIndex", "psCommonMib") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") IpAddress, Counter32, iso, MibIdentifier, Gauge32, Unsigned32, Bits, Counter64, NotificationType, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, TimeTicks, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Counter32", "iso", "MibIdentifier", "Gauge32", "Unsigned32", "Bits", "Counter64", "NotificationType", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "TimeTicks", "Integer32") DateAndTime, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "DateAndTime", "TextualConvention", "DisplayString") psClassResponseTimes = MibIdentifier((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7)) classRTMConfigTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1), ) if mibBuilder.loadTexts: classRTMConfigTable.setStatus('mandatory') if mibBuilder.loadTexts: classRTMConfigTable.setDescription('A table of parameters configuring the Response Time Management feature for each class. *** NOTE that these parameters are used to compute the other data in this MIB, and thus changing any of them causes a reset of most RTM data. Only the histograms (classTotalDelayTable, classServerDelayTable, and classNetworkDelayTable ) are unaffected.') classRTMConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex")) if mibBuilder.loadTexts: classRTMConfigEntry.setStatus('mandatory') if mibBuilder.loadTexts: classRTMConfigEntry.setDescription('An entry containing the configurable Response Time Management parameters for a given class') classTotalDelayThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayThreshold.setDescription('The time in milliseconds which constitutes the acceptable limit of aggregate delay for this class.') classServiceLevelThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServiceLevelThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classServiceLevelThreshold.setDescription('The percentage of transactions required NOT to be over threshold. If more than this percentage of transactions in an interval are over threshold, then this Interval is counted in the classIntervalsAboveTotalDelayThreshold variable. The default is 100.') classTotalDelayTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2), ) if mibBuilder.loadTexts: classTotalDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayTable.setDescription("A list of traffic class aggregate delay entries. The table is indexed by two variables: the classIndex from classTable, and the lower limit of the bucket, in milliseconds. The histogram for any given class 'i' may thus be retrieved via GetNext of classTotalDelayBucketCount.i.0") classTotalDelayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex"), (0, "PACKETEER-RTM-MIB", "classTotalDelayBucketLimit")) if mibBuilder.loadTexts: classTotalDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayEntry.setDescription('An entry containing the count of observed network transactions in a given bucket. ') classTotalDelayBucketLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayBucketLimit.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayBucketLimit.setDescription("The lower limit, in milliseconds, of this bucket. NOTE: although the bucket limits are given for each class, this does NOT imply that they are different, and in fact they are the same for all classes. This is done to facilitate GetNext'ing through the table; for example the count of the next bucket larger than 1 second for class 'i' can be obtained by GetNext classTotalDelayBucketCount.i.1000. The complete histogram for class i, with the limits for each bucket, can be obtained by GetNext classTotalDelayBucketCount.i ") classTotalDelayBucketCount = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayBucketCount.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayBucketCount.setDescription('The count of transactions whose aggregate delay fell in this bucket. Transactions are defined according to classTransactionDefinition.') classNetworkDelayTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3), ) if mibBuilder.loadTexts: classNetworkDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayTable.setDescription("A list of traffic class network delay entries. The table is indexed by two variables: the classIndex from classTable, and the lower limit of the bucket, in milliseconds. The histogram for any given class 'i' may thus be retrieved via GetNext of classNetworkDelayBucketCount.i.0") classNetworkDelayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex"), (0, "PACKETEER-RTM-MIB", "classNetworkDelayBucketLimit")) if mibBuilder.loadTexts: classNetworkDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayEntry.setDescription('An entry containing the count of observed network delay transactions in a given bucket. Transactions are defined according to classTransactionDefinition.') classNetworkDelayBucketLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classNetworkDelayBucketLimit.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayBucketLimit.setDescription("The lower limit, in milliseconds, of this bucket. NOTE: although the bucket limits are given for each class, this does NOT imply that they are different, and in fact they are the same for all classes. This is done to facilitate GetNext'ing through the table; for example the count of the next bucket larger than 1 second for class 'i' can be obtained by GetNext classNetworkDelayBucketCount.i.1000. The complete histogram for class i, with the limits for each bucket, can be obtained by GetNext classNetworkDelayBucketCount.i ") classNetworkDelayBucketCount = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classNetworkDelayBucketCount.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayBucketCount.setDescription('The count of observed network transactions for the class in this bucket. Transactions are defined according to classTransactionDefinition.') classServerDelayTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4), ) if mibBuilder.loadTexts: classServerDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayTable.setDescription("A list of traffic class Server delay entries. The table is indexed by two variables: the classIndex from classTable, and the lower limit of the bucket, in milliseconds. The histogram for any given class 'i' may thus be retrieved via GetNext of classServerDelayBucketCount.i.0") classServerDelayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex"), (0, "PACKETEER-RTM-MIB", "classServerDelayBucketLimit")) if mibBuilder.loadTexts: classServerDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayEntry.setDescription('An entry containing the count of observed network transactions in a given bucket. ') classServerDelayBucketLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServerDelayBucketLimit.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayBucketLimit.setDescription("The lower limit, in milliseconds, of this bucket. NOTE: although the bucket limits are given for each class, this does NOT imply that they are different, and in fact they are the same for all classes. This is done to facilitate GetNext'ing through the table; for example the count of the next bucket larger than 1 second for class 'i' can be obtained by GetNext classServerDelayBucketCount.i.1000. The complete histogram for class i, with the limits for each bucket, can be obtained by GetNext classServerDelayBucketCount.i ") classServerDelayBucketCount = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServerDelayBucketCount.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayBucketCount.setDescription('The count of observed network transactions for the class in this bucket. Transactions are defined according to classTransactionDefinition.') classRTMTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5), ) if mibBuilder.loadTexts: classRTMTable.setStatus('mandatory') if mibBuilder.loadTexts: classRTMTable.setDescription('A table of readonly Response Time Management information about this class. All non-histogram information about RTM is kept in this table.') classRTMEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex")) if mibBuilder.loadTexts: classRTMEntry.setStatus('mandatory') if mibBuilder.loadTexts: classRTMEntry.setDescription('An entry containing readonly Response Time Management information about this class.') classTotalDelayMedian = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 1), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayMedian.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayMedian.setDescription('The median aggregate delay for this class, in milliseconds. Medians are calculated by an approximate method using the above histogram, whose error is at most 1/2 of the time interval spanned by the bucket into which the exact median falls.') classTotalDelayAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 2), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayAverage.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayAverage.setDescription('The average aggregate delay for this class, in milliseconds. Use the average in conjunction with the median, since averages can be distorted by a few very large samples.') classTransactionsAboveTotalDelayThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTransactionsAboveTotalDelayThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionsAboveTotalDelayThreshold.setDescription('The number of network transactions whose aggregate delay was greater than the value of classTotalDelayThreshold. Transactions are defined according to classTransactionDefinition.') classIntervalsAboveServiceLevelThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classIntervalsAboveServiceLevelThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classIntervalsAboveServiceLevelThreshold.setDescription("The number of intervals over the aggregate delay threshold, defined as those intervals with 'classIntervalServiceLevelThreshold'% or fewer transactions with aggregate delay less than 'classTotalDelayThreshold'.") classLastIntervalAboveServiceLevelThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: classLastIntervalAboveServiceLevelThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classLastIntervalAboveServiceLevelThreshold.setDescription('The time at which the last interval ended which failed the service level threshold, in other words, the interval in which classIntervalServiceLevelThreshold% of the total transactions, or fewer, had total response times less than classTotalDelayThreshold. If there was no such interval, then this is set to a zero value.') classServerDelayMedian = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServerDelayMedian.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayMedian.setDescription('The median server delay for this class, in milliseconds. Medians are calculated by an approximate method using the above histogram, whose error is at most 1/2 of the time interval spanned by the bucket into which the exact median falls.') classServerDelayAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServerDelayAverage.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayAverage.setDescription('The average server delay for this class, in milliseconds. Use the average in conjunction with the median, since averages can be distorted by a few very large samples.') classNetworkDelayMedian = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classNetworkDelayMedian.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayMedian.setDescription('The median network delay for this class, in milliseconds. Medians are calculated by an approximate method using the above histogram, whose error is at most 1/2 of the time interval spanned by the bucket into which the exact median falls.') classNetworkDelayAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classNetworkDelayAverage.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayAverage.setDescription('The average network delay for this class, in milliseconds. Use the average in conjunction with the median, since averages can be distorted by a few very large samples.') classTransactionBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTransactionBytes.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionBytes.setDescription('The total number of bytes on this class involved in transactions, and thus eligible for RTM. Dividing this value by classTransactionsTotal provides the average size of a transaction for the class. This variable represents the low-order portion of a 64-bit value.') classTransactionBytesHi = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTransactionBytesHi.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionBytesHi.setDescription('The total number of bytes on this class involved in transactions, and thus eligible for RTM. Dividing this value by classTransactionsTotal provides the average size of a transaction for the class. This variable represents the high-order portion of a 64-bit value.') classRoundTripTime = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classRoundTripTime.setStatus('mandatory') if mibBuilder.loadTexts: classRoundTripTime.setDescription('The time, in milliseconds, of a network round-trip, per transaction. Dividing this value by classTransactionsTotal gives an indication of the effective speed of the network for this class, which includes factors like queueing and retransmissions that may be controllable. This variable represents the low-order portion of a 64-bit value.') classRoundTripTimeHi = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classRoundTripTimeHi.setStatus('mandatory') if mibBuilder.loadTexts: classRoundTripTimeHi.setDescription('The time, in milliseconds, of a network round-trip, per transaction. Dividing this value by classTransactionsTotal gives an indication of the effective speed of the network for this class, which includes factors like queueing and retransmissions that may be controllable. This variable represents the high-order portion of a 64-bit value.') classTransactionsTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTransactionsTotal.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionsTotal.setDescription('The total number of transactions for this class. ') classTotalDelayMsec = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayMsec.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayMsec.setDescription('The time, in milliseconds, of total delay, per transaction. This variable represents the low-order portion of a 64-bit value.') classTotalDelayMsecHi = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classTotalDelayMsecHi.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayMsecHi.setDescription('The time, in milliseconds, of total delay, per transaction. This variable represents the high-order portion of a 64-bit value.') classServerDelayMsec = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServerDelayMsec.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayMsec.setDescription('The time, in milliseconds, of server delay, per transaction. This variable represents the low-order portion of a 64-bit value.') classServerDelayMsecHi = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classServerDelayMsecHi.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayMsecHi.setDescription('The time, in milliseconds, of server delay, per transaction. This variable represents the high-order portion of a 64-bit value.') classNetworkDelayMsec = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classNetworkDelayMsec.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayMsec.setDescription('The time, in milliseconds, of network delay, per transaction. This variable represents the low-order portion of a 64-bit value.') classNetworkDelayMsecHi = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classNetworkDelayMsecHi.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayMsecHi.setDescription('The time, in milliseconds, of network delay, per transaction. This variable represents the high-order portion of a 64-bit value.') classWorstServerTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6), ) if mibBuilder.loadTexts: classWorstServerTable.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerTable.setDescription("A list of the N servers which have handled more than M transactions, and are experiencing the worst behavior with respect to the response time threshold, if one has been set. 'N' and 'M' are fixed limits for any given release of PacketShaper software and are not settable. In release 4.0, N and M are 10. The table is ordered by classIndex and classWorstServerIndex.") classWorstServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex"), (0, "PACKETEER-RTM-MIB", "classWorstServerIndex")) if mibBuilder.loadTexts: classWorstServerEntry.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerEntry.setDescription('An entry describing a server experiencing the worst behavior with respect to the response time threshold.') classWorstServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classWorstServerIndex.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerIndex.setDescription('A unique index from 1 to N, where N is a fixed limit, and a lower value denotes a lower ratio of good transactions.') classWorstServerAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: classWorstServerAddress.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerAddress.setDescription('The address of this server.') classWorstServerTransactionCount = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classWorstServerTransactionCount.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerTransactionCount.setDescription('The number of transactions recorded for this server.') classWorstClientTable = MibTable((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7), ) if mibBuilder.loadTexts: classWorstClientTable.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientTable.setDescription("A list of the N clients which have handled more than M transactions, and are experiencing the worst behavior with respect to the response time threshold, if one has been set. 'N' and 'M' are fixed limits for any given release of PacketShaper software and are not settable. In release 4.0, N and M are 10. The table is ordered by classIndex and classWorstClientIndex.") classWorstClientEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1), ).setIndexNames((0, "PACKETEER-MIB", "classIndex"), (0, "PACKETEER-RTM-MIB", "classWorstClientIndex")) if mibBuilder.loadTexts: classWorstClientEntry.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientEntry.setDescription('An entry describing a client experiencing the most sessions over the response time threshold.') classWorstClientIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classWorstClientIndex.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientIndex.setDescription('A unique index from 1 to N, where N is a fixed limit, and a lower value denotes a higher value of classWorstClientSessionCount.') classWorstClientAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: classWorstClientAddress.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientAddress.setDescription('The address of this client.') classWorstClientTransactionCount = MibTableColumn((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: classWorstClientTransactionCount.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientTransactionCount.setDescription('The number of transactions recorded for this client.') mibBuilder.exportSymbols("PACKETEER-RTM-MIB", classLastIntervalAboveServiceLevelThreshold=classLastIntervalAboveServiceLevelThreshold, classTransactionsTotal=classTransactionsTotal, classWorstServerTransactionCount=classWorstServerTransactionCount, classNetworkDelayMsec=classNetworkDelayMsec, classNetworkDelayTable=classNetworkDelayTable, classTransactionBytesHi=classTransactionBytesHi, classTotalDelayMedian=classTotalDelayMedian, classWorstServerEntry=classWorstServerEntry, classWorstClientIndex=classWorstClientIndex, classTotalDelayThreshold=classTotalDelayThreshold, classWorstClientAddress=classWorstClientAddress, classWorstServerTable=classWorstServerTable, classRTMConfigTable=classRTMConfigTable, classWorstClientTransactionCount=classWorstClientTransactionCount, classTotalDelayMsecHi=classTotalDelayMsecHi, classServerDelayMsec=classServerDelayMsec, classNetworkDelayMedian=classNetworkDelayMedian, classTransactionBytes=classTransactionBytes, classNetworkDelayAverage=classNetworkDelayAverage, classRoundTripTimeHi=classRoundTripTimeHi, classTransactionsAboveTotalDelayThreshold=classTransactionsAboveTotalDelayThreshold, classTotalDelayAverage=classTotalDelayAverage, classTotalDelayBucketCount=classTotalDelayBucketCount, classServiceLevelThreshold=classServiceLevelThreshold, classRoundTripTime=classRoundTripTime, classWorstServerAddress=classWorstServerAddress, classTotalDelayTable=classTotalDelayTable, classServerDelayBucketCount=classServerDelayBucketCount, classNetworkDelayBucketLimit=classNetworkDelayBucketLimit, classIntervalsAboveServiceLevelThreshold=classIntervalsAboveServiceLevelThreshold, classWorstServerIndex=classWorstServerIndex, classTotalDelayBucketLimit=classTotalDelayBucketLimit, classServerDelayTable=classServerDelayTable, classTotalDelayEntry=classTotalDelayEntry, classRTMEntry=classRTMEntry, classRTMConfigEntry=classRTMConfigEntry, classServerDelayAverage=classServerDelayAverage, classServerDelayBucketLimit=classServerDelayBucketLimit, classWorstClientTable=classWorstClientTable, classNetworkDelayBucketCount=classNetworkDelayBucketCount, classRTMTable=classRTMTable, classWorstClientEntry=classWorstClientEntry, psClassResponseTimes=psClassResponseTimes, classNetworkDelayEntry=classNetworkDelayEntry, classNetworkDelayMsecHi=classNetworkDelayMsecHi, classTotalDelayMsec=classTotalDelayMsec, classServerDelayMedian=classServerDelayMedian, classServerDelayMsecHi=classServerDelayMsecHi, classServerDelayEntry=classServerDelayEntry)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_intersection, value_size_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion') (class_index, ps_common_mib) = mibBuilder.importSymbols('PACKETEER-MIB', 'classIndex', 'psCommonMib') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (ip_address, counter32, iso, mib_identifier, gauge32, unsigned32, bits, counter64, notification_type, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, time_ticks, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Counter32', 'iso', 'MibIdentifier', 'Gauge32', 'Unsigned32', 'Bits', 'Counter64', 'NotificationType', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'TimeTicks', 'Integer32') (date_and_time, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'DateAndTime', 'TextualConvention', 'DisplayString') ps_class_response_times = mib_identifier((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7)) class_rtm_config_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1)) if mibBuilder.loadTexts: classRTMConfigTable.setStatus('mandatory') if mibBuilder.loadTexts: classRTMConfigTable.setDescription('A table of parameters configuring the Response Time Management feature for each class. *** NOTE that these parameters are used to compute the other data in this MIB, and thus changing any of them causes a reset of most RTM data. Only the histograms (classTotalDelayTable, classServerDelayTable, and classNetworkDelayTable ) are unaffected.') class_rtm_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex')) if mibBuilder.loadTexts: classRTMConfigEntry.setStatus('mandatory') if mibBuilder.loadTexts: classRTMConfigEntry.setDescription('An entry containing the configurable Response Time Management parameters for a given class') class_total_delay_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayThreshold.setDescription('The time in milliseconds which constitutes the acceptable limit of aggregate delay for this class.') class_service_level_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServiceLevelThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classServiceLevelThreshold.setDescription('The percentage of transactions required NOT to be over threshold. If more than this percentage of transactions in an interval are over threshold, then this Interval is counted in the classIntervalsAboveTotalDelayThreshold variable. The default is 100.') class_total_delay_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2)) if mibBuilder.loadTexts: classTotalDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayTable.setDescription("A list of traffic class aggregate delay entries. The table is indexed by two variables: the classIndex from classTable, and the lower limit of the bucket, in milliseconds. The histogram for any given class 'i' may thus be retrieved via GetNext of classTotalDelayBucketCount.i.0") class_total_delay_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex'), (0, 'PACKETEER-RTM-MIB', 'classTotalDelayBucketLimit')) if mibBuilder.loadTexts: classTotalDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayEntry.setDescription('An entry containing the count of observed network transactions in a given bucket. ') class_total_delay_bucket_limit = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayBucketLimit.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayBucketLimit.setDescription("The lower limit, in milliseconds, of this bucket. NOTE: although the bucket limits are given for each class, this does NOT imply that they are different, and in fact they are the same for all classes. This is done to facilitate GetNext'ing through the table; for example the count of the next bucket larger than 1 second for class 'i' can be obtained by GetNext classTotalDelayBucketCount.i.1000. The complete histogram for class i, with the limits for each bucket, can be obtained by GetNext classTotalDelayBucketCount.i ") class_total_delay_bucket_count = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 2, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayBucketCount.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayBucketCount.setDescription('The count of transactions whose aggregate delay fell in this bucket. Transactions are defined according to classTransactionDefinition.') class_network_delay_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3)) if mibBuilder.loadTexts: classNetworkDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayTable.setDescription("A list of traffic class network delay entries. The table is indexed by two variables: the classIndex from classTable, and the lower limit of the bucket, in milliseconds. The histogram for any given class 'i' may thus be retrieved via GetNext of classNetworkDelayBucketCount.i.0") class_network_delay_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex'), (0, 'PACKETEER-RTM-MIB', 'classNetworkDelayBucketLimit')) if mibBuilder.loadTexts: classNetworkDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayEntry.setDescription('An entry containing the count of observed network delay transactions in a given bucket. Transactions are defined according to classTransactionDefinition.') class_network_delay_bucket_limit = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classNetworkDelayBucketLimit.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayBucketLimit.setDescription("The lower limit, in milliseconds, of this bucket. NOTE: although the bucket limits are given for each class, this does NOT imply that they are different, and in fact they are the same for all classes. This is done to facilitate GetNext'ing through the table; for example the count of the next bucket larger than 1 second for class 'i' can be obtained by GetNext classNetworkDelayBucketCount.i.1000. The complete histogram for class i, with the limits for each bucket, can be obtained by GetNext classNetworkDelayBucketCount.i ") class_network_delay_bucket_count = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 3, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classNetworkDelayBucketCount.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayBucketCount.setDescription('The count of observed network transactions for the class in this bucket. Transactions are defined according to classTransactionDefinition.') class_server_delay_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4)) if mibBuilder.loadTexts: classServerDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayTable.setDescription("A list of traffic class Server delay entries. The table is indexed by two variables: the classIndex from classTable, and the lower limit of the bucket, in milliseconds. The histogram for any given class 'i' may thus be retrieved via GetNext of classServerDelayBucketCount.i.0") class_server_delay_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex'), (0, 'PACKETEER-RTM-MIB', 'classServerDelayBucketLimit')) if mibBuilder.loadTexts: classServerDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayEntry.setDescription('An entry containing the count of observed network transactions in a given bucket. ') class_server_delay_bucket_limit = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServerDelayBucketLimit.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayBucketLimit.setDescription("The lower limit, in milliseconds, of this bucket. NOTE: although the bucket limits are given for each class, this does NOT imply that they are different, and in fact they are the same for all classes. This is done to facilitate GetNext'ing through the table; for example the count of the next bucket larger than 1 second for class 'i' can be obtained by GetNext classServerDelayBucketCount.i.1000. The complete histogram for class i, with the limits for each bucket, can be obtained by GetNext classServerDelayBucketCount.i ") class_server_delay_bucket_count = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 4, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServerDelayBucketCount.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayBucketCount.setDescription('The count of observed network transactions for the class in this bucket. Transactions are defined according to classTransactionDefinition.') class_rtm_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5)) if mibBuilder.loadTexts: classRTMTable.setStatus('mandatory') if mibBuilder.loadTexts: classRTMTable.setDescription('A table of readonly Response Time Management information about this class. All non-histogram information about RTM is kept in this table.') class_rtm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex')) if mibBuilder.loadTexts: classRTMEntry.setStatus('mandatory') if mibBuilder.loadTexts: classRTMEntry.setDescription('An entry containing readonly Response Time Management information about this class.') class_total_delay_median = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 1), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayMedian.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayMedian.setDescription('The median aggregate delay for this class, in milliseconds. Medians are calculated by an approximate method using the above histogram, whose error is at most 1/2 of the time interval spanned by the bucket into which the exact median falls.') class_total_delay_average = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 2), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayAverage.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayAverage.setDescription('The average aggregate delay for this class, in milliseconds. Use the average in conjunction with the median, since averages can be distorted by a few very large samples.') class_transactions_above_total_delay_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTransactionsAboveTotalDelayThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionsAboveTotalDelayThreshold.setDescription('The number of network transactions whose aggregate delay was greater than the value of classTotalDelayThreshold. Transactions are defined according to classTransactionDefinition.') class_intervals_above_service_level_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classIntervalsAboveServiceLevelThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classIntervalsAboveServiceLevelThreshold.setDescription("The number of intervals over the aggregate delay threshold, defined as those intervals with 'classIntervalServiceLevelThreshold'% or fewer transactions with aggregate delay less than 'classTotalDelayThreshold'.") class_last_interval_above_service_level_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 5), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: classLastIntervalAboveServiceLevelThreshold.setStatus('mandatory') if mibBuilder.loadTexts: classLastIntervalAboveServiceLevelThreshold.setDescription('The time at which the last interval ended which failed the service level threshold, in other words, the interval in which classIntervalServiceLevelThreshold% of the total transactions, or fewer, had total response times less than classTotalDelayThreshold. If there was no such interval, then this is set to a zero value.') class_server_delay_median = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 6), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServerDelayMedian.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayMedian.setDescription('The median server delay for this class, in milliseconds. Medians are calculated by an approximate method using the above histogram, whose error is at most 1/2 of the time interval spanned by the bucket into which the exact median falls.') class_server_delay_average = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 7), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServerDelayAverage.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayAverage.setDescription('The average server delay for this class, in milliseconds. Use the average in conjunction with the median, since averages can be distorted by a few very large samples.') class_network_delay_median = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 11), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classNetworkDelayMedian.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayMedian.setDescription('The median network delay for this class, in milliseconds. Medians are calculated by an approximate method using the above histogram, whose error is at most 1/2 of the time interval spanned by the bucket into which the exact median falls.') class_network_delay_average = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 12), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classNetworkDelayAverage.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayAverage.setDescription('The average network delay for this class, in milliseconds. Use the average in conjunction with the median, since averages can be distorted by a few very large samples.') class_transaction_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTransactionBytes.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionBytes.setDescription('The total number of bytes on this class involved in transactions, and thus eligible for RTM. Dividing this value by classTransactionsTotal provides the average size of a transaction for the class. This variable represents the low-order portion of a 64-bit value.') class_transaction_bytes_hi = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTransactionBytesHi.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionBytesHi.setDescription('The total number of bytes on this class involved in transactions, and thus eligible for RTM. Dividing this value by classTransactionsTotal provides the average size of a transaction for the class. This variable represents the high-order portion of a 64-bit value.') class_round_trip_time = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classRoundTripTime.setStatus('mandatory') if mibBuilder.loadTexts: classRoundTripTime.setDescription('The time, in milliseconds, of a network round-trip, per transaction. Dividing this value by classTransactionsTotal gives an indication of the effective speed of the network for this class, which includes factors like queueing and retransmissions that may be controllable. This variable represents the low-order portion of a 64-bit value.') class_round_trip_time_hi = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classRoundTripTimeHi.setStatus('mandatory') if mibBuilder.loadTexts: classRoundTripTimeHi.setDescription('The time, in milliseconds, of a network round-trip, per transaction. Dividing this value by classTransactionsTotal gives an indication of the effective speed of the network for this class, which includes factors like queueing and retransmissions that may be controllable. This variable represents the high-order portion of a 64-bit value.') class_transactions_total = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTransactionsTotal.setStatus('mandatory') if mibBuilder.loadTexts: classTransactionsTotal.setDescription('The total number of transactions for this class. ') class_total_delay_msec = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayMsec.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayMsec.setDescription('The time, in milliseconds, of total delay, per transaction. This variable represents the low-order portion of a 64-bit value.') class_total_delay_msec_hi = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classTotalDelayMsecHi.setStatus('mandatory') if mibBuilder.loadTexts: classTotalDelayMsecHi.setDescription('The time, in milliseconds, of total delay, per transaction. This variable represents the high-order portion of a 64-bit value.') class_server_delay_msec = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServerDelayMsec.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayMsec.setDescription('The time, in milliseconds, of server delay, per transaction. This variable represents the low-order portion of a 64-bit value.') class_server_delay_msec_hi = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classServerDelayMsecHi.setStatus('mandatory') if mibBuilder.loadTexts: classServerDelayMsecHi.setDescription('The time, in milliseconds, of server delay, per transaction. This variable represents the high-order portion of a 64-bit value.') class_network_delay_msec = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classNetworkDelayMsec.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayMsec.setDescription('The time, in milliseconds, of network delay, per transaction. This variable represents the low-order portion of a 64-bit value.') class_network_delay_msec_hi = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 5, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classNetworkDelayMsecHi.setStatus('mandatory') if mibBuilder.loadTexts: classNetworkDelayMsecHi.setDescription('The time, in milliseconds, of network delay, per transaction. This variable represents the high-order portion of a 64-bit value.') class_worst_server_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6)) if mibBuilder.loadTexts: classWorstServerTable.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerTable.setDescription("A list of the N servers which have handled more than M transactions, and are experiencing the worst behavior with respect to the response time threshold, if one has been set. 'N' and 'M' are fixed limits for any given release of PacketShaper software and are not settable. In release 4.0, N and M are 10. The table is ordered by classIndex and classWorstServerIndex.") class_worst_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex'), (0, 'PACKETEER-RTM-MIB', 'classWorstServerIndex')) if mibBuilder.loadTexts: classWorstServerEntry.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerEntry.setDescription('An entry describing a server experiencing the worst behavior with respect to the response time threshold.') class_worst_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classWorstServerIndex.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerIndex.setDescription('A unique index from 1 to N, where N is a fixed limit, and a lower value denotes a lower ratio of good transactions.') class_worst_server_address = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: classWorstServerAddress.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerAddress.setDescription('The address of this server.') class_worst_server_transaction_count = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 6, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classWorstServerTransactionCount.setStatus('mandatory') if mibBuilder.loadTexts: classWorstServerTransactionCount.setDescription('The number of transactions recorded for this server.') class_worst_client_table = mib_table((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7)) if mibBuilder.loadTexts: classWorstClientTable.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientTable.setDescription("A list of the N clients which have handled more than M transactions, and are experiencing the worst behavior with respect to the response time threshold, if one has been set. 'N' and 'M' are fixed limits for any given release of PacketShaper software and are not settable. In release 4.0, N and M are 10. The table is ordered by classIndex and classWorstClientIndex.") class_worst_client_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1)).setIndexNames((0, 'PACKETEER-MIB', 'classIndex'), (0, 'PACKETEER-RTM-MIB', 'classWorstClientIndex')) if mibBuilder.loadTexts: classWorstClientEntry.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientEntry.setDescription('An entry describing a client experiencing the most sessions over the response time threshold.') class_worst_client_index = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classWorstClientIndex.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientIndex.setDescription('A unique index from 1 to N, where N is a fixed limit, and a lower value denotes a higher value of classWorstClientSessionCount.') class_worst_client_address = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1, 2), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: classWorstClientAddress.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientAddress.setDescription('The address of this client.') class_worst_client_transaction_count = mib_table_column((1, 3, 6, 1, 4, 1, 2334, 2, 1, 7, 7, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: classWorstClientTransactionCount.setStatus('mandatory') if mibBuilder.loadTexts: classWorstClientTransactionCount.setDescription('The number of transactions recorded for this client.') mibBuilder.exportSymbols('PACKETEER-RTM-MIB', classLastIntervalAboveServiceLevelThreshold=classLastIntervalAboveServiceLevelThreshold, classTransactionsTotal=classTransactionsTotal, classWorstServerTransactionCount=classWorstServerTransactionCount, classNetworkDelayMsec=classNetworkDelayMsec, classNetworkDelayTable=classNetworkDelayTable, classTransactionBytesHi=classTransactionBytesHi, classTotalDelayMedian=classTotalDelayMedian, classWorstServerEntry=classWorstServerEntry, classWorstClientIndex=classWorstClientIndex, classTotalDelayThreshold=classTotalDelayThreshold, classWorstClientAddress=classWorstClientAddress, classWorstServerTable=classWorstServerTable, classRTMConfigTable=classRTMConfigTable, classWorstClientTransactionCount=classWorstClientTransactionCount, classTotalDelayMsecHi=classTotalDelayMsecHi, classServerDelayMsec=classServerDelayMsec, classNetworkDelayMedian=classNetworkDelayMedian, classTransactionBytes=classTransactionBytes, classNetworkDelayAverage=classNetworkDelayAverage, classRoundTripTimeHi=classRoundTripTimeHi, classTransactionsAboveTotalDelayThreshold=classTransactionsAboveTotalDelayThreshold, classTotalDelayAverage=classTotalDelayAverage, classTotalDelayBucketCount=classTotalDelayBucketCount, classServiceLevelThreshold=classServiceLevelThreshold, classRoundTripTime=classRoundTripTime, classWorstServerAddress=classWorstServerAddress, classTotalDelayTable=classTotalDelayTable, classServerDelayBucketCount=classServerDelayBucketCount, classNetworkDelayBucketLimit=classNetworkDelayBucketLimit, classIntervalsAboveServiceLevelThreshold=classIntervalsAboveServiceLevelThreshold, classWorstServerIndex=classWorstServerIndex, classTotalDelayBucketLimit=classTotalDelayBucketLimit, classServerDelayTable=classServerDelayTable, classTotalDelayEntry=classTotalDelayEntry, classRTMEntry=classRTMEntry, classRTMConfigEntry=classRTMConfigEntry, classServerDelayAverage=classServerDelayAverage, classServerDelayBucketLimit=classServerDelayBucketLimit, classWorstClientTable=classWorstClientTable, classNetworkDelayBucketCount=classNetworkDelayBucketCount, classRTMTable=classRTMTable, classWorstClientEntry=classWorstClientEntry, psClassResponseTimes=psClassResponseTimes, classNetworkDelayEntry=classNetworkDelayEntry, classNetworkDelayMsecHi=classNetworkDelayMsecHi, classTotalDelayMsec=classTotalDelayMsec, classServerDelayMedian=classServerDelayMedian, classServerDelayMsecHi=classServerDelayMsecHi, classServerDelayEntry=classServerDelayEntry)
i = 0 #defines an integer i while(i<119): #while i is less than 119, do the following print(i) #prints the current value of i i += 10 #add 10 to i
i = 0 while i < 119: print(i) i += 10
# print(111) def main(): p = { 'a':1, 'b':2, 'c':3, 'd':4, 'e':5 } print(p) print('i' in p.keys()) if __name__ == '__main__': main()
def main(): p = {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5} print(p) print('i' in p.keys()) if __name__ == '__main__': main()
DEPRECATION_WARNING = ( "WARNING: We will end support of the ArcGIS interface by the 1st of May of 2019. This means that there will " "not be anymore tutorials nor advice on how to use this interface. You could still use this interface on " "your own. We invite all CEA users to get acquainted with the CEA Dashboard. The CEA dashboard is our " "new 100% open source user interface. We will aim to create a first tutorial on how to use this interface " "by mid-april of 2019.")
deprecation_warning = 'WARNING: We will end support of the ArcGIS interface by the 1st of May of 2019. This means that there will not be anymore tutorials nor advice on how to use this interface. You could still use this interface on your own. We invite all CEA users to get acquainted with the CEA Dashboard. The CEA dashboard is our new 100% open source user interface. We will aim to create a first tutorial on how to use this interface by mid-april of 2019.'
# coding: utf-8 test_group = 'test_group' test_event = 'test_event' test_value_str = 'test_value' test_value_int = 123 test_value_int_zero = 0 test_value_float = 123.0 test_value_float_zero = 0.0 test_value_none = None test_label = 'test_label' test_value_list = [ test_value_str, test_value_int, test_value_float, test_value_int_zero, test_value_float_zero, test_value_none ] test_username = 'test' test_password = 'test'
test_group = 'test_group' test_event = 'test_event' test_value_str = 'test_value' test_value_int = 123 test_value_int_zero = 0 test_value_float = 123.0 test_value_float_zero = 0.0 test_value_none = None test_label = 'test_label' test_value_list = [test_value_str, test_value_int, test_value_float, test_value_int_zero, test_value_float_zero, test_value_none] test_username = 'test' test_password = 'test'
# This file is auto-generated. Do not edit! DAQmx_Buf_Input_BufSize = 0x186C DAQmx_Buf_Input_OnbrdBufSize = 0x230A DAQmx_Buf_Output_BufSize = 0x186D DAQmx_Buf_Output_OnbrdBufSize = 0x230B DAQmx_SelfCal_Supported = 0x1860 DAQmx_SelfCal_LastTemp = 0x1864 DAQmx_ExtCal_RecommendedInterval = 0x1868 DAQmx_ExtCal_LastTemp = 0x1867 DAQmx_Cal_UserDefinedInfo = 0x1861 DAQmx_Cal_UserDefinedInfo_MaxSize = 0x191C DAQmx_Cal_DevTemp = 0x223B DAQmx_AI_Max = 0x17DD DAQmx_AI_Min = 0x17DE DAQmx_AI_CustomScaleName = 0x17E0 DAQmx_AI_MeasType = 0x0695 DAQmx_AI_Voltage_Units = 0x1094 DAQmx_AI_Voltage_dBRef = 0x29B0 DAQmx_AI_Voltage_ACRMS_Units = 0x17E2 DAQmx_AI_Temp_Units = 0x1033 DAQmx_AI_Thrmcpl_Type = 0x1050 DAQmx_AI_Thrmcpl_ScaleType = 0x29D0 DAQmx_AI_Thrmcpl_CJCSrc = 0x1035 DAQmx_AI_Thrmcpl_CJCVal = 0x1036 DAQmx_AI_Thrmcpl_CJCChan = 0x1034 DAQmx_AI_RTD_Type = 0x1032 DAQmx_AI_RTD_R0 = 0x1030 DAQmx_AI_RTD_A = 0x1010 DAQmx_AI_RTD_B = 0x1011 DAQmx_AI_RTD_C = 0x1013 DAQmx_AI_Thrmstr_A = 0x18C9 DAQmx_AI_Thrmstr_B = 0x18CB DAQmx_AI_Thrmstr_C = 0x18CA DAQmx_AI_Thrmstr_R1 = 0x1061 DAQmx_AI_ForceReadFromChan = 0x18F8 DAQmx_AI_Current_Units = 0x0701 DAQmx_AI_Current_ACRMS_Units = 0x17E3 DAQmx_AI_Strain_Units = 0x0981 DAQmx_AI_StrainGage_GageFactor = 0x0994 DAQmx_AI_StrainGage_PoissonRatio = 0x0998 DAQmx_AI_StrainGage_Cfg = 0x0982 DAQmx_AI_Resistance_Units = 0x0955 DAQmx_AI_Freq_Units = 0x0806 DAQmx_AI_Freq_ThreshVoltage = 0x0815 DAQmx_AI_Freq_Hyst = 0x0814 DAQmx_AI_LVDT_Units = 0x0910 DAQmx_AI_LVDT_Sensitivity = 0x0939 DAQmx_AI_LVDT_SensitivityUnits = 0x219A DAQmx_AI_RVDT_Units = 0x0877 DAQmx_AI_RVDT_Sensitivity = 0x0903 DAQmx_AI_RVDT_SensitivityUnits = 0x219B DAQmx_AI_EddyCurrentProxProbe_Units = 0x2AC0 DAQmx_AI_EddyCurrentProxProbe_Sensitivity = 0x2ABE DAQmx_AI_EddyCurrentProxProbe_SensitivityUnits = 0x2ABF DAQmx_AI_SoundPressure_MaxSoundPressureLvl = 0x223A DAQmx_AI_SoundPressure_Units = 0x1528 DAQmx_AI_SoundPressure_dBRef = 0x29B1 DAQmx_AI_Microphone_Sensitivity = 0x1536 DAQmx_AI_Accel_Units = 0x0673 DAQmx_AI_Accel_dBRef = 0x29B2 DAQmx_AI_Accel_Sensitivity = 0x0692 DAQmx_AI_Accel_SensitivityUnits = 0x219C DAQmx_AI_Is_TEDS = 0x2983 DAQmx_AI_TEDS_Units = 0x21E0 DAQmx_AI_Coupling = 0x0064 DAQmx_AI_Impedance = 0x0062 DAQmx_AI_TermCfg = 0x1097 DAQmx_AI_InputSrc = 0x2198 DAQmx_AI_ResistanceCfg = 0x1881 DAQmx_AI_LeadWireResistance = 0x17EE DAQmx_AI_Bridge_Cfg = 0x0087 DAQmx_AI_Bridge_NomResistance = 0x17EC DAQmx_AI_Bridge_InitialVoltage = 0x17ED DAQmx_AI_Bridge_ShuntCal_Enable = 0x0094 DAQmx_AI_Bridge_ShuntCal_Select = 0x21D5 DAQmx_AI_Bridge_ShuntCal_GainAdjust = 0x193F DAQmx_AI_Bridge_Balance_CoarsePot = 0x17F1 DAQmx_AI_Bridge_Balance_FinePot = 0x18F4 DAQmx_AI_CurrentShunt_Loc = 0x17F2 DAQmx_AI_CurrentShunt_Resistance = 0x17F3 DAQmx_AI_Excit_Src = 0x17F4 DAQmx_AI_Excit_Val = 0x17F5 DAQmx_AI_Excit_UseForScaling = 0x17FC DAQmx_AI_Excit_UseMultiplexed = 0x2180 DAQmx_AI_Excit_ActualVal = 0x1883 DAQmx_AI_Excit_DCorAC = 0x17FB DAQmx_AI_Excit_VoltageOrCurrent = 0x17F6 DAQmx_AI_ACExcit_Freq = 0x0101 DAQmx_AI_ACExcit_SyncEnable = 0x0102 DAQmx_AI_ACExcit_WireMode = 0x18CD DAQmx_AI_Atten = 0x1801 DAQmx_AI_ProbeAtten = 0x2A88 DAQmx_AI_Lowpass_Enable = 0x1802 DAQmx_AI_Lowpass_CutoffFreq = 0x1803 DAQmx_AI_Lowpass_SwitchCap_ClkSrc = 0x1884 DAQmx_AI_Lowpass_SwitchCap_ExtClkFreq = 0x1885 DAQmx_AI_Lowpass_SwitchCap_ExtClkDiv = 0x1886 DAQmx_AI_Lowpass_SwitchCap_OutClkDiv = 0x1887 DAQmx_AI_ResolutionUnits = 0x1764 DAQmx_AI_Resolution = 0x1765 DAQmx_AI_RawSampSize = 0x22DA DAQmx_AI_RawSampJustification = 0x0050 DAQmx_AI_ADCTimingMode = 0x29F9 DAQmx_AI_Dither_Enable = 0x0068 DAQmx_AI_ChanCal_HasValidCalInfo = 0x2297 DAQmx_AI_ChanCal_EnableCal = 0x2298 DAQmx_AI_ChanCal_ApplyCalIfExp = 0x2299 DAQmx_AI_ChanCal_ScaleType = 0x229C DAQmx_AI_ChanCal_Table_PreScaledVals = 0x229D DAQmx_AI_ChanCal_Table_ScaledVals = 0x229E DAQmx_AI_ChanCal_Poly_ForwardCoeff = 0x229F DAQmx_AI_ChanCal_Poly_ReverseCoeff = 0x22A0 DAQmx_AI_ChanCal_OperatorName = 0x22A3 DAQmx_AI_ChanCal_Desc = 0x22A4 DAQmx_AI_ChanCal_Verif_RefVals = 0x22A1 DAQmx_AI_ChanCal_Verif_AcqVals = 0x22A2 DAQmx_AI_Rng_High = 0x1815 DAQmx_AI_Rng_Low = 0x1816 DAQmx_AI_DCOffset = 0x2A89 DAQmx_AI_Gain = 0x1818 DAQmx_AI_SampAndHold_Enable = 0x181A DAQmx_AI_AutoZeroMode = 0x1760 DAQmx_AI_DataXferMech = 0x1821 DAQmx_AI_DataXferReqCond = 0x188B DAQmx_AI_DataXferCustomThreshold = 0x230C DAQmx_AI_UsbXferReqSize = 0x2A8E DAQmx_AI_MemMapEnable = 0x188C DAQmx_AI_RawDataCompressionType = 0x22D8 DAQmx_AI_LossyLSBRemoval_CompressedSampSize = 0x22D9 DAQmx_AI_DevScalingCoeff = 0x1930 DAQmx_AI_EnhancedAliasRejectionEnable = 0x2294 DAQmx_AO_Max = 0x1186 DAQmx_AO_Min = 0x1187 DAQmx_AO_CustomScaleName = 0x1188 DAQmx_AO_OutputType = 0x1108 DAQmx_AO_Voltage_Units = 0x1184 DAQmx_AO_Voltage_CurrentLimit = 0x2A1D DAQmx_AO_Current_Units = 0x1109 DAQmx_AO_FuncGen_Type = 0x2A18 DAQmx_AO_FuncGen_Freq = 0x2A19 DAQmx_AO_FuncGen_Amplitude = 0x2A1A DAQmx_AO_FuncGen_Offset = 0x2A1B DAQmx_AO_FuncGen_Square_DutyCycle = 0x2A1C DAQmx_AO_FuncGen_ModulationType = 0x2A22 DAQmx_AO_FuncGen_FMDeviation = 0x2A23 DAQmx_AO_OutputImpedance = 0x1490 DAQmx_AO_LoadImpedance = 0x0121 DAQmx_AO_IdleOutputBehavior = 0x2240 DAQmx_AO_TermCfg = 0x188E DAQmx_AO_ResolutionUnits = 0x182B DAQmx_AO_Resolution = 0x182C DAQmx_AO_DAC_Rng_High = 0x182E DAQmx_AO_DAC_Rng_Low = 0x182D DAQmx_AO_DAC_Ref_ConnToGnd = 0x0130 DAQmx_AO_DAC_Ref_AllowConnToGnd = 0x1830 DAQmx_AO_DAC_Ref_Src = 0x0132 DAQmx_AO_DAC_Ref_ExtSrc = 0x2252 DAQmx_AO_DAC_Ref_Val = 0x1832 DAQmx_AO_DAC_Offset_Src = 0x2253 DAQmx_AO_DAC_Offset_ExtSrc = 0x2254 DAQmx_AO_DAC_Offset_Val = 0x2255 DAQmx_AO_ReglitchEnable = 0x0133 DAQmx_AO_Gain = 0x0118 DAQmx_AO_UseOnlyOnBrdMem = 0x183A DAQmx_AO_DataXferMech = 0x0134 DAQmx_AO_DataXferReqCond = 0x183C DAQmx_AO_UsbXferReqSize = 0x2A8F DAQmx_AO_MemMapEnable = 0x188F DAQmx_AO_DevScalingCoeff = 0x1931 DAQmx_AO_EnhancedImageRejectionEnable = 0x2241 DAQmx_DI_InvertLines = 0x0793 DAQmx_DI_NumLines = 0x2178 DAQmx_DI_DigFltr_Enable = 0x21D6 DAQmx_DI_DigFltr_MinPulseWidth = 0x21D7 DAQmx_DI_DigFltr_EnableBusMode = 0x2EFE DAQmx_DI_DigFltr_TimebaseSrc = 0x2ED4 DAQmx_DI_DigFltr_TimebaseRate = 0x2ED5 DAQmx_DI_DigSync_Enable = 0x2ED6 DAQmx_DI_Tristate = 0x1890 DAQmx_DI_LogicFamily = 0x296D DAQmx_DI_DataXferMech = 0x2263 DAQmx_DI_DataXferReqCond = 0x2264 DAQmx_DI_UsbXferReqSize = 0x2A90 DAQmx_DI_MemMapEnable = 0x296A DAQmx_DI_AcquireOn = 0x2966 DAQmx_DO_OutputDriveType = 0x1137 DAQmx_DO_InvertLines = 0x1133 DAQmx_DO_NumLines = 0x2179 DAQmx_DO_Tristate = 0x18F3 DAQmx_DO_LineStates_StartState = 0x2972 DAQmx_DO_LineStates_PausedState = 0x2967 DAQmx_DO_LineStates_DoneState = 0x2968 DAQmx_DO_LogicFamily = 0x296E DAQmx_DO_Overcurrent_Limit = 0x2A85 DAQmx_DO_Overcurrent_AutoReenable = 0x2A86 DAQmx_DO_Overcurrent_ReenablePeriod = 0x2A87 DAQmx_DO_UseOnlyOnBrdMem = 0x2265 DAQmx_DO_DataXferMech = 0x2266 DAQmx_DO_DataXferReqCond = 0x2267 DAQmx_DO_UsbXferReqSize = 0x2A91 DAQmx_DO_MemMapEnable = 0x296B DAQmx_DO_GenerateOn = 0x2969 DAQmx_CI_Max = 0x189C DAQmx_CI_Min = 0x189D DAQmx_CI_CustomScaleName = 0x189E DAQmx_CI_MeasType = 0x18A0 DAQmx_CI_Freq_Units = 0x18A1 DAQmx_CI_Freq_Term = 0x18A2 DAQmx_CI_Freq_StartingEdge = 0x0799 DAQmx_CI_Freq_MeasMeth = 0x0144 DAQmx_CI_Freq_EnableAveraging = 0x2ED0 DAQmx_CI_Freq_MeasTime = 0x0145 DAQmx_CI_Freq_Div = 0x0147 DAQmx_CI_Freq_DigFltr_Enable = 0x21E7 DAQmx_CI_Freq_DigFltr_MinPulseWidth = 0x21E8 DAQmx_CI_Freq_DigFltr_TimebaseSrc = 0x21E9 DAQmx_CI_Freq_DigFltr_TimebaseRate = 0x21EA DAQmx_CI_Freq_DigSync_Enable = 0x21EB DAQmx_CI_Period_Units = 0x18A3 DAQmx_CI_Period_Term = 0x18A4 DAQmx_CI_Period_StartingEdge = 0x0852 DAQmx_CI_Period_MeasMeth = 0x192C DAQmx_CI_Period_EnableAveraging = 0x2ED1 DAQmx_CI_Period_MeasTime = 0x192D DAQmx_CI_Period_Div = 0x192E DAQmx_CI_Period_DigFltr_Enable = 0x21EC DAQmx_CI_Period_DigFltr_MinPulseWidth = 0x21ED DAQmx_CI_Period_DigFltr_TimebaseSrc = 0x21EE DAQmx_CI_Period_DigFltr_TimebaseRate = 0x21EF DAQmx_CI_Period_DigSync_Enable = 0x21F0 DAQmx_CI_CountEdges_Term = 0x18C7 DAQmx_CI_CountEdges_Dir = 0x0696 DAQmx_CI_CountEdges_DirTerm = 0x21E1 DAQmx_CI_CountEdges_CountDir_DigFltr_Enable = 0x21F1 DAQmx_CI_CountEdges_CountDir_DigFltr_MinPulseWidth = 0x21F2 DAQmx_CI_CountEdges_CountDir_DigFltr_TimebaseSrc = 0x21F3 DAQmx_CI_CountEdges_CountDir_DigFltr_TimebaseRate = 0x21F4 DAQmx_CI_CountEdges_CountDir_DigSync_Enable = 0x21F5 DAQmx_CI_CountEdges_InitialCnt = 0x0698 DAQmx_CI_CountEdges_ActiveEdge = 0x0697 DAQmx_CI_CountEdges_DigFltr_Enable = 0x21F6 DAQmx_CI_CountEdges_DigFltr_MinPulseWidth = 0x21F7 DAQmx_CI_CountEdges_DigFltr_TimebaseSrc = 0x21F8 DAQmx_CI_CountEdges_DigFltr_TimebaseRate = 0x21F9 DAQmx_CI_CountEdges_DigSync_Enable = 0x21FA DAQmx_CI_AngEncoder_Units = 0x18A6 DAQmx_CI_AngEncoder_PulsesPerRev = 0x0875 DAQmx_CI_AngEncoder_InitialAngle = 0x0881 DAQmx_CI_LinEncoder_Units = 0x18A9 DAQmx_CI_LinEncoder_DistPerPulse = 0x0911 DAQmx_CI_LinEncoder_InitialPos = 0x0915 DAQmx_CI_Encoder_DecodingType = 0x21E6 DAQmx_CI_Encoder_AInputTerm = 0x219D DAQmx_CI_Encoder_AInput_DigFltr_Enable = 0x21FB DAQmx_CI_Encoder_AInput_DigFltr_MinPulseWidth = 0x21FC DAQmx_CI_Encoder_AInput_DigFltr_TimebaseSrc = 0x21FD DAQmx_CI_Encoder_AInput_DigFltr_TimebaseRate = 0x21FE DAQmx_CI_Encoder_AInput_DigSync_Enable = 0x21FF DAQmx_CI_Encoder_BInputTerm = 0x219E DAQmx_CI_Encoder_BInput_DigFltr_Enable = 0x2200 DAQmx_CI_Encoder_BInput_DigFltr_MinPulseWidth = 0x2201 DAQmx_CI_Encoder_BInput_DigFltr_TimebaseSrc = 0x2202 DAQmx_CI_Encoder_BInput_DigFltr_TimebaseRate = 0x2203 DAQmx_CI_Encoder_BInput_DigSync_Enable = 0x2204 DAQmx_CI_Encoder_ZInputTerm = 0x219F DAQmx_CI_Encoder_ZInput_DigFltr_Enable = 0x2205 DAQmx_CI_Encoder_ZInput_DigFltr_MinPulseWidth = 0x2206 DAQmx_CI_Encoder_ZInput_DigFltr_TimebaseSrc = 0x2207 DAQmx_CI_Encoder_ZInput_DigFltr_TimebaseRate = 0x2208 DAQmx_CI_Encoder_ZInput_DigSync_Enable = 0x2209 DAQmx_CI_Encoder_ZIndexEnable = 0x0890 DAQmx_CI_Encoder_ZIndexVal = 0x0888 DAQmx_CI_Encoder_ZIndexPhase = 0x0889 DAQmx_CI_PulseWidth_Units = 0x0823 DAQmx_CI_PulseWidth_Term = 0x18AA DAQmx_CI_PulseWidth_StartingEdge = 0x0825 DAQmx_CI_PulseWidth_DigFltr_Enable = 0x220A DAQmx_CI_PulseWidth_DigFltr_MinPulseWidth = 0x220B DAQmx_CI_PulseWidth_DigFltr_TimebaseSrc = 0x220C DAQmx_CI_PulseWidth_DigFltr_TimebaseRate = 0x220D DAQmx_CI_PulseWidth_DigSync_Enable = 0x220E DAQmx_CI_TwoEdgeSep_Units = 0x18AC DAQmx_CI_TwoEdgeSep_FirstTerm = 0x18AD DAQmx_CI_TwoEdgeSep_FirstEdge = 0x0833 DAQmx_CI_TwoEdgeSep_First_DigFltr_Enable = 0x220F DAQmx_CI_TwoEdgeSep_First_DigFltr_MinPulseWidth = 0x2210 DAQmx_CI_TwoEdgeSep_First_DigFltr_TimebaseSrc = 0x2211 DAQmx_CI_TwoEdgeSep_First_DigFltr_TimebaseRate = 0x2212 DAQmx_CI_TwoEdgeSep_First_DigSync_Enable = 0x2213 DAQmx_CI_TwoEdgeSep_SecondTerm = 0x18AE DAQmx_CI_TwoEdgeSep_SecondEdge = 0x0834 DAQmx_CI_TwoEdgeSep_Second_DigFltr_Enable = 0x2214 DAQmx_CI_TwoEdgeSep_Second_DigFltr_MinPulseWidth = 0x2215 DAQmx_CI_TwoEdgeSep_Second_DigFltr_TimebaseSrc = 0x2216 DAQmx_CI_TwoEdgeSep_Second_DigFltr_TimebaseRate = 0x2217 DAQmx_CI_TwoEdgeSep_Second_DigSync_Enable = 0x2218 DAQmx_CI_SemiPeriod_Units = 0x18AF DAQmx_CI_SemiPeriod_Term = 0x18B0 DAQmx_CI_SemiPeriod_StartingEdge = 0x22FE DAQmx_CI_SemiPeriod_DigFltr_Enable = 0x2219 DAQmx_CI_SemiPeriod_DigFltr_MinPulseWidth = 0x221A DAQmx_CI_SemiPeriod_DigFltr_TimebaseSrc = 0x221B DAQmx_CI_SemiPeriod_DigFltr_TimebaseRate = 0x221C DAQmx_CI_SemiPeriod_DigSync_Enable = 0x221D DAQmx_CI_Pulse_Freq_Units = 0x2F0B DAQmx_CI_Pulse_Freq_Term = 0x2F04 DAQmx_CI_Pulse_Freq_Start_Edge = 0x2F05 DAQmx_CI_Pulse_Freq_DigFltr_Enable = 0x2F06 DAQmx_CI_Pulse_Freq_DigFltr_MinPulseWidth = 0x2F07 DAQmx_CI_Pulse_Freq_DigFltr_TimebaseSrc = 0x2F08 DAQmx_CI_Pulse_Freq_DigFltr_TimebaseRate = 0x2F09 DAQmx_CI_Pulse_Freq_DigSync_Enable = 0x2F0A DAQmx_CI_Pulse_Time_Units = 0x2F13 DAQmx_CI_Pulse_Time_Term = 0x2F0C DAQmx_CI_Pulse_Time_StartEdge = 0x2F0D DAQmx_CI_Pulse_Time_DigFltr_Enable = 0x2F0E DAQmx_CI_Pulse_Time_DigFltr_MinPulseWidth = 0x2F0F DAQmx_CI_Pulse_Time_DigFltr_TimebaseSrc = 0x2F10 DAQmx_CI_Pulse_Time_DigFltr_TimebaseRate = 0x2F11 DAQmx_CI_Pulse_Time_DigSync_Enable = 0x2F12 DAQmx_CI_Pulse_Ticks_Term = 0x2F14 DAQmx_CI_Pulse_Ticks_StartEdge = 0x2F15 DAQmx_CI_Pulse_Ticks_DigFltr_Enable = 0x2F16 DAQmx_CI_Pulse_Ticks_DigFltr_MinPulseWidth = 0x2F17 DAQmx_CI_Pulse_Ticks_DigFltr_TimebaseSrc = 0x2F18 DAQmx_CI_Pulse_Ticks_DigFltr_TimebaseRate = 0x2F19 DAQmx_CI_Pulse_Ticks_DigSync_Enable = 0x2F1A DAQmx_CI_Timestamp_Units = 0x22B3 DAQmx_CI_Timestamp_InitialSeconds = 0x22B4 DAQmx_CI_GPS_SyncMethod = 0x1092 DAQmx_CI_GPS_SyncSrc = 0x1093 DAQmx_CI_CtrTimebaseSrc = 0x0143 DAQmx_CI_CtrTimebaseRate = 0x18B2 DAQmx_CI_CtrTimebaseActiveEdge = 0x0142 DAQmx_CI_CtrTimebase_DigFltr_Enable = 0x2271 DAQmx_CI_CtrTimebase_DigFltr_MinPulseWidth = 0x2272 DAQmx_CI_CtrTimebase_DigFltr_TimebaseSrc = 0x2273 DAQmx_CI_CtrTimebase_DigFltr_TimebaseRate = 0x2274 DAQmx_CI_CtrTimebase_DigSync_Enable = 0x2275 DAQmx_CI_Count = 0x0148 DAQmx_CI_OutputState = 0x0149 DAQmx_CI_TCReached = 0x0150 DAQmx_CI_CtrTimebaseMasterTimebaseDiv = 0x18B3 DAQmx_CI_DataXferMech = 0x0200 DAQmx_CI_DataXferReqCond = 0x2EFB DAQmx_CI_UsbXferReqSize = 0x2A92 DAQmx_CI_MemMapEnable = 0x2ED2 DAQmx_CI_NumPossiblyInvalidSamps = 0x193C DAQmx_CI_DupCountPrevent = 0x21AC DAQmx_CI_Prescaler = 0x2239 DAQmx_CO_OutputType = 0x18B5 DAQmx_CO_Pulse_IdleState = 0x1170 DAQmx_CO_Pulse_Term = 0x18E1 DAQmx_CO_Pulse_Time_Units = 0x18D6 DAQmx_CO_Pulse_HighTime = 0x18BA DAQmx_CO_Pulse_LowTime = 0x18BB DAQmx_CO_Pulse_Time_InitialDelay = 0x18BC DAQmx_CO_Pulse_DutyCyc = 0x1176 DAQmx_CO_Pulse_Freq_Units = 0x18D5 DAQmx_CO_Pulse_Freq = 0x1178 DAQmx_CO_Pulse_Freq_InitialDelay = 0x0299 DAQmx_CO_Pulse_HighTicks = 0x1169 DAQmx_CO_Pulse_LowTicks = 0x1171 DAQmx_CO_Pulse_Ticks_InitialDelay = 0x0298 DAQmx_CO_CtrTimebaseSrc = 0x0339 DAQmx_CO_CtrTimebaseRate = 0x18C2 DAQmx_CO_CtrTimebaseActiveEdge = 0x0341 DAQmx_CO_CtrTimebase_DigFltr_Enable = 0x2276 DAQmx_CO_CtrTimebase_DigFltr_MinPulseWidth = 0x2277 DAQmx_CO_CtrTimebase_DigFltr_TimebaseSrc = 0x2278 DAQmx_CO_CtrTimebase_DigFltr_TimebaseRate = 0x2279 DAQmx_CO_CtrTimebase_DigSync_Enable = 0x227A DAQmx_CO_Count = 0x0293 DAQmx_CO_OutputState = 0x0294 DAQmx_CO_AutoIncrCnt = 0x0295 DAQmx_CO_CtrTimebaseMasterTimebaseDiv = 0x18C3 DAQmx_CO_PulseDone = 0x190E DAQmx_CO_EnableInitialDelayOnRetrigger = 0x2EC9 DAQmx_CO_ConstrainedGenMode = 0x29F2 DAQmx_CO_UseOnlyOnBrdMem = 0x2ECB DAQmx_CO_DataXferMech = 0x2ECC DAQmx_CO_DataXferReqCond = 0x2ECD DAQmx_CO_UsbXferReqSize = 0x2A93 DAQmx_CO_MemMapEnable = 0x2ED3 DAQmx_CO_Prescaler = 0x226D DAQmx_CO_RdyForNewVal = 0x22FF DAQmx_ChanType = 0x187F DAQmx_PhysicalChanName = 0x18F5 DAQmx_ChanDescr = 0x1926 DAQmx_ChanIsGlobal = 0x2304 DAQmx_Exported_AIConvClk_OutputTerm = 0x1687 DAQmx_Exported_AIConvClk_Pulse_Polarity = 0x1688 DAQmx_Exported_10MHzRefClk_OutputTerm = 0x226E DAQmx_Exported_20MHzTimebase_OutputTerm = 0x1657 DAQmx_Exported_SampClk_OutputBehavior = 0x186B DAQmx_Exported_SampClk_OutputTerm = 0x1663 DAQmx_Exported_SampClk_DelayOffset = 0x21C4 DAQmx_Exported_SampClk_Pulse_Polarity = 0x1664 DAQmx_Exported_SampClkTimebase_OutputTerm = 0x18F9 DAQmx_Exported_DividedSampClkTimebase_OutputTerm = 0x21A1 DAQmx_Exported_AdvTrig_OutputTerm = 0x1645 DAQmx_Exported_AdvTrig_Pulse_Polarity = 0x1646 DAQmx_Exported_AdvTrig_Pulse_WidthUnits = 0x1647 DAQmx_Exported_AdvTrig_Pulse_Width = 0x1648 DAQmx_Exported_PauseTrig_OutputTerm = 0x1615 DAQmx_Exported_PauseTrig_Lvl_ActiveLvl = 0x1616 DAQmx_Exported_RefTrig_OutputTerm = 0x0590 DAQmx_Exported_RefTrig_Pulse_Polarity = 0x0591 DAQmx_Exported_StartTrig_OutputTerm = 0x0584 DAQmx_Exported_StartTrig_Pulse_Polarity = 0x0585 DAQmx_Exported_AdvCmpltEvent_OutputTerm = 0x1651 DAQmx_Exported_AdvCmpltEvent_Delay = 0x1757 DAQmx_Exported_AdvCmpltEvent_Pulse_Polarity = 0x1652 DAQmx_Exported_AdvCmpltEvent_Pulse_Width = 0x1654 DAQmx_Exported_AIHoldCmpltEvent_OutputTerm = 0x18ED DAQmx_Exported_AIHoldCmpltEvent_PulsePolarity = 0x18EE DAQmx_Exported_ChangeDetectEvent_OutputTerm = 0x2197 DAQmx_Exported_ChangeDetectEvent_Pulse_Polarity = 0x2303 DAQmx_Exported_CtrOutEvent_OutputTerm = 0x1717 DAQmx_Exported_CtrOutEvent_OutputBehavior = 0x174F DAQmx_Exported_CtrOutEvent_Pulse_Polarity = 0x1718 DAQmx_Exported_CtrOutEvent_Toggle_IdleState = 0x186A DAQmx_Exported_HshkEvent_OutputTerm = 0x22BA DAQmx_Exported_HshkEvent_OutputBehavior = 0x22BB DAQmx_Exported_HshkEvent_Delay = 0x22BC DAQmx_Exported_HshkEvent_Interlocked_AssertedLvl = 0x22BD DAQmx_Exported_HshkEvent_Interlocked_AssertOnStart = 0x22BE DAQmx_Exported_HshkEvent_Interlocked_DeassertDelay = 0x22BF DAQmx_Exported_HshkEvent_Pulse_Polarity = 0x22C0 DAQmx_Exported_HshkEvent_Pulse_Width = 0x22C1 DAQmx_Exported_RdyForXferEvent_OutputTerm = 0x22B5 DAQmx_Exported_RdyForXferEvent_Lvl_ActiveLvl = 0x22B6 DAQmx_Exported_RdyForXferEvent_DeassertCond = 0x2963 DAQmx_Exported_RdyForXferEvent_DeassertCondCustomThreshold = 0x2964 DAQmx_Exported_DataActiveEvent_OutputTerm = 0x1633 DAQmx_Exported_DataActiveEvent_Lvl_ActiveLvl = 0x1634 DAQmx_Exported_RdyForStartEvent_OutputTerm = 0x1609 DAQmx_Exported_RdyForStartEvent_Lvl_ActiveLvl = 0x1751 DAQmx_Exported_SyncPulseEvent_OutputTerm = 0x223C DAQmx_Exported_WatchdogExpiredEvent_OutputTerm = 0x21AA DAQmx_Dev_IsSimulated = 0x22CA DAQmx_Dev_ProductCategory = 0x29A9 DAQmx_Dev_ProductType = 0x0631 DAQmx_Dev_ProductNum = 0x231D DAQmx_Dev_SerialNum = 0x0632 DAQmx_Carrier_SerialNum = 0x2A8A DAQmx_Dev_Chassis_ModuleDevNames = 0x29B6 DAQmx_Dev_AnlgTrigSupported = 0x2984 DAQmx_Dev_DigTrigSupported = 0x2985 DAQmx_Dev_AI_PhysicalChans = 0x231E DAQmx_Dev_AI_MaxSingleChanRate = 0x298C DAQmx_Dev_AI_MaxMultiChanRate = 0x298D DAQmx_Dev_AI_MinRate = 0x298E DAQmx_Dev_AI_SimultaneousSamplingSupported = 0x298F DAQmx_Dev_AI_TrigUsage = 0x2986 DAQmx_Dev_AI_VoltageRngs = 0x2990 DAQmx_Dev_AI_VoltageIntExcitDiscreteVals = 0x29C9 DAQmx_Dev_AI_VoltageIntExcitRangeVals = 0x29CA DAQmx_Dev_AI_CurrentRngs = 0x2991 DAQmx_Dev_AI_CurrentIntExcitDiscreteVals = 0x29CB DAQmx_Dev_AI_FreqRngs = 0x2992 DAQmx_Dev_AI_Gains = 0x2993 DAQmx_Dev_AI_Couplings = 0x2994 DAQmx_Dev_AI_LowpassCutoffFreqDiscreteVals = 0x2995 DAQmx_Dev_AI_LowpassCutoffFreqRangeVals = 0x29CF DAQmx_Dev_AO_PhysicalChans = 0x231F DAQmx_Dev_AO_SampClkSupported = 0x2996 DAQmx_Dev_AO_MaxRate = 0x2997 DAQmx_Dev_AO_MinRate = 0x2998 DAQmx_Dev_AO_TrigUsage = 0x2987 DAQmx_Dev_AO_VoltageRngs = 0x299B DAQmx_Dev_AO_CurrentRngs = 0x299C DAQmx_Dev_AO_Gains = 0x299D DAQmx_Dev_DI_Lines = 0x2320 DAQmx_Dev_DI_Ports = 0x2321 DAQmx_Dev_DI_MaxRate = 0x2999 DAQmx_Dev_DI_TrigUsage = 0x2988 DAQmx_Dev_DO_Lines = 0x2322 DAQmx_Dev_DO_Ports = 0x2323 DAQmx_Dev_DO_MaxRate = 0x299A DAQmx_Dev_DO_TrigUsage = 0x2989 DAQmx_Dev_CI_PhysicalChans = 0x2324 DAQmx_Dev_CI_TrigUsage = 0x298A DAQmx_Dev_CI_SampClkSupported = 0x299E DAQmx_Dev_CI_MaxSize = 0x299F DAQmx_Dev_CI_MaxTimebase = 0x29A0 DAQmx_Dev_CO_PhysicalChans = 0x2325 DAQmx_Dev_CO_TrigUsage = 0x298B DAQmx_Dev_CO_MaxSize = 0x29A1 DAQmx_Dev_CO_MaxTimebase = 0x29A2 DAQmx_Dev_NumDMAChans = 0x233C DAQmx_Dev_BusType = 0x2326 DAQmx_Dev_PCI_BusNum = 0x2327 DAQmx_Dev_PCI_DevNum = 0x2328 DAQmx_Dev_PXI_ChassisNum = 0x2329 DAQmx_Dev_PXI_SlotNum = 0x232A DAQmx_Dev_CompactDAQ_ChassisDevName = 0x29B7 DAQmx_Dev_CompactDAQ_SlotNum = 0x29B8 DAQmx_Dev_TCPIP_Hostname = 0x2A8B DAQmx_Dev_TCPIP_EthernetIP = 0x2A8C DAQmx_Dev_TCPIP_WirelessIP = 0x2A8D DAQmx_Dev_Terminals = 0x2A40 DAQmx_Read_RelativeTo = 0x190A DAQmx_Read_Offset = 0x190B DAQmx_Read_ChannelsToRead = 0x1823 DAQmx_Read_ReadAllAvailSamp = 0x1215 DAQmx_Read_AutoStart = 0x1826 DAQmx_Read_OverWrite = 0x1211 DAQmx_Read_CurrReadPos = 0x1221 DAQmx_Read_AvailSampPerChan = 0x1223 DAQmx_Logging_FilePath = 0x2EC4 DAQmx_Logging_Mode = 0x2EC5 DAQmx_Logging_TDMS_GroupName = 0x2EC6 DAQmx_Logging_TDMS_Operation = 0x2EC7 DAQmx_Read_TotalSampPerChanAcquired = 0x192A DAQmx_Read_CommonModeRangeErrorChansExist = 0x2A98 DAQmx_Read_CommonModeRangeErrorChans = 0x2A99 DAQmx_Read_OvercurrentChansExist = 0x29E6 DAQmx_Read_OvercurrentChans = 0x29E7 DAQmx_Read_OpenCurrentLoopChansExist = 0x2A09 DAQmx_Read_OpenCurrentLoopChans = 0x2A0A DAQmx_Read_OpenThrmcplChansExist = 0x2A96 DAQmx_Read_OpenThrmcplChans = 0x2A97 DAQmx_Read_OverloadedChansExist = 0x2174 DAQmx_Read_OverloadedChans = 0x2175 DAQmx_Read_ChangeDetect_HasOverflowed = 0x2194 DAQmx_Read_RawDataWidth = 0x217A DAQmx_Read_NumChans = 0x217B DAQmx_Read_DigitalLines_BytesPerChan = 0x217C DAQmx_Read_WaitMode = 0x2232 DAQmx_Read_SleepTime = 0x22B0 DAQmx_RealTime_ConvLateErrorsToWarnings = 0x22EE DAQmx_RealTime_NumOfWarmupIters = 0x22ED DAQmx_RealTime_WaitForNextSampClkWaitMode = 0x22EF DAQmx_RealTime_ReportMissedSamp = 0x2319 DAQmx_RealTime_WriteRecoveryMode = 0x231A DAQmx_SwitchChan_Usage = 0x18E4 DAQmx_SwitchChan_MaxACCarryCurrent = 0x0648 DAQmx_SwitchChan_MaxACSwitchCurrent = 0x0646 DAQmx_SwitchChan_MaxACCarryPwr = 0x0642 DAQmx_SwitchChan_MaxACSwitchPwr = 0x0644 DAQmx_SwitchChan_MaxDCCarryCurrent = 0x0647 DAQmx_SwitchChan_MaxDCSwitchCurrent = 0x0645 DAQmx_SwitchChan_MaxDCCarryPwr = 0x0643 DAQmx_SwitchChan_MaxDCSwitchPwr = 0x0649 DAQmx_SwitchChan_MaxACVoltage = 0x0651 DAQmx_SwitchChan_MaxDCVoltage = 0x0650 DAQmx_SwitchChan_WireMode = 0x18E5 DAQmx_SwitchChan_Bandwidth = 0x0640 DAQmx_SwitchChan_Impedance = 0x0641 DAQmx_SwitchDev_SettlingTime = 0x1244 DAQmx_SwitchDev_AutoConnAnlgBus = 0x17DA DAQmx_SwitchDev_PwrDownLatchRelaysAfterSettling = 0x22DB DAQmx_SwitchDev_Settled = 0x1243 DAQmx_SwitchDev_RelayList = 0x17DC DAQmx_SwitchDev_NumRelays = 0x18E6 DAQmx_SwitchDev_SwitchChanList = 0x18E7 DAQmx_SwitchDev_NumSwitchChans = 0x18E8 DAQmx_SwitchDev_NumRows = 0x18E9 DAQmx_SwitchDev_NumColumns = 0x18EA DAQmx_SwitchDev_Topology = 0x193D DAQmx_SwitchScan_BreakMode = 0x1247 DAQmx_SwitchScan_RepeatMode = 0x1248 DAQmx_SwitchScan_WaitingForAdv = 0x17D9 DAQmx_Scale_Descr = 0x1226 DAQmx_Scale_ScaledUnits = 0x191B DAQmx_Scale_PreScaledUnits = 0x18F7 DAQmx_Scale_Type = 0x1929 DAQmx_Scale_Lin_Slope = 0x1227 DAQmx_Scale_Lin_YIntercept = 0x1228 DAQmx_Scale_Map_ScaledMax = 0x1229 DAQmx_Scale_Map_PreScaledMax = 0x1231 DAQmx_Scale_Map_ScaledMin = 0x1230 DAQmx_Scale_Map_PreScaledMin = 0x1232 DAQmx_Scale_Poly_ForwardCoeff = 0x1234 DAQmx_Scale_Poly_ReverseCoeff = 0x1235 DAQmx_Scale_Table_ScaledVals = 0x1236 DAQmx_Scale_Table_PreScaledVals = 0x1237 DAQmx_Sys_GlobalChans = 0x1265 DAQmx_Sys_Scales = 0x1266 DAQmx_Sys_Tasks = 0x1267 DAQmx_Sys_DevNames = 0x193B DAQmx_Sys_NIDAQMajorVersion = 0x1272 DAQmx_Sys_NIDAQMinorVersion = 0x1923 DAQmx_Sys_NIDAQUpdateVersion = 0x2F22 DAQmx_Task_Name = 0x1276 DAQmx_Task_Channels = 0x1273 DAQmx_Task_NumChans = 0x2181 DAQmx_Task_Devices = 0x230E DAQmx_Task_NumDevices = 0x29BA DAQmx_Task_Complete = 0x1274 DAQmx_SampQuant_SampMode = 0x1300 DAQmx_SampQuant_SampPerChan = 0x1310 DAQmx_SampTimingType = 0x1347 DAQmx_SampClk_Rate = 0x1344 DAQmx_SampClk_MaxRate = 0x22C8 DAQmx_SampClk_Src = 0x1852 DAQmx_SampClk_ActiveEdge = 0x1301 DAQmx_SampClk_OverrunBehavior = 0x2EFC DAQmx_SampClk_UnderflowBehavior = 0x2961 DAQmx_SampClk_TimebaseDiv = 0x18EB DAQmx_SampClk_Term = 0x2F1B DAQmx_SampClk_Timebase_Rate = 0x1303 DAQmx_SampClk_Timebase_Src = 0x1308 DAQmx_SampClk_Timebase_ActiveEdge = 0x18EC DAQmx_SampClk_Timebase_MasterTimebaseDiv = 0x1305 DAQmx_SampClkTimebase_Term = 0x2F1C DAQmx_SampClk_DigFltr_Enable = 0x221E DAQmx_SampClk_DigFltr_MinPulseWidth = 0x221F DAQmx_SampClk_DigFltr_TimebaseSrc = 0x2220 DAQmx_SampClk_DigFltr_TimebaseRate = 0x2221 DAQmx_SampClk_DigSync_Enable = 0x2222 DAQmx_Hshk_DelayAfterXfer = 0x22C2 DAQmx_Hshk_StartCond = 0x22C3 DAQmx_Hshk_SampleInputDataWhen = 0x22C4 DAQmx_ChangeDetect_DI_RisingEdgePhysicalChans = 0x2195 DAQmx_ChangeDetect_DI_FallingEdgePhysicalChans = 0x2196 DAQmx_ChangeDetect_DI_Tristate = 0x2EFA DAQmx_OnDemand_SimultaneousAOEnable = 0x21A0 DAQmx_Implicit_UnderflowBehavior = 0x2EFD DAQmx_AIConv_Rate = 0x1848 DAQmx_AIConv_MaxRate = 0x22C9 DAQmx_AIConv_Src = 0x1502 DAQmx_AIConv_ActiveEdge = 0x1853 DAQmx_AIConv_TimebaseDiv = 0x1335 DAQmx_AIConv_Timebase_Src = 0x1339 DAQmx_DelayFromSampClk_DelayUnits = 0x1304 DAQmx_DelayFromSampClk_Delay = 0x1317 DAQmx_AIConv_DigFltr_Enable = 0x2EDC DAQmx_AIConv_DigFltr_MinPulseWidth = 0x2EDD DAQmx_AIConv_DigFltr_TimebaseSrc = 0x2EDE DAQmx_AIConv_DigFltr_TimebaseRate = 0x2EDF DAQmx_AIConv_DigSync_Enable = 0x2EE0 DAQmx_MasterTimebase_Rate = 0x1495 DAQmx_MasterTimebase_Src = 0x1343 DAQmx_RefClk_Rate = 0x1315 DAQmx_RefClk_Src = 0x1316 DAQmx_SyncPulse_Src = 0x223D DAQmx_SyncPulse_SyncTime = 0x223E DAQmx_SyncPulse_MinDelayToStart = 0x223F DAQmx_SampTimingEngine = 0x2A26 DAQmx_StartTrig_Type = 0x1393 DAQmx_StartTrig_Term = 0x2F1E DAQmx_DigEdge_StartTrig_Src = 0x1407 DAQmx_DigEdge_StartTrig_Edge = 0x1404 DAQmx_DigEdge_StartTrig_DigFltr_Enable = 0x2223 DAQmx_DigEdge_StartTrig_DigFltr_MinPulseWidth = 0x2224 DAQmx_DigEdge_StartTrig_DigFltr_TimebaseSrc = 0x2225 DAQmx_DigEdge_StartTrig_DigFltr_TimebaseRate = 0x2226 DAQmx_DigEdge_StartTrig_DigSync_Enable = 0x2227 DAQmx_DigPattern_StartTrig_Src = 0x1410 DAQmx_DigPattern_StartTrig_Pattern = 0x2186 DAQmx_DigPattern_StartTrig_When = 0x1411 DAQmx_AnlgEdge_StartTrig_Src = 0x1398 DAQmx_AnlgEdge_StartTrig_Slope = 0x1397 DAQmx_AnlgEdge_StartTrig_Lvl = 0x1396 DAQmx_AnlgEdge_StartTrig_Hyst = 0x1395 DAQmx_AnlgEdge_StartTrig_Coupling = 0x2233 DAQmx_AnlgEdge_StartTrig_DigFltr_Enable = 0x2EE1 DAQmx_AnlgEdge_StartTrig_DigFltr_MinPulseWidth = 0x2EE2 DAQmx_AnlgEdge_StartTrig_DigFltr_TimebaseSrc = 0x2EE3 DAQmx_AnlgEdge_StartTrig_DigFltr_TimebaseRate = 0x2EE4 DAQmx_AnlgEdge_StartTrig_DigSync_Enable = 0x2EE5 DAQmx_AnlgWin_StartTrig_Src = 0x1400 DAQmx_AnlgWin_StartTrig_When = 0x1401 DAQmx_AnlgWin_StartTrig_Top = 0x1403 DAQmx_AnlgWin_StartTrig_Btm = 0x1402 DAQmx_AnlgWin_StartTrig_Coupling = 0x2234 DAQmx_AnlgWin_StartTrig_DigFltr_Enable = 0x2EFF DAQmx_AnlgWin_StartTrig_DigFltr_MinPulseWidth = 0x2F00 DAQmx_AnlgWin_StartTrig_DigFltr_TimebaseSrc = 0x2F01 DAQmx_AnlgWin_StartTrig_DigFltr_TimebaseRate = 0x2F02 DAQmx_AnlgWin_StartTrig_DigSync_Enable = 0x2F03 DAQmx_StartTrig_Delay = 0x1856 DAQmx_StartTrig_DelayUnits = 0x18C8 DAQmx_StartTrig_Retriggerable = 0x190F DAQmx_RefTrig_Type = 0x1419 DAQmx_RefTrig_PretrigSamples = 0x1445 DAQmx_RefTrig_Term = 0x2F1F DAQmx_DigEdge_RefTrig_Src = 0x1434 DAQmx_DigEdge_RefTrig_Edge = 0x1430 DAQmx_DigEdge_RefTrig_DigFltr_Enable = 0x2ED7 DAQmx_DigEdge_RefTrig_DigFltr_MinPulseWidth = 0x2ED8 DAQmx_DigEdge_RefTrig_DigFltr_TimebaseSrc = 0x2ED9 DAQmx_DigEdge_RefTrig_DigFltr_TimebaseRate = 0x2EDA DAQmx_DigEdge_RefTrig_DigSync_Enable = 0x2EDB DAQmx_DigPattern_RefTrig_Src = 0x1437 DAQmx_DigPattern_RefTrig_Pattern = 0x2187 DAQmx_DigPattern_RefTrig_When = 0x1438 DAQmx_AnlgEdge_RefTrig_Src = 0x1424 DAQmx_AnlgEdge_RefTrig_Slope = 0x1423 DAQmx_AnlgEdge_RefTrig_Lvl = 0x1422 DAQmx_AnlgEdge_RefTrig_Hyst = 0x1421 DAQmx_AnlgEdge_RefTrig_Coupling = 0x2235 DAQmx_AnlgEdge_RefTrig_DigFltr_Enable = 0x2EE6 DAQmx_AnlgEdge_RefTrig_DigFltr_MinPulseWidth = 0x2EE7 DAQmx_AnlgEdge_RefTrig_DigFltr_TimebaseSrc = 0x2EE8 DAQmx_AnlgEdge_RefTrig_DigFltr_TimebaseRate = 0x2EE9 DAQmx_AnlgEdge_RefTrig_DigSync_Enable = 0x2EEA DAQmx_AnlgWin_RefTrig_Src = 0x1426 DAQmx_AnlgWin_RefTrig_When = 0x1427 DAQmx_AnlgWin_RefTrig_Top = 0x1429 DAQmx_AnlgWin_RefTrig_Btm = 0x1428 DAQmx_AnlgWin_RefTrig_Coupling = 0x1857 DAQmx_AnlgWin_RefTrig_DigFltr_Enable = 0x2EEB DAQmx_AnlgWin_RefTrig_DigFltr_MinPulseWidth = 0x2EEC DAQmx_AnlgWin_RefTrig_DigFltr_TimebaseSrc = 0x2EED DAQmx_AnlgWin_RefTrig_DigFltr_TimebaseRate = 0x2EEE DAQmx_AnlgWin_RefTrig_DigSync_Enable = 0x2EEF DAQmx_RefTrig_AutoTrigEnable = 0x2EC1 DAQmx_RefTrig_AutoTriggered = 0x2EC2 DAQmx_AdvTrig_Type = 0x1365 DAQmx_DigEdge_AdvTrig_Src = 0x1362 DAQmx_DigEdge_AdvTrig_Edge = 0x1360 DAQmx_DigEdge_AdvTrig_DigFltr_Enable = 0x2238 DAQmx_HshkTrig_Type = 0x22B7 DAQmx_Interlocked_HshkTrig_Src = 0x22B8 DAQmx_Interlocked_HshkTrig_AssertedLvl = 0x22B9 DAQmx_PauseTrig_Type = 0x1366 DAQmx_PauseTrig_Term = 0x2F20 DAQmx_AnlgLvl_PauseTrig_Src = 0x1370 DAQmx_AnlgLvl_PauseTrig_When = 0x1371 DAQmx_AnlgLvl_PauseTrig_Lvl = 0x1369 DAQmx_AnlgLvl_PauseTrig_Hyst = 0x1368 DAQmx_AnlgLvl_PauseTrig_Coupling = 0x2236 DAQmx_AnlgLvl_PauseTrig_DigFltr_Enable = 0x2EF0 DAQmx_AnlgLvl_PauseTrig_DigFltr_MinPulseWidth = 0x2EF1 DAQmx_AnlgLvl_PauseTrig_DigFltr_TimebaseSrc = 0x2EF2 DAQmx_AnlgLvl_PauseTrig_DigFltr_TimebaseRate = 0x2EF3 DAQmx_AnlgLvl_PauseTrig_DigSync_Enable = 0x2EF4 DAQmx_AnlgWin_PauseTrig_Src = 0x1373 DAQmx_AnlgWin_PauseTrig_When = 0x1374 DAQmx_AnlgWin_PauseTrig_Top = 0x1376 DAQmx_AnlgWin_PauseTrig_Btm = 0x1375 DAQmx_AnlgWin_PauseTrig_Coupling = 0x2237 DAQmx_AnlgWin_PauseTrig_DigFltr_Enable = 0x2EF5 DAQmx_AnlgWin_PauseTrig_DigFltr_MinPulseWidth = 0x2EF6 DAQmx_AnlgWin_PauseTrig_DigFltr_TimebaseSrc = 0x2EF7 DAQmx_AnlgWin_PauseTrig_DigFltr_TimebaseRate = 0x2EF8 DAQmx_AnlgWin_PauseTrig_DigSync_Enable = 0x2EF9 DAQmx_DigLvl_PauseTrig_Src = 0x1379 DAQmx_DigLvl_PauseTrig_When = 0x1380 DAQmx_DigLvl_PauseTrig_DigFltr_Enable = 0x2228 DAQmx_DigLvl_PauseTrig_DigFltr_MinPulseWidth = 0x2229 DAQmx_DigLvl_PauseTrig_DigFltr_TimebaseSrc = 0x222A DAQmx_DigLvl_PauseTrig_DigFltr_TimebaseRate = 0x222B DAQmx_DigLvl_PauseTrig_DigSync_Enable = 0x222C DAQmx_DigPattern_PauseTrig_Src = 0x216F DAQmx_DigPattern_PauseTrig_Pattern = 0x2188 DAQmx_DigPattern_PauseTrig_When = 0x2170 DAQmx_ArmStartTrig_Type = 0x1414 DAQmx_DigEdge_ArmStartTrig_Src = 0x1417 DAQmx_DigEdge_ArmStartTrig_Edge = 0x1415 DAQmx_DigEdge_ArmStartTrig_DigFltr_Enable = 0x222D DAQmx_DigEdge_ArmStartTrig_DigFltr_MinPulseWidth = 0x222E DAQmx_DigEdge_ArmStartTrig_DigFltr_TimebaseSrc = 0x222F DAQmx_DigEdge_ArmStartTrig_DigFltr_TimebaseRate = 0x2230 DAQmx_DigEdge_ArmStartTrig_DigSync_Enable = 0x2231 DAQmx_Watchdog_Timeout = 0x21A9 DAQmx_WatchdogExpirTrig_Type = 0x21A3 DAQmx_DigEdge_WatchdogExpirTrig_Src = 0x21A4 DAQmx_DigEdge_WatchdogExpirTrig_Edge = 0x21A5 DAQmx_Watchdog_DO_ExpirState = 0x21A7 DAQmx_Watchdog_HasExpired = 0x21A8 DAQmx_Write_RelativeTo = 0x190C DAQmx_Write_Offset = 0x190D DAQmx_Write_RegenMode = 0x1453 DAQmx_Write_CurrWritePos = 0x1458 DAQmx_Write_OvercurrentChansExist = 0x29E8 DAQmx_Write_OvercurrentChans = 0x29E9 DAQmx_Write_OvertemperatureChansExist = 0x2A84 DAQmx_Write_OpenCurrentLoopChansExist = 0x29EA DAQmx_Write_OpenCurrentLoopChans = 0x29EB DAQmx_Write_PowerSupplyFaultChansExist = 0x29EC DAQmx_Write_PowerSupplyFaultChans = 0x29ED DAQmx_Write_SpaceAvail = 0x1460 DAQmx_Write_TotalSampPerChanGenerated = 0x192B DAQmx_Write_RawDataWidth = 0x217D DAQmx_Write_NumChans = 0x217E DAQmx_Write_WaitMode = 0x22B1 DAQmx_Write_SleepTime = 0x22B2 DAQmx_Write_NextWriteIsLast = 0x296C DAQmx_Write_DigitalLines_BytesPerChan = 0x217F DAQmx_PhysicalChan_AI_TermCfgs = 0x2342 DAQmx_PhysicalChan_AO_TermCfgs = 0x29A3 DAQmx_PhysicalChan_AO_ManualControlEnable = 0x2A1E DAQmx_PhysicalChan_AO_ManualControl_ShortDetected = 0x2EC3 DAQmx_PhysicalChan_AO_ManualControlAmplitude = 0x2A1F DAQmx_PhysicalChan_AO_ManualControlFreq = 0x2A20 DAQmx_PhysicalChan_DI_PortWidth = 0x29A4 DAQmx_PhysicalChan_DI_SampClkSupported = 0x29A5 DAQmx_PhysicalChan_DI_ChangeDetectSupported = 0x29A6 DAQmx_PhysicalChan_DO_PortWidth = 0x29A7 DAQmx_PhysicalChan_DO_SampClkSupported = 0x29A8 DAQmx_PhysicalChan_TEDS_MfgID = 0x21DA DAQmx_PhysicalChan_TEDS_ModelNum = 0x21DB DAQmx_PhysicalChan_TEDS_SerialNum = 0x21DC DAQmx_PhysicalChan_TEDS_VersionNum = 0x21DD DAQmx_PhysicalChan_TEDS_VersionLetter = 0x21DE DAQmx_PhysicalChan_TEDS_BitStream = 0x21DF DAQmx_PhysicalChan_TEDS_TemplateIDs = 0x228F DAQmx_PersistedTask_Author = 0x22CC DAQmx_PersistedTask_AllowInteractiveEditing = 0x22CD DAQmx_PersistedTask_AllowInteractiveDeletion = 0x22CE DAQmx_PersistedChan_Author = 0x22D0 DAQmx_PersistedChan_AllowInteractiveEditing = 0x22D1 DAQmx_PersistedChan_AllowInteractiveDeletion = 0x22D2 DAQmx_PersistedScale_Author = 0x22D4 DAQmx_PersistedScale_AllowInteractiveEditing = 0x22D5 DAQmx_PersistedScale_AllowInteractiveDeletion = 0x22D6 DAQmx_ReadWaitMode = DAQmx_Read_WaitMode DAQmx_Val_Task_Start = 0 DAQmx_Val_Task_Stop = 1 DAQmx_Val_Task_Verify = 2 DAQmx_Val_Task_Commit = 3 DAQmx_Val_Task_Reserve = 4 DAQmx_Val_Task_Unreserve = 5 DAQmx_Val_Task_Abort = 6 DAQmx_Val_SynchronousEventCallbacks = (1<<0) DAQmx_Val_Acquired_Into_Buffer = 1 DAQmx_Val_Transferred_From_Buffer = 2 DAQmx_Val_ResetTimer = 0 DAQmx_Val_ClearExpiration = 1 DAQmx_Val_ChanPerLine = 0 DAQmx_Val_ChanForAllLines = 1 DAQmx_Val_GroupByChannel = 0 DAQmx_Val_GroupByScanNumber = 1 DAQmx_Val_DoNotInvertPolarity = 0 DAQmx_Val_InvertPolarity = 1 DAQmx_Val_Action_Commit = 0 DAQmx_Val_Action_Cancel = 1 DAQmx_Val_AdvanceTrigger = 12488 DAQmx_Val_Rising = 10280 DAQmx_Val_Falling = 10171 DAQmx_Val_PathStatus_Available = 10431 DAQmx_Val_PathStatus_AlreadyExists = 10432 DAQmx_Val_PathStatus_Unsupported = 10433 DAQmx_Val_PathStatus_ChannelInUse = 10434 DAQmx_Val_PathStatus_SourceChannelConflict = 10435 DAQmx_Val_PathStatus_ChannelReservedForRouting = 10436 DAQmx_Val_DegC = 10143 DAQmx_Val_DegF = 10144 DAQmx_Val_Kelvins = 10325 DAQmx_Val_DegR = 10145 DAQmx_Val_High = 10192 DAQmx_Val_Low = 10214 DAQmx_Val_Tristate = 10310 DAQmx_Val_ChannelVoltage = 0 DAQmx_Val_ChannelCurrent = 1 DAQmx_Val_Open = 10437 DAQmx_Val_Closed = 10438 DAQmx_Val_Loopback0 = 0 DAQmx_Val_Loopback180 = 1 DAQmx_Val_Ground = 2 DAQmx_Val_Cfg_Default = -1 DAQmx_Val_Default = -1 DAQmx_Val_WaitInfinitely = -1.0 DAQmx_Val_Auto = -1 DAQmx_Val_Save_Overwrite = (1<<0) DAQmx_Val_Save_AllowInteractiveEditing = (1<<1) DAQmx_Val_Save_AllowInteractiveDeletion = (1<<2) DAQmx_Val_Bit_TriggerUsageTypes_Advance = (1<<0) DAQmx_Val_Bit_TriggerUsageTypes_Pause = (1<<1) DAQmx_Val_Bit_TriggerUsageTypes_Reference = (1<<2) DAQmx_Val_Bit_TriggerUsageTypes_Start = (1<<3) DAQmx_Val_Bit_TriggerUsageTypes_Handshake = (1<<4) DAQmx_Val_Bit_TriggerUsageTypes_ArmStart = (1<<5) DAQmx_Val_Bit_CouplingTypes_AC = (1<<0) DAQmx_Val_Bit_CouplingTypes_DC = (1<<1) DAQmx_Val_Bit_CouplingTypes_Ground = (1<<2) DAQmx_Val_Bit_CouplingTypes_HFReject = (1<<3) DAQmx_Val_Bit_CouplingTypes_LFReject = (1<<4) DAQmx_Val_Bit_CouplingTypes_NoiseReject = (1<<5) DAQmx_Val_Bit_TermCfg_RSE = (1<<0) DAQmx_Val_Bit_TermCfg_NRSE = (1<<1) DAQmx_Val_Bit_TermCfg_Diff = (1<<2) DAQmx_Val_Bit_TermCfg_PseudoDIFF = (1<<3) DAQmx_Val_4Wire = 4 DAQmx_Val_5Wire = 5 DAQmx_Val_HighResolution = 10195 DAQmx_Val_HighSpeed = 14712 DAQmx_Val_Best50HzRejection = 14713 DAQmx_Val_Best60HzRejection = 14714 DAQmx_Val_Voltage = 10322 DAQmx_Val_VoltageRMS = 10350 DAQmx_Val_Current = 10134 DAQmx_Val_CurrentRMS = 10351 DAQmx_Val_Voltage_CustomWithExcitation = 10323 DAQmx_Val_Freq_Voltage = 10181 DAQmx_Val_Resistance = 10278 DAQmx_Val_Temp_TC = 10303 DAQmx_Val_Temp_Thrmstr = 10302 DAQmx_Val_Temp_RTD = 10301 DAQmx_Val_Temp_BuiltInSensor = 10311 DAQmx_Val_Strain_Gage = 10300 DAQmx_Val_Position_LVDT = 10352 DAQmx_Val_Position_RVDT = 10353 DAQmx_Val_Position_EddyCurrentProximityProbe = 14835 DAQmx_Val_Accelerometer = 10356 DAQmx_Val_SoundPressure_Microphone = 10354 DAQmx_Val_TEDS_Sensor = 12531 DAQmx_Val_ZeroVolts = 12526 DAQmx_Val_HighImpedance = 12527 DAQmx_Val_MaintainExistingValue = 12528 DAQmx_Val_Voltage = 10322 DAQmx_Val_Current = 10134 DAQmx_Val_FuncGen = 14750 DAQmx_Val_mVoltsPerG = 12509 DAQmx_Val_VoltsPerG = 12510 DAQmx_Val_AccelUnit_g = 10186 DAQmx_Val_MetersPerSecondSquared = 12470 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_FiniteSamps = 10178 DAQmx_Val_ContSamps = 10123 DAQmx_Val_HWTimedSinglePoint = 12522 DAQmx_Val_AboveLvl = 10093 DAQmx_Val_BelowLvl = 10107 DAQmx_Val_Degrees = 10146 DAQmx_Val_Radians = 10273 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Degrees = 10146 DAQmx_Val_Radians = 10273 DAQmx_Val_Ticks = 10304 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_None = 10230 DAQmx_Val_Once = 10244 DAQmx_Val_EverySample = 10164 DAQmx_Val_NoAction = 10227 DAQmx_Val_BreakBeforeMake = 10110 DAQmx_Val_FullBridge = 10182 DAQmx_Val_HalfBridge = 10187 DAQmx_Val_QuarterBridge = 10270 DAQmx_Val_NoBridge = 10228 DAQmx_Val_PCI = 12582 DAQmx_Val_PCIe = 13612 DAQmx_Val_PXI = 12583 DAQmx_Val_PXIe = 14706 DAQmx_Val_SCXI = 12584 DAQmx_Val_SCC = 14707 DAQmx_Val_PCCard = 12585 DAQmx_Val_USB = 12586 DAQmx_Val_CompactDAQ = 14637 DAQmx_Val_TCPIP = 14828 DAQmx_Val_Unknown = 12588 DAQmx_Val_CountEdges = 10125 DAQmx_Val_Freq = 10179 DAQmx_Val_Period = 10256 DAQmx_Val_PulseWidth = 10359 DAQmx_Val_SemiPeriod = 10289 DAQmx_Val_PulseFrequency = 15864 DAQmx_Val_PulseTime = 15865 DAQmx_Val_PulseTicks = 15866 DAQmx_Val_Position_AngEncoder = 10360 DAQmx_Val_Position_LinEncoder = 10361 DAQmx_Val_TwoEdgeSep = 10267 DAQmx_Val_GPS_Timestamp = 10362 DAQmx_Val_BuiltIn = 10200 DAQmx_Val_ConstVal = 10116 DAQmx_Val_Chan = 10113 DAQmx_Val_Pulse_Time = 10269 DAQmx_Val_Pulse_Freq = 10119 DAQmx_Val_Pulse_Ticks = 10268 DAQmx_Val_AI = 10100 DAQmx_Val_AO = 10102 DAQmx_Val_DI = 10151 DAQmx_Val_DO = 10153 DAQmx_Val_CI = 10131 DAQmx_Val_CO = 10132 DAQmx_Val_Unconstrained = 14708 DAQmx_Val_FixedHighFreq = 14709 DAQmx_Val_FixedLowFreq = 14710 DAQmx_Val_Fixed50PercentDutyCycle = 14711 DAQmx_Val_CountUp = 10128 DAQmx_Val_CountDown = 10124 DAQmx_Val_ExtControlled = 10326 DAQmx_Val_LowFreq1Ctr = 10105 DAQmx_Val_HighFreq2Ctr = 10157 DAQmx_Val_LargeRng2Ctr = 10205 DAQmx_Val_AC = 10045 DAQmx_Val_DC = 10050 DAQmx_Val_GND = 10066 DAQmx_Val_AC = 10045 DAQmx_Val_DC = 10050 DAQmx_Val_Internal = 10200 DAQmx_Val_External = 10167 DAQmx_Val_Amps = 10342 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_FromTEDS = 12516 DAQmx_Val_Amps = 10342 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_RightJustified = 10279 DAQmx_Val_LeftJustified = 10209 DAQmx_Val_DMA = 10054 DAQmx_Val_Interrupts = 10204 DAQmx_Val_ProgrammedIO = 10264 DAQmx_Val_USBbulk = 12590 DAQmx_Val_OnbrdMemMoreThanHalfFull = 10237 DAQmx_Val_OnbrdMemFull = 10236 DAQmx_Val_OnbrdMemCustomThreshold = 12577 DAQmx_Val_ActiveDrive = 12573 DAQmx_Val_OpenCollector = 12574 DAQmx_Val_High = 10192 DAQmx_Val_Low = 10214 DAQmx_Val_Tristate = 10310 DAQmx_Val_NoChange = 10160 DAQmx_Val_PatternMatches = 10254 DAQmx_Val_PatternDoesNotMatch = 10253 DAQmx_Val_SampClkPeriods = 10286 DAQmx_Val_Seconds = 10364 DAQmx_Val_Ticks = 10304 DAQmx_Val_Seconds = 10364 DAQmx_Val_Ticks = 10304 DAQmx_Val_Seconds = 10364 DAQmx_Val_mVoltsPerMil = 14836 DAQmx_Val_VoltsPerMil = 14837 DAQmx_Val_mVoltsPerMillimeter = 14838 DAQmx_Val_VoltsPerMillimeter = 14839 DAQmx_Val_mVoltsPerMicron = 14840 DAQmx_Val_Rising = 10280 DAQmx_Val_Falling = 10171 DAQmx_Val_X1 = 10090 DAQmx_Val_X2 = 10091 DAQmx_Val_X4 = 10092 DAQmx_Val_TwoPulseCounting = 10313 DAQmx_Val_AHighBHigh = 10040 DAQmx_Val_AHighBLow = 10041 DAQmx_Val_ALowBHigh = 10042 DAQmx_Val_ALowBLow = 10043 DAQmx_Val_DC = 10050 DAQmx_Val_AC = 10045 DAQmx_Val_Internal = 10200 DAQmx_Val_External = 10167 DAQmx_Val_None = 10230 DAQmx_Val_Voltage = 10322 DAQmx_Val_Current = 10134 DAQmx_Val_Pulse = 10265 DAQmx_Val_Toggle = 10307 DAQmx_Val_Pulse = 10265 DAQmx_Val_Lvl = 10210 DAQmx_Val_Interlocked = 12549 DAQmx_Val_Pulse = 10265 DAQmx_Val_Hz = 10373 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Hz = 10373 DAQmx_Val_Hz = 10373 DAQmx_Val_Ticks = 10304 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Sine = 14751 DAQmx_Val_Triangle = 14752 DAQmx_Val_Square = 14753 DAQmx_Val_Sawtooth = 14754 DAQmx_Val_IRIGB = 10070 DAQmx_Val_PPS = 10080 DAQmx_Val_None = 10230 DAQmx_Val_Immediate = 10198 DAQmx_Val_WaitForHandshakeTriggerAssert = 12550 DAQmx_Val_WaitForHandshakeTriggerDeassert = 12551 DAQmx_Val_OnBrdMemMoreThanHalfFull = 10237 DAQmx_Val_OnBrdMemNotEmpty = 10241 DAQmx_Val_OnbrdMemCustomThreshold = 12577 DAQmx_Val_WhenAcqComplete = 12546 DAQmx_Val_RSE = 10083 DAQmx_Val_NRSE = 10078 DAQmx_Val_Diff = 10106 DAQmx_Val_PseudoDiff = 12529 DAQmx_Val_mVoltsPerVoltPerMillimeter = 12506 DAQmx_Val_mVoltsPerVoltPerMilliInch = 12505 DAQmx_Val_Meters = 10219 DAQmx_Val_Inches = 10379 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Meters = 10219 DAQmx_Val_Inches = 10379 DAQmx_Val_Ticks = 10304 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_High = 10192 DAQmx_Val_Low = 10214 DAQmx_Val_Off = 10231 DAQmx_Val_Log = 15844 DAQmx_Val_LogAndRead = 15842 DAQmx_Val_Open = 10437 DAQmx_Val_OpenOrCreate = 15846 DAQmx_Val_CreateOrReplace = 15847 DAQmx_Val_Create = 15848 DAQmx_Val_2point5V = 14620 DAQmx_Val_3point3V = 14621 DAQmx_Val_5V = 14619 DAQmx_Val_SameAsSampTimebase = 10284 DAQmx_Val_100MHzTimebase = 15857 DAQmx_Val_SameAsMasterTimebase = 10282 DAQmx_Val_20MHzTimebase = 12537 DAQmx_Val_80MHzTimebase = 14636 DAQmx_Val_AM = 14756 DAQmx_Val_FM = 14757 DAQmx_Val_None = 10230 DAQmx_Val_OnBrdMemEmpty = 10235 DAQmx_Val_OnBrdMemHalfFullOrLess = 10239 DAQmx_Val_OnBrdMemNotFull = 10242 DAQmx_Val_RSE = 10083 DAQmx_Val_Diff = 10106 DAQmx_Val_PseudoDiff = 12529 DAQmx_Val_StopTaskAndError = 15862 DAQmx_Val_IgnoreOverruns = 15863 DAQmx_Val_OverwriteUnreadSamps = 10252 DAQmx_Val_DoNotOverwriteUnreadSamps = 10159 DAQmx_Val_ActiveHigh = 10095 DAQmx_Val_ActiveLow = 10096 DAQmx_Val_MSeriesDAQ = 14643 DAQmx_Val_XSeriesDAQ = 15858 DAQmx_Val_ESeriesDAQ = 14642 DAQmx_Val_SSeriesDAQ = 14644 DAQmx_Val_BSeriesDAQ = 14662 DAQmx_Val_SCSeriesDAQ = 14645 DAQmx_Val_USBDAQ = 14646 DAQmx_Val_AOSeries = 14647 DAQmx_Val_DigitalIO = 14648 DAQmx_Val_TIOSeries = 14661 DAQmx_Val_DynamicSignalAcquisition = 14649 DAQmx_Val_Switches = 14650 DAQmx_Val_CompactDAQChassis = 14658 DAQmx_Val_CSeriesModule = 14659 DAQmx_Val_SCXIModule = 14660 DAQmx_Val_SCCConnectorBlock = 14704 DAQmx_Val_SCCModule = 14705 DAQmx_Val_NIELVIS = 14755 DAQmx_Val_NetworkDAQ = 14829 DAQmx_Val_Unknown = 12588 DAQmx_Val_Pt3750 = 12481 DAQmx_Val_Pt3851 = 10071 DAQmx_Val_Pt3911 = 12482 DAQmx_Val_Pt3916 = 10069 DAQmx_Val_Pt3920 = 10053 DAQmx_Val_Pt3928 = 12483 DAQmx_Val_Custom = 10137 DAQmx_Val_mVoltsPerVoltPerDegree = 12507 DAQmx_Val_mVoltsPerVoltPerRadian = 12508 DAQmx_Val_None = 10230 DAQmx_Val_LosslessPacking = 12555 DAQmx_Val_LossyLSBRemoval = 12556 DAQmx_Val_FirstSample = 10424 DAQmx_Val_CurrReadPos = 10425 DAQmx_Val_RefTrig = 10426 DAQmx_Val_FirstPretrigSamp = 10427 DAQmx_Val_MostRecentSamp = 10428 DAQmx_Val_AllowRegen = 10097 DAQmx_Val_DoNotAllowRegen = 10158 DAQmx_Val_2Wire = 2 DAQmx_Val_3Wire = 3 DAQmx_Val_4Wire = 4 DAQmx_Val_Ohms = 10384 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_FromTEDS = 12516 DAQmx_Val_Ohms = 10384 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Bits = 10109 DAQmx_Val_SCXI1124Range0to1V = 14629 DAQmx_Val_SCXI1124Range0to5V = 14630 DAQmx_Val_SCXI1124Range0to10V = 14631 DAQmx_Val_SCXI1124RangeNeg1to1V = 14632 DAQmx_Val_SCXI1124RangeNeg5to5V = 14633 DAQmx_Val_SCXI1124RangeNeg10to10V = 14634 DAQmx_Val_SCXI1124Range0to20mA = 14635 DAQmx_Val_SampClkActiveEdge = 14617 DAQmx_Val_SampClkInactiveEdge = 14618 DAQmx_Val_HandshakeTriggerAsserts = 12552 DAQmx_Val_HandshakeTriggerDeasserts = 12553 DAQmx_Val_SampClk = 10388 DAQmx_Val_BurstHandshake = 12548 DAQmx_Val_Handshake = 10389 DAQmx_Val_Implicit = 10451 DAQmx_Val_OnDemand = 10390 DAQmx_Val_ChangeDetection = 12504 DAQmx_Val_PipelinedSampClk = 14668 DAQmx_Val_Linear = 10447 DAQmx_Val_MapRanges = 10448 DAQmx_Val_Polynomial = 10449 DAQmx_Val_Table = 10450 DAQmx_Val_Polynomial = 10449 DAQmx_Val_Table = 10450 DAQmx_Val_Polynomial = 10449 DAQmx_Val_Table = 10450 DAQmx_Val_None = 10230 DAQmx_Val_A = 12513 DAQmx_Val_B = 12514 DAQmx_Val_AandB = 12515 DAQmx_Val_R1 = 12465 DAQmx_Val_R2 = 12466 DAQmx_Val_R3 = 12467 DAQmx_Val_R4 = 14813 DAQmx_Val_None = 10230 DAQmx_Val_AIConvertClock = 12484 DAQmx_Val_10MHzRefClock = 12536 DAQmx_Val_20MHzTimebaseClock = 12486 DAQmx_Val_SampleClock = 12487 DAQmx_Val_AdvanceTrigger = 12488 DAQmx_Val_ReferenceTrigger = 12490 DAQmx_Val_StartTrigger = 12491 DAQmx_Val_AdvCmpltEvent = 12492 DAQmx_Val_AIHoldCmpltEvent = 12493 DAQmx_Val_CounterOutputEvent = 12494 DAQmx_Val_ChangeDetectionEvent = 12511 DAQmx_Val_WDTExpiredEvent = 12512 DAQmx_Val_SampleCompleteEvent = 12530 DAQmx_Val_CounterOutputEvent = 12494 DAQmx_Val_ChangeDetectionEvent = 12511 DAQmx_Val_SampleClock = 12487 DAQmx_Val_RisingSlope = 10280 DAQmx_Val_FallingSlope = 10171 DAQmx_Val_Pascals = 10081 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Internal = 10200 DAQmx_Val_External = 10167 DAQmx_Val_FullBridgeI = 10183 DAQmx_Val_FullBridgeII = 10184 DAQmx_Val_FullBridgeIII = 10185 DAQmx_Val_HalfBridgeI = 10188 DAQmx_Val_HalfBridgeII = 10189 DAQmx_Val_QuarterBridgeI = 10271 DAQmx_Val_QuarterBridgeII = 10272 DAQmx_Val_Strain = 10299 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Finite = 10172 DAQmx_Val_Cont = 10117 DAQmx_Val_Source = 10439 DAQmx_Val_Load = 10440 DAQmx_Val_ReservedForRouting = 10441 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_FromTEDS = 12516 DAQmx_Val_DegC = 10143 DAQmx_Val_DegF = 10144 DAQmx_Val_Kelvins = 10325 DAQmx_Val_DegR = 10145 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_J_Type_TC = 10072 DAQmx_Val_K_Type_TC = 10073 DAQmx_Val_N_Type_TC = 10077 DAQmx_Val_R_Type_TC = 10082 DAQmx_Val_S_Type_TC = 10085 DAQmx_Val_T_Type_TC = 10086 DAQmx_Val_B_Type_TC = 10047 DAQmx_Val_E_Type_TC = 10055 DAQmx_Val_Seconds = 10364 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_Seconds = 10364 DAQmx_Val_Seconds = 10364 DAQmx_Val_Ticks = 10304 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_SingleCycle = 14613 DAQmx_Val_Multicycle = 14614 DAQmx_Val_DigEdge = 10150 DAQmx_Val_None = 10230 DAQmx_Val_DigEdge = 10150 DAQmx_Val_Software = 10292 DAQmx_Val_None = 10230 DAQmx_Val_AnlgLvl = 10101 DAQmx_Val_AnlgWin = 10103 DAQmx_Val_DigLvl = 10152 DAQmx_Val_DigPattern = 10398 DAQmx_Val_None = 10230 DAQmx_Val_AnlgEdge = 10099 DAQmx_Val_DigEdge = 10150 DAQmx_Val_DigPattern = 10398 DAQmx_Val_AnlgWin = 10103 DAQmx_Val_None = 10230 DAQmx_Val_Interlocked = 12549 DAQmx_Val_None = 10230 DAQmx_Val_HaltOutputAndError = 14615 DAQmx_Val_PauseUntilDataAvailable = 14616 DAQmx_Val_Volts = 10348 DAQmx_Val_Amps = 10342 DAQmx_Val_DegF = 10144 DAQmx_Val_DegC = 10143 DAQmx_Val_DegR = 10145 DAQmx_Val_Kelvins = 10325 DAQmx_Val_Strain = 10299 DAQmx_Val_Ohms = 10384 DAQmx_Val_Hz = 10373 DAQmx_Val_Seconds = 10364 DAQmx_Val_Meters = 10219 DAQmx_Val_Inches = 10379 DAQmx_Val_Degrees = 10146 DAQmx_Val_Radians = 10273 DAQmx_Val_g = 10186 DAQmx_Val_MetersPerSecondSquared = 12470 DAQmx_Val_Pascals = 10081 DAQmx_Val_FromTEDS = 12516 DAQmx_Val_Volts = 10348 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_FromTEDS = 12516 DAQmx_Val_Volts = 10348 DAQmx_Val_FromCustomScale = 10065 DAQmx_Val_WaitForInterrupt = 12523 DAQmx_Val_Poll = 12524 DAQmx_Val_Yield = 12525 DAQmx_Val_Sleep = 12547 DAQmx_Val_Poll = 12524 DAQmx_Val_Yield = 12525 DAQmx_Val_Sleep = 12547 DAQmx_Val_WaitForInterrupt = 12523 DAQmx_Val_Poll = 12524 DAQmx_Val_WaitForInterrupt = 12523 DAQmx_Val_Poll = 12524 DAQmx_Val_EnteringWin = 10163 DAQmx_Val_LeavingWin = 10208 DAQmx_Val_InsideWin = 10199 DAQmx_Val_OutsideWin = 10251 DAQmx_Val_WriteToEEPROM = 12538 DAQmx_Val_WriteToPROM = 12539 DAQmx_Val_DoNotWrite = 12540 DAQmx_Val_FirstSample = 10424 DAQmx_Val_CurrWritePos = 10430 DAQmx_Val_Switch_Topology_1127_Independent = "1127/Independent" DAQmx_Val_Switch_Topology_1128_Independent = "1128/Independent" DAQmx_Val_Switch_Topology_1130_Independent = "1130/Independent" DAQmx_Val_Switch_Topology_1160_16_SPDT = "1160/16-SPDT" DAQmx_Val_Switch_Topology_1161_8_SPDT = "1161/8-SPDT" DAQmx_Val_Switch_Topology_1166_32_SPDT = "1166/32-SPDT" DAQmx_Val_Switch_Topology_1166_16_DPDT = "1166/16-DPDT" DAQmx_Val_Switch_Topology_1167_Independent = "1167/Independent" DAQmx_Val_Switch_Topology_1169_100_SPST = "1169/100-SPST" DAQmx_Val_Switch_Topology_1169_50_DPST = "1169/50-DPST" DAQmx_Val_Switch_Topology_1192_8_SPDT = "1192/8-SPDT" DAQmx_Val_Switch_Topology_1193_Independent = "1193/Independent" DAQmx_Val_Switch_Topology_2510_Independent = "2510/Independent" DAQmx_Val_Switch_Topology_2512_Independent = "2512/Independent" DAQmx_Val_Switch_Topology_2514_Independent = "2514/Independent" DAQmx_Val_Switch_Topology_2515_Independent = "2515/Independent" DAQmx_Val_Switch_Topology_2527_Independent = "2527/Independent" DAQmx_Val_Switch_Topology_2530_Independent = "2530/Independent" DAQmx_Val_Switch_Topology_2548_4_SPDT = "2548/4-SPDT" DAQmx_Val_Switch_Topology_2558_4_SPDT = "2558/4-SPDT" DAQmx_Val_Switch_Topology_2564_16_SPST = "2564/16-SPST" DAQmx_Val_Switch_Topology_2564_8_DPST = "2564/8-DPST" DAQmx_Val_Switch_Topology_2565_16_SPST = "2565/16-SPST" DAQmx_Val_Switch_Topology_2566_16_SPDT = "2566/16-SPDT" DAQmx_Val_Switch_Topology_2566_8_DPDT = "2566/8-DPDT" DAQmx_Val_Switch_Topology_2567_Independent = "2567/Independent" DAQmx_Val_Switch_Topology_2568_31_SPST = "2568/31-SPST" DAQmx_Val_Switch_Topology_2568_15_DPST = "2568/15-DPST" DAQmx_Val_Switch_Topology_2569_100_SPST = "2569/100-SPST" DAQmx_Val_Switch_Topology_2569_50_DPST = "2569/50-DPST" DAQmx_Val_Switch_Topology_2570_40_SPDT = "2570/40-SPDT" DAQmx_Val_Switch_Topology_2570_20_DPDT = "2570/20-DPDT" DAQmx_Val_Switch_Topology_2576_Independent = "2576/Independent" DAQmx_Val_Switch_Topology_2584_Independent = "2584/Independent" DAQmx_Val_Switch_Topology_2586_10_SPST = "2586/10-SPST" DAQmx_Val_Switch_Topology_2586_5_DPST = "2586/5-DPST" DAQmx_Val_Switch_Topology_2593_Independent = "2593/Independent" DAQmx_Val_Switch_Topology_2599_2_SPDT = "2599/2-SPDT" DAQmxSuccess = (0) error_map = {50000: 'ngPALValueConflict', 50001: 'ngPALIrrelevantAttribute', 50002: 'ngPALBadDevice', 50003: 'ngPALBadSelector', 50004: 'ngPALBadPointer', 50005: 'ngPALBadDataSize', 50006: 'ngPALBadMode', 50007: 'ngPALBadOffset', 50008: 'ngPALBadCount', 50009: 'ngPALBadReadMode', 50010: 'ngPALBadReadOffset', 50011: 'ngPALBadReadCount', 50012: 'ngPALBadWriteMode', 50013: 'ngPALBadWriteOffset', 50014: 'ngPALBadWriteCount', 50015: 'ngPALBadAddressClass', 50016: 'ngPALBadWindowType', 50019: 'ngPALBadThreadMultitask', -89167: 'RoutingDestTermPXIDStarXNotInSystemTimingSlot_Routing', -89166: 'RoutingSrcTermPXIDStarXNotInSystemTimingSlot_Routing', -89165: 'RoutingSrcTermPXIDStarInNonDStarTriggerSlot_Routing', -89164: 'RoutingDestTermPXIDStarInNonDStarTriggerSlot_Routing', 50101: 'ngPALResourceNotAvailable', -89162: 'RoutingDestTermPXIClk10InNotInStarTriggerSlot_Routing', -89161: 'RoutingDestTermPXIClk10InNotInSystemTimingSlot_Routing', -89160: 'RoutingDestTermPXIStarXNotInStarTriggerSlot_Routing', -89159: 'RoutingDestTermPXIStarXNotInSystemTimingSlot_Routing', -89158: 'RoutingSrcTermPXIStarXNotInStarTriggerSlot_Routing', -89157: 'RoutingSrcTermPXIStarXNotInSystemTimingSlot_Routing', -89156: 'RoutingSrcTermPXIStarInNonStarTriggerSlot_Routing', -89155: 'RoutingDestTermPXIStarInNonStarTriggerSlot_Routing', -89154: 'RoutingDestTermPXIStarInStarTriggerSlot_Routing', -89153: 'RoutingDestTermPXIStarInSystemTimingSlot_Routing', -89152: 'RoutingSrcTermPXIStarInStarTriggerSlot_Routing', -89151: 'RoutingSrcTermPXIStarInSystemTimingSlot_Routing', -89150: 'InvalidSignalModifier_Routing', -89149: 'RoutingDestTermPXIClk10InNotInSlot2_Routing', -89148: 'RoutingDestTermPXIStarXNotInSlot2_Routing', -89147: 'RoutingSrcTermPXIStarXNotInSlot2_Routing', -89146: 'RoutingSrcTermPXIStarInSlot16AndAbove_Routing', -89145: 'RoutingDestTermPXIStarInSlot16AndAbove_Routing', -89144: 'RoutingDestTermPXIStarInSlot2_Routing', -89143: 'RoutingSrcTermPXIStarInSlot2_Routing', -89142: 'RoutingDestTermPXIChassisNotIdentified_Routing', -89141: 'RoutingSrcTermPXIChassisNotIdentified_Routing', -89140: 'TrigLineNotFoundSingleDevRoute_Routing', -89139: 'NoCommonTrigLineForRoute_Routing', -89138: 'ResourcesInUseForRouteInTask_Routing', -89137: 'ResourcesInUseForRoute_Routing', -89136: 'RouteNotSupportedByHW_Routing', -89135: 'ResourcesInUseForInversionInTask_Routing', -89134: 'ResourcesInUseForInversion_Routing', -89133: 'InversionNotSupportedByHW_Routing', -89132: 'ResourcesInUseForProperty_Routing', -89131: 'RouteSrcAndDestSame_Routing', -89130: 'DevAbsentOrUnavailable_Routing', -89129: 'InvalidTerm_Routing', -89128: 'CannotTristateTerm_Routing', -89127: 'CannotTristateBusyTerm_Routing', -89126: 'CouldNotReserveRequestedTrigLine_Routing', -89125: 'TrigLineNotFound_Routing', -89124: 'RoutingPathNotAvailable_Routing', -89123: 'RoutingHardwareBusy_Routing', -89122: 'RequestedSignalInversionForRoutingNotPossible_Routing', -89121: 'InvalidRoutingDestinationTerminalName_Routing', -89120: 'InvalidRoutingSourceTerminalName_Routing', 50151: 'ngPALFirmwareFault', 50152: 'ngPALHardwareFault', 50200: 'ngPALOSUnsupported', 50202: 'ngPALOSFault', 50254: 'ngPALFunctionObsolete', 50255: 'ngPALFunctionNotFound', 50256: 'ngPALFeatureNotSupported', 50258: 'ngPALComponentInitializationFault', 50260: 'ngPALComponentAlreadyLoaded', 50262: 'ngPALComponentNotUnloadable', 50351: 'ngPALMemoryAlignmentFault', 50355: 'ngPALMemoryHeapNotEmpty', -88907: 'ServiceLocatorNotAvailable_Routing', -88900: 'CouldNotConnectToServer_Routing', 50402: 'ngPALTransferNotInProgress', 50403: 'ngPALTransferInProgress', 50404: 'ngPALTransferStopped', 50405: 'ngPALTransferAborted', 50406: 'ngPALLogicalBufferEmpty', 50407: 'ngPALLogicalBufferFull', 50408: 'ngPALPhysicalBufferEmpty', 50409: 'ngPALPhysicalBufferFull', 50410: 'ngPALTransferOverwritten', 50411: 'ngPALTransferOverread', 50500: 'ngPALDispatcherAlreadyExported', -88720: 'DeviceNameContainsSpacesOrPunctuation_Routing', -88719: 'DeviceNameContainsNonprintableCharacters_Routing', -88718: 'DeviceNameIsEmpty_Routing', -88717: 'DeviceNameNotFound_Routing', -88716: 'LocalRemoteDriverVersionMismatch_Routing', -88715: 'DuplicateDeviceName_Routing', 50551: 'ngPALSyncAbandoned', -88710: 'RuntimeAborting_Routing', -88709: 'RuntimeAborted_Routing', -88708: 'ResourceNotInPool_Routing', -88705: 'DriverDeviceGUIDNotFound_Routing', -209805: 'COCannotKeepUpInHWTimedSinglePoint', -209803: 'WaitForNextSampClkDetected3OrMoreSampClks', -209802: 'WaitForNextSampClkDetectedMissedSampClk', -209801: 'WriteNotCompleteBeforeSampClk', -209800: 'ReadNotCompleteBeforeSampClk', 200003: 'ngTimestampCounterRolledOver', 200004: 'ngInputTerminationOverloaded', 200005: 'ngADCOverloaded', 200007: 'ngPLLUnlocked', 200008: 'ngCounter0DMADuringAIConflict', 200009: 'ngCounter1DMADuringAOConflict', 200010: 'ngStoppedBeforeDone', 200011: 'ngRateViolatesSettlingTime', 200012: 'ngRateViolatesMaxADCRate', 200013: 'ngUserDefInfoStringTooLong', 200014: 'ngTooManyInterruptsPerSecond', 200015: 'ngPotentialGlitchDuringWrite', 200016: 'ngDevNotSelfCalibratedWithDAQmx', 200017: 'ngAISampRateTooLow', 200018: 'ngAIConvRateTooLow', 200019: 'ngReadOffsetCoercion', 200020: 'ngPretrigCoercion', 200021: 'ngSampValCoercedToMax', 200022: 'ngSampValCoercedToMin', 200024: 'ngPropertyVersionNew', 200025: 'ngUserDefinedInfoTooLong', 200026: 'ngCAPIStringTruncatedToFitBuffer', 200027: 'ngSampClkRateTooLow', 200028: 'ngPossiblyInvalidCTRSampsInFiniteDMAAcq', 200029: 'ngRISAcqCompletedSomeBinsNotFilled', 200030: 'ngPXIDevTempExceedsMaxOpTemp', 200031: 'ngOutputGainTooLowForRFFreq', 200032: 'ngOutputGainTooHighForRFFreq', 200033: 'ngMultipleWritesBetweenSampClks', 200034: 'ngDeviceMayShutDownDueToHighTemp', 200035: 'ngRateViolatesMinADCRate', 200036: 'ngSampClkRateAboveDevSpecs', 200037: 'ngCOPrevDAQmxWriteSettingsOverwrittenForHWTimedSinglePoint', 200038: 'ngLowpassFilterSettlingTimeExceedsUserTimeBetween2ADCConversions', 200039: 'ngLowpassFilterSettlingTimeExceedsDriverTimeBetween2ADCConversions', 200040: 'ngSampClkRateViolatesSettlingTimeForGen', 200041: 'ngInvalidCalConstValueForAI', 200042: 'ngInvalidCalConstValueForAO', 200043: 'ngChanCalExpired', 200044: 'ngUnrecognizedEnumValueEncounteredInStorage', 200045: 'ngTableCRCNotCorrect', 200046: 'ngExternalCRCNotCorrect', 200047: 'ngSelfCalCRCNotCorrect', 200048: 'ngDeviceSpecExceeded', 200049: 'ngOnlyGainCalibrated', 200050: 'ngReversePowerProtectionActivated', 200051: 'ngOverVoltageProtectionActivated', 200052: 'ngBufferSizeNotMultipleOfSectorSize', 200053: 'ngSampleRateMayCauseAcqToFail', 200054: 'ngUserAreaCRCNotCorrect', 200055: 'ngPowerUpInfoCRCNotCorrect', -201331: 'MemoryMappedHardwareTimedNonBufferedUnsupported', -201330: 'CannotUpdatePulseTrainWithAutoIncrementEnabled', -201329: 'HWTimedSinglePointAndDataXferNotDMA', -201328: 'SCCSecondStageEmpty', -201327: 'SCCInvalidDualStageCombo', -201326: 'SCCInvalidSecondStage', -201325: 'SCCInvalidFirstStage', -201324: 'CounterMultipleSampleClockedChannels', -201323: '2CounterMeasurementModeAndSampleClocked', -201322: 'CantHaveBothMemMappedAndNonMemMappedTasks', -201321: 'MemMappedDataReadByAnotherProcess', -201320: 'RetriggeringInvalidForGivenSettings', -201319: 'AIOverrun', -201318: 'COOverrun', -201317: 'CounterMultipleBufferedChannels', -201316: 'InvalidTimebaseForCOHWTSP', -201315: 'WriteBeforeEvent', -201314: 'CIOverrun', -201313: 'CounterNonResponsiveAndReset', -201312: 'MeasTypeOrChannelNotSupportedForLogging', -201311: 'FileAlreadyOpenedForWrite', -201310: 'TdmsNotFound', -201309: 'GenericFileIO', -201308: 'FiniteSTCCounterNotSupportedForLogging', -201307: 'MeasurementTypeNotSupportedForLogging', -201306: 'FileAlreadyOpened', -201305: 'DiskFull', -201304: 'FilePathInvalid', -201303: 'FileVersionMismatch', -201302: 'FileWriteProtected', -201301: 'ReadNotSupportedForLoggingMode', -201300: 'AttributeNotSupportedWhenLogging', -201299: 'LoggingModeNotSupportedNonBuffered', -201298: 'PropertyNotSupportedWithConflictingProperty', -201297: 'ParallelSSHOnConnector1', -201296: 'COOnlyImplicitSampleTimingTypeSupported', -201295: 'CalibrationFailedAOOutOfRange', -201294: 'CalibrationFailedAIOutOfRange', -201293: 'CalPWMLinearityFailed', -201292: 'OverrunUnderflowConfigurationCombo', -201291: 'CannotWriteToFiniteCOTask', -201290: 'NetworkDAQInvalidWEPKeyLength', -201289: 'CalInputsShortedNotSupported', -201288: 'CannotSetPropertyWhenTaskIsReserved', -201287: 'Minus12VFuseBlown', -201286: 'Plus12VFuseBlown', -201285: 'Plus5VFuseBlown', -201284: 'Plus3VFuseBlown', -201283: 'DeviceSerialPortError', -201282: 'PowerUpStateMachineNotDone', -201281: 'TooManyTriggersSpecifiedInTask', -201280: 'VerticalOffsetNotSupportedOnDevice', -201279: 'InvalidCouplingForMeasurementType', -201278: 'DigitalLineUpdateTooFastForDevice', -201277: 'CertificateIsTooBigToTransfer', -201276: 'OnlyPEMOrDERCertiticatesAccepted', -201275: 'CalCouplingNotSupported', -201274: 'DeviceNotSupportedIn64Bit', -201273: 'NetworkDeviceInUse', -201272: 'InvalidIPv4AddressFormat', -201271: 'NetworkProductTypeMismatch', -201270: 'OnlyPEMCertificatesAccepted', -201269: 'CalibrationRequiresPrototypingBoardEnabled', -201268: 'AllCurrentLimitingResourcesAlreadyTaken', -201267: 'UserDefInfoStringBadLength', -201266: 'PropertyNotFound', -201265: 'OverVoltageProtectionActivated', -201264: 'ScaledIQWaveformTooLarge', -201263: 'FirmwareFailedToDownload', -201262: 'PropertyNotSupportedForBusType', -201261: 'ChangeRateWhileRunningCouldNotBeCompleted', -201260: 'CannotQueryManualControlAttribute', -201259: 'InvalidNetworkConfiguration', -201258: 'InvalidWirelessConfiguration', -201257: 'InvalidWirelessCountryCode', -201256: 'InvalidWirelessChannel', -201255: 'NetworkEEPROMHasChanged', -201254: 'NetworkSerialNumberMismatch', -201253: 'NetworkStatusDown', -201252: 'NetworkTargetUnreachable', -201251: 'NetworkTargetNotFound', -201250: 'NetworkStatusTimedOut', -201249: 'InvalidWirelessSecuritySelection', -201248: 'NetworkDeviceConfigurationLocked', -201247: 'NetworkDAQDeviceNotSupported', -201246: 'NetworkDAQCannotCreateEmptySleeve', -201244: 'ModuleTypeDoesNotMatchModuleTypeInDestination', -201243: 'InvalidTEDSInterfaceAddress', -201242: 'DevDoesNotSupportSCXIComm', -201241: 'SCXICommDevConnector0MustBeCabledToModule', -201240: 'SCXIModuleDoesNotSupportDigitizationMode', -201239: 'DevDoesNotSupportMultiplexedSCXIDigitizationMode', -201238: 'DevOrDevPhysChanDoesNotSupportSCXIDigitization', -201237: 'InvalidPhysChanName', -201236: 'SCXIChassisCommModeInvalid', -201235: 'RequiredDependencyNotFound', -201234: 'InvalidStorage', -201233: 'InvalidObject', -201232: 'StorageAlteredPriorToSave', -201231: 'TaskDoesNotReferenceLocalChannel', -201230: 'ReferencedDevSimMustMatchTarget', -201229: 'ProgrammedIOFailsBecauseOfWatchdogTimer', -201228: 'WatchdogTimerFailsBecauseOfProgrammedIO', -201227: 'CantUseThisTimingEngineWithAPort', -201226: 'ProgrammedIOConflict', -201225: 'ChangeDetectionIncompatibleWithProgrammedIO', -201224: 'TristateNotEnoughLines', -201223: 'TristateConflict', -201222: 'GenerateOrFiniteWaitExpectedBeforeBreakBlock', -201221: 'BreakBlockNotAllowedInLoop', -201220: 'ClearTriggerNotAllowedInBreakBlock', -201219: 'NestingNotAllowedInBreakBlock', -201218: 'IfElseBlockNotAllowedInBreakBlock', -201217: 'RepeatUntilTriggerLoopNotAllowedInBreakBlock', -201216: 'WaitUntilTriggerNotAllowedInBreakBlock', -201215: 'MarkerPosInvalidInBreakBlock', -201214: 'InvalidWaitDurationInBreakBlock', -201213: 'InvalidSubsetLengthInBreakBlock', -201212: 'InvalidWaveformLengthInBreakBlock', -201211: 'InvalidWaitDurationBeforeBreakBlock', -201210: 'InvalidSubsetLengthBeforeBreakBlock', -201209: 'InvalidWaveformLengthBeforeBreakBlock', -201208: 'SampleRateTooHighForADCTimingMode', -201207: 'ActiveDevNotSupportedWithMultiDevTask', -201206: 'RealDevAndSimDevNotSupportedInSameTask', -201205: 'RTSISimMustMatchDevSim', -201204: 'BridgeShuntCaNotSupported', -201203: 'StrainShuntCaNotSupported', -201202: 'GainTooLargeForGainCalConst', -201201: 'OffsetTooLargeForOffsetCalConst', -201200: 'ElvisPrototypingBoardRemoved', -201199: 'Elvis2PowerRailFault', -201198: 'Elvis2PhysicalChansFault', -201197: 'Elvis2PhysicalChansThermalEvent', -201196: 'RXBitErrorRateLimitExceeded', -201195: 'PHYBitErrorRateLimitExceeded', -201194: 'TwoPartAttributeCalledOutOfOrder', -201193: 'InvalidSCXIChassisAddress', -201192: 'CouldNotConnectToRemoteMXS', -201191: 'ExcitationStateRequiredForAttributes', -201190: 'DeviceNotUsableUntilUSBReplug', -201189: 'InputFIFOOverflowDuringCalibrationOnFullSpeedUSB', -201188: 'InputFIFOOverflowDuringCalibration', -201187: 'CJCChanConflictsWithNonThermocoupleChan', -201186: 'CommDeviceForPXIBackplaneNotInRightmostSlot', -201185: 'CommDeviceForPXIBackplaneNotInSameChassis', -201184: 'CommDeviceForPXIBackplaneNotPXI', -201183: 'InvalidCalExcitFrequency', -201182: 'InvalidCalExcitVoltage', -201181: 'InvalidAIInputSrc', -201180: 'InvalidCalInputRef', -201179: 'dBReferenceValueNotGreaterThanZero', -201178: 'SampleClockRateIsTooFastForSampleClockTiming', -201177: 'DeviceNotUsableUntilColdStart', -201176: 'SampleClockRateIsTooFastForBurstTiming', -201175: 'DevImportFailedAssociatedResourceIDsNotSupported', -201174: 'SCXI1600ImportNotSupported', -201173: 'PowerSupplyConfigurationFailed', -201172: 'IEPEWithDCNotAllowed', -201171: 'MinTempForThermocoupleTypeOutsideAccuracyForPolyScaling', -201170: 'DevImportFailedNoDeviceToOverwriteAndSimulationNotSupported', -201169: 'DevImportFailedDeviceNotSupportedOnDestination', -201168: 'FirmwareIsTooOld', -201167: 'FirmwareCouldntUpdate', -201166: 'FirmwareIsCorrupt', -201165: 'FirmwareTooNew', -201164: 'SampClockCannotBeExportedFromExternalSampClockSrc', -201163: 'PhysChanReservedForInputWhenDesiredForOutput', -201162: 'PhysChanReservedForOutputWhenDesiredForInput', -201161: 'SpecifiedCDAQSlotNotEmpty', -201160: 'DeviceDoesNotSupportSimulation', -201159: 'InvalidCDAQSlotNumberSpecd', -201158: 'CSeriesModSimMustMatchCDAQChassisSim', -201157: 'SCCCabledDevMustNotBeSimWhenSCCCarrierIsNotSim', -201156: 'SCCModSimMustMatchSCCCarrierSim', -201155: 'SCXIModuleDoesNotSupportSimulation', -201154: 'SCXICableDevMustNotBeSimWhenModIsNotSim', -201153: 'SCXIDigitizerSimMustNotBeSimWhenModIsNotSim', -201152: 'SCXIModSimMustMatchSCXIChassisSim', -201151: 'SimPXIDevReqSlotAndChassisSpecd', -201150: 'SimDevConflictWithRealDev', -201149: 'InsufficientDataForCalibration', -201148: 'TriggerChannelMustBeEnabled', -201147: 'CalibrationDataConflictCouldNotBeResolved', -201146: 'SoftwareTooNewForSelfCalibrationData', -201145: 'SoftwareTooNewForExtCalibrationData', -201144: 'SelfCalibrationDataTooNewForSoftware', -201143: 'ExtCalibrationDataTooNewForSoftware', -201142: 'SoftwareTooNewForEEPROM', -201141: 'EEPROMTooNewForSoftware', -201140: 'SoftwareTooNewForHardware', -201139: 'HardwareTooNewForSoftware', -201138: 'TaskCannotRestartFirstSampNotAvailToGenerate', -201137: 'OnlyUseStartTrigSrcPrptyWithDevDataLines', -201136: 'OnlyUsePauseTrigSrcPrptyWithDevDataLines', -201135: 'OnlyUseRefTrigSrcPrptyWithDevDataLines', -201134: 'PauseTrigDigPatternSizeDoesNotMatchSrcSize', -201133: 'LineConflictCDAQ', -201132: 'CannotWriteBeyondFinalFiniteSample', -201131: 'RefAndStartTriggerSrcCantBeSame', -201130: 'MemMappingIncompatibleWithPhysChansInTask', -201129: 'OutputDriveTypeMemMappingConflict', -201128: 'CAPIDeviceIndexInvalid', -201127: 'RatiometricDevicesMustUseExcitationForScaling', -201126: 'PropertyRequiresPerDeviceCfg', -201125: 'AICouplingAndAIInputSourceConflict', -201124: 'OnlyOneTaskCanPerformDOMemoryMappingAtATime', -201123: 'TooManyChansForAnalogRefTrigCDAQ', -201122: 'SpecdPropertyValueIsIncompatibleWithSampleTimingType', -201121: 'CPUNotSupportedRequireSSE', -201120: 'SpecdPropertyValueIsIncompatibleWithSampleTimingResponseMode', -201119: 'ConflictingNextWriteIsLastAndRegenModeProperties', -201118: 'MStudioOperationDoesNotSupportDeviceContext', -201117: 'PropertyValueInChannelExpansionContextInvalid', -201116: 'HWTimedNonBufferedAONotSupported', -201115: 'WaveformLengthNotMultOfQuantum', -201114: 'DSAExpansionMixedBoardsWrongOrderInPXIChassis', -201113: 'PowerLevelTooLowForOOK', -201112: 'DeviceComponentTestFailure', -201111: 'UserDefinedWfmWithOOKUnsupported', -201110: 'InvalidDigitalModulationUserDefinedWaveform', -201109: 'BothRefInAndRefOutEnabled', -201108: 'BothAnalogAndDigitalModulationEnabled', -201107: 'BufferedOpsNotSupportedInSpecdSlotForCDAQ', -201106: 'PhysChanNotSupportedInSpecdSlotForCDAQ', -201105: 'ResourceReservedWithConflictingSettings', -201104: 'InconsistentAnalogTrigSettingsCDAQ', -201103: 'TooManyChansForAnalogPauseTrigCDAQ', -201102: 'AnalogTrigNotFirstInScanListCDAQ', -201101: 'TooManyChansGivenTimingType', -201100: 'SampClkTimebaseDivWithExtSampClk', -201099: 'CantSaveTaskWithPerDeviceTimingProperties', -201098: 'ConflictingAutoZeroMode', -201097: 'SampClkRateNotSupportedWithEAREnabled', -201096: 'SampClkTimebaseRateNotSpecd', -201095: 'SessionCorruptedByDLLReload', -201094: 'ActiveDevNotSupportedWithChanExpansion', -201093: 'SampClkRateInvalid', -201092: 'ExtSyncPulseSrcCannotBeExported', -201091: 'SyncPulseMinDelayToStartNeededForExtSyncPulseSrc', -201090: 'SyncPulseSrcInvalid', -201089: 'SampClkTimebaseRateInvalid', -201088: 'SampClkTimebaseSrcInvalid', -201087: 'SampClkRateMustBeSpecd', -201086: 'InvalidAttributeName', -201085: 'CJCChanNameMustBeSetWhenCJCSrcIsScannableChan', -201084: 'HiddenChanMissingInChansPropertyInCfgFile', -201083: 'ChanNamesNotSpecdInCfgFile', -201082: 'DuplicateHiddenChanNamesInCfgFile', -201081: 'DuplicateChanNameInCfgFile', -201080: 'InvalidSCCModuleForSlotSpecd', -201079: 'InvalidSCCSlotNumberSpecd', -201078: 'InvalidSectionIdentifier', -201077: 'InvalidSectionName', -201076: 'DAQmxVersionNotSupported', -201075: 'SWObjectsFoundInFile', -201074: 'HWObjectsFoundInFile', -201073: 'LocalChannelSpecdWithNoParentTask', -201072: 'TaskReferencesMissingLocalChannel', -201071: 'TaskReferencesLocalChannelFromOtherTask', -201070: 'TaskMissingChannelProperty', -201069: 'InvalidLocalChanName', -201068: 'InvalidEscapeCharacterInString', -201067: 'InvalidTableIdentifier', -201066: 'ValueFoundInInvalidColumn', -201065: 'MissingStartOfTable', -201064: 'FileMissingRequiredDAQmxHeader', -201063: 'DeviceIDDoesNotMatch', -201062: 'BufferedOperationsNotSupportedOnSelectedLines', -201061: 'PropertyConflictsWithScale', -201060: 'InvalidINIFileSyntax', -201059: 'DeviceInfoFailedPXIChassisNotIdentified', -201058: 'InvalidHWProductNumber', -201057: 'InvalidHWProductType', -201056: 'InvalidNumericFormatSpecd', -201055: 'DuplicatePropertyInObject', -201054: 'InvalidEnumValueSpecd', -201053: 'TEDSSensorPhysicalChannelConflict', -201052: 'TooManyPhysicalChansForTEDSInterfaceSpecd', -201051: 'IncapableTEDSInterfaceControllingDeviceSpecd', -201050: 'SCCCarrierSpecdIsMissing', -201049: 'IncapableSCCDigitizingDeviceSpecd', -201048: 'AccessorySettingNotApplicable', -201047: 'DeviceAndConnectorSpecdAlreadyOccupied', -201046: 'IllegalAccessoryTypeForDeviceSpecd', -201045: 'InvalidDeviceConnectorNumberSpecd', -201044: 'InvalidAccessoryName', -201043: 'MoreThanOneMatchForSpecdDevice', -201042: 'NoMatchForSpecdDevice', -201041: 'ProductTypeAndProductNumberConflict', -201040: 'ExtraPropertyDetectedInSpecdObject', -201039: 'RequiredPropertyMissing', -201038: 'CantSetAuthorForLocalChan', -201037: 'InvalidTimeValue', -201036: 'InvalidTimeFormat', -201035: 'DigDevChansSpecdInModeOtherThanParallel', -201034: 'CascadeDigitizationModeNotSupported', -201033: 'SpecdSlotAlreadyOccupied', -201032: 'InvalidSCXISlotNumberSpecd', -201031: 'AddressAlreadyInUse', -201030: 'SpecdDeviceDoesNotSupportRTSI', -201029: 'SpecdDeviceIsAlreadyOnRTSIBus', -201028: 'IdentifierInUse', -201027: 'WaitForNextSampleClockOrReadDetected3OrMoreMissedSampClks', -201026: 'HWTimedAndDataXferPIO', -201025: 'NonBufferedAndHWTimed', -201024: 'CTROutSampClkPeriodShorterThanGenPulseTrainPeriodPolled', -201023: 'CTROutSampClkPeriodShorterThanGenPulseTrainPeriod2', -201022: 'COCannotKeepUpInHWTimedSinglePointPolled', -201021: 'WriteRecoveryCannotKeepUpInHWTimedSinglePoint', -201020: 'NoChangeDetectionOnSelectedLineForDevice', -201019: 'SMIOPauseTriggersNotSupportedWithChannelExpansion', -201018: 'ClockMasterForExternalClockNotLongestPipeline', -201017: 'UnsupportedUnicodeByteOrderMarker', -201016: 'TooManyInstructionsInLoopInScript', -201015: 'PLLNotLocked', -201014: 'IfElseBlockNotAllowedInFiniteRepeatLoopInScript', -201013: 'IfElseBlockNotAllowedInConditionalRepeatLoopInScript', -201012: 'ClearIsLastInstructionInIfElseBlockInScript', -201011: 'InvalidWaitDurationBeforeIfElseBlockInScript', -201010: 'MarkerPosInvalidBeforeIfElseBlockInScript', -201009: 'InvalidSubsetLengthBeforeIfElseBlockInScript', -201008: 'InvalidWaveformLengthBeforeIfElseBlockInScript', -201007: 'GenerateOrFiniteWaitInstructionExpectedBeforeIfElseBlockInScript', -201006: 'CalPasswordNotSupported', -201005: 'SetupCalNeededBeforeAdjustCal', -201004: 'MultipleChansNotSupportedDuringCalSetup', -201003: 'DevCannotBeAccessed', -201002: 'SampClkRateDoesntMatchSampClkSrc', -201001: 'SampClkRateNotSupportedWithEARDisabled', -201000: 'LabVIEWVersionDoesntSupportDAQmxEvents', -200999: 'COReadyForNewValNotSupportedWithOnDemand', -200998: 'CIHWTimedSinglePointNotSupportedForMeasType', -200997: 'OnDemandNotSupportedWithHWTimedSinglePoint', -200996: 'HWTimedSinglePointAndDataXferNotProgIO', -200995: 'MemMapAndHWTimedSinglePoint', -200994: 'CannotSetPropertyWhenHWTimedSinglePointTaskIsRunning', -200993: 'CTROutSampClkPeriodShorterThanGenPulseTrainPeriod', -200992: 'TooManyEventsGenerated', -200991: 'MStudioCppRemoveEventsBeforeStop', -200990: 'CAPICannotRegisterSyncEventsFromMultipleThreads', -200989: 'ReadWaitNextSampClkWaitMismatchTwo', -200988: 'ReadWaitNextSampClkWaitMismatchOne', -200987: 'DAQmxSignalEventTypeNotSupportedByChanTypesOrDevicesInTask', -200986: 'CannotUnregisterDAQmxSoftwareEventWhileTaskIsRunning', -200985: 'AutoStartWriteNotAllowedEventRegistered', -200984: 'AutoStartReadNotAllowedEventRegistered', -200983: 'CannotGetPropertyWhenTaskNotReservedCommittedOrRunning', -200982: 'SignalEventsNotSupportedByDevice', -200981: 'EveryNSamplesAcqIntoBufferEventNotSupportedByDevice', -200980: 'EveryNSampsTransferredFromBufferEventNotSupportedByDevice', -200979: 'CAPISyncEventsTaskStateChangeNotAllowedFromDifferentThread', -200978: 'DAQmxSWEventsWithDifferentCallMechanisms', -200977: 'CantSaveChanWithPolyCalScaleAndAllowInteractiveEdit', -200976: 'ChanDoesNotSupportCJC', -200975: 'COReadyForNewValNotSupportedWithHWTimedSinglePoint', -200974: 'DACAllowConnToGndNotSupportedByDevWhenRefSrcExt', -200973: 'CantGetPropertyTaskNotRunning', -200972: 'CantSetPropertyTaskNotRunning', -200971: 'CantSetPropertyTaskNotRunningCommitted', -200970: 'AIEveryNSampsEventIntervalNotMultipleOf2', -200969: 'InvalidTEDSPhysChanNotAI', -200968: 'CAPICannotPerformTaskOperationInAsyncCallback', -200967: 'EveryNSampsTransferredFromBufferEventAlreadyRegistered', -200966: 'EveryNSampsAcqIntoBufferEventAlreadyRegistered', -200965: 'EveryNSampsTransferredFromBufferNotForInput', -200964: 'EveryNSampsAcqIntoBufferNotForOutput', -200963: 'AOSampTimingTypeDifferentIn2Tasks', -200962: 'CouldNotDownloadFirmwareHWDamaged', -200961: 'CouldNotDownloadFirmwareFileMissingOrDamaged', -200960: 'CannotRegisterDAQmxSoftwareEventWhileTaskIsRunning', -200959: 'DifferentRawDataCompression', -200958: 'ConfiguredTEDSInterfaceDevNotDetected', -200957: 'CompressedSampSizeExceedsResolution', -200956: 'ChanDoesNotSupportCompression', -200955: 'DifferentRawDataFormats', -200954: 'SampClkOutputTermIncludesStartTrigSrc', -200953: 'StartTrigSrcEqualToSampClkSrc', -200952: 'EventOutputTermIncludesTrigSrc', -200951: 'COMultipleWritesBetweenSampClks', -200950: 'DoneEventAlreadyRegistered', -200949: 'SignalEventAlreadyRegistered', -200948: 'CannotHaveTimedLoopAndDAQmxSignalEventsInSameTask', -200947: 'NeedLabVIEW711PatchToUseDAQmxEvents', -200946: 'StartFailedDueToWriteFailure', -200945: 'DataXferCustomThresholdNotDMAXferMethodSpecifiedForDev', -200944: 'DataXferRequestConditionNotSpecifiedForCustomThreshold', -200943: 'DataXferCustomThresholdNotSpecified', -200942: 'CAPISyncCallbackNotSupportedOnThisPlatform', -200941: 'CalChanReversePolyCoefNotSpecd', -200940: 'CalChanForwardPolyCoefNotSpecd', -200939: 'ChanCalRepeatedNumberInPreScaledVals', -200938: 'ChanCalTableNumScaledNotEqualNumPrescaledVals', -200937: 'ChanCalTableScaledValsNotSpecd', -200936: 'ChanCalTablePreScaledValsNotSpecd', -200935: 'ChanCalScaleTypeNotSet', -200934: 'ChanCalExpired', -200933: 'ChanCalExpirationDateNotSet', -200932: '3OutputPortCombinationGivenSampTimingType653x', -200931: '3InputPortCombinationGivenSampTimingType653x', -200930: '2OutputPortCombinationGivenSampTimingType653x', -200929: '2InputPortCombinationGivenSampTimingType653x', -200928: 'PatternMatcherMayBeUsedByOneTrigOnly', -200927: 'NoChansSpecdForPatternSource', -200926: 'ChangeDetectionChanNotInTask', -200925: 'ChangeDetectionChanNotTristated', -200924: 'WaitModeValueNotSupportedNonBuffered', -200923: 'WaitModePropertyNotSupportedNonBuffered', -200922: 'CantSavePerLineConfigDigChanSoInteractiveEditsAllowed', -200921: 'CantSaveNonPortMultiLineDigChanSoInteractiveEditsAllowed', -200920: 'BufferSizeNotMultipleOfEveryNSampsEventIntervalNoIrqOnDev', -200919: 'GlobalTaskNameAlreadyChanName', -200918: 'GlobalChanNameAlreadyTaskName', -200917: 'AOEveryNSampsEventIntervalNotMultipleOf2', -200916: 'SampleTimebaseDivisorNotSupportedGivenTimingType', -200915: 'HandshakeEventOutputTermNotSupportedGivenTimingType', -200914: 'ChangeDetectionOutputTermNotSupportedGivenTimingType', -200913: 'ReadyForTransferOutputTermNotSupportedGivenTimingType', -200912: 'RefTrigOutputTermNotSupportedGivenTimingType', -200911: 'StartTrigOutputTermNotSupportedGivenTimingType', -200910: 'SampClockOutputTermNotSupportedGivenTimingType', -200909: '20MhzTimebaseNotSupportedGivenTimingType', -200908: 'SampClockSourceNotSupportedGivenTimingType', -200907: 'RefTrigTypeNotSupportedGivenTimingType', -200906: 'PauseTrigTypeNotSupportedGivenTimingType', -200905: 'HandshakeTrigTypeNotSupportedGivenTimingType', -200904: 'StartTrigTypeNotSupportedGivenTimingType', -200903: 'RefClkSrcNotSupported', -200902: 'DataVoltageLowAndHighIncompatible', -200901: 'InvalidCharInDigPatternString', -200900: 'CantUsePort3AloneGivenSampTimingTypeOn653x', -200899: 'CantUsePort1AloneGivenSampTimingTypeOn653x', -200898: 'PartialUseOfPhysicalLinesWithinPortNotSupported653x', -200897: 'PhysicalChanNotSupportedGivenSampTimingType653x', -200896: 'CanExportOnlyDigEdgeTrigs', -200895: 'RefTrigDigPatternSizeDoesNotMatchSourceSize', -200894: 'StartTrigDigPatternSizeDoesNotMatchSourceSize', -200893: 'ChangeDetectionRisingAndFallingEdgeChanDontMatch', -200892: 'PhysicalChansForChangeDetectionAndPatternMatch653x', -200891: 'CanExportOnlyOnboardSampClk', -200890: 'InternalSampClkNotRisingEdge', -200889: 'RefTrigDigPatternChanNotInTask', -200888: 'RefTrigDigPatternChanNotTristated', -200887: 'StartTrigDigPatternChanNotInTask', -200886: 'StartTrigDigPatternChanNotTristated', -200885: 'PXIStarAndClock10Sync', -200884: 'GlobalChanCannotBeSavedSoInteractiveEditsAllowed', -200883: 'TaskCannotBeSavedSoInteractiveEditsAllowed', -200882: 'InvalidGlobalChan', -200881: 'EveryNSampsEventAlreadyRegistered', -200880: 'EveryNSampsEventIntervalZeroNotSupported', -200879: 'ChanSizeTooBigForU16PortWrite', -200878: 'ChanSizeTooBigForU16PortRead', -200877: 'BufferSizeNotMultipleOfEveryNSampsEventIntervalWhenDMA', -200876: 'WriteWhenTaskNotRunningCOTicks', -200875: 'WriteWhenTaskNotRunningCOFreq', -200874: 'WriteWhenTaskNotRunningCOTime', -200873: 'AOMinMaxNotSupportedDACRangeTooSmall', -200872: 'AOMinMaxNotSupportedGivenDACRange', -200871: 'AOMinMaxNotSupportedGivenDACRangeAndOffsetVal', -200870: 'AOMinMaxNotSupportedDACOffsetValInappropriate', -200869: 'AOMinMaxNotSupportedGivenDACOffsetVal', -200868: 'AOMinMaxNotSupportedDACRefValTooSmall', -200867: 'AOMinMaxNotSupportedGivenDACRefVal', -200866: 'AOMinMaxNotSupportedGivenDACRefAndOffsetVal', -200865: 'WhenAcqCompAndNumSampsPerChanExceedsOnBrdBufSize', -200864: 'WhenAcqCompAndNoRefTrig', -200863: 'WaitForNextSampClkNotSupported', -200862: 'DevInUnidentifiedPXIChassis', -200861: 'MaxSoundPressureMicSensitivitRelatedAIPropertiesNotSupportedByDev', -200860: 'MaxSoundPressureAndMicSensitivityNotSupportedByDev', -200859: 'AOBufferSizeZeroForSampClkTimingType', -200858: 'AOCallWriteBeforeStartForSampClkTimingType', -200857: 'InvalidCalLowPassCutoffFreq', -200856: 'SimulationCannotBeDisabledForDevCreatedAsSimulatedDev', -200855: 'CannotAddNewDevsAfterTaskConfiguration', -200854: 'DifftSyncPulseSrcAndSampClkTimebaseSrcDevMultiDevTask', -200853: 'TermWithoutDevInMultiDevTask', -200852: 'SyncNoDevSampClkTimebaseOrSyncPulseInPXISlot2', -200851: 'PhysicalChanNotOnThisConnector', -200850: 'NumSampsToWaitNotGreaterThanZeroInScript', -200849: 'NumSampsToWaitNotMultipleOfAlignmentQuantumInScript', -200848: 'EveryNSamplesEventNotSupportedForNonBufferedTasks', -200847: 'BufferedAndDataXferPIO', -200846: 'CannotWriteWhenAutoStartFalseAndTaskNotRunning', -200845: 'NonBufferedAndDataXferInterrupts', -200844: 'WriteFailedMultipleCtrsWithFREQOUT', -200843: 'ReadNotCompleteBefore3SampClkEdges', -200842: 'CtrHWTimedSinglePointAndDataXferNotProgIO', -200841: 'PrescalerNot1ForInputTerminal', -200840: 'PrescalerNot1ForTimebaseSrc', -200839: 'SampClkTimingTypeWhenTristateIsFalse', -200838: 'OutputBufferSizeNotMultOfXferSize', -200837: 'SampPerChanNotMultOfXferSize', -200836: 'WriteToTEDSFailed', -200835: 'SCXIDevNotUsablePowerTurnedOff', -200834: 'CannotReadWhenAutoStartFalseBufSizeZeroAndTaskNotRunning', -200833: 'CannotReadWhenAutoStartFalseHWTimedSinglePtAndTaskNotRunning', -200832: 'CannotReadWhenAutoStartFalseOnDemandAndTaskNotRunning', -200831: 'SimultaneousAOWhenNotOnDemandTiming', -200830: 'MemMapAndSimultaneousAO', -200829: 'WriteFailedMultipleCOOutputTypes', -200828: 'WriteToTEDSNotSupportedOnRT', -200827: 'VirtualTEDSDataFileError', -200826: 'TEDSSensorDataError', -200825: 'DataSizeMoreThanSizeOfEEPROMOnTEDS', -200824: 'PROMOnTEDSContainsBasicTEDSData', -200823: 'PROMOnTEDSAlreadyWritten', -200822: 'TEDSDoesNotContainPROM', -200821: 'HWTimedSinglePointNotSupportedAI', -200820: 'HWTimedSinglePointOddNumChansInAITask', -200819: 'CantUseOnlyOnBoardMemWithProgrammedIO', -200818: 'SwitchDevShutDownDueToHighTemp', -200817: 'ExcitationNotSupportedWhenTermCfgDiff', -200816: 'TEDSMinElecValGEMaxElecVal', -200815: 'TEDSMinPhysValGEMaxPhysVal', -200814: 'CIOnboardClockNotSupportedAsInputTerm', -200813: 'InvalidSampModeForPositionMeas', -200812: 'TrigWhenAOHWTimedSinglePtSampMode', -200811: 'DAQmxCantUseStringDueToUnknownChar', -200810: 'DAQmxCantRetrieveStringDueToUnknownChar', -200809: 'ClearTEDSNotSupportedOnRT', -200808: 'CfgTEDSNotSupportedOnRT', -200807: 'ProgFilterClkCfgdToDifferentMinPulseWidthBySameTask1PerDev', -200806: 'ProgFilterClkCfgdToDifferentMinPulseWidthByAnotherTask1PerDev', -200804: 'NoLastExtCalDateTimeLastExtCalNotDAQmx', -200803: 'CannotWriteNotStartedAutoStartFalseNotOnDemandHWTimedSglPt', -200802: 'CannotWriteNotStartedAutoStartFalseNotOnDemandBufSizeZero', -200801: 'COInvalidTimingSrcDueToSignal', -200800: 'CIInvalidTimingSrcForSampClkDueToSampTimingType', -200799: 'CIInvalidTimingSrcForEventCntDueToSampMode', -200798: 'NoChangeDetectOnNonInputDigLineForDev', -200797: 'EmptyStringTermNameNotSupported', -200796: 'MemMapEnabledForHWTimedNonBufferedAO', -200795: 'DevOnboardMemOverflowDuringHWTimedNonBufferedGen', -200794: 'CODAQmxWriteMultipleChans', -200793: 'CantMaintainExistingValueAOSync', -200792: 'MStudioMultiplePhysChansNotSupported', -200791: 'CantConfigureTEDSForChan', -200790: 'WriteDataTypeTooSmall', -200789: 'ReadDataTypeTooSmall', -200788: 'MeasuredBridgeOffsetTooHigh', -200787: 'StartTrigConflictWithCOHWTimedSinglePt', -200786: 'SampClkRateExtSampClkTimebaseRateMismatch', -200785: 'InvalidTimingSrcDueToSampTimingType', -200784: 'VirtualTEDSFileNotFound', -200783: 'MStudioNoForwardPolyScaleCoeffs', -200782: 'MStudioNoReversePolyScaleCoeffs', -200781: 'MStudioNoPolyScaleCoeffsUseCalc', -200780: 'MStudioNoForwardPolyScaleCoeffsUseCalc', -200779: 'MStudioNoReversePolyScaleCoeffsUseCalc', -200778: 'COSampModeSampTimingTypeSampClkConflict', -200777: 'DevCannotProduceMinPulseWidth', -200776: 'CannotProduceMinPulseWidthGivenPropertyValues', -200775: 'TermCfgdToDifferentMinPulseWidthByAnotherTask', -200774: 'TermCfgdToDifferentMinPulseWidthByAnotherProperty', -200773: 'DigSyncNotAvailableOnTerm', -200772: 'DigFilterNotAvailableOnTerm', -200771: 'DigFilterEnabledMinPulseWidthNotCfg', -200770: 'DigFilterAndSyncBothEnabled', -200769: 'HWTimedSinglePointAOAndDataXferNotProgIO', -200768: 'NonBufferedAOAndDataXferNotProgIO', -200767: 'ProgIODataXferForBufferedAO', -200766: 'TEDSLegacyTemplateIDInvalidOrUnsupported', -200765: 'TEDSMappingMethodInvalidOrUnsupported', -200764: 'TEDSLinearMappingSlopeZero', -200763: 'AIInputBufferSizeNotMultOfXferSize', -200762: 'NoSyncPulseExtSampClkTimebase', -200761: 'NoSyncPulseAnotherTaskRunning', -200760: 'AOMinMaxNotInGainRange', -200759: 'AOMinMaxNotInDACRange', -200758: 'DevOnlySupportsSampClkTimingAO', -200757: 'DevOnlySupportsSampClkTimingAI', -200756: 'TEDSIncompatibleSensorAndMeasType', -200755: 'TEDSMultipleCalTemplatesNotSupported', -200754: 'TEDSTemplateParametersNotSupported', -200753: 'ParsingTEDSData', -200752: 'MultipleActivePhysChansNotSupported', -200751: 'NoChansSpecdForChangeDetect', -200750: 'InvalidCalVoltageForGivenGain', -200749: 'InvalidCalGain', -200748: 'MultipleWritesBetweenSampClks', -200747: 'InvalidAcqTypeForFREQOUT', -200746: 'SuitableTimebaseNotFoundTimeCombo2', -200745: 'SuitableTimebaseNotFoundFrequencyCombo2', -200744: 'RefClkRateRefClkSrcMismatch', -200743: 'NoTEDSTerminalBlock', -200742: 'CorruptedTEDSMemory', -200741: 'TEDSNotSupported', -200740: 'TimingSrcTaskStartedBeforeTimedLoop', -200739: 'PropertyNotSupportedForTimingSrc', -200738: 'TimingSrcDoesNotExist', -200737: 'InputBufferSizeNotEqualSampsPerChanForFiniteSampMode', -200736: 'FREQOUTCannotProduceDesiredFrequency2', -200735: 'ExtRefClkRateNotSpecified', -200734: 'DeviceDoesNotSupportDMADataXferForNonBufferedAcq', -200733: 'DigFilterMinPulseWidthSetWhenTristateIsFalse', -200732: 'DigFilterEnableSetWhenTristateIsFalse', -200731: 'NoHWTimingWithOnDemand', -200730: 'CannotDetectChangesWhenTristateIsFalse', -200729: 'CannotHandshakeWhenTristateIsFalse', -200728: 'LinesUsedForStaticInputNotForHandshakingControl', -200727: 'LinesUsedForHandshakingControlNotForStaticInput', -200726: 'LinesUsedForStaticInputNotForHandshakingInput', -200725: 'LinesUsedForHandshakingInputNotForStaticInput', -200724: 'DifferentDITristateValsForChansInTask', -200723: 'TimebaseCalFreqVarianceTooLarge', -200722: 'TimebaseCalFailedToConverge', -200721: 'InadequateResolutionForTimebaseCal', -200720: 'InvalidAOGainCalConst', -200719: 'InvalidAOOffsetCalConst', -200718: 'InvalidAIGainCalConst', -200717: 'InvalidAIOffsetCalConst', -200716: 'DigOutputOverrun', -200715: 'DigInputOverrun', -200714: 'AcqStoppedDriverCantXferDataFastEnough', -200713: 'ChansCantAppearInSameTask', -200712: 'InputCfgFailedBecauseWatchdogExpired', -200711: 'AnalogTrigChanNotExternal', -200710: 'TooManyChansForInternalAIInputSrc', -200709: 'TEDSSensorNotDetected', -200708: 'PrptyGetSpecdActiveItemFailedDueToDifftValues', -200706: 'RoutingDestTermPXIClk10InNotInSlot2', -200705: 'RoutingDestTermPXIStarXNotInSlot2', -200704: 'RoutingSrcTermPXIStarXNotInSlot2', -200703: 'RoutingSrcTermPXIStarInSlot16AndAbove', -200702: 'RoutingDestTermPXIStarInSlot16AndAbove', -200701: 'RoutingDestTermPXIStarInSlot2', -200700: 'RoutingSrcTermPXIStarInSlot2', -200699: 'RoutingDestTermPXIChassisNotIdentified', -200698: 'RoutingSrcTermPXIChassisNotIdentified', -200697: 'FailedToAcquireCalData', -200696: 'BridgeOffsetNullingCalNotSupported', -200695: 'AIMaxNotSpecified', -200694: 'AIMinNotSpecified', -200693: 'OddTotalBufferSizeToWrite', -200692: 'OddTotalNumSampsToWrite', -200691: 'BufferWithWaitMode', -200690: 'BufferWithHWTimedSinglePointSampMode', -200689: 'COWritePulseLowTicksNotSupported', -200688: 'COWritePulseHighTicksNotSupported', -200687: 'COWritePulseLowTimeOutOfRange', -200686: 'COWritePulseHighTimeOutOfRange', -200685: 'COWriteFreqOutOfRange', -200684: 'COWriteDutyCycleOutOfRange', -200683: 'InvalidInstallation', -200682: 'RefTrigMasterSessionUnavailable', -200681: 'RouteFailedBecauseWatchdogExpired', -200680: 'DeviceShutDownDueToHighTemp', -200679: 'NoMemMapWhenHWTimedSinglePoint', -200678: 'WriteFailedBecauseWatchdogExpired', -200677: 'DifftInternalAIInputSrcs', -200676: 'DifftAIInputSrcInOneChanGroup', -200675: 'InternalAIInputSrcInMultChanGroups', -200674: 'SwitchOpFailedDueToPrevError', -200673: 'WroteMultiSampsUsingSingleSampWrite', -200672: 'MismatchedInputArraySizes', -200671: 'CantExceedRelayDriveLimit', -200670: 'DACRngLowNotEqualToMinusRefVal', -200669: 'CantAllowConnectDACToGnd', -200668: 'WatchdogTimeoutOutOfRangeAndNotSpecialVal', -200667: 'NoWatchdogOutputOnPortReservedForInput', -200666: 'NoInputOnPortCfgdForWatchdogOutput', -200665: 'WatchdogExpirationStateNotEqualForLinesInPort', -200664: 'CannotPerformOpWhenTaskNotReserved', -200663: 'PowerupStateNotSupported', -200662: 'WatchdogTimerNotSupported', -200661: 'OpNotSupportedWhenRefClkSrcNone', -200660: 'SampClkRateUnavailable', -200659: 'PrptyGetSpecdSingleActiveChanFailedDueToDifftVals', -200658: 'PrptyGetImpliedActiveChanFailedDueToDifftVals', -200657: 'PrptyGetSpecdActiveChanFailedDueToDifftVals', -200656: 'NoRegenWhenUsingBrdMem', -200655: 'NonbufferedReadMoreThanSampsPerChan', -200654: 'WatchdogExpirationTristateNotSpecdForEntirePort', -200653: 'PowerupTristateNotSpecdForEntirePort', -200652: 'PowerupStateNotSpecdForEntirePort', -200651: 'CantSetWatchdogExpirationOnDigInChan', -200650: 'CantSetPowerupStateOnDigInChan', -200649: 'PhysChanNotInTask', -200648: 'PhysChanDevNotInTask', -200647: 'DigInputNotSupported', -200646: 'DigFilterIntervalNotEqualForLines', -200645: 'DigFilterIntervalAlreadyCfgd', -200644: 'CantResetExpiredWatchdog', -200643: 'ActiveChanTooManyLinesSpecdWhenGettingPrpty', -200642: 'ActiveChanNotSpecdWhenGetting1LinePrpty', -200641: 'DigPrptyCannotBeSetPerLine', -200640: 'SendAdvCmpltAfterWaitForTrigInScanlist', -200639: 'DisconnectionRequiredInScanlist', -200638: 'TwoWaitForTrigsAfterConnectionInScanlist', -200637: 'ActionSeparatorRequiredAfterBreakingConnectionInScanlist', -200636: 'ConnectionInScanlistMustWaitForTrig', -200635: 'ActionNotSupportedTaskNotWatchdog', -200634: 'WfmNameSameAsScriptName', -200633: 'ScriptNameSameAsWfmName', -200632: 'DSFStopClock', -200631: 'DSFReadyForStartClock', -200630: 'WriteOffsetNotMultOfIncr', -200629: 'DifferentPrptyValsNotSupportedOnDev', -200628: 'RefAndPauseTrigConfigured', -200627: 'FailedToEnableHighSpeedInputClock', -200626: 'EmptyPhysChanInPowerUpStatesArray', -200625: 'ActivePhysChanTooManyLinesSpecdWhenGettingPrpty', -200624: 'ActivePhysChanNotSpecdWhenGetting1LinePrpty', -200623: 'PXIDevTempCausedShutDown', -200622: 'InvalidNumSampsToWrite', -200621: 'OutputFIFOUnderflow2', -200620: 'RepeatedAIPhysicalChan', -200619: 'MultScanOpsInOneChassis', -200618: 'InvalidAIChanOrder', -200617: 'ReversePowerProtectionActivated', -200616: 'InvalidAsynOpHandle', -200615: 'FailedToEnableHighSpeedOutput', -200614: 'CannotReadPastEndOfRecord', -200613: 'AcqStoppedToPreventInputBufferOverwriteOneDataXferMech', -200612: 'ZeroBasedChanIndexInvalid', -200611: 'NoChansOfGivenTypeInTask', -200610: 'SampClkSrcInvalidForOutputValidForInput', -200609: 'OutputBufSizeTooSmallToStartGen', -200608: 'InputBufSizeTooSmallToStartAcq', -200607: 'ExportTwoSignalsOnSameTerminal', -200606: 'ChanIndexInvalid', -200605: 'RangeSyntaxNumberTooBig', -200604: 'NULLPtr', -200603: 'ScaledMinEqualMax', -200602: 'PreScaledMinEqualMax', -200601: 'PropertyNotSupportedForScaleType', -200600: 'ChannelNameGenerationNumberTooBig', -200599: 'RepeatedNumberInScaledValues', -200598: 'RepeatedNumberInPreScaledValues', -200597: 'LinesAlreadyReservedForOutput', -200596: 'SwitchOperationChansSpanMultipleDevsInList', -200595: 'InvalidIDInListAtBeginningOfSwitchOperation', -200594: 'MStudioInvalidPolyDirection', -200593: 'MStudioPropertyGetWhileTaskNotVerified', -200592: 'RangeWithTooManyObjects', -200591: 'CppDotNetAPINegativeBufferSize', -200590: 'CppCantRemoveInvalidEventHandler', -200589: 'CppCantRemoveEventHandlerTwice', -200588: 'CppCantRemoveOtherObjectsEventHandler', -200587: 'DigLinesReservedOrUnavailable', -200586: 'DSFFailedToResetStream', -200585: 'DSFReadyForOutputNotAsserted', -200584: 'SampToWritePerChanNotMultipleOfIncr', -200583: 'AOPropertiesCauseVoltageBelowMin', -200582: 'AOPropertiesCauseVoltageOverMax', -200581: 'PropertyNotSupportedWhenRefClkSrcNone', -200580: 'AIMaxTooSmall', -200579: 'AIMaxTooLarge', -200578: 'AIMinTooSmall', -200577: 'AIMinTooLarge', -200576: 'BuiltInCJCSrcNotSupported', -200575: 'TooManyPostTrigSampsPerChan', -200574: 'TrigLineNotFoundSingleDevRoute', -200573: 'DifferentInternalAIInputSources', -200572: 'DifferentAIInputSrcInOneChanGroup', -200571: 'InternalAIInputSrcInMultipleChanGroups', -200570: 'CAPIChanIndexInvalid', -200569: 'CollectionDoesNotMatchChanType', -200568: 'OutputCantStartChangedRegenerationMode', -200567: 'OutputCantStartChangedBufferSize', -200566: 'ChanSizeTooBigForU32PortWrite', -200565: 'ChanSizeTooBigForU8PortWrite', -200564: 'ChanSizeTooBigForU32PortRead', -200563: 'ChanSizeTooBigForU8PortRead', -200562: 'InvalidDigDataWrite', -200561: 'InvalidAODataWrite', -200560: 'WaitUntilDoneDoesNotIndicateDone', -200559: 'MultiChanTypesInTask', -200558: 'MultiDevsInTask', -200557: 'CannotSetPropertyWhenTaskRunning', -200556: 'CannotGetPropertyWhenTaskNotCommittedOrRunning', -200555: 'LeadingUnderscoreInString', -200554: 'TrailingSpaceInString', -200553: 'LeadingSpaceInString', -200552: 'InvalidCharInString', -200551: 'DLLBecameUnlocked', -200550: 'DLLLock', -200549: 'SelfCalConstsInvalid', -200548: 'InvalidTrigCouplingExceptForExtTrigChan', -200547: 'WriteFailsBufferSizeAutoConfigured', -200546: 'ExtCalAdjustExtRefVoltageFailed', -200545: 'SelfCalFailedExtNoiseOrRefVoltageOutOfCal', -200544: 'ExtCalTemperatureNotDAQmx', -200543: 'ExtCalDateTimeNotDAQmx', -200542: 'SelfCalTemperatureNotDAQmx', -200541: 'SelfCalDateTimeNotDAQmx', -200540: 'DACRefValNotSet', -200539: 'AnalogMultiSampWriteNotSupported', -200538: 'InvalidActionInControlTask', -200537: 'PolyCoeffsInconsistent', -200536: 'SensorValTooLow', -200535: 'SensorValTooHigh', -200534: 'WaveformNameTooLong', -200533: 'IdentifierTooLongInScript', -200532: 'UnexpectedIDFollowingSwitchChanName', -200531: 'RelayNameNotSpecifiedInList', -200530: 'UnexpectedIDFollowingRelayNameInList', -200529: 'UnexpectedIDFollowingSwitchOpInList', -200528: 'InvalidLineGrouping', -200527: 'CtrMinMax', -200526: 'WriteChanTypeMismatch', -200525: 'ReadChanTypeMismatch', -200524: 'WriteNumChansMismatch', -200523: 'OneChanReadForMultiChanTask', -200522: 'CannotSelfCalDuringExtCal', -200521: 'MeasCalAdjustOscillatorPhaseDAC', -200520: 'InvalidCalConstCalADCAdjustment', -200519: 'InvalidCalConstOscillatorFreqDACValue', -200518: 'InvalidCalConstOscillatorPhaseDACValue', -200517: 'InvalidCalConstOffsetDACValue', -200516: 'InvalidCalConstGainDACValue', -200515: 'InvalidNumCalADCReadsToAverage', -200514: 'InvalidCfgCalAdjustDirectPathOutputImpedance', -200513: 'InvalidCfgCalAdjustMainPathOutputImpedance', -200512: 'InvalidCfgCalAdjustMainPathPostAmpGainAndOffset', -200511: 'InvalidCfgCalAdjustMainPathPreAmpGain', -200510: 'InvalidCfgCalAdjustMainPreAmpOffset', -200509: 'MeasCalAdjustCalADC', -200508: 'MeasCalAdjustOscillatorFrequency', -200507: 'MeasCalAdjustDirectPathOutputImpedance', -200506: 'MeasCalAdjustMainPathOutputImpedance', -200505: 'MeasCalAdjustDirectPathGain', -200504: 'MeasCalAdjustMainPathPostAmpGainAndOffset', -200503: 'MeasCalAdjustMainPathPreAmpGain', -200502: 'MeasCalAdjustMainPathPreAmpOffset', -200501: 'InvalidDateTimeInEEPROM', -200500: 'UnableToLocateErrorResources', -200499: 'DotNetAPINotUnsigned32BitNumber', -200498: 'InvalidRangeOfObjectsSyntaxInString', -200497: 'AttemptToEnableLineNotPreviouslyDisabled', -200496: 'InvalidCharInPattern', -200495: 'IntermediateBufferFull', -200494: 'LoadTaskFailsBecauseNoTimingOnDev', -200493: 'CAPIReservedParamNotNULLNorEmpty', -200492: 'CAPIReservedParamNotNULL', -200491: 'CAPIReservedParamNotZero', -200490: 'SampleValueOutOfRange', -200489: 'ChanAlreadyInTask', -200488: 'VirtualChanDoesNotExist', -200486: 'ChanNotInTask', -200485: 'TaskNotInDataNeighborhood', -200484: 'CantSaveTaskWithoutReplace', -200483: 'CantSaveChanWithoutReplace', -200482: 'DevNotInTask', -200481: 'DevAlreadyInTask', -200479: 'CanNotPerformOpWhileTaskRunning', -200478: 'CanNotPerformOpWhenNoChansInTask', -200477: 'CanNotPerformOpWhenNoDevInTask', -200475: 'CannotPerformOpWhenTaskNotRunning', -200474: 'OperationTimedOut', -200473: 'CannotReadWhenAutoStartFalseAndTaskNotRunningOrCommitted', -200472: 'CannotWriteWhenAutoStartFalseAndTaskNotRunningOrCommitted', -200470: 'TaskVersionNew', -200469: 'ChanVersionNew', -200467: 'EmptyString', -200466: 'ChannelSizeTooBigForPortReadType', -200465: 'ChannelSizeTooBigForPortWriteType', -200464: 'ExpectedNumberOfChannelsVerificationFailed', -200463: 'NumLinesMismatchInReadOrWrite', -200462: 'OutputBufferEmpty', -200461: 'InvalidChanName', -200460: 'ReadNoInputChansInTask', -200459: 'WriteNoOutputChansInTask', -200457: 'PropertyNotSupportedNotInputTask', -200456: 'PropertyNotSupportedNotOutputTask', -200455: 'GetPropertyNotInputBufferedTask', -200454: 'GetPropertyNotOutputBufferedTask', -200453: 'InvalidTimeoutVal', -200452: 'AttributeNotSupportedInTaskContext', -200451: 'AttributeNotQueryableUnlessTaskIsCommitted', -200450: 'AttributeNotSettableWhenTaskIsRunning', -200449: 'DACRngLowNotMinusRefValNorZero', -200448: 'DACRngHighNotEqualRefVal', -200447: 'UnitsNotFromCustomScale', -200446: 'InvalidVoltageReadingDuringExtCal', -200445: 'CalFunctionNotSupported', -200444: 'InvalidPhysicalChanForCal', -200443: 'ExtCalNotComplete', -200442: 'CantSyncToExtStimulusFreqDuringCal', -200441: 'UnableToDetectExtStimulusFreqDuringCal', -200440: 'InvalidCloseAction', -200439: 'ExtCalFunctionOutsideExtCalSession', -200438: 'InvalidCalArea', -200437: 'ExtCalConstsInvalid', -200436: 'StartTrigDelayWithExtSampClk', -200435: 'DelayFromSampClkWithExtConv', -200434: 'FewerThan2PreScaledVals', -200433: 'FewerThan2ScaledValues', -200432: 'PhysChanOutputType', -200431: 'PhysChanMeasType', -200430: 'InvalidPhysChanType', -200429: 'LabVIEWEmptyTaskOrChans', -200428: 'LabVIEWInvalidTaskOrChans', -200427: 'InvalidRefClkRate', -200426: 'InvalidExtTrigImpedance', -200425: 'HystTrigLevelAIMax', -200424: 'LineNumIncompatibleWithVideoSignalFormat', -200423: 'TrigWindowAIMinAIMaxCombo', -200422: 'TrigAIMinAIMax', -200421: 'HystTrigLevelAIMin', -200420: 'InvalidSampRateConsiderRIS', -200419: 'InvalidReadPosDuringRIS', -200418: 'ImmedTrigDuringRISMode', -200417: 'TDCNotEnabledDuringRISMode', -200416: 'MultiRecWithRIS', -200415: 'InvalidRefClkSrc', -200414: 'InvalidSampClkSrc', -200413: 'InsufficientOnBoardMemForNumRecsAndSamps', -200412: 'InvalidAIAttenuation', -200411: 'ACCouplingNotAllowedWith50OhmImpedance', -200410: 'InvalidRecordNum', -200409: 'ZeroSlopeLinearScale', -200408: 'ZeroReversePolyScaleCoeffs', -200407: 'ZeroForwardPolyScaleCoeffs', -200406: 'NoReversePolyScaleCoeffs', -200405: 'NoForwardPolyScaleCoeffs', -200404: 'NoPolyScaleCoeffs', -200403: 'ReversePolyOrderLessThanNumPtsToCompute', -200402: 'ReversePolyOrderNotPositive', -200401: 'NumPtsToComputeNotPositive', -200400: 'WaveformLengthNotMultipleOfIncr', -200399: 'CAPINoExtendedErrorInfoAvailable', -200398: 'CVIFunctionNotFoundInDAQmxDLL', -200397: 'CVIFailedToLoadDAQmxDLL', -200396: 'NoCommonTrigLineForImmedRoute', -200395: 'NoCommonTrigLineForTaskRoute', -200394: 'F64PrptyValNotUnsignedInt', -200393: 'RegisterNotWritable', -200392: 'InvalidOutputVoltageAtSampClkRate', -200391: 'StrobePhaseShiftDCMBecameUnlocked', -200390: 'DrivePhaseShiftDCMBecameUnlocked', -200389: 'ClkOutPhaseShiftDCMBecameUnlocked', -200388: 'OutputBoardClkDCMBecameUnlocked', -200387: 'InputBoardClkDCMBecameUnlocked', -200386: 'InternalClkDCMBecameUnlocked', -200385: 'DCMLock', -200384: 'DataLineReservedForDynamicOutput', -200383: 'InvalidRefClkSrcGivenSampClkSrc', -200382: 'NoPatternMatcherAvailable', -200381: 'InvalidDelaySampRateBelowPhaseShiftDCMThresh', -200380: 'StrainGageCalibration', -200379: 'InvalidExtClockFreqAndDivCombo', -200378: 'CustomScaleDoesNotExist', -200377: 'OnlyFrontEndChanOpsDuringScan', -200376: 'InvalidOptionForDigitalPortChannel', -200375: 'UnsupportedSignalTypeExportSignal', -200374: 'InvalidSignalTypeExportSignal', -200373: 'UnsupportedTrigTypeSendsSWTrig', -200372: 'InvalidTrigTypeSendsSWTrig', -200371: 'RepeatedPhysicalChan', -200370: 'ResourcesInUseForRouteInTask', -200369: 'ResourcesInUseForRoute', -200368: 'RouteNotSupportedByHW', -200367: 'ResourcesInUseForExportSignalPolarity', -200366: 'ResourcesInUseForInversionInTask', -200365: 'ResourcesInUseForInversion', -200364: 'ExportSignalPolarityNotSupportedByHW', -200363: 'InversionNotSupportedByHW', -200362: 'OverloadedChansExistNotRead', -200361: 'InputFIFOOverflow2', -200360: 'CJCChanNotSpecd', -200359: 'CtrExportSignalNotPossible', -200358: 'RefTrigWhenContinuous', -200357: 'IncompatibleSensorOutputAndDeviceInputRanges', -200356: 'CustomScaleNameUsed', -200355: 'PropertyValNotSupportedByHW', -200354: 'PropertyValNotValidTermName', -200353: 'ResourcesInUseForProperty', -200352: 'CJCChanAlreadyUsed', -200351: 'ForwardPolynomialCoefNotSpecd', -200350: 'TableScaleNumPreScaledAndScaledValsNotEqual', -200349: 'TableScalePreScaledValsNotSpecd', -200348: 'TableScaleScaledValsNotSpecd', -200347: 'IntermediateBufferSizeNotMultipleOfIncr', -200346: 'EventPulseWidthOutOfRange', -200345: 'EventDelayOutOfRange', -200344: 'SampPerChanNotMultipleOfIncr', -200343: 'CannotCalculateNumSampsTaskNotStarted', -200342: 'ScriptNotInMem', -200341: 'OnboardMemTooSmall', -200340: 'ReadAllAvailableDataWithoutBuffer', -200339: 'PulseActiveAtStart', -200338: 'CalTempNotSupported', -200337: 'DelayFromSampClkTooLong', -200336: 'DelayFromSampClkTooShort', -200335: 'AIConvRateTooHigh', -200334: 'DelayFromStartTrigTooLong', -200333: 'DelayFromStartTrigTooShort', -200332: 'SampRateTooHigh', -200331: 'SampRateTooLow', -200330: 'PFI0UsedForAnalogAndDigitalSrc', -200329: 'PrimingCfgFIFO', -200328: 'CannotOpenTopologyCfgFile', -200327: 'InvalidDTInsideWfmDataType', -200326: 'RouteSrcAndDestSame', -200325: 'ReversePolynomialCoefNotSpecd', -200324: 'DevAbsentOrUnavailable', -200323: 'NoAdvTrigForMultiDevScan', -200322: 'InterruptsInsufficientDataXferMech', -200321: 'InvalidAttentuationBasedOnMinMax', -200320: 'CabledModuleCannotRouteSSH', -200319: 'CabledModuleCannotRouteConvClk', -200318: 'InvalidExcitValForScaling', -200317: 'NoDevMemForScript', -200316: 'ScriptDataUnderflow', -200315: 'NoDevMemForWaveform', -200314: 'StreamDCMBecameUnlocked', -200313: 'StreamDCMLock', -200312: 'WaveformNotInMem', -200311: 'WaveformWriteOutOfBounds', -200310: 'WaveformPreviouslyAllocated', -200309: 'SampClkTbMasterTbDivNotAppropriateForSampTbSrc', -200308: 'SampTbRateSampTbSrcMismatch', -200307: 'MasterTbRateMasterTbSrcMismatch', -200306: 'SampsPerChanTooBig', -200305: 'FinitePulseTrainNotPossible', -200304: 'ExtMasterTimebaseRateNotSpecified', -200303: 'ExtSampClkSrcNotSpecified', -200302: 'InputSignalSlowerThanMeasTime', -200301: 'CannotUpdatePulseGenProperty', -200300: 'InvalidTimingType', -200297: 'PropertyUnavailWhenUsingOnboardMemory', -200295: 'CannotWriteAfterStartWithOnboardMemory', -200294: 'NotEnoughSampsWrittenForInitialXferRqstCondition', -200293: 'NoMoreSpace', -200292: 'SamplesCanNotYetBeWritten', -200291: 'GenStoppedToPreventIntermediateBufferRegenOfOldSamples', -200290: 'GenStoppedToPreventRegenOfOldSamples', -200289: 'SamplesNoLongerWriteable', -200288: 'SamplesWillNeverBeGenerated', -200287: 'NegativeWriteSampleNumber', -200286: 'NoAcqStarted', -200284: 'SamplesNotYetAvailable', -200283: 'AcqStoppedToPreventIntermediateBufferOverflow', -200282: 'NoRefTrigConfigured', -200281: 'CannotReadRelativeToRefTrigUntilDone', -200279: 'SamplesNoLongerAvailable', -200278: 'SamplesWillNeverBeAvailable', -200277: 'NegativeReadSampleNumber', -200276: 'ExternalSampClkAndRefClkThruSameTerm', -200275: 'ExtSampClkRateTooLowForClkIn', -200274: 'ExtSampClkRateTooHighForBackplane', -200273: 'SampClkRateAndDivCombo', -200272: 'SampClkRateTooLowForDivDown', -200271: 'ProductOfAOMinAndGainTooSmall', -200270: 'InterpolationRateNotPossible', -200269: 'OffsetTooLarge', -200268: 'OffsetTooSmall', -200267: 'ProductOfAOMaxAndGainTooLarge', -200266: 'MinAndMaxNotSymmetric', -200265: 'InvalidAnalogTrigSrc', -200264: 'TooManyChansForAnalogRefTrig', -200263: 'TooManyChansForAnalogPauseTrig', -200262: 'TrigWhenOnDemandSampTiming', -200261: 'InconsistentAnalogTrigSettings', -200260: 'MemMapDataXferModeSampTimingCombo', -200259: 'InvalidJumperedAttr', -200258: 'InvalidGainBasedOnMinMax', -200257: 'InconsistentExcit', -200256: 'TopologyNotSupportedByCfgTermBlock', -200255: 'BuiltInTempSensorNotSupported', -200254: 'InvalidTerm', -200253: 'CannotTristateTerm', -200252: 'CannotTristateBusyTerm', -200251: 'NoDMAChansAvailable', -200250: 'InvalidWaveformLengthWithinLoopInScript', -200249: 'InvalidSubsetLengthWithinLoopInScript', -200248: 'MarkerPosInvalidForLoopInScript', -200247: 'IntegerExpectedInScript', -200246: 'PLLBecameUnlocked', -200245: 'PLLLock', -200244: 'DDCClkOutDCMBecameUnlocked', -200243: 'DDCClkOutDCMLock', -200242: 'ClkDoublerDCMBecameUnlocked', -200241: 'ClkDoublerDCMLock', -200240: 'SampClkDCMBecameUnlocked', -200239: 'SampClkDCMLock', -200238: 'SampClkTimebaseDCMBecameUnlocked', -200237: 'SampClkTimebaseDCMLock', -200236: 'AttrCannotBeReset', -200235: 'ExplanationNotFound', -200234: 'WriteBufferTooSmall', -200233: 'SpecifiedAttrNotValid', -200232: 'AttrCannotBeRead', -200231: 'AttrCannotBeSet', -200230: 'NULLPtrForC_Api', -200229: 'ReadBufferTooSmall', -200228: 'BufferTooSmallForString', -200227: 'NoAvailTrigLinesOnDevice', -200226: 'TrigBusLineNotAvail', -200225: 'CouldNotReserveRequestedTrigLine', -200224: 'TrigLineNotFound', -200223: 'SCXI1126ThreshHystCombination', -200222: 'AcqStoppedToPreventInputBufferOverwrite', -200221: 'TimeoutExceeded', -200220: 'InvalidDeviceID', -200219: 'InvalidAOChanOrder', -200218: 'SampleTimingTypeAndDataXferMode', -200217: 'BufferWithOnDemandSampTiming', -200216: 'BufferAndDataXferMode', -200215: 'MemMapAndBuffer', -200214: 'NoAnalogTrigHW', -200213: 'TooManyPretrigPlusMinPostTrigSamps', -200212: 'InconsistentUnitsSpecified', -200211: 'MultipleRelaysForSingleRelayOp', -200210: 'MultipleDevIDsPerChassisSpecifiedInList', -200209: 'DuplicateDevIDInList', -200208: 'InvalidRangeStatementCharInList', -200207: 'InvalidDeviceIDInList', -200206: 'TriggerPolarityConflict', -200205: 'CannotScanWithCurrentTopology', -200204: 'UnexpectedIdentifierInFullySpecifiedPathInList', -200203: 'SwitchCannotDriveMultipleTrigLines', -200202: 'InvalidRelayName', -200201: 'SwitchScanlistTooBig', -200200: 'SwitchChanInUse', -200199: 'SwitchNotResetBeforeScan', -200198: 'InvalidTopology', -200197: 'AttrNotSupported', -200196: 'UnexpectedEndOfActionsInList', -200195: 'PowerBudgetExceeded', -200194: 'HWUnexpectedlyPoweredOffAndOn', -200193: 'SwitchOperationNotSupported', -200192: 'OnlyContinuousScanSupported', -200191: 'SwitchDifferentTopologyWhenScanning', -200190: 'DisconnectPathNotSameAsExistingPath', -200189: 'ConnectionNotPermittedOnChanReservedForRouting', -200188: 'CannotConnectSrcChans', -200187: 'CannotConnectChannelToItself', -200186: 'ChannelNotReservedForRouting', -200185: 'CannotConnectChansDirectly', -200184: 'ChansAlreadyConnected', -200183: 'ChanDuplicatedInPath', -200182: 'NoPathToDisconnect', -200181: 'InvalidSwitchChan', -200180: 'NoPathAvailableBetween2SwitchChans', -200179: 'ExplicitConnectionExists', -200178: 'SwitchDifferentSettlingTimeWhenScanning', -200177: 'OperationOnlyPermittedWhileScanning', -200176: 'OperationNotPermittedWhileScanning', -200175: 'HardwareNotResponding', -200173: 'InvalidSampAndMasterTimebaseRateCombo', -200172: 'NonZeroBufferSizeInProgIOXfer', -200171: 'VirtualChanNameUsed', -200170: 'PhysicalChanDoesNotExist', -200169: 'MemMapOnlyForProgIOXfer', -200168: 'TooManyChans', -200167: 'CannotHaveCJTempWithOtherChans', -200166: 'OutputBufferUnderwrite', -200163: 'SensorInvalidCompletionResistance', -200162: 'VoltageExcitIncompatibleWith2WireCfg', -200161: 'IntExcitSrcNotAvailable', -200160: 'CannotCreateChannelAfterTaskVerified', -200159: 'LinesReservedForSCXIControl', -200158: 'CouldNotReserveLinesForSCXIControl', -200157: 'CalibrationFailed', -200156: 'ReferenceFrequencyInvalid', -200155: 'ReferenceResistanceInvalid', -200154: 'ReferenceCurrentInvalid', -200153: 'ReferenceVoltageInvalid', -200152: 'EEPROMDataInvalid', -200151: 'CabledModuleNotCapableOfRoutingAI', -200150: 'ChannelNotAvailableInParallelMode', -200149: 'ExternalTimebaseRateNotKnownForDelay', -200148: 'FREQOUTCannotProduceDesiredFrequency', -200147: 'MultipleCounterInputTask', -200146: 'CounterStartPauseTriggerConflict', -200145: 'CounterInputPauseTriggerAndSampleClockInvalid', -200144: 'CounterOutputPauseTriggerInvalid', -200143: 'CounterTimebaseRateNotSpecified', -200142: 'CounterTimebaseRateNotFound', -200141: 'CounterOverflow', -200140: 'CounterNoTimebaseEdgesBetweenGates', -200139: 'CounterMaxMinRangeFreq', -200138: 'CounterMaxMinRangeTime', -200137: 'SuitableTimebaseNotFoundTimeCombo', -200136: 'SuitableTimebaseNotFoundFrequencyCombo', -200135: 'InternalTimebaseSourceDivisorCombo', -200134: 'InternalTimebaseSourceRateCombo', -200133: 'InternalTimebaseRateDivisorSourceCombo', -200132: 'ExternalTimebaseRateNotknownForRate', -200131: 'AnalogTrigChanNotFirstInScanList', -200130: 'NoDivisorForExternalSignal', -200128: 'AttributeInconsistentAcrossRepeatedPhysicalChannels', -200127: 'CannotHandshakeWithPort0', -200126: 'ControlLineConflictOnPortC', -200125: 'Lines4To7ConfiguredForOutput', -200124: 'Lines4To7ConfiguredForInput', -200123: 'Lines0To3ConfiguredForOutput', -200122: 'Lines0To3ConfiguredForInput', -200121: 'PortConfiguredForOutput', -200120: 'PortConfiguredForInput', -200119: 'PortConfiguredForStaticDigitalOps', -200118: 'PortReservedForHandshaking', -200117: 'PortDoesNotSupportHandshakingDataIO', -200116: 'CannotTristate8255OutputLines', -200113: 'TemperatureOutOfRangeForCalibration', -200112: 'CalibrationHandleInvalid', -200111: 'PasswordRequired', -200110: 'IncorrectPassword', -200109: 'PasswordTooLong', -200108: 'CalibrationSessionAlreadyOpen', -200107: 'SCXIModuleIncorrect', -200106: 'AttributeInconsistentAcrossChannelsOnDevice', -200105: 'SCXI1122ResistanceChanNotSupportedForCfg', -200104: 'BracketPairingMismatchInList', -200103: 'InconsistentNumSamplesToWrite', -200102: 'IncorrectDigitalPattern', -200101: 'IncorrectNumChannelsToWrite', -200100: 'IncorrectReadFunction', -200099: 'PhysicalChannelNotSpecified', -200098: 'MoreThanOneTerminal', -200097: 'MoreThanOneActiveChannelSpecified', -200096: 'InvalidNumberSamplesToRead', -200095: 'AnalogWaveformExpected', -200094: 'DigitalWaveformExpected', -200093: 'ActiveChannelNotSpecified', -200092: 'FunctionNotSupportedForDeviceTasks', -200091: 'FunctionNotInLibrary', -200090: 'LibraryNotPresent', -200089: 'DuplicateTask', -200088: 'InvalidTask', -200087: 'InvalidChannel', -200086: 'InvalidSyntaxForPhysicalChannelRange', -200082: 'MinNotLessThanMax', -200081: 'SampleRateNumChansConvertPeriodCombo', -200079: 'AODuringCounter1DMAConflict', -200078: 'AIDuringCounter0DMAConflict', -200077: 'InvalidAttributeValue', -200076: 'SuppliedCurrentDataOutsideSpecifiedRange', -200075: 'SuppliedVoltageDataOutsideSpecifiedRange', -200074: 'CannotStoreCalConst', -200073: 'SCXIModuleNotFound', -200072: 'DuplicatePhysicalChansNotSupported', -200071: 'TooManyPhysicalChansInList', -200070: 'InvalidAdvanceEventTriggerType', -200069: 'DeviceIsNotAValidSwitch', -200068: 'DeviceDoesNotSupportScanning', -200067: 'ScanListCannotBeTimed', -200066: 'ConnectOperatorInvalidAtPointInList', -200065: 'UnexpectedSwitchActionInList', -200064: 'UnexpectedSeparatorInList', -200063: 'ExpectedTerminatorInList', -200062: 'ExpectedConnectOperatorInList', -200061: 'ExpectedSeparatorInList', -200060: 'FullySpecifiedPathInListContainsRange', -200059: 'ConnectionSeparatorAtEndOfList', -200058: 'IdentifierInListTooLong', -200057: 'DuplicateDeviceIDInListWhenSettling', -200056: 'ChannelNameNotSpecifiedInList', -200055: 'DeviceIDNotSpecifiedInList', -200054: 'SemicolonDoesNotFollowRangeInList', -200053: 'SwitchActionInListSpansMultipleDevices', -200052: 'RangeWithoutAConnectActionInList', -200051: 'InvalidIdentifierFollowingSeparatorInList', -200050: 'InvalidChannelNameInList', -200049: 'InvalidNumberInRepeatStatementInList', -200048: 'InvalidTriggerLineInList', -200047: 'InvalidIdentifierInListFollowingDeviceID', -200046: 'InvalidIdentifierInListAtEndOfSwitchAction', -200045: 'DeviceRemoved', -200044: 'RoutingPathNotAvailable', -200043: 'RoutingHardwareBusy', -200042: 'RequestedSignalInversionForRoutingNotPossible', -200041: 'InvalidRoutingDestinationTerminalName', -200040: 'InvalidRoutingSourceTerminalName', -200039: 'RoutingNotSupportedForDevice', -200038: 'WaitIsLastInstructionOfLoopInScript', -200037: 'ClearIsLastInstructionOfLoopInScript', -200036: 'InvalidLoopIterationsInScript', -200035: 'RepeatLoopNestingTooDeepInScript', -200034: 'MarkerPositionOutsideSubsetInScript', -200033: 'SubsetStartOffsetNotAlignedInScript', -200032: 'InvalidSubsetLengthInScript', -200031: 'MarkerPositionNotAlignedInScript', -200030: 'SubsetOutsideWaveformInScript', -200029: 'MarkerOutsideWaveformInScript', -200028: 'WaveformInScriptNotInMem', -200027: 'KeywordExpectedInScript', -200026: 'BufferNameExpectedInScript', -200025: 'ProcedureNameExpectedInScript', -200024: 'ScriptHasInvalidIdentifier', -200023: 'ScriptHasInvalidCharacter', -200022: 'ResourceAlreadyReserved', -200020: 'SelfTestFailed', -200019: 'ADCOverrun', -200018: 'DACUnderflow', -200017: 'InputFIFOUnderflow', -200016: 'OutputFIFOUnderflow', -200015: 'SCXISerialCommunication', -200014: 'DigitalTerminalSpecifiedMoreThanOnce', -200012: 'DigitalOutputNotSupported', -200011: 'InconsistentChannelDirections', -200010: 'InputFIFOOverflow', -200009: 'TimeStampOverwritten', -200008: 'StopTriggerHasNotOccurred', -200007: 'RecordNotAvailable', -200006: 'RecordOverwritten', -200005: 'DataNotAvailable', -200004: 'DataOverwrittenInDeviceMemory', -200003: 'DuplicatedChannel', 209800: 'ngReadNotCompleteBeforeSampClk', 209801: 'ngWriteNotCompleteBeforeSampClk', 209802: 'ngWaitForNextSampClkDetectedMissedSampClk', 50100: 'ngPALResourceOwnedBySystem', 50102: 'ngPALResourceNotReserved', 50103: 'ngPALResourceReserved', 50104: 'ngPALResourceNotInitialized', 50105: 'ngPALResourceInitialized', 50106: 'ngPALResourceBusy', 50107: 'ngPALResourceAmbiguous', -50807: 'PALIsocStreamBufferError', -50806: 'PALInvalidAddressComponent', -50805: 'PALSharingViolation', -50804: 'PALInvalidDeviceState', -50803: 'PALConnectionReset', -50802: 'PALConnectionAborted', -50801: 'PALConnectionRefused', -50800: 'PALBusResetOccurred', -50700: 'PALWaitInterrupted', -50651: 'PALMessageUnderflow', -50650: 'PALMessageOverflow', -50604: 'PALThreadAlreadyDead', -50603: 'PALThreadStackSizeNotSupported', -50602: 'PALThreadControllerIsNotThreadCreator', -50601: 'PALThreadHasNoThreadObject', -50600: 'PALThreadCouldNotRun', -50551: 'PALSyncAbandoned', -50550: 'PALSyncTimedOut', -50503: 'PALReceiverSocketInvalid', -50502: 'PALSocketListenerInvalid', -50501: 'PALSocketListenerAlreadyRegistered', -50500: 'PALDispatcherAlreadyExported', -50450: 'PALDMALinkEventMissed', -50413: 'PALBusError', -50412: 'PALRetryLimitExceeded', -50411: 'PALTransferOverread', -50410: 'PALTransferOverwritten', -50409: 'PALPhysicalBufferFull', -50408: 'PALPhysicalBufferEmpty', -50407: 'PALLogicalBufferFull', -50406: 'PALLogicalBufferEmpty', -50405: 'PALTransferAborted', -50404: 'PALTransferStopped', -50403: 'PALTransferInProgress', -50402: 'PALTransferNotInProgress', -50401: 'PALCommunicationsFault', -50400: 'PALTransferTimedOut', -50355: 'PALMemoryHeapNotEmpty', -50354: 'PALMemoryBlockCheckFailed', -50353: 'PALMemoryPageLockFailed', -50352: 'PALMemoryFull', -50351: 'PALMemoryAlignmentFault', -50350: 'PALMemoryConfigurationFault', -50303: 'PALDeviceInitializationFault', -50302: 'PALDeviceNotSupported', -50301: 'PALDeviceUnknown', -50300: 'PALDeviceNotFound', -50265: 'PALFeatureDisabled', -50264: 'PALComponentBusy', -50263: 'PALComponentAlreadyInstalled', -50262: 'PALComponentNotUnloadable', -50261: 'PALComponentNeverLoaded', -50260: 'PALComponentAlreadyLoaded', -50259: 'PALComponentCircularDependency', -50258: 'PALComponentInitializationFault', -50257: 'PALComponentImageCorrupt', -50256: 'PALFeatureNotSupported', -50255: 'PALFunctionNotFound', -50254: 'PALFunctionObsolete', -50253: 'PALComponentTooNew', -50252: 'PALComponentTooOld', -50251: 'PALComponentNotFound', -50250: 'PALVersionMismatch', -50209: 'PALFileFault', -50208: 'PALFileWriteFault', -50207: 'PALFileReadFault', -50206: 'PALFileSeekFault', -50205: 'PALFileCloseFault', -50204: 'PALFileOpenFault', -50203: 'PALDiskFull', -50202: 'PALOSFault', -50201: 'PALOSInitializationFault', -50200: 'PALOSUnsupported', -50175: 'PALCalculationOverflow', -50152: 'PALHardwareFault', -50151: 'PALFirmwareFault', -50150: 'PALSoftwareFault', -50108: 'PALMessageQueueFull', -50107: 'PALResourceAmbiguous', -50106: 'PALResourceBusy', -50105: 'PALResourceInitialized', -50104: 'PALResourceNotInitialized', -50103: 'PALResourceReserved', -50102: 'PALResourceNotReserved', -50101: 'PALResourceNotAvailable', -50100: 'PALResourceOwnedBySystem', -50020: 'PALBadToken', -50019: 'PALBadThreadMultitask', -50018: 'PALBadLibrarySpecifier', -50017: 'PALBadAddressSpace', -50016: 'PALBadWindowType', -50015: 'PALBadAddressClass', -50014: 'PALBadWriteCount', -50013: 'PALBadWriteOffset', -50012: 'PALBadWriteMode', -50011: 'PALBadReadCount', -50010: 'PALBadReadOffset', -50009: 'PALBadReadMode', -50008: 'PALBadCount', -50007: 'PALBadOffset', -50006: 'PALBadMode', -50005: 'PALBadDataSize', -50004: 'PALBadPointer', -50003: 'PALBadSelector', -50002: 'PALBadDevice', -50001: 'PALIrrelevantAttribute', -50000: 'PALValueConflict'}
da_qmx__buf__input__buf_size = 6252 da_qmx__buf__input__onbrd_buf_size = 8970 da_qmx__buf__output__buf_size = 6253 da_qmx__buf__output__onbrd_buf_size = 8971 da_qmx__self_cal__supported = 6240 da_qmx__self_cal__last_temp = 6244 da_qmx__ext_cal__recommended_interval = 6248 da_qmx__ext_cal__last_temp = 6247 da_qmx__cal__user_defined_info = 6241 da_qmx__cal__user_defined_info__max_size = 6428 da_qmx__cal__dev_temp = 8763 da_qmx_ai__max = 6109 da_qmx_ai__min = 6110 da_qmx_ai__custom_scale_name = 6112 da_qmx_ai__meas_type = 1685 da_qmx_ai__voltage__units = 4244 da_qmx_ai__voltage_d_b_ref = 10672 da_qmx_ai__voltage_acrms__units = 6114 da_qmx_ai__temp__units = 4147 da_qmx_ai__thrmcpl__type = 4176 da_qmx_ai__thrmcpl__scale_type = 10704 da_qmx_ai__thrmcpl_cjc_src = 4149 da_qmx_ai__thrmcpl_cjc_val = 4150 da_qmx_ai__thrmcpl_cjc_chan = 4148 da_qmx_ai_rtd__type = 4146 da_qmx_ai_rtd_r0 = 4144 da_qmx_ai_rtd_a = 4112 da_qmx_ai_rtd_b = 4113 da_qmx_ai_rtd_c = 4115 da_qmx_ai__thrmstr_a = 6345 da_qmx_ai__thrmstr_b = 6347 da_qmx_ai__thrmstr_c = 6346 da_qmx_ai__thrmstr_r1 = 4193 da_qmx_ai__force_read_from_chan = 6392 da_qmx_ai__current__units = 1793 da_qmx_ai__current_acrms__units = 6115 da_qmx_ai__strain__units = 2433 da_qmx_ai__strain_gage__gage_factor = 2452 da_qmx_ai__strain_gage__poisson_ratio = 2456 da_qmx_ai__strain_gage__cfg = 2434 da_qmx_ai__resistance__units = 2389 da_qmx_ai__freq__units = 2054 da_qmx_ai__freq__thresh_voltage = 2069 da_qmx_ai__freq__hyst = 2068 da_qmx_ai_lvdt__units = 2320 da_qmx_ai_lvdt__sensitivity = 2361 da_qmx_ai_lvdt__sensitivity_units = 8602 da_qmx_ai_rvdt__units = 2167 da_qmx_ai_rvdt__sensitivity = 2307 da_qmx_ai_rvdt__sensitivity_units = 8603 da_qmx_ai__eddy_current_prox_probe__units = 10944 da_qmx_ai__eddy_current_prox_probe__sensitivity = 10942 da_qmx_ai__eddy_current_prox_probe__sensitivity_units = 10943 da_qmx_ai__sound_pressure__max_sound_pressure_lvl = 8762 da_qmx_ai__sound_pressure__units = 5416 da_qmx_ai__sound_pressure_d_b_ref = 10673 da_qmx_ai__microphone__sensitivity = 5430 da_qmx_ai__accel__units = 1651 da_qmx_ai__accel_d_b_ref = 10674 da_qmx_ai__accel__sensitivity = 1682 da_qmx_ai__accel__sensitivity_units = 8604 da_qmx_ai__is_teds = 10627 da_qmx_ai_teds__units = 8672 da_qmx_ai__coupling = 100 da_qmx_ai__impedance = 98 da_qmx_ai__term_cfg = 4247 da_qmx_ai__input_src = 8600 da_qmx_ai__resistance_cfg = 6273 da_qmx_ai__lead_wire_resistance = 6126 da_qmx_ai__bridge__cfg = 135 da_qmx_ai__bridge__nom_resistance = 6124 da_qmx_ai__bridge__initial_voltage = 6125 da_qmx_ai__bridge__shunt_cal__enable = 148 da_qmx_ai__bridge__shunt_cal__select = 8661 da_qmx_ai__bridge__shunt_cal__gain_adjust = 6463 da_qmx_ai__bridge__balance__coarse_pot = 6129 da_qmx_ai__bridge__balance__fine_pot = 6388 da_qmx_ai__current_shunt__loc = 6130 da_qmx_ai__current_shunt__resistance = 6131 da_qmx_ai__excit__src = 6132 da_qmx_ai__excit__val = 6133 da_qmx_ai__excit__use_for_scaling = 6140 da_qmx_ai__excit__use_multiplexed = 8576 da_qmx_ai__excit__actual_val = 6275 da_qmx_ai__excit_d_cor_ac = 6139 da_qmx_ai__excit__voltage_or_current = 6134 da_qmx_ai_ac_excit__freq = 257 da_qmx_ai_ac_excit__sync_enable = 258 da_qmx_ai_ac_excit__wire_mode = 6349 da_qmx_ai__atten = 6145 da_qmx_ai__probe_atten = 10888 da_qmx_ai__lowpass__enable = 6146 da_qmx_ai__lowpass__cutoff_freq = 6147 da_qmx_ai__lowpass__switch_cap__clk_src = 6276 da_qmx_ai__lowpass__switch_cap__ext_clk_freq = 6277 da_qmx_ai__lowpass__switch_cap__ext_clk_div = 6278 da_qmx_ai__lowpass__switch_cap__out_clk_div = 6279 da_qmx_ai__resolution_units = 5988 da_qmx_ai__resolution = 5989 da_qmx_ai__raw_samp_size = 8922 da_qmx_ai__raw_samp_justification = 80 da_qmx_ai_adc_timing_mode = 10745 da_qmx_ai__dither__enable = 104 da_qmx_ai__chan_cal__has_valid_cal_info = 8855 da_qmx_ai__chan_cal__enable_cal = 8856 da_qmx_ai__chan_cal__apply_cal_if_exp = 8857 da_qmx_ai__chan_cal__scale_type = 8860 da_qmx_ai__chan_cal__table__pre_scaled_vals = 8861 da_qmx_ai__chan_cal__table__scaled_vals = 8862 da_qmx_ai__chan_cal__poly__forward_coeff = 8863 da_qmx_ai__chan_cal__poly__reverse_coeff = 8864 da_qmx_ai__chan_cal__operator_name = 8867 da_qmx_ai__chan_cal__desc = 8868 da_qmx_ai__chan_cal__verif__ref_vals = 8865 da_qmx_ai__chan_cal__verif__acq_vals = 8866 da_qmx_ai__rng__high = 6165 da_qmx_ai__rng__low = 6166 da_qmx_ai_dc_offset = 10889 da_qmx_ai__gain = 6168 da_qmx_ai__samp_and_hold__enable = 6170 da_qmx_ai__auto_zero_mode = 5984 da_qmx_ai__data_xfer_mech = 6177 da_qmx_ai__data_xfer_req_cond = 6283 da_qmx_ai__data_xfer_custom_threshold = 8972 da_qmx_ai__usb_xfer_req_size = 10894 da_qmx_ai__mem_map_enable = 6284 da_qmx_ai__raw_data_compression_type = 8920 da_qmx_ai__lossy_lsb_removal__compressed_samp_size = 8921 da_qmx_ai__dev_scaling_coeff = 6448 da_qmx_ai__enhanced_alias_rejection_enable = 8852 da_qmx_ao__max = 4486 da_qmx_ao__min = 4487 da_qmx_ao__custom_scale_name = 4488 da_qmx_ao__output_type = 4360 da_qmx_ao__voltage__units = 4484 da_qmx_ao__voltage__current_limit = 10781 da_qmx_ao__current__units = 4361 da_qmx_ao__func_gen__type = 10776 da_qmx_ao__func_gen__freq = 10777 da_qmx_ao__func_gen__amplitude = 10778 da_qmx_ao__func_gen__offset = 10779 da_qmx_ao__func_gen__square__duty_cycle = 10780 da_qmx_ao__func_gen__modulation_type = 10786 da_qmx_ao__func_gen_fm_deviation = 10787 da_qmx_ao__output_impedance = 5264 da_qmx_ao__load_impedance = 289 da_qmx_ao__idle_output_behavior = 8768 da_qmx_ao__term_cfg = 6286 da_qmx_ao__resolution_units = 6187 da_qmx_ao__resolution = 6188 da_qmx_ao_dac__rng__high = 6190 da_qmx_ao_dac__rng__low = 6189 da_qmx_ao_dac__ref__conn_to_gnd = 304 da_qmx_ao_dac__ref__allow_conn_to_gnd = 6192 da_qmx_ao_dac__ref__src = 306 da_qmx_ao_dac__ref__ext_src = 8786 da_qmx_ao_dac__ref__val = 6194 da_qmx_ao_dac__offset__src = 8787 da_qmx_ao_dac__offset__ext_src = 8788 da_qmx_ao_dac__offset__val = 8789 da_qmx_ao__reglitch_enable = 307 da_qmx_ao__gain = 280 da_qmx_ao__use_only_on_brd_mem = 6202 da_qmx_ao__data_xfer_mech = 308 da_qmx_ao__data_xfer_req_cond = 6204 da_qmx_ao__usb_xfer_req_size = 10895 da_qmx_ao__mem_map_enable = 6287 da_qmx_ao__dev_scaling_coeff = 6449 da_qmx_ao__enhanced_image_rejection_enable = 8769 da_qmx_di__invert_lines = 1939 da_qmx_di__num_lines = 8568 da_qmx_di__dig_fltr__enable = 8662 da_qmx_di__dig_fltr__min_pulse_width = 8663 da_qmx_di__dig_fltr__enable_bus_mode = 12030 da_qmx_di__dig_fltr__timebase_src = 11988 da_qmx_di__dig_fltr__timebase_rate = 11989 da_qmx_di__dig_sync__enable = 11990 da_qmx_di__tristate = 6288 da_qmx_di__logic_family = 10605 da_qmx_di__data_xfer_mech = 8803 da_qmx_di__data_xfer_req_cond = 8804 da_qmx_di__usb_xfer_req_size = 10896 da_qmx_di__mem_map_enable = 10602 da_qmx_di__acquire_on = 10598 da_qmx_do__output_drive_type = 4407 da_qmx_do__invert_lines = 4403 da_qmx_do__num_lines = 8569 da_qmx_do__tristate = 6387 da_qmx_do__line_states__start_state = 10610 da_qmx_do__line_states__paused_state = 10599 da_qmx_do__line_states__done_state = 10600 da_qmx_do__logic_family = 10606 da_qmx_do__overcurrent__limit = 10885 da_qmx_do__overcurrent__auto_reenable = 10886 da_qmx_do__overcurrent__reenable_period = 10887 da_qmx_do__use_only_on_brd_mem = 8805 da_qmx_do__data_xfer_mech = 8806 da_qmx_do__data_xfer_req_cond = 8807 da_qmx_do__usb_xfer_req_size = 10897 da_qmx_do__mem_map_enable = 10603 da_qmx_do__generate_on = 10601 da_qmx_ci__max = 6300 da_qmx_ci__min = 6301 da_qmx_ci__custom_scale_name = 6302 da_qmx_ci__meas_type = 6304 da_qmx_ci__freq__units = 6305 da_qmx_ci__freq__term = 6306 da_qmx_ci__freq__starting_edge = 1945 da_qmx_ci__freq__meas_meth = 324 da_qmx_ci__freq__enable_averaging = 11984 da_qmx_ci__freq__meas_time = 325 da_qmx_ci__freq__div = 327 da_qmx_ci__freq__dig_fltr__enable = 8679 da_qmx_ci__freq__dig_fltr__min_pulse_width = 8680 da_qmx_ci__freq__dig_fltr__timebase_src = 8681 da_qmx_ci__freq__dig_fltr__timebase_rate = 8682 da_qmx_ci__freq__dig_sync__enable = 8683 da_qmx_ci__period__units = 6307 da_qmx_ci__period__term = 6308 da_qmx_ci__period__starting_edge = 2130 da_qmx_ci__period__meas_meth = 6444 da_qmx_ci__period__enable_averaging = 11985 da_qmx_ci__period__meas_time = 6445 da_qmx_ci__period__div = 6446 da_qmx_ci__period__dig_fltr__enable = 8684 da_qmx_ci__period__dig_fltr__min_pulse_width = 8685 da_qmx_ci__period__dig_fltr__timebase_src = 8686 da_qmx_ci__period__dig_fltr__timebase_rate = 8687 da_qmx_ci__period__dig_sync__enable = 8688 da_qmx_ci__count_edges__term = 6343 da_qmx_ci__count_edges__dir = 1686 da_qmx_ci__count_edges__dir_term = 8673 da_qmx_ci__count_edges__count_dir__dig_fltr__enable = 8689 da_qmx_ci__count_edges__count_dir__dig_fltr__min_pulse_width = 8690 da_qmx_ci__count_edges__count_dir__dig_fltr__timebase_src = 8691 da_qmx_ci__count_edges__count_dir__dig_fltr__timebase_rate = 8692 da_qmx_ci__count_edges__count_dir__dig_sync__enable = 8693 da_qmx_ci__count_edges__initial_cnt = 1688 da_qmx_ci__count_edges__active_edge = 1687 da_qmx_ci__count_edges__dig_fltr__enable = 8694 da_qmx_ci__count_edges__dig_fltr__min_pulse_width = 8695 da_qmx_ci__count_edges__dig_fltr__timebase_src = 8696 da_qmx_ci__count_edges__dig_fltr__timebase_rate = 8697 da_qmx_ci__count_edges__dig_sync__enable = 8698 da_qmx_ci__ang_encoder__units = 6310 da_qmx_ci__ang_encoder__pulses_per_rev = 2165 da_qmx_ci__ang_encoder__initial_angle = 2177 da_qmx_ci__lin_encoder__units = 6313 da_qmx_ci__lin_encoder__dist_per_pulse = 2321 da_qmx_ci__lin_encoder__initial_pos = 2325 da_qmx_ci__encoder__decoding_type = 8678 da_qmx_ci__encoder_a_input_term = 8605 da_qmx_ci__encoder_a_input__dig_fltr__enable = 8699 da_qmx_ci__encoder_a_input__dig_fltr__min_pulse_width = 8700 da_qmx_ci__encoder_a_input__dig_fltr__timebase_src = 8701 da_qmx_ci__encoder_a_input__dig_fltr__timebase_rate = 8702 da_qmx_ci__encoder_a_input__dig_sync__enable = 8703 da_qmx_ci__encoder_b_input_term = 8606 da_qmx_ci__encoder_b_input__dig_fltr__enable = 8704 da_qmx_ci__encoder_b_input__dig_fltr__min_pulse_width = 8705 da_qmx_ci__encoder_b_input__dig_fltr__timebase_src = 8706 da_qmx_ci__encoder_b_input__dig_fltr__timebase_rate = 8707 da_qmx_ci__encoder_b_input__dig_sync__enable = 8708 da_qmx_ci__encoder_z_input_term = 8607 da_qmx_ci__encoder_z_input__dig_fltr__enable = 8709 da_qmx_ci__encoder_z_input__dig_fltr__min_pulse_width = 8710 da_qmx_ci__encoder_z_input__dig_fltr__timebase_src = 8711 da_qmx_ci__encoder_z_input__dig_fltr__timebase_rate = 8712 da_qmx_ci__encoder_z_input__dig_sync__enable = 8713 da_qmx_ci__encoder_z_index_enable = 2192 da_qmx_ci__encoder_z_index_val = 2184 da_qmx_ci__encoder_z_index_phase = 2185 da_qmx_ci__pulse_width__units = 2083 da_qmx_ci__pulse_width__term = 6314 da_qmx_ci__pulse_width__starting_edge = 2085 da_qmx_ci__pulse_width__dig_fltr__enable = 8714 da_qmx_ci__pulse_width__dig_fltr__min_pulse_width = 8715 da_qmx_ci__pulse_width__dig_fltr__timebase_src = 8716 da_qmx_ci__pulse_width__dig_fltr__timebase_rate = 8717 da_qmx_ci__pulse_width__dig_sync__enable = 8718 da_qmx_ci__two_edge_sep__units = 6316 da_qmx_ci__two_edge_sep__first_term = 6317 da_qmx_ci__two_edge_sep__first_edge = 2099 da_qmx_ci__two_edge_sep__first__dig_fltr__enable = 8719 da_qmx_ci__two_edge_sep__first__dig_fltr__min_pulse_width = 8720 da_qmx_ci__two_edge_sep__first__dig_fltr__timebase_src = 8721 da_qmx_ci__two_edge_sep__first__dig_fltr__timebase_rate = 8722 da_qmx_ci__two_edge_sep__first__dig_sync__enable = 8723 da_qmx_ci__two_edge_sep__second_term = 6318 da_qmx_ci__two_edge_sep__second_edge = 2100 da_qmx_ci__two_edge_sep__second__dig_fltr__enable = 8724 da_qmx_ci__two_edge_sep__second__dig_fltr__min_pulse_width = 8725 da_qmx_ci__two_edge_sep__second__dig_fltr__timebase_src = 8726 da_qmx_ci__two_edge_sep__second__dig_fltr__timebase_rate = 8727 da_qmx_ci__two_edge_sep__second__dig_sync__enable = 8728 da_qmx_ci__semi_period__units = 6319 da_qmx_ci__semi_period__term = 6320 da_qmx_ci__semi_period__starting_edge = 8958 da_qmx_ci__semi_period__dig_fltr__enable = 8729 da_qmx_ci__semi_period__dig_fltr__min_pulse_width = 8730 da_qmx_ci__semi_period__dig_fltr__timebase_src = 8731 da_qmx_ci__semi_period__dig_fltr__timebase_rate = 8732 da_qmx_ci__semi_period__dig_sync__enable = 8733 da_qmx_ci__pulse__freq__units = 12043 da_qmx_ci__pulse__freq__term = 12036 da_qmx_ci__pulse__freq__start__edge = 12037 da_qmx_ci__pulse__freq__dig_fltr__enable = 12038 da_qmx_ci__pulse__freq__dig_fltr__min_pulse_width = 12039 da_qmx_ci__pulse__freq__dig_fltr__timebase_src = 12040 da_qmx_ci__pulse__freq__dig_fltr__timebase_rate = 12041 da_qmx_ci__pulse__freq__dig_sync__enable = 12042 da_qmx_ci__pulse__time__units = 12051 da_qmx_ci__pulse__time__term = 12044 da_qmx_ci__pulse__time__start_edge = 12045 da_qmx_ci__pulse__time__dig_fltr__enable = 12046 da_qmx_ci__pulse__time__dig_fltr__min_pulse_width = 12047 da_qmx_ci__pulse__time__dig_fltr__timebase_src = 12048 da_qmx_ci__pulse__time__dig_fltr__timebase_rate = 12049 da_qmx_ci__pulse__time__dig_sync__enable = 12050 da_qmx_ci__pulse__ticks__term = 12052 da_qmx_ci__pulse__ticks__start_edge = 12053 da_qmx_ci__pulse__ticks__dig_fltr__enable = 12054 da_qmx_ci__pulse__ticks__dig_fltr__min_pulse_width = 12055 da_qmx_ci__pulse__ticks__dig_fltr__timebase_src = 12056 da_qmx_ci__pulse__ticks__dig_fltr__timebase_rate = 12057 da_qmx_ci__pulse__ticks__dig_sync__enable = 12058 da_qmx_ci__timestamp__units = 8883 da_qmx_ci__timestamp__initial_seconds = 8884 da_qmx_ci_gps__sync_method = 4242 da_qmx_ci_gps__sync_src = 4243 da_qmx_ci__ctr_timebase_src = 323 da_qmx_ci__ctr_timebase_rate = 6322 da_qmx_ci__ctr_timebase_active_edge = 322 da_qmx_ci__ctr_timebase__dig_fltr__enable = 8817 da_qmx_ci__ctr_timebase__dig_fltr__min_pulse_width = 8818 da_qmx_ci__ctr_timebase__dig_fltr__timebase_src = 8819 da_qmx_ci__ctr_timebase__dig_fltr__timebase_rate = 8820 da_qmx_ci__ctr_timebase__dig_sync__enable = 8821 da_qmx_ci__count = 328 da_qmx_ci__output_state = 329 da_qmx_ci_tc_reached = 336 da_qmx_ci__ctr_timebase_master_timebase_div = 6323 da_qmx_ci__data_xfer_mech = 512 da_qmx_ci__data_xfer_req_cond = 12027 da_qmx_ci__usb_xfer_req_size = 10898 da_qmx_ci__mem_map_enable = 11986 da_qmx_ci__num_possibly_invalid_samps = 6460 da_qmx_ci__dup_count_prevent = 8620 da_qmx_ci__prescaler = 8761 da_qmx_co__output_type = 6325 da_qmx_co__pulse__idle_state = 4464 da_qmx_co__pulse__term = 6369 da_qmx_co__pulse__time__units = 6358 da_qmx_co__pulse__high_time = 6330 da_qmx_co__pulse__low_time = 6331 da_qmx_co__pulse__time__initial_delay = 6332 da_qmx_co__pulse__duty_cyc = 4470 da_qmx_co__pulse__freq__units = 6357 da_qmx_co__pulse__freq = 4472 da_qmx_co__pulse__freq__initial_delay = 665 da_qmx_co__pulse__high_ticks = 4457 da_qmx_co__pulse__low_ticks = 4465 da_qmx_co__pulse__ticks__initial_delay = 664 da_qmx_co__ctr_timebase_src = 825 da_qmx_co__ctr_timebase_rate = 6338 da_qmx_co__ctr_timebase_active_edge = 833 da_qmx_co__ctr_timebase__dig_fltr__enable = 8822 da_qmx_co__ctr_timebase__dig_fltr__min_pulse_width = 8823 da_qmx_co__ctr_timebase__dig_fltr__timebase_src = 8824 da_qmx_co__ctr_timebase__dig_fltr__timebase_rate = 8825 da_qmx_co__ctr_timebase__dig_sync__enable = 8826 da_qmx_co__count = 659 da_qmx_co__output_state = 660 da_qmx_co__auto_incr_cnt = 661 da_qmx_co__ctr_timebase_master_timebase_div = 6339 da_qmx_co__pulse_done = 6414 da_qmx_co__enable_initial_delay_on_retrigger = 11977 da_qmx_co__constrained_gen_mode = 10738 da_qmx_co__use_only_on_brd_mem = 11979 da_qmx_co__data_xfer_mech = 11980 da_qmx_co__data_xfer_req_cond = 11981 da_qmx_co__usb_xfer_req_size = 10899 da_qmx_co__mem_map_enable = 11987 da_qmx_co__prescaler = 8813 da_qmx_co__rdy_for_new_val = 8959 da_qmx__chan_type = 6271 da_qmx__physical_chan_name = 6389 da_qmx__chan_descr = 6438 da_qmx__chan_is_global = 8964 da_qmx__exported_ai_conv_clk__output_term = 5767 da_qmx__exported_ai_conv_clk__pulse__polarity = 5768 da_qmx__exported_10_m_hz_ref_clk__output_term = 8814 da_qmx__exported_20_m_hz_timebase__output_term = 5719 da_qmx__exported__samp_clk__output_behavior = 6251 da_qmx__exported__samp_clk__output_term = 5731 da_qmx__exported__samp_clk__delay_offset = 8644 da_qmx__exported__samp_clk__pulse__polarity = 5732 da_qmx__exported__samp_clk_timebase__output_term = 6393 da_qmx__exported__divided_samp_clk_timebase__output_term = 8609 da_qmx__exported__adv_trig__output_term = 5701 da_qmx__exported__adv_trig__pulse__polarity = 5702 da_qmx__exported__adv_trig__pulse__width_units = 5703 da_qmx__exported__adv_trig__pulse__width = 5704 da_qmx__exported__pause_trig__output_term = 5653 da_qmx__exported__pause_trig__lvl__active_lvl = 5654 da_qmx__exported__ref_trig__output_term = 1424 da_qmx__exported__ref_trig__pulse__polarity = 1425 da_qmx__exported__start_trig__output_term = 1412 da_qmx__exported__start_trig__pulse__polarity = 1413 da_qmx__exported__adv_cmplt_event__output_term = 5713 da_qmx__exported__adv_cmplt_event__delay = 5975 da_qmx__exported__adv_cmplt_event__pulse__polarity = 5714 da_qmx__exported__adv_cmplt_event__pulse__width = 5716 da_qmx__exported_ai_hold_cmplt_event__output_term = 6381 da_qmx__exported_ai_hold_cmplt_event__pulse_polarity = 6382 da_qmx__exported__change_detect_event__output_term = 8599 da_qmx__exported__change_detect_event__pulse__polarity = 8963 da_qmx__exported__ctr_out_event__output_term = 5911 da_qmx__exported__ctr_out_event__output_behavior = 5967 da_qmx__exported__ctr_out_event__pulse__polarity = 5912 da_qmx__exported__ctr_out_event__toggle__idle_state = 6250 da_qmx__exported__hshk_event__output_term = 8890 da_qmx__exported__hshk_event__output_behavior = 8891 da_qmx__exported__hshk_event__delay = 8892 da_qmx__exported__hshk_event__interlocked__asserted_lvl = 8893 da_qmx__exported__hshk_event__interlocked__assert_on_start = 8894 da_qmx__exported__hshk_event__interlocked__deassert_delay = 8895 da_qmx__exported__hshk_event__pulse__polarity = 8896 da_qmx__exported__hshk_event__pulse__width = 8897 da_qmx__exported__rdy_for_xfer_event__output_term = 8885 da_qmx__exported__rdy_for_xfer_event__lvl__active_lvl = 8886 da_qmx__exported__rdy_for_xfer_event__deassert_cond = 10595 da_qmx__exported__rdy_for_xfer_event__deassert_cond_custom_threshold = 10596 da_qmx__exported__data_active_event__output_term = 5683 da_qmx__exported__data_active_event__lvl__active_lvl = 5684 da_qmx__exported__rdy_for_start_event__output_term = 5641 da_qmx__exported__rdy_for_start_event__lvl__active_lvl = 5969 da_qmx__exported__sync_pulse_event__output_term = 8764 da_qmx__exported__watchdog_expired_event__output_term = 8618 da_qmx__dev__is_simulated = 8906 da_qmx__dev__product_category = 10665 da_qmx__dev__product_type = 1585 da_qmx__dev__product_num = 8989 da_qmx__dev__serial_num = 1586 da_qmx__carrier__serial_num = 10890 da_qmx__dev__chassis__module_dev_names = 10678 da_qmx__dev__anlg_trig_supported = 10628 da_qmx__dev__dig_trig_supported = 10629 da_qmx__dev_ai__physical_chans = 8990 da_qmx__dev_ai__max_single_chan_rate = 10636 da_qmx__dev_ai__max_multi_chan_rate = 10637 da_qmx__dev_ai__min_rate = 10638 da_qmx__dev_ai__simultaneous_sampling_supported = 10639 da_qmx__dev_ai__trig_usage = 10630 da_qmx__dev_ai__voltage_rngs = 10640 da_qmx__dev_ai__voltage_int_excit_discrete_vals = 10697 da_qmx__dev_ai__voltage_int_excit_range_vals = 10698 da_qmx__dev_ai__current_rngs = 10641 da_qmx__dev_ai__current_int_excit_discrete_vals = 10699 da_qmx__dev_ai__freq_rngs = 10642 da_qmx__dev_ai__gains = 10643 da_qmx__dev_ai__couplings = 10644 da_qmx__dev_ai__lowpass_cutoff_freq_discrete_vals = 10645 da_qmx__dev_ai__lowpass_cutoff_freq_range_vals = 10703 da_qmx__dev_ao__physical_chans = 8991 da_qmx__dev_ao__samp_clk_supported = 10646 da_qmx__dev_ao__max_rate = 10647 da_qmx__dev_ao__min_rate = 10648 da_qmx__dev_ao__trig_usage = 10631 da_qmx__dev_ao__voltage_rngs = 10651 da_qmx__dev_ao__current_rngs = 10652 da_qmx__dev_ao__gains = 10653 da_qmx__dev_di__lines = 8992 da_qmx__dev_di__ports = 8993 da_qmx__dev_di__max_rate = 10649 da_qmx__dev_di__trig_usage = 10632 da_qmx__dev_do__lines = 8994 da_qmx__dev_do__ports = 8995 da_qmx__dev_do__max_rate = 10650 da_qmx__dev_do__trig_usage = 10633 da_qmx__dev_ci__physical_chans = 8996 da_qmx__dev_ci__trig_usage = 10634 da_qmx__dev_ci__samp_clk_supported = 10654 da_qmx__dev_ci__max_size = 10655 da_qmx__dev_ci__max_timebase = 10656 da_qmx__dev_co__physical_chans = 8997 da_qmx__dev_co__trig_usage = 10635 da_qmx__dev_co__max_size = 10657 da_qmx__dev_co__max_timebase = 10658 da_qmx__dev__num_dma_chans = 9020 da_qmx__dev__bus_type = 8998 da_qmx__dev_pci__bus_num = 8999 da_qmx__dev_pci__dev_num = 9000 da_qmx__dev_pxi__chassis_num = 9001 da_qmx__dev_pxi__slot_num = 9002 da_qmx__dev__compact_daq__chassis_dev_name = 10679 da_qmx__dev__compact_daq__slot_num = 10680 da_qmx__dev_tcpip__hostname = 10891 da_qmx__dev_tcpip__ethernet_ip = 10892 da_qmx__dev_tcpip__wireless_ip = 10893 da_qmx__dev__terminals = 10816 da_qmx__read__relative_to = 6410 da_qmx__read__offset = 6411 da_qmx__read__channels_to_read = 6179 da_qmx__read__read_all_avail_samp = 4629 da_qmx__read__auto_start = 6182 da_qmx__read__over_write = 4625 da_qmx__read__curr_read_pos = 4641 da_qmx__read__avail_samp_per_chan = 4643 da_qmx__logging__file_path = 11972 da_qmx__logging__mode = 11973 da_qmx__logging_tdms__group_name = 11974 da_qmx__logging_tdms__operation = 11975 da_qmx__read__total_samp_per_chan_acquired = 6442 da_qmx__read__common_mode_range_error_chans_exist = 10904 da_qmx__read__common_mode_range_error_chans = 10905 da_qmx__read__overcurrent_chans_exist = 10726 da_qmx__read__overcurrent_chans = 10727 da_qmx__read__open_current_loop_chans_exist = 10761 da_qmx__read__open_current_loop_chans = 10762 da_qmx__read__open_thrmcpl_chans_exist = 10902 da_qmx__read__open_thrmcpl_chans = 10903 da_qmx__read__overloaded_chans_exist = 8564 da_qmx__read__overloaded_chans = 8565 da_qmx__read__change_detect__has_overflowed = 8596 da_qmx__read__raw_data_width = 8570 da_qmx__read__num_chans = 8571 da_qmx__read__digital_lines__bytes_per_chan = 8572 da_qmx__read__wait_mode = 8754 da_qmx__read__sleep_time = 8880 da_qmx__real_time__conv_late_errors_to_warnings = 8942 da_qmx__real_time__num_of_warmup_iters = 8941 da_qmx__real_time__wait_for_next_samp_clk_wait_mode = 8943 da_qmx__real_time__report_missed_samp = 8985 da_qmx__real_time__write_recovery_mode = 8986 da_qmx__switch_chan__usage = 6372 da_qmx__switch_chan__max_ac_carry_current = 1608 da_qmx__switch_chan__max_ac_switch_current = 1606 da_qmx__switch_chan__max_ac_carry_pwr = 1602 da_qmx__switch_chan__max_ac_switch_pwr = 1604 da_qmx__switch_chan__max_dc_carry_current = 1607 da_qmx__switch_chan__max_dc_switch_current = 1605 da_qmx__switch_chan__max_dc_carry_pwr = 1603 da_qmx__switch_chan__max_dc_switch_pwr = 1609 da_qmx__switch_chan__max_ac_voltage = 1617 da_qmx__switch_chan__max_dc_voltage = 1616 da_qmx__switch_chan__wire_mode = 6373 da_qmx__switch_chan__bandwidth = 1600 da_qmx__switch_chan__impedance = 1601 da_qmx__switch_dev__settling_time = 4676 da_qmx__switch_dev__auto_conn_anlg_bus = 6106 da_qmx__switch_dev__pwr_down_latch_relays_after_settling = 8923 da_qmx__switch_dev__settled = 4675 da_qmx__switch_dev__relay_list = 6108 da_qmx__switch_dev__num_relays = 6374 da_qmx__switch_dev__switch_chan_list = 6375 da_qmx__switch_dev__num_switch_chans = 6376 da_qmx__switch_dev__num_rows = 6377 da_qmx__switch_dev__num_columns = 6378 da_qmx__switch_dev__topology = 6461 da_qmx__switch_scan__break_mode = 4679 da_qmx__switch_scan__repeat_mode = 4680 da_qmx__switch_scan__waiting_for_adv = 6105 da_qmx__scale__descr = 4646 da_qmx__scale__scaled_units = 6427 da_qmx__scale__pre_scaled_units = 6391 da_qmx__scale__type = 6441 da_qmx__scale__lin__slope = 4647 da_qmx__scale__lin_y_intercept = 4648 da_qmx__scale__map__scaled_max = 4649 da_qmx__scale__map__pre_scaled_max = 4657 da_qmx__scale__map__scaled_min = 4656 da_qmx__scale__map__pre_scaled_min = 4658 da_qmx__scale__poly__forward_coeff = 4660 da_qmx__scale__poly__reverse_coeff = 4661 da_qmx__scale__table__scaled_vals = 4662 da_qmx__scale__table__pre_scaled_vals = 4663 da_qmx__sys__global_chans = 4709 da_qmx__sys__scales = 4710 da_qmx__sys__tasks = 4711 da_qmx__sys__dev_names = 6459 da_qmx__sys_nidaq_major_version = 4722 da_qmx__sys_nidaq_minor_version = 6435 da_qmx__sys_nidaq_update_version = 12066 da_qmx__task__name = 4726 da_qmx__task__channels = 4723 da_qmx__task__num_chans = 8577 da_qmx__task__devices = 8974 da_qmx__task__num_devices = 10682 da_qmx__task__complete = 4724 da_qmx__samp_quant__samp_mode = 4864 da_qmx__samp_quant__samp_per_chan = 4880 da_qmx__samp_timing_type = 4935 da_qmx__samp_clk__rate = 4932 da_qmx__samp_clk__max_rate = 8904 da_qmx__samp_clk__src = 6226 da_qmx__samp_clk__active_edge = 4865 da_qmx__samp_clk__overrun_behavior = 12028 da_qmx__samp_clk__underflow_behavior = 10593 da_qmx__samp_clk__timebase_div = 6379 da_qmx__samp_clk__term = 12059 da_qmx__samp_clk__timebase__rate = 4867 da_qmx__samp_clk__timebase__src = 4872 da_qmx__samp_clk__timebase__active_edge = 6380 da_qmx__samp_clk__timebase__master_timebase_div = 4869 da_qmx__samp_clk_timebase__term = 12060 da_qmx__samp_clk__dig_fltr__enable = 8734 da_qmx__samp_clk__dig_fltr__min_pulse_width = 8735 da_qmx__samp_clk__dig_fltr__timebase_src = 8736 da_qmx__samp_clk__dig_fltr__timebase_rate = 8737 da_qmx__samp_clk__dig_sync__enable = 8738 da_qmx__hshk__delay_after_xfer = 8898 da_qmx__hshk__start_cond = 8899 da_qmx__hshk__sample_input_data_when = 8900 da_qmx__change_detect_di__rising_edge_physical_chans = 8597 da_qmx__change_detect_di__falling_edge_physical_chans = 8598 da_qmx__change_detect_di__tristate = 12026 da_qmx__on_demand__simultaneous_ao_enable = 8608 da_qmx__implicit__underflow_behavior = 12029 da_qmx_ai_conv__rate = 6216 da_qmx_ai_conv__max_rate = 8905 da_qmx_ai_conv__src = 5378 da_qmx_ai_conv__active_edge = 6227 da_qmx_ai_conv__timebase_div = 4917 da_qmx_ai_conv__timebase__src = 4921 da_qmx__delay_from_samp_clk__delay_units = 4868 da_qmx__delay_from_samp_clk__delay = 4887 da_qmx_ai_conv__dig_fltr__enable = 11996 da_qmx_ai_conv__dig_fltr__min_pulse_width = 11997 da_qmx_ai_conv__dig_fltr__timebase_src = 11998 da_qmx_ai_conv__dig_fltr__timebase_rate = 11999 da_qmx_ai_conv__dig_sync__enable = 12000 da_qmx__master_timebase__rate = 5269 da_qmx__master_timebase__src = 4931 da_qmx__ref_clk__rate = 4885 da_qmx__ref_clk__src = 4886 da_qmx__sync_pulse__src = 8765 da_qmx__sync_pulse__sync_time = 8766 da_qmx__sync_pulse__min_delay_to_start = 8767 da_qmx__samp_timing_engine = 10790 da_qmx__start_trig__type = 5011 da_qmx__start_trig__term = 12062 da_qmx__dig_edge__start_trig__src = 5127 da_qmx__dig_edge__start_trig__edge = 5124 da_qmx__dig_edge__start_trig__dig_fltr__enable = 8739 da_qmx__dig_edge__start_trig__dig_fltr__min_pulse_width = 8740 da_qmx__dig_edge__start_trig__dig_fltr__timebase_src = 8741 da_qmx__dig_edge__start_trig__dig_fltr__timebase_rate = 8742 da_qmx__dig_edge__start_trig__dig_sync__enable = 8743 da_qmx__dig_pattern__start_trig__src = 5136 da_qmx__dig_pattern__start_trig__pattern = 8582 da_qmx__dig_pattern__start_trig__when = 5137 da_qmx__anlg_edge__start_trig__src = 5016 da_qmx__anlg_edge__start_trig__slope = 5015 da_qmx__anlg_edge__start_trig__lvl = 5014 da_qmx__anlg_edge__start_trig__hyst = 5013 da_qmx__anlg_edge__start_trig__coupling = 8755 da_qmx__anlg_edge__start_trig__dig_fltr__enable = 12001 da_qmx__anlg_edge__start_trig__dig_fltr__min_pulse_width = 12002 da_qmx__anlg_edge__start_trig__dig_fltr__timebase_src = 12003 da_qmx__anlg_edge__start_trig__dig_fltr__timebase_rate = 12004 da_qmx__anlg_edge__start_trig__dig_sync__enable = 12005 da_qmx__anlg_win__start_trig__src = 5120 da_qmx__anlg_win__start_trig__when = 5121 da_qmx__anlg_win__start_trig__top = 5123 da_qmx__anlg_win__start_trig__btm = 5122 da_qmx__anlg_win__start_trig__coupling = 8756 da_qmx__anlg_win__start_trig__dig_fltr__enable = 12031 da_qmx__anlg_win__start_trig__dig_fltr__min_pulse_width = 12032 da_qmx__anlg_win__start_trig__dig_fltr__timebase_src = 12033 da_qmx__anlg_win__start_trig__dig_fltr__timebase_rate = 12034 da_qmx__anlg_win__start_trig__dig_sync__enable = 12035 da_qmx__start_trig__delay = 6230 da_qmx__start_trig__delay_units = 6344 da_qmx__start_trig__retriggerable = 6415 da_qmx__ref_trig__type = 5145 da_qmx__ref_trig__pretrig_samples = 5189 da_qmx__ref_trig__term = 12063 da_qmx__dig_edge__ref_trig__src = 5172 da_qmx__dig_edge__ref_trig__edge = 5168 da_qmx__dig_edge__ref_trig__dig_fltr__enable = 11991 da_qmx__dig_edge__ref_trig__dig_fltr__min_pulse_width = 11992 da_qmx__dig_edge__ref_trig__dig_fltr__timebase_src = 11993 da_qmx__dig_edge__ref_trig__dig_fltr__timebase_rate = 11994 da_qmx__dig_edge__ref_trig__dig_sync__enable = 11995 da_qmx__dig_pattern__ref_trig__src = 5175 da_qmx__dig_pattern__ref_trig__pattern = 8583 da_qmx__dig_pattern__ref_trig__when = 5176 da_qmx__anlg_edge__ref_trig__src = 5156 da_qmx__anlg_edge__ref_trig__slope = 5155 da_qmx__anlg_edge__ref_trig__lvl = 5154 da_qmx__anlg_edge__ref_trig__hyst = 5153 da_qmx__anlg_edge__ref_trig__coupling = 8757 da_qmx__anlg_edge__ref_trig__dig_fltr__enable = 12006 da_qmx__anlg_edge__ref_trig__dig_fltr__min_pulse_width = 12007 da_qmx__anlg_edge__ref_trig__dig_fltr__timebase_src = 12008 da_qmx__anlg_edge__ref_trig__dig_fltr__timebase_rate = 12009 da_qmx__anlg_edge__ref_trig__dig_sync__enable = 12010 da_qmx__anlg_win__ref_trig__src = 5158 da_qmx__anlg_win__ref_trig__when = 5159 da_qmx__anlg_win__ref_trig__top = 5161 da_qmx__anlg_win__ref_trig__btm = 5160 da_qmx__anlg_win__ref_trig__coupling = 6231 da_qmx__anlg_win__ref_trig__dig_fltr__enable = 12011 da_qmx__anlg_win__ref_trig__dig_fltr__min_pulse_width = 12012 da_qmx__anlg_win__ref_trig__dig_fltr__timebase_src = 12013 da_qmx__anlg_win__ref_trig__dig_fltr__timebase_rate = 12014 da_qmx__anlg_win__ref_trig__dig_sync__enable = 12015 da_qmx__ref_trig__auto_trig_enable = 11969 da_qmx__ref_trig__auto_triggered = 11970 da_qmx__adv_trig__type = 4965 da_qmx__dig_edge__adv_trig__src = 4962 da_qmx__dig_edge__adv_trig__edge = 4960 da_qmx__dig_edge__adv_trig__dig_fltr__enable = 8760 da_qmx__hshk_trig__type = 8887 da_qmx__interlocked__hshk_trig__src = 8888 da_qmx__interlocked__hshk_trig__asserted_lvl = 8889 da_qmx__pause_trig__type = 4966 da_qmx__pause_trig__term = 12064 da_qmx__anlg_lvl__pause_trig__src = 4976 da_qmx__anlg_lvl__pause_trig__when = 4977 da_qmx__anlg_lvl__pause_trig__lvl = 4969 da_qmx__anlg_lvl__pause_trig__hyst = 4968 da_qmx__anlg_lvl__pause_trig__coupling = 8758 da_qmx__anlg_lvl__pause_trig__dig_fltr__enable = 12016 da_qmx__anlg_lvl__pause_trig__dig_fltr__min_pulse_width = 12017 da_qmx__anlg_lvl__pause_trig__dig_fltr__timebase_src = 12018 da_qmx__anlg_lvl__pause_trig__dig_fltr__timebase_rate = 12019 da_qmx__anlg_lvl__pause_trig__dig_sync__enable = 12020 da_qmx__anlg_win__pause_trig__src = 4979 da_qmx__anlg_win__pause_trig__when = 4980 da_qmx__anlg_win__pause_trig__top = 4982 da_qmx__anlg_win__pause_trig__btm = 4981 da_qmx__anlg_win__pause_trig__coupling = 8759 da_qmx__anlg_win__pause_trig__dig_fltr__enable = 12021 da_qmx__anlg_win__pause_trig__dig_fltr__min_pulse_width = 12022 da_qmx__anlg_win__pause_trig__dig_fltr__timebase_src = 12023 da_qmx__anlg_win__pause_trig__dig_fltr__timebase_rate = 12024 da_qmx__anlg_win__pause_trig__dig_sync__enable = 12025 da_qmx__dig_lvl__pause_trig__src = 4985 da_qmx__dig_lvl__pause_trig__when = 4992 da_qmx__dig_lvl__pause_trig__dig_fltr__enable = 8744 da_qmx__dig_lvl__pause_trig__dig_fltr__min_pulse_width = 8745 da_qmx__dig_lvl__pause_trig__dig_fltr__timebase_src = 8746 da_qmx__dig_lvl__pause_trig__dig_fltr__timebase_rate = 8747 da_qmx__dig_lvl__pause_trig__dig_sync__enable = 8748 da_qmx__dig_pattern__pause_trig__src = 8559 da_qmx__dig_pattern__pause_trig__pattern = 8584 da_qmx__dig_pattern__pause_trig__when = 8560 da_qmx__arm_start_trig__type = 5140 da_qmx__dig_edge__arm_start_trig__src = 5143 da_qmx__dig_edge__arm_start_trig__edge = 5141 da_qmx__dig_edge__arm_start_trig__dig_fltr__enable = 8749 da_qmx__dig_edge__arm_start_trig__dig_fltr__min_pulse_width = 8750 da_qmx__dig_edge__arm_start_trig__dig_fltr__timebase_src = 8751 da_qmx__dig_edge__arm_start_trig__dig_fltr__timebase_rate = 8752 da_qmx__dig_edge__arm_start_trig__dig_sync__enable = 8753 da_qmx__watchdog__timeout = 8617 da_qmx__watchdog_expir_trig__type = 8611 da_qmx__dig_edge__watchdog_expir_trig__src = 8612 da_qmx__dig_edge__watchdog_expir_trig__edge = 8613 da_qmx__watchdog_do__expir_state = 8615 da_qmx__watchdog__has_expired = 8616 da_qmx__write__relative_to = 6412 da_qmx__write__offset = 6413 da_qmx__write__regen_mode = 5203 da_qmx__write__curr_write_pos = 5208 da_qmx__write__overcurrent_chans_exist = 10728 da_qmx__write__overcurrent_chans = 10729 da_qmx__write__overtemperature_chans_exist = 10884 da_qmx__write__open_current_loop_chans_exist = 10730 da_qmx__write__open_current_loop_chans = 10731 da_qmx__write__power_supply_fault_chans_exist = 10732 da_qmx__write__power_supply_fault_chans = 10733 da_qmx__write__space_avail = 5216 da_qmx__write__total_samp_per_chan_generated = 6443 da_qmx__write__raw_data_width = 8573 da_qmx__write__num_chans = 8574 da_qmx__write__wait_mode = 8881 da_qmx__write__sleep_time = 8882 da_qmx__write__next_write_is_last = 10604 da_qmx__write__digital_lines__bytes_per_chan = 8575 da_qmx__physical_chan_ai__term_cfgs = 9026 da_qmx__physical_chan_ao__term_cfgs = 10659 da_qmx__physical_chan_ao__manual_control_enable = 10782 da_qmx__physical_chan_ao__manual_control__short_detected = 11971 da_qmx__physical_chan_ao__manual_control_amplitude = 10783 da_qmx__physical_chan_ao__manual_control_freq = 10784 da_qmx__physical_chan_di__port_width = 10660 da_qmx__physical_chan_di__samp_clk_supported = 10661 da_qmx__physical_chan_di__change_detect_supported = 10662 da_qmx__physical_chan_do__port_width = 10663 da_qmx__physical_chan_do__samp_clk_supported = 10664 da_qmx__physical_chan_teds__mfg_id = 8666 da_qmx__physical_chan_teds__model_num = 8667 da_qmx__physical_chan_teds__serial_num = 8668 da_qmx__physical_chan_teds__version_num = 8669 da_qmx__physical_chan_teds__version_letter = 8670 da_qmx__physical_chan_teds__bit_stream = 8671 da_qmx__physical_chan_teds__template_i_ds = 8847 da_qmx__persisted_task__author = 8908 da_qmx__persisted_task__allow_interactive_editing = 8909 da_qmx__persisted_task__allow_interactive_deletion = 8910 da_qmx__persisted_chan__author = 8912 da_qmx__persisted_chan__allow_interactive_editing = 8913 da_qmx__persisted_chan__allow_interactive_deletion = 8914 da_qmx__persisted_scale__author = 8916 da_qmx__persisted_scale__allow_interactive_editing = 8917 da_qmx__persisted_scale__allow_interactive_deletion = 8918 da_qmx__read_wait_mode = DAQmx_Read_WaitMode da_qmx__val__task__start = 0 da_qmx__val__task__stop = 1 da_qmx__val__task__verify = 2 da_qmx__val__task__commit = 3 da_qmx__val__task__reserve = 4 da_qmx__val__task__unreserve = 5 da_qmx__val__task__abort = 6 da_qmx__val__synchronous_event_callbacks = 1 << 0 da_qmx__val__acquired__into__buffer = 1 da_qmx__val__transferred__from__buffer = 2 da_qmx__val__reset_timer = 0 da_qmx__val__clear_expiration = 1 da_qmx__val__chan_per_line = 0 da_qmx__val__chan_for_all_lines = 1 da_qmx__val__group_by_channel = 0 da_qmx__val__group_by_scan_number = 1 da_qmx__val__do_not_invert_polarity = 0 da_qmx__val__invert_polarity = 1 da_qmx__val__action__commit = 0 da_qmx__val__action__cancel = 1 da_qmx__val__advance_trigger = 12488 da_qmx__val__rising = 10280 da_qmx__val__falling = 10171 da_qmx__val__path_status__available = 10431 da_qmx__val__path_status__already_exists = 10432 da_qmx__val__path_status__unsupported = 10433 da_qmx__val__path_status__channel_in_use = 10434 da_qmx__val__path_status__source_channel_conflict = 10435 da_qmx__val__path_status__channel_reserved_for_routing = 10436 da_qmx__val__deg_c = 10143 da_qmx__val__deg_f = 10144 da_qmx__val__kelvins = 10325 da_qmx__val__deg_r = 10145 da_qmx__val__high = 10192 da_qmx__val__low = 10214 da_qmx__val__tristate = 10310 da_qmx__val__channel_voltage = 0 da_qmx__val__channel_current = 1 da_qmx__val__open = 10437 da_qmx__val__closed = 10438 da_qmx__val__loopback0 = 0 da_qmx__val__loopback180 = 1 da_qmx__val__ground = 2 da_qmx__val__cfg__default = -1 da_qmx__val__default = -1 da_qmx__val__wait_infinitely = -1.0 da_qmx__val__auto = -1 da_qmx__val__save__overwrite = 1 << 0 da_qmx__val__save__allow_interactive_editing = 1 << 1 da_qmx__val__save__allow_interactive_deletion = 1 << 2 da_qmx__val__bit__trigger_usage_types__advance = 1 << 0 da_qmx__val__bit__trigger_usage_types__pause = 1 << 1 da_qmx__val__bit__trigger_usage_types__reference = 1 << 2 da_qmx__val__bit__trigger_usage_types__start = 1 << 3 da_qmx__val__bit__trigger_usage_types__handshake = 1 << 4 da_qmx__val__bit__trigger_usage_types__arm_start = 1 << 5 da_qmx__val__bit__coupling_types_ac = 1 << 0 da_qmx__val__bit__coupling_types_dc = 1 << 1 da_qmx__val__bit__coupling_types__ground = 1 << 2 da_qmx__val__bit__coupling_types_hf_reject = 1 << 3 da_qmx__val__bit__coupling_types_lf_reject = 1 << 4 da_qmx__val__bit__coupling_types__noise_reject = 1 << 5 da_qmx__val__bit__term_cfg_rse = 1 << 0 da_qmx__val__bit__term_cfg_nrse = 1 << 1 da_qmx__val__bit__term_cfg__diff = 1 << 2 da_qmx__val__bit__term_cfg__pseudo_diff = 1 << 3 da_qmx__val_4_wire = 4 da_qmx__val_5_wire = 5 da_qmx__val__high_resolution = 10195 da_qmx__val__high_speed = 14712 da_qmx__val__best50_hz_rejection = 14713 da_qmx__val__best60_hz_rejection = 14714 da_qmx__val__voltage = 10322 da_qmx__val__voltage_rms = 10350 da_qmx__val__current = 10134 da_qmx__val__current_rms = 10351 da_qmx__val__voltage__custom_with_excitation = 10323 da_qmx__val__freq__voltage = 10181 da_qmx__val__resistance = 10278 da_qmx__val__temp_tc = 10303 da_qmx__val__temp__thrmstr = 10302 da_qmx__val__temp_rtd = 10301 da_qmx__val__temp__built_in_sensor = 10311 da_qmx__val__strain__gage = 10300 da_qmx__val__position_lvdt = 10352 da_qmx__val__position_rvdt = 10353 da_qmx__val__position__eddy_current_proximity_probe = 14835 da_qmx__val__accelerometer = 10356 da_qmx__val__sound_pressure__microphone = 10354 da_qmx__val_teds__sensor = 12531 da_qmx__val__zero_volts = 12526 da_qmx__val__high_impedance = 12527 da_qmx__val__maintain_existing_value = 12528 da_qmx__val__voltage = 10322 da_qmx__val__current = 10134 da_qmx__val__func_gen = 14750 da_qmx__val_m_volts_per_g = 12509 da_qmx__val__volts_per_g = 12510 da_qmx__val__accel_unit_g = 10186 da_qmx__val__meters_per_second_squared = 12470 da_qmx__val__from_custom_scale = 10065 da_qmx__val__finite_samps = 10178 da_qmx__val__cont_samps = 10123 da_qmx__val_hw_timed_single_point = 12522 da_qmx__val__above_lvl = 10093 da_qmx__val__below_lvl = 10107 da_qmx__val__degrees = 10146 da_qmx__val__radians = 10273 da_qmx__val__from_custom_scale = 10065 da_qmx__val__degrees = 10146 da_qmx__val__radians = 10273 da_qmx__val__ticks = 10304 da_qmx__val__from_custom_scale = 10065 da_qmx__val__none = 10230 da_qmx__val__once = 10244 da_qmx__val__every_sample = 10164 da_qmx__val__no_action = 10227 da_qmx__val__break_before_make = 10110 da_qmx__val__full_bridge = 10182 da_qmx__val__half_bridge = 10187 da_qmx__val__quarter_bridge = 10270 da_qmx__val__no_bridge = 10228 da_qmx__val_pci = 12582 da_qmx__val_pc_ie = 13612 da_qmx__val_pxi = 12583 da_qmx__val_px_ie = 14706 da_qmx__val_scxi = 12584 da_qmx__val_scc = 14707 da_qmx__val_pc_card = 12585 da_qmx__val_usb = 12586 da_qmx__val__compact_daq = 14637 da_qmx__val_tcpip = 14828 da_qmx__val__unknown = 12588 da_qmx__val__count_edges = 10125 da_qmx__val__freq = 10179 da_qmx__val__period = 10256 da_qmx__val__pulse_width = 10359 da_qmx__val__semi_period = 10289 da_qmx__val__pulse_frequency = 15864 da_qmx__val__pulse_time = 15865 da_qmx__val__pulse_ticks = 15866 da_qmx__val__position__ang_encoder = 10360 da_qmx__val__position__lin_encoder = 10361 da_qmx__val__two_edge_sep = 10267 da_qmx__val_gps__timestamp = 10362 da_qmx__val__built_in = 10200 da_qmx__val__const_val = 10116 da_qmx__val__chan = 10113 da_qmx__val__pulse__time = 10269 da_qmx__val__pulse__freq = 10119 da_qmx__val__pulse__ticks = 10268 da_qmx__val_ai = 10100 da_qmx__val_ao = 10102 da_qmx__val_di = 10151 da_qmx__val_do = 10153 da_qmx__val_ci = 10131 da_qmx__val_co = 10132 da_qmx__val__unconstrained = 14708 da_qmx__val__fixed_high_freq = 14709 da_qmx__val__fixed_low_freq = 14710 da_qmx__val__fixed50_percent_duty_cycle = 14711 da_qmx__val__count_up = 10128 da_qmx__val__count_down = 10124 da_qmx__val__ext_controlled = 10326 da_qmx__val__low_freq1_ctr = 10105 da_qmx__val__high_freq2_ctr = 10157 da_qmx__val__large_rng2_ctr = 10205 da_qmx__val_ac = 10045 da_qmx__val_dc = 10050 da_qmx__val_gnd = 10066 da_qmx__val_ac = 10045 da_qmx__val_dc = 10050 da_qmx__val__internal = 10200 da_qmx__val__external = 10167 da_qmx__val__amps = 10342 da_qmx__val__from_custom_scale = 10065 da_qmx__val__from_teds = 12516 da_qmx__val__amps = 10342 da_qmx__val__from_custom_scale = 10065 da_qmx__val__right_justified = 10279 da_qmx__val__left_justified = 10209 da_qmx__val_dma = 10054 da_qmx__val__interrupts = 10204 da_qmx__val__programmed_io = 10264 da_qmx__val_us_bbulk = 12590 da_qmx__val__onbrd_mem_more_than_half_full = 10237 da_qmx__val__onbrd_mem_full = 10236 da_qmx__val__onbrd_mem_custom_threshold = 12577 da_qmx__val__active_drive = 12573 da_qmx__val__open_collector = 12574 da_qmx__val__high = 10192 da_qmx__val__low = 10214 da_qmx__val__tristate = 10310 da_qmx__val__no_change = 10160 da_qmx__val__pattern_matches = 10254 da_qmx__val__pattern_does_not_match = 10253 da_qmx__val__samp_clk_periods = 10286 da_qmx__val__seconds = 10364 da_qmx__val__ticks = 10304 da_qmx__val__seconds = 10364 da_qmx__val__ticks = 10304 da_qmx__val__seconds = 10364 da_qmx__val_m_volts_per_mil = 14836 da_qmx__val__volts_per_mil = 14837 da_qmx__val_m_volts_per_millimeter = 14838 da_qmx__val__volts_per_millimeter = 14839 da_qmx__val_m_volts_per_micron = 14840 da_qmx__val__rising = 10280 da_qmx__val__falling = 10171 da_qmx__val_x1 = 10090 da_qmx__val_x2 = 10091 da_qmx__val_x4 = 10092 da_qmx__val__two_pulse_counting = 10313 da_qmx__val_a_high_b_high = 10040 da_qmx__val_a_high_b_low = 10041 da_qmx__val_a_low_b_high = 10042 da_qmx__val_a_low_b_low = 10043 da_qmx__val_dc = 10050 da_qmx__val_ac = 10045 da_qmx__val__internal = 10200 da_qmx__val__external = 10167 da_qmx__val__none = 10230 da_qmx__val__voltage = 10322 da_qmx__val__current = 10134 da_qmx__val__pulse = 10265 da_qmx__val__toggle = 10307 da_qmx__val__pulse = 10265 da_qmx__val__lvl = 10210 da_qmx__val__interlocked = 12549 da_qmx__val__pulse = 10265 da_qmx__val__hz = 10373 da_qmx__val__from_custom_scale = 10065 da_qmx__val__hz = 10373 da_qmx__val__hz = 10373 da_qmx__val__ticks = 10304 da_qmx__val__from_custom_scale = 10065 da_qmx__val__sine = 14751 da_qmx__val__triangle = 14752 da_qmx__val__square = 14753 da_qmx__val__sawtooth = 14754 da_qmx__val_irigb = 10070 da_qmx__val_pps = 10080 da_qmx__val__none = 10230 da_qmx__val__immediate = 10198 da_qmx__val__wait_for_handshake_trigger_assert = 12550 da_qmx__val__wait_for_handshake_trigger_deassert = 12551 da_qmx__val__on_brd_mem_more_than_half_full = 10237 da_qmx__val__on_brd_mem_not_empty = 10241 da_qmx__val__onbrd_mem_custom_threshold = 12577 da_qmx__val__when_acq_complete = 12546 da_qmx__val_rse = 10083 da_qmx__val_nrse = 10078 da_qmx__val__diff = 10106 da_qmx__val__pseudo_diff = 12529 da_qmx__val_m_volts_per_volt_per_millimeter = 12506 da_qmx__val_m_volts_per_volt_per_milli_inch = 12505 da_qmx__val__meters = 10219 da_qmx__val__inches = 10379 da_qmx__val__from_custom_scale = 10065 da_qmx__val__meters = 10219 da_qmx__val__inches = 10379 da_qmx__val__ticks = 10304 da_qmx__val__from_custom_scale = 10065 da_qmx__val__high = 10192 da_qmx__val__low = 10214 da_qmx__val__off = 10231 da_qmx__val__log = 15844 da_qmx__val__log_and_read = 15842 da_qmx__val__open = 10437 da_qmx__val__open_or_create = 15846 da_qmx__val__create_or_replace = 15847 da_qmx__val__create = 15848 da_qmx__val_2point5_v = 14620 da_qmx__val_3point3_v = 14621 da_qmx__val_5_v = 14619 da_qmx__val__same_as_samp_timebase = 10284 da_qmx__val_100_m_hz_timebase = 15857 da_qmx__val__same_as_master_timebase = 10282 da_qmx__val_20_m_hz_timebase = 12537 da_qmx__val_80_m_hz_timebase = 14636 da_qmx__val_am = 14756 da_qmx__val_fm = 14757 da_qmx__val__none = 10230 da_qmx__val__on_brd_mem_empty = 10235 da_qmx__val__on_brd_mem_half_full_or_less = 10239 da_qmx__val__on_brd_mem_not_full = 10242 da_qmx__val_rse = 10083 da_qmx__val__diff = 10106 da_qmx__val__pseudo_diff = 12529 da_qmx__val__stop_task_and_error = 15862 da_qmx__val__ignore_overruns = 15863 da_qmx__val__overwrite_unread_samps = 10252 da_qmx__val__do_not_overwrite_unread_samps = 10159 da_qmx__val__active_high = 10095 da_qmx__val__active_low = 10096 da_qmx__val_m_series_daq = 14643 da_qmx__val_x_series_daq = 15858 da_qmx__val_e_series_daq = 14642 da_qmx__val_s_series_daq = 14644 da_qmx__val_b_series_daq = 14662 da_qmx__val_sc_series_daq = 14645 da_qmx__val_usbdaq = 14646 da_qmx__val_ao_series = 14647 da_qmx__val__digital_io = 14648 da_qmx__val_tio_series = 14661 da_qmx__val__dynamic_signal_acquisition = 14649 da_qmx__val__switches = 14650 da_qmx__val__compact_daq_chassis = 14658 da_qmx__val_c_series_module = 14659 da_qmx__val_scxi_module = 14660 da_qmx__val_scc_connector_block = 14704 da_qmx__val_scc_module = 14705 da_qmx__val_nielvis = 14755 da_qmx__val__network_daq = 14829 da_qmx__val__unknown = 12588 da_qmx__val__pt3750 = 12481 da_qmx__val__pt3851 = 10071 da_qmx__val__pt3911 = 12482 da_qmx__val__pt3916 = 10069 da_qmx__val__pt3920 = 10053 da_qmx__val__pt3928 = 12483 da_qmx__val__custom = 10137 da_qmx__val_m_volts_per_volt_per_degree = 12507 da_qmx__val_m_volts_per_volt_per_radian = 12508 da_qmx__val__none = 10230 da_qmx__val__lossless_packing = 12555 da_qmx__val__lossy_lsb_removal = 12556 da_qmx__val__first_sample = 10424 da_qmx__val__curr_read_pos = 10425 da_qmx__val__ref_trig = 10426 da_qmx__val__first_pretrig_samp = 10427 da_qmx__val__most_recent_samp = 10428 da_qmx__val__allow_regen = 10097 da_qmx__val__do_not_allow_regen = 10158 da_qmx__val_2_wire = 2 da_qmx__val_3_wire = 3 da_qmx__val_4_wire = 4 da_qmx__val__ohms = 10384 da_qmx__val__from_custom_scale = 10065 da_qmx__val__from_teds = 12516 da_qmx__val__ohms = 10384 da_qmx__val__from_custom_scale = 10065 da_qmx__val__bits = 10109 da_qmx__val_scxi1124_range0to1_v = 14629 da_qmx__val_scxi1124_range0to5_v = 14630 da_qmx__val_scxi1124_range0to10_v = 14631 da_qmx__val_scxi1124_range_neg1to1_v = 14632 da_qmx__val_scxi1124_range_neg5to5_v = 14633 da_qmx__val_scxi1124_range_neg10to10_v = 14634 da_qmx__val_scxi1124_range0to20m_a = 14635 da_qmx__val__samp_clk_active_edge = 14617 da_qmx__val__samp_clk_inactive_edge = 14618 da_qmx__val__handshake_trigger_asserts = 12552 da_qmx__val__handshake_trigger_deasserts = 12553 da_qmx__val__samp_clk = 10388 da_qmx__val__burst_handshake = 12548 da_qmx__val__handshake = 10389 da_qmx__val__implicit = 10451 da_qmx__val__on_demand = 10390 da_qmx__val__change_detection = 12504 da_qmx__val__pipelined_samp_clk = 14668 da_qmx__val__linear = 10447 da_qmx__val__map_ranges = 10448 da_qmx__val__polynomial = 10449 da_qmx__val__table = 10450 da_qmx__val__polynomial = 10449 da_qmx__val__table = 10450 da_qmx__val__polynomial = 10449 da_qmx__val__table = 10450 da_qmx__val__none = 10230 da_qmx__val_a = 12513 da_qmx__val_b = 12514 da_qmx__val__aand_b = 12515 da_qmx__val_r1 = 12465 da_qmx__val_r2 = 12466 da_qmx__val_r3 = 12467 da_qmx__val_r4 = 14813 da_qmx__val__none = 10230 da_qmx__val_ai_convert_clock = 12484 da_qmx__val_10_m_hz_ref_clock = 12536 da_qmx__val_20_m_hz_timebase_clock = 12486 da_qmx__val__sample_clock = 12487 da_qmx__val__advance_trigger = 12488 da_qmx__val__reference_trigger = 12490 da_qmx__val__start_trigger = 12491 da_qmx__val__adv_cmplt_event = 12492 da_qmx__val_ai_hold_cmplt_event = 12493 da_qmx__val__counter_output_event = 12494 da_qmx__val__change_detection_event = 12511 da_qmx__val_wdt_expired_event = 12512 da_qmx__val__sample_complete_event = 12530 da_qmx__val__counter_output_event = 12494 da_qmx__val__change_detection_event = 12511 da_qmx__val__sample_clock = 12487 da_qmx__val__rising_slope = 10280 da_qmx__val__falling_slope = 10171 da_qmx__val__pascals = 10081 da_qmx__val__from_custom_scale = 10065 da_qmx__val__internal = 10200 da_qmx__val__external = 10167 da_qmx__val__full_bridge_i = 10183 da_qmx__val__full_bridge_ii = 10184 da_qmx__val__full_bridge_iii = 10185 da_qmx__val__half_bridge_i = 10188 da_qmx__val__half_bridge_ii = 10189 da_qmx__val__quarter_bridge_i = 10271 da_qmx__val__quarter_bridge_ii = 10272 da_qmx__val__strain = 10299 da_qmx__val__from_custom_scale = 10065 da_qmx__val__finite = 10172 da_qmx__val__cont = 10117 da_qmx__val__source = 10439 da_qmx__val__load = 10440 da_qmx__val__reserved_for_routing = 10441 da_qmx__val__from_custom_scale = 10065 da_qmx__val__from_teds = 12516 da_qmx__val__deg_c = 10143 da_qmx__val__deg_f = 10144 da_qmx__val__kelvins = 10325 da_qmx__val__deg_r = 10145 da_qmx__val__from_custom_scale = 10065 da_qmx__val_j__type_tc = 10072 da_qmx__val_k__type_tc = 10073 da_qmx__val_n__type_tc = 10077 da_qmx__val_r__type_tc = 10082 da_qmx__val_s__type_tc = 10085 da_qmx__val_t__type_tc = 10086 da_qmx__val_b__type_tc = 10047 da_qmx__val_e__type_tc = 10055 da_qmx__val__seconds = 10364 da_qmx__val__from_custom_scale = 10065 da_qmx__val__seconds = 10364 da_qmx__val__seconds = 10364 da_qmx__val__ticks = 10304 da_qmx__val__from_custom_scale = 10065 da_qmx__val__single_cycle = 14613 da_qmx__val__multicycle = 14614 da_qmx__val__dig_edge = 10150 da_qmx__val__none = 10230 da_qmx__val__dig_edge = 10150 da_qmx__val__software = 10292 da_qmx__val__none = 10230 da_qmx__val__anlg_lvl = 10101 da_qmx__val__anlg_win = 10103 da_qmx__val__dig_lvl = 10152 da_qmx__val__dig_pattern = 10398 da_qmx__val__none = 10230 da_qmx__val__anlg_edge = 10099 da_qmx__val__dig_edge = 10150 da_qmx__val__dig_pattern = 10398 da_qmx__val__anlg_win = 10103 da_qmx__val__none = 10230 da_qmx__val__interlocked = 12549 da_qmx__val__none = 10230 da_qmx__val__halt_output_and_error = 14615 da_qmx__val__pause_until_data_available = 14616 da_qmx__val__volts = 10348 da_qmx__val__amps = 10342 da_qmx__val__deg_f = 10144 da_qmx__val__deg_c = 10143 da_qmx__val__deg_r = 10145 da_qmx__val__kelvins = 10325 da_qmx__val__strain = 10299 da_qmx__val__ohms = 10384 da_qmx__val__hz = 10373 da_qmx__val__seconds = 10364 da_qmx__val__meters = 10219 da_qmx__val__inches = 10379 da_qmx__val__degrees = 10146 da_qmx__val__radians = 10273 da_qmx__val_g = 10186 da_qmx__val__meters_per_second_squared = 12470 da_qmx__val__pascals = 10081 da_qmx__val__from_teds = 12516 da_qmx__val__volts = 10348 da_qmx__val__from_custom_scale = 10065 da_qmx__val__from_teds = 12516 da_qmx__val__volts = 10348 da_qmx__val__from_custom_scale = 10065 da_qmx__val__wait_for_interrupt = 12523 da_qmx__val__poll = 12524 da_qmx__val__yield = 12525 da_qmx__val__sleep = 12547 da_qmx__val__poll = 12524 da_qmx__val__yield = 12525 da_qmx__val__sleep = 12547 da_qmx__val__wait_for_interrupt = 12523 da_qmx__val__poll = 12524 da_qmx__val__wait_for_interrupt = 12523 da_qmx__val__poll = 12524 da_qmx__val__entering_win = 10163 da_qmx__val__leaving_win = 10208 da_qmx__val__inside_win = 10199 da_qmx__val__outside_win = 10251 da_qmx__val__write_to_eeprom = 12538 da_qmx__val__write_to_prom = 12539 da_qmx__val__do_not_write = 12540 da_qmx__val__first_sample = 10424 da_qmx__val__curr_write_pos = 10430 da_qmx__val__switch__topology_1127__independent = '1127/Independent' da_qmx__val__switch__topology_1128__independent = '1128/Independent' da_qmx__val__switch__topology_1130__independent = '1130/Independent' da_qmx__val__switch__topology_1160_16_spdt = '1160/16-SPDT' da_qmx__val__switch__topology_1161_8_spdt = '1161/8-SPDT' da_qmx__val__switch__topology_1166_32_spdt = '1166/32-SPDT' da_qmx__val__switch__topology_1166_16_dpdt = '1166/16-DPDT' da_qmx__val__switch__topology_1167__independent = '1167/Independent' da_qmx__val__switch__topology_1169_100_spst = '1169/100-SPST' da_qmx__val__switch__topology_1169_50_dpst = '1169/50-DPST' da_qmx__val__switch__topology_1192_8_spdt = '1192/8-SPDT' da_qmx__val__switch__topology_1193__independent = '1193/Independent' da_qmx__val__switch__topology_2510__independent = '2510/Independent' da_qmx__val__switch__topology_2512__independent = '2512/Independent' da_qmx__val__switch__topology_2514__independent = '2514/Independent' da_qmx__val__switch__topology_2515__independent = '2515/Independent' da_qmx__val__switch__topology_2527__independent = '2527/Independent' da_qmx__val__switch__topology_2530__independent = '2530/Independent' da_qmx__val__switch__topology_2548_4_spdt = '2548/4-SPDT' da_qmx__val__switch__topology_2558_4_spdt = '2558/4-SPDT' da_qmx__val__switch__topology_2564_16_spst = '2564/16-SPST' da_qmx__val__switch__topology_2564_8_dpst = '2564/8-DPST' da_qmx__val__switch__topology_2565_16_spst = '2565/16-SPST' da_qmx__val__switch__topology_2566_16_spdt = '2566/16-SPDT' da_qmx__val__switch__topology_2566_8_dpdt = '2566/8-DPDT' da_qmx__val__switch__topology_2567__independent = '2567/Independent' da_qmx__val__switch__topology_2568_31_spst = '2568/31-SPST' da_qmx__val__switch__topology_2568_15_dpst = '2568/15-DPST' da_qmx__val__switch__topology_2569_100_spst = '2569/100-SPST' da_qmx__val__switch__topology_2569_50_dpst = '2569/50-DPST' da_qmx__val__switch__topology_2570_40_spdt = '2570/40-SPDT' da_qmx__val__switch__topology_2570_20_dpdt = '2570/20-DPDT' da_qmx__val__switch__topology_2576__independent = '2576/Independent' da_qmx__val__switch__topology_2584__independent = '2584/Independent' da_qmx__val__switch__topology_2586_10_spst = '2586/10-SPST' da_qmx__val__switch__topology_2586_5_dpst = '2586/5-DPST' da_qmx__val__switch__topology_2593__independent = '2593/Independent' da_qmx__val__switch__topology_2599_2_spdt = '2599/2-SPDT' da_qmx_success = 0 error_map = {50000: 'ngPALValueConflict', 50001: 'ngPALIrrelevantAttribute', 50002: 'ngPALBadDevice', 50003: 'ngPALBadSelector', 50004: 'ngPALBadPointer', 50005: 'ngPALBadDataSize', 50006: 'ngPALBadMode', 50007: 'ngPALBadOffset', 50008: 'ngPALBadCount', 50009: 'ngPALBadReadMode', 50010: 'ngPALBadReadOffset', 50011: 'ngPALBadReadCount', 50012: 'ngPALBadWriteMode', 50013: 'ngPALBadWriteOffset', 50014: 'ngPALBadWriteCount', 50015: 'ngPALBadAddressClass', 50016: 'ngPALBadWindowType', 50019: 'ngPALBadThreadMultitask', -89167: 'RoutingDestTermPXIDStarXNotInSystemTimingSlot_Routing', -89166: 'RoutingSrcTermPXIDStarXNotInSystemTimingSlot_Routing', -89165: 'RoutingSrcTermPXIDStarInNonDStarTriggerSlot_Routing', -89164: 'RoutingDestTermPXIDStarInNonDStarTriggerSlot_Routing', 50101: 'ngPALResourceNotAvailable', -89162: 'RoutingDestTermPXIClk10InNotInStarTriggerSlot_Routing', -89161: 'RoutingDestTermPXIClk10InNotInSystemTimingSlot_Routing', -89160: 'RoutingDestTermPXIStarXNotInStarTriggerSlot_Routing', -89159: 'RoutingDestTermPXIStarXNotInSystemTimingSlot_Routing', -89158: 'RoutingSrcTermPXIStarXNotInStarTriggerSlot_Routing', -89157: 'RoutingSrcTermPXIStarXNotInSystemTimingSlot_Routing', -89156: 'RoutingSrcTermPXIStarInNonStarTriggerSlot_Routing', -89155: 'RoutingDestTermPXIStarInNonStarTriggerSlot_Routing', -89154: 'RoutingDestTermPXIStarInStarTriggerSlot_Routing', -89153: 'RoutingDestTermPXIStarInSystemTimingSlot_Routing', -89152: 'RoutingSrcTermPXIStarInStarTriggerSlot_Routing', -89151: 'RoutingSrcTermPXIStarInSystemTimingSlot_Routing', -89150: 'InvalidSignalModifier_Routing', -89149: 'RoutingDestTermPXIClk10InNotInSlot2_Routing', -89148: 'RoutingDestTermPXIStarXNotInSlot2_Routing', -89147: 'RoutingSrcTermPXIStarXNotInSlot2_Routing', -89146: 'RoutingSrcTermPXIStarInSlot16AndAbove_Routing', -89145: 'RoutingDestTermPXIStarInSlot16AndAbove_Routing', -89144: 'RoutingDestTermPXIStarInSlot2_Routing', -89143: 'RoutingSrcTermPXIStarInSlot2_Routing', -89142: 'RoutingDestTermPXIChassisNotIdentified_Routing', -89141: 'RoutingSrcTermPXIChassisNotIdentified_Routing', -89140: 'TrigLineNotFoundSingleDevRoute_Routing', -89139: 'NoCommonTrigLineForRoute_Routing', -89138: 'ResourcesInUseForRouteInTask_Routing', -89137: 'ResourcesInUseForRoute_Routing', -89136: 'RouteNotSupportedByHW_Routing', -89135: 'ResourcesInUseForInversionInTask_Routing', -89134: 'ResourcesInUseForInversion_Routing', -89133: 'InversionNotSupportedByHW_Routing', -89132: 'ResourcesInUseForProperty_Routing', -89131: 'RouteSrcAndDestSame_Routing', -89130: 'DevAbsentOrUnavailable_Routing', -89129: 'InvalidTerm_Routing', -89128: 'CannotTristateTerm_Routing', -89127: 'CannotTristateBusyTerm_Routing', -89126: 'CouldNotReserveRequestedTrigLine_Routing', -89125: 'TrigLineNotFound_Routing', -89124: 'RoutingPathNotAvailable_Routing', -89123: 'RoutingHardwareBusy_Routing', -89122: 'RequestedSignalInversionForRoutingNotPossible_Routing', -89121: 'InvalidRoutingDestinationTerminalName_Routing', -89120: 'InvalidRoutingSourceTerminalName_Routing', 50151: 'ngPALFirmwareFault', 50152: 'ngPALHardwareFault', 50200: 'ngPALOSUnsupported', 50202: 'ngPALOSFault', 50254: 'ngPALFunctionObsolete', 50255: 'ngPALFunctionNotFound', 50256: 'ngPALFeatureNotSupported', 50258: 'ngPALComponentInitializationFault', 50260: 'ngPALComponentAlreadyLoaded', 50262: 'ngPALComponentNotUnloadable', 50351: 'ngPALMemoryAlignmentFault', 50355: 'ngPALMemoryHeapNotEmpty', -88907: 'ServiceLocatorNotAvailable_Routing', -88900: 'CouldNotConnectToServer_Routing', 50402: 'ngPALTransferNotInProgress', 50403: 'ngPALTransferInProgress', 50404: 'ngPALTransferStopped', 50405: 'ngPALTransferAborted', 50406: 'ngPALLogicalBufferEmpty', 50407: 'ngPALLogicalBufferFull', 50408: 'ngPALPhysicalBufferEmpty', 50409: 'ngPALPhysicalBufferFull', 50410: 'ngPALTransferOverwritten', 50411: 'ngPALTransferOverread', 50500: 'ngPALDispatcherAlreadyExported', -88720: 'DeviceNameContainsSpacesOrPunctuation_Routing', -88719: 'DeviceNameContainsNonprintableCharacters_Routing', -88718: 'DeviceNameIsEmpty_Routing', -88717: 'DeviceNameNotFound_Routing', -88716: 'LocalRemoteDriverVersionMismatch_Routing', -88715: 'DuplicateDeviceName_Routing', 50551: 'ngPALSyncAbandoned', -88710: 'RuntimeAborting_Routing', -88709: 'RuntimeAborted_Routing', -88708: 'ResourceNotInPool_Routing', -88705: 'DriverDeviceGUIDNotFound_Routing', -209805: 'COCannotKeepUpInHWTimedSinglePoint', -209803: 'WaitForNextSampClkDetected3OrMoreSampClks', -209802: 'WaitForNextSampClkDetectedMissedSampClk', -209801: 'WriteNotCompleteBeforeSampClk', -209800: 'ReadNotCompleteBeforeSampClk', 200003: 'ngTimestampCounterRolledOver', 200004: 'ngInputTerminationOverloaded', 200005: 'ngADCOverloaded', 200007: 'ngPLLUnlocked', 200008: 'ngCounter0DMADuringAIConflict', 200009: 'ngCounter1DMADuringAOConflict', 200010: 'ngStoppedBeforeDone', 200011: 'ngRateViolatesSettlingTime', 200012: 'ngRateViolatesMaxADCRate', 200013: 'ngUserDefInfoStringTooLong', 200014: 'ngTooManyInterruptsPerSecond', 200015: 'ngPotentialGlitchDuringWrite', 200016: 'ngDevNotSelfCalibratedWithDAQmx', 200017: 'ngAISampRateTooLow', 200018: 'ngAIConvRateTooLow', 200019: 'ngReadOffsetCoercion', 200020: 'ngPretrigCoercion', 200021: 'ngSampValCoercedToMax', 200022: 'ngSampValCoercedToMin', 200024: 'ngPropertyVersionNew', 200025: 'ngUserDefinedInfoTooLong', 200026: 'ngCAPIStringTruncatedToFitBuffer', 200027: 'ngSampClkRateTooLow', 200028: 'ngPossiblyInvalidCTRSampsInFiniteDMAAcq', 200029: 'ngRISAcqCompletedSomeBinsNotFilled', 200030: 'ngPXIDevTempExceedsMaxOpTemp', 200031: 'ngOutputGainTooLowForRFFreq', 200032: 'ngOutputGainTooHighForRFFreq', 200033: 'ngMultipleWritesBetweenSampClks', 200034: 'ngDeviceMayShutDownDueToHighTemp', 200035: 'ngRateViolatesMinADCRate', 200036: 'ngSampClkRateAboveDevSpecs', 200037: 'ngCOPrevDAQmxWriteSettingsOverwrittenForHWTimedSinglePoint', 200038: 'ngLowpassFilterSettlingTimeExceedsUserTimeBetween2ADCConversions', 200039: 'ngLowpassFilterSettlingTimeExceedsDriverTimeBetween2ADCConversions', 200040: 'ngSampClkRateViolatesSettlingTimeForGen', 200041: 'ngInvalidCalConstValueForAI', 200042: 'ngInvalidCalConstValueForAO', 200043: 'ngChanCalExpired', 200044: 'ngUnrecognizedEnumValueEncounteredInStorage', 200045: 'ngTableCRCNotCorrect', 200046: 'ngExternalCRCNotCorrect', 200047: 'ngSelfCalCRCNotCorrect', 200048: 'ngDeviceSpecExceeded', 200049: 'ngOnlyGainCalibrated', 200050: 'ngReversePowerProtectionActivated', 200051: 'ngOverVoltageProtectionActivated', 200052: 'ngBufferSizeNotMultipleOfSectorSize', 200053: 'ngSampleRateMayCauseAcqToFail', 200054: 'ngUserAreaCRCNotCorrect', 200055: 'ngPowerUpInfoCRCNotCorrect', -201331: 'MemoryMappedHardwareTimedNonBufferedUnsupported', -201330: 'CannotUpdatePulseTrainWithAutoIncrementEnabled', -201329: 'HWTimedSinglePointAndDataXferNotDMA', -201328: 'SCCSecondStageEmpty', -201327: 'SCCInvalidDualStageCombo', -201326: 'SCCInvalidSecondStage', -201325: 'SCCInvalidFirstStage', -201324: 'CounterMultipleSampleClockedChannels', -201323: '2CounterMeasurementModeAndSampleClocked', -201322: 'CantHaveBothMemMappedAndNonMemMappedTasks', -201321: 'MemMappedDataReadByAnotherProcess', -201320: 'RetriggeringInvalidForGivenSettings', -201319: 'AIOverrun', -201318: 'COOverrun', -201317: 'CounterMultipleBufferedChannels', -201316: 'InvalidTimebaseForCOHWTSP', -201315: 'WriteBeforeEvent', -201314: 'CIOverrun', -201313: 'CounterNonResponsiveAndReset', -201312: 'MeasTypeOrChannelNotSupportedForLogging', -201311: 'FileAlreadyOpenedForWrite', -201310: 'TdmsNotFound', -201309: 'GenericFileIO', -201308: 'FiniteSTCCounterNotSupportedForLogging', -201307: 'MeasurementTypeNotSupportedForLogging', -201306: 'FileAlreadyOpened', -201305: 'DiskFull', -201304: 'FilePathInvalid', -201303: 'FileVersionMismatch', -201302: 'FileWriteProtected', -201301: 'ReadNotSupportedForLoggingMode', -201300: 'AttributeNotSupportedWhenLogging', -201299: 'LoggingModeNotSupportedNonBuffered', -201298: 'PropertyNotSupportedWithConflictingProperty', -201297: 'ParallelSSHOnConnector1', -201296: 'COOnlyImplicitSampleTimingTypeSupported', -201295: 'CalibrationFailedAOOutOfRange', -201294: 'CalibrationFailedAIOutOfRange', -201293: 'CalPWMLinearityFailed', -201292: 'OverrunUnderflowConfigurationCombo', -201291: 'CannotWriteToFiniteCOTask', -201290: 'NetworkDAQInvalidWEPKeyLength', -201289: 'CalInputsShortedNotSupported', -201288: 'CannotSetPropertyWhenTaskIsReserved', -201287: 'Minus12VFuseBlown', -201286: 'Plus12VFuseBlown', -201285: 'Plus5VFuseBlown', -201284: 'Plus3VFuseBlown', -201283: 'DeviceSerialPortError', -201282: 'PowerUpStateMachineNotDone', -201281: 'TooManyTriggersSpecifiedInTask', -201280: 'VerticalOffsetNotSupportedOnDevice', -201279: 'InvalidCouplingForMeasurementType', -201278: 'DigitalLineUpdateTooFastForDevice', -201277: 'CertificateIsTooBigToTransfer', -201276: 'OnlyPEMOrDERCertiticatesAccepted', -201275: 'CalCouplingNotSupported', -201274: 'DeviceNotSupportedIn64Bit', -201273: 'NetworkDeviceInUse', -201272: 'InvalidIPv4AddressFormat', -201271: 'NetworkProductTypeMismatch', -201270: 'OnlyPEMCertificatesAccepted', -201269: 'CalibrationRequiresPrototypingBoardEnabled', -201268: 'AllCurrentLimitingResourcesAlreadyTaken', -201267: 'UserDefInfoStringBadLength', -201266: 'PropertyNotFound', -201265: 'OverVoltageProtectionActivated', -201264: 'ScaledIQWaveformTooLarge', -201263: 'FirmwareFailedToDownload', -201262: 'PropertyNotSupportedForBusType', -201261: 'ChangeRateWhileRunningCouldNotBeCompleted', -201260: 'CannotQueryManualControlAttribute', -201259: 'InvalidNetworkConfiguration', -201258: 'InvalidWirelessConfiguration', -201257: 'InvalidWirelessCountryCode', -201256: 'InvalidWirelessChannel', -201255: 'NetworkEEPROMHasChanged', -201254: 'NetworkSerialNumberMismatch', -201253: 'NetworkStatusDown', -201252: 'NetworkTargetUnreachable', -201251: 'NetworkTargetNotFound', -201250: 'NetworkStatusTimedOut', -201249: 'InvalidWirelessSecuritySelection', -201248: 'NetworkDeviceConfigurationLocked', -201247: 'NetworkDAQDeviceNotSupported', -201246: 'NetworkDAQCannotCreateEmptySleeve', -201244: 'ModuleTypeDoesNotMatchModuleTypeInDestination', -201243: 'InvalidTEDSInterfaceAddress', -201242: 'DevDoesNotSupportSCXIComm', -201241: 'SCXICommDevConnector0MustBeCabledToModule', -201240: 'SCXIModuleDoesNotSupportDigitizationMode', -201239: 'DevDoesNotSupportMultiplexedSCXIDigitizationMode', -201238: 'DevOrDevPhysChanDoesNotSupportSCXIDigitization', -201237: 'InvalidPhysChanName', -201236: 'SCXIChassisCommModeInvalid', -201235: 'RequiredDependencyNotFound', -201234: 'InvalidStorage', -201233: 'InvalidObject', -201232: 'StorageAlteredPriorToSave', -201231: 'TaskDoesNotReferenceLocalChannel', -201230: 'ReferencedDevSimMustMatchTarget', -201229: 'ProgrammedIOFailsBecauseOfWatchdogTimer', -201228: 'WatchdogTimerFailsBecauseOfProgrammedIO', -201227: 'CantUseThisTimingEngineWithAPort', -201226: 'ProgrammedIOConflict', -201225: 'ChangeDetectionIncompatibleWithProgrammedIO', -201224: 'TristateNotEnoughLines', -201223: 'TristateConflict', -201222: 'GenerateOrFiniteWaitExpectedBeforeBreakBlock', -201221: 'BreakBlockNotAllowedInLoop', -201220: 'ClearTriggerNotAllowedInBreakBlock', -201219: 'NestingNotAllowedInBreakBlock', -201218: 'IfElseBlockNotAllowedInBreakBlock', -201217: 'RepeatUntilTriggerLoopNotAllowedInBreakBlock', -201216: 'WaitUntilTriggerNotAllowedInBreakBlock', -201215: 'MarkerPosInvalidInBreakBlock', -201214: 'InvalidWaitDurationInBreakBlock', -201213: 'InvalidSubsetLengthInBreakBlock', -201212: 'InvalidWaveformLengthInBreakBlock', -201211: 'InvalidWaitDurationBeforeBreakBlock', -201210: 'InvalidSubsetLengthBeforeBreakBlock', -201209: 'InvalidWaveformLengthBeforeBreakBlock', -201208: 'SampleRateTooHighForADCTimingMode', -201207: 'ActiveDevNotSupportedWithMultiDevTask', -201206: 'RealDevAndSimDevNotSupportedInSameTask', -201205: 'RTSISimMustMatchDevSim', -201204: 'BridgeShuntCaNotSupported', -201203: 'StrainShuntCaNotSupported', -201202: 'GainTooLargeForGainCalConst', -201201: 'OffsetTooLargeForOffsetCalConst', -201200: 'ElvisPrototypingBoardRemoved', -201199: 'Elvis2PowerRailFault', -201198: 'Elvis2PhysicalChansFault', -201197: 'Elvis2PhysicalChansThermalEvent', -201196: 'RXBitErrorRateLimitExceeded', -201195: 'PHYBitErrorRateLimitExceeded', -201194: 'TwoPartAttributeCalledOutOfOrder', -201193: 'InvalidSCXIChassisAddress', -201192: 'CouldNotConnectToRemoteMXS', -201191: 'ExcitationStateRequiredForAttributes', -201190: 'DeviceNotUsableUntilUSBReplug', -201189: 'InputFIFOOverflowDuringCalibrationOnFullSpeedUSB', -201188: 'InputFIFOOverflowDuringCalibration', -201187: 'CJCChanConflictsWithNonThermocoupleChan', -201186: 'CommDeviceForPXIBackplaneNotInRightmostSlot', -201185: 'CommDeviceForPXIBackplaneNotInSameChassis', -201184: 'CommDeviceForPXIBackplaneNotPXI', -201183: 'InvalidCalExcitFrequency', -201182: 'InvalidCalExcitVoltage', -201181: 'InvalidAIInputSrc', -201180: 'InvalidCalInputRef', -201179: 'dBReferenceValueNotGreaterThanZero', -201178: 'SampleClockRateIsTooFastForSampleClockTiming', -201177: 'DeviceNotUsableUntilColdStart', -201176: 'SampleClockRateIsTooFastForBurstTiming', -201175: 'DevImportFailedAssociatedResourceIDsNotSupported', -201174: 'SCXI1600ImportNotSupported', -201173: 'PowerSupplyConfigurationFailed', -201172: 'IEPEWithDCNotAllowed', -201171: 'MinTempForThermocoupleTypeOutsideAccuracyForPolyScaling', -201170: 'DevImportFailedNoDeviceToOverwriteAndSimulationNotSupported', -201169: 'DevImportFailedDeviceNotSupportedOnDestination', -201168: 'FirmwareIsTooOld', -201167: 'FirmwareCouldntUpdate', -201166: 'FirmwareIsCorrupt', -201165: 'FirmwareTooNew', -201164: 'SampClockCannotBeExportedFromExternalSampClockSrc', -201163: 'PhysChanReservedForInputWhenDesiredForOutput', -201162: 'PhysChanReservedForOutputWhenDesiredForInput', -201161: 'SpecifiedCDAQSlotNotEmpty', -201160: 'DeviceDoesNotSupportSimulation', -201159: 'InvalidCDAQSlotNumberSpecd', -201158: 'CSeriesModSimMustMatchCDAQChassisSim', -201157: 'SCCCabledDevMustNotBeSimWhenSCCCarrierIsNotSim', -201156: 'SCCModSimMustMatchSCCCarrierSim', -201155: 'SCXIModuleDoesNotSupportSimulation', -201154: 'SCXICableDevMustNotBeSimWhenModIsNotSim', -201153: 'SCXIDigitizerSimMustNotBeSimWhenModIsNotSim', -201152: 'SCXIModSimMustMatchSCXIChassisSim', -201151: 'SimPXIDevReqSlotAndChassisSpecd', -201150: 'SimDevConflictWithRealDev', -201149: 'InsufficientDataForCalibration', -201148: 'TriggerChannelMustBeEnabled', -201147: 'CalibrationDataConflictCouldNotBeResolved', -201146: 'SoftwareTooNewForSelfCalibrationData', -201145: 'SoftwareTooNewForExtCalibrationData', -201144: 'SelfCalibrationDataTooNewForSoftware', -201143: 'ExtCalibrationDataTooNewForSoftware', -201142: 'SoftwareTooNewForEEPROM', -201141: 'EEPROMTooNewForSoftware', -201140: 'SoftwareTooNewForHardware', -201139: 'HardwareTooNewForSoftware', -201138: 'TaskCannotRestartFirstSampNotAvailToGenerate', -201137: 'OnlyUseStartTrigSrcPrptyWithDevDataLines', -201136: 'OnlyUsePauseTrigSrcPrptyWithDevDataLines', -201135: 'OnlyUseRefTrigSrcPrptyWithDevDataLines', -201134: 'PauseTrigDigPatternSizeDoesNotMatchSrcSize', -201133: 'LineConflictCDAQ', -201132: 'CannotWriteBeyondFinalFiniteSample', -201131: 'RefAndStartTriggerSrcCantBeSame', -201130: 'MemMappingIncompatibleWithPhysChansInTask', -201129: 'OutputDriveTypeMemMappingConflict', -201128: 'CAPIDeviceIndexInvalid', -201127: 'RatiometricDevicesMustUseExcitationForScaling', -201126: 'PropertyRequiresPerDeviceCfg', -201125: 'AICouplingAndAIInputSourceConflict', -201124: 'OnlyOneTaskCanPerformDOMemoryMappingAtATime', -201123: 'TooManyChansForAnalogRefTrigCDAQ', -201122: 'SpecdPropertyValueIsIncompatibleWithSampleTimingType', -201121: 'CPUNotSupportedRequireSSE', -201120: 'SpecdPropertyValueIsIncompatibleWithSampleTimingResponseMode', -201119: 'ConflictingNextWriteIsLastAndRegenModeProperties', -201118: 'MStudioOperationDoesNotSupportDeviceContext', -201117: 'PropertyValueInChannelExpansionContextInvalid', -201116: 'HWTimedNonBufferedAONotSupported', -201115: 'WaveformLengthNotMultOfQuantum', -201114: 'DSAExpansionMixedBoardsWrongOrderInPXIChassis', -201113: 'PowerLevelTooLowForOOK', -201112: 'DeviceComponentTestFailure', -201111: 'UserDefinedWfmWithOOKUnsupported', -201110: 'InvalidDigitalModulationUserDefinedWaveform', -201109: 'BothRefInAndRefOutEnabled', -201108: 'BothAnalogAndDigitalModulationEnabled', -201107: 'BufferedOpsNotSupportedInSpecdSlotForCDAQ', -201106: 'PhysChanNotSupportedInSpecdSlotForCDAQ', -201105: 'ResourceReservedWithConflictingSettings', -201104: 'InconsistentAnalogTrigSettingsCDAQ', -201103: 'TooManyChansForAnalogPauseTrigCDAQ', -201102: 'AnalogTrigNotFirstInScanListCDAQ', -201101: 'TooManyChansGivenTimingType', -201100: 'SampClkTimebaseDivWithExtSampClk', -201099: 'CantSaveTaskWithPerDeviceTimingProperties', -201098: 'ConflictingAutoZeroMode', -201097: 'SampClkRateNotSupportedWithEAREnabled', -201096: 'SampClkTimebaseRateNotSpecd', -201095: 'SessionCorruptedByDLLReload', -201094: 'ActiveDevNotSupportedWithChanExpansion', -201093: 'SampClkRateInvalid', -201092: 'ExtSyncPulseSrcCannotBeExported', -201091: 'SyncPulseMinDelayToStartNeededForExtSyncPulseSrc', -201090: 'SyncPulseSrcInvalid', -201089: 'SampClkTimebaseRateInvalid', -201088: 'SampClkTimebaseSrcInvalid', -201087: 'SampClkRateMustBeSpecd', -201086: 'InvalidAttributeName', -201085: 'CJCChanNameMustBeSetWhenCJCSrcIsScannableChan', -201084: 'HiddenChanMissingInChansPropertyInCfgFile', -201083: 'ChanNamesNotSpecdInCfgFile', -201082: 'DuplicateHiddenChanNamesInCfgFile', -201081: 'DuplicateChanNameInCfgFile', -201080: 'InvalidSCCModuleForSlotSpecd', -201079: 'InvalidSCCSlotNumberSpecd', -201078: 'InvalidSectionIdentifier', -201077: 'InvalidSectionName', -201076: 'DAQmxVersionNotSupported', -201075: 'SWObjectsFoundInFile', -201074: 'HWObjectsFoundInFile', -201073: 'LocalChannelSpecdWithNoParentTask', -201072: 'TaskReferencesMissingLocalChannel', -201071: 'TaskReferencesLocalChannelFromOtherTask', -201070: 'TaskMissingChannelProperty', -201069: 'InvalidLocalChanName', -201068: 'InvalidEscapeCharacterInString', -201067: 'InvalidTableIdentifier', -201066: 'ValueFoundInInvalidColumn', -201065: 'MissingStartOfTable', -201064: 'FileMissingRequiredDAQmxHeader', -201063: 'DeviceIDDoesNotMatch', -201062: 'BufferedOperationsNotSupportedOnSelectedLines', -201061: 'PropertyConflictsWithScale', -201060: 'InvalidINIFileSyntax', -201059: 'DeviceInfoFailedPXIChassisNotIdentified', -201058: 'InvalidHWProductNumber', -201057: 'InvalidHWProductType', -201056: 'InvalidNumericFormatSpecd', -201055: 'DuplicatePropertyInObject', -201054: 'InvalidEnumValueSpecd', -201053: 'TEDSSensorPhysicalChannelConflict', -201052: 'TooManyPhysicalChansForTEDSInterfaceSpecd', -201051: 'IncapableTEDSInterfaceControllingDeviceSpecd', -201050: 'SCCCarrierSpecdIsMissing', -201049: 'IncapableSCCDigitizingDeviceSpecd', -201048: 'AccessorySettingNotApplicable', -201047: 'DeviceAndConnectorSpecdAlreadyOccupied', -201046: 'IllegalAccessoryTypeForDeviceSpecd', -201045: 'InvalidDeviceConnectorNumberSpecd', -201044: 'InvalidAccessoryName', -201043: 'MoreThanOneMatchForSpecdDevice', -201042: 'NoMatchForSpecdDevice', -201041: 'ProductTypeAndProductNumberConflict', -201040: 'ExtraPropertyDetectedInSpecdObject', -201039: 'RequiredPropertyMissing', -201038: 'CantSetAuthorForLocalChan', -201037: 'InvalidTimeValue', -201036: 'InvalidTimeFormat', -201035: 'DigDevChansSpecdInModeOtherThanParallel', -201034: 'CascadeDigitizationModeNotSupported', -201033: 'SpecdSlotAlreadyOccupied', -201032: 'InvalidSCXISlotNumberSpecd', -201031: 'AddressAlreadyInUse', -201030: 'SpecdDeviceDoesNotSupportRTSI', -201029: 'SpecdDeviceIsAlreadyOnRTSIBus', -201028: 'IdentifierInUse', -201027: 'WaitForNextSampleClockOrReadDetected3OrMoreMissedSampClks', -201026: 'HWTimedAndDataXferPIO', -201025: 'NonBufferedAndHWTimed', -201024: 'CTROutSampClkPeriodShorterThanGenPulseTrainPeriodPolled', -201023: 'CTROutSampClkPeriodShorterThanGenPulseTrainPeriod2', -201022: 'COCannotKeepUpInHWTimedSinglePointPolled', -201021: 'WriteRecoveryCannotKeepUpInHWTimedSinglePoint', -201020: 'NoChangeDetectionOnSelectedLineForDevice', -201019: 'SMIOPauseTriggersNotSupportedWithChannelExpansion', -201018: 'ClockMasterForExternalClockNotLongestPipeline', -201017: 'UnsupportedUnicodeByteOrderMarker', -201016: 'TooManyInstructionsInLoopInScript', -201015: 'PLLNotLocked', -201014: 'IfElseBlockNotAllowedInFiniteRepeatLoopInScript', -201013: 'IfElseBlockNotAllowedInConditionalRepeatLoopInScript', -201012: 'ClearIsLastInstructionInIfElseBlockInScript', -201011: 'InvalidWaitDurationBeforeIfElseBlockInScript', -201010: 'MarkerPosInvalidBeforeIfElseBlockInScript', -201009: 'InvalidSubsetLengthBeforeIfElseBlockInScript', -201008: 'InvalidWaveformLengthBeforeIfElseBlockInScript', -201007: 'GenerateOrFiniteWaitInstructionExpectedBeforeIfElseBlockInScript', -201006: 'CalPasswordNotSupported', -201005: 'SetupCalNeededBeforeAdjustCal', -201004: 'MultipleChansNotSupportedDuringCalSetup', -201003: 'DevCannotBeAccessed', -201002: 'SampClkRateDoesntMatchSampClkSrc', -201001: 'SampClkRateNotSupportedWithEARDisabled', -201000: 'LabVIEWVersionDoesntSupportDAQmxEvents', -200999: 'COReadyForNewValNotSupportedWithOnDemand', -200998: 'CIHWTimedSinglePointNotSupportedForMeasType', -200997: 'OnDemandNotSupportedWithHWTimedSinglePoint', -200996: 'HWTimedSinglePointAndDataXferNotProgIO', -200995: 'MemMapAndHWTimedSinglePoint', -200994: 'CannotSetPropertyWhenHWTimedSinglePointTaskIsRunning', -200993: 'CTROutSampClkPeriodShorterThanGenPulseTrainPeriod', -200992: 'TooManyEventsGenerated', -200991: 'MStudioCppRemoveEventsBeforeStop', -200990: 'CAPICannotRegisterSyncEventsFromMultipleThreads', -200989: 'ReadWaitNextSampClkWaitMismatchTwo', -200988: 'ReadWaitNextSampClkWaitMismatchOne', -200987: 'DAQmxSignalEventTypeNotSupportedByChanTypesOrDevicesInTask', -200986: 'CannotUnregisterDAQmxSoftwareEventWhileTaskIsRunning', -200985: 'AutoStartWriteNotAllowedEventRegistered', -200984: 'AutoStartReadNotAllowedEventRegistered', -200983: 'CannotGetPropertyWhenTaskNotReservedCommittedOrRunning', -200982: 'SignalEventsNotSupportedByDevice', -200981: 'EveryNSamplesAcqIntoBufferEventNotSupportedByDevice', -200980: 'EveryNSampsTransferredFromBufferEventNotSupportedByDevice', -200979: 'CAPISyncEventsTaskStateChangeNotAllowedFromDifferentThread', -200978: 'DAQmxSWEventsWithDifferentCallMechanisms', -200977: 'CantSaveChanWithPolyCalScaleAndAllowInteractiveEdit', -200976: 'ChanDoesNotSupportCJC', -200975: 'COReadyForNewValNotSupportedWithHWTimedSinglePoint', -200974: 'DACAllowConnToGndNotSupportedByDevWhenRefSrcExt', -200973: 'CantGetPropertyTaskNotRunning', -200972: 'CantSetPropertyTaskNotRunning', -200971: 'CantSetPropertyTaskNotRunningCommitted', -200970: 'AIEveryNSampsEventIntervalNotMultipleOf2', -200969: 'InvalidTEDSPhysChanNotAI', -200968: 'CAPICannotPerformTaskOperationInAsyncCallback', -200967: 'EveryNSampsTransferredFromBufferEventAlreadyRegistered', -200966: 'EveryNSampsAcqIntoBufferEventAlreadyRegistered', -200965: 'EveryNSampsTransferredFromBufferNotForInput', -200964: 'EveryNSampsAcqIntoBufferNotForOutput', -200963: 'AOSampTimingTypeDifferentIn2Tasks', -200962: 'CouldNotDownloadFirmwareHWDamaged', -200961: 'CouldNotDownloadFirmwareFileMissingOrDamaged', -200960: 'CannotRegisterDAQmxSoftwareEventWhileTaskIsRunning', -200959: 'DifferentRawDataCompression', -200958: 'ConfiguredTEDSInterfaceDevNotDetected', -200957: 'CompressedSampSizeExceedsResolution', -200956: 'ChanDoesNotSupportCompression', -200955: 'DifferentRawDataFormats', -200954: 'SampClkOutputTermIncludesStartTrigSrc', -200953: 'StartTrigSrcEqualToSampClkSrc', -200952: 'EventOutputTermIncludesTrigSrc', -200951: 'COMultipleWritesBetweenSampClks', -200950: 'DoneEventAlreadyRegistered', -200949: 'SignalEventAlreadyRegistered', -200948: 'CannotHaveTimedLoopAndDAQmxSignalEventsInSameTask', -200947: 'NeedLabVIEW711PatchToUseDAQmxEvents', -200946: 'StartFailedDueToWriteFailure', -200945: 'DataXferCustomThresholdNotDMAXferMethodSpecifiedForDev', -200944: 'DataXferRequestConditionNotSpecifiedForCustomThreshold', -200943: 'DataXferCustomThresholdNotSpecified', -200942: 'CAPISyncCallbackNotSupportedOnThisPlatform', -200941: 'CalChanReversePolyCoefNotSpecd', -200940: 'CalChanForwardPolyCoefNotSpecd', -200939: 'ChanCalRepeatedNumberInPreScaledVals', -200938: 'ChanCalTableNumScaledNotEqualNumPrescaledVals', -200937: 'ChanCalTableScaledValsNotSpecd', -200936: 'ChanCalTablePreScaledValsNotSpecd', -200935: 'ChanCalScaleTypeNotSet', -200934: 'ChanCalExpired', -200933: 'ChanCalExpirationDateNotSet', -200932: '3OutputPortCombinationGivenSampTimingType653x', -200931: '3InputPortCombinationGivenSampTimingType653x', -200930: '2OutputPortCombinationGivenSampTimingType653x', -200929: '2InputPortCombinationGivenSampTimingType653x', -200928: 'PatternMatcherMayBeUsedByOneTrigOnly', -200927: 'NoChansSpecdForPatternSource', -200926: 'ChangeDetectionChanNotInTask', -200925: 'ChangeDetectionChanNotTristated', -200924: 'WaitModeValueNotSupportedNonBuffered', -200923: 'WaitModePropertyNotSupportedNonBuffered', -200922: 'CantSavePerLineConfigDigChanSoInteractiveEditsAllowed', -200921: 'CantSaveNonPortMultiLineDigChanSoInteractiveEditsAllowed', -200920: 'BufferSizeNotMultipleOfEveryNSampsEventIntervalNoIrqOnDev', -200919: 'GlobalTaskNameAlreadyChanName', -200918: 'GlobalChanNameAlreadyTaskName', -200917: 'AOEveryNSampsEventIntervalNotMultipleOf2', -200916: 'SampleTimebaseDivisorNotSupportedGivenTimingType', -200915: 'HandshakeEventOutputTermNotSupportedGivenTimingType', -200914: 'ChangeDetectionOutputTermNotSupportedGivenTimingType', -200913: 'ReadyForTransferOutputTermNotSupportedGivenTimingType', -200912: 'RefTrigOutputTermNotSupportedGivenTimingType', -200911: 'StartTrigOutputTermNotSupportedGivenTimingType', -200910: 'SampClockOutputTermNotSupportedGivenTimingType', -200909: '20MhzTimebaseNotSupportedGivenTimingType', -200908: 'SampClockSourceNotSupportedGivenTimingType', -200907: 'RefTrigTypeNotSupportedGivenTimingType', -200906: 'PauseTrigTypeNotSupportedGivenTimingType', -200905: 'HandshakeTrigTypeNotSupportedGivenTimingType', -200904: 'StartTrigTypeNotSupportedGivenTimingType', -200903: 'RefClkSrcNotSupported', -200902: 'DataVoltageLowAndHighIncompatible', -200901: 'InvalidCharInDigPatternString', -200900: 'CantUsePort3AloneGivenSampTimingTypeOn653x', -200899: 'CantUsePort1AloneGivenSampTimingTypeOn653x', -200898: 'PartialUseOfPhysicalLinesWithinPortNotSupported653x', -200897: 'PhysicalChanNotSupportedGivenSampTimingType653x', -200896: 'CanExportOnlyDigEdgeTrigs', -200895: 'RefTrigDigPatternSizeDoesNotMatchSourceSize', -200894: 'StartTrigDigPatternSizeDoesNotMatchSourceSize', -200893: 'ChangeDetectionRisingAndFallingEdgeChanDontMatch', -200892: 'PhysicalChansForChangeDetectionAndPatternMatch653x', -200891: 'CanExportOnlyOnboardSampClk', -200890: 'InternalSampClkNotRisingEdge', -200889: 'RefTrigDigPatternChanNotInTask', -200888: 'RefTrigDigPatternChanNotTristated', -200887: 'StartTrigDigPatternChanNotInTask', -200886: 'StartTrigDigPatternChanNotTristated', -200885: 'PXIStarAndClock10Sync', -200884: 'GlobalChanCannotBeSavedSoInteractiveEditsAllowed', -200883: 'TaskCannotBeSavedSoInteractiveEditsAllowed', -200882: 'InvalidGlobalChan', -200881: 'EveryNSampsEventAlreadyRegistered', -200880: 'EveryNSampsEventIntervalZeroNotSupported', -200879: 'ChanSizeTooBigForU16PortWrite', -200878: 'ChanSizeTooBigForU16PortRead', -200877: 'BufferSizeNotMultipleOfEveryNSampsEventIntervalWhenDMA', -200876: 'WriteWhenTaskNotRunningCOTicks', -200875: 'WriteWhenTaskNotRunningCOFreq', -200874: 'WriteWhenTaskNotRunningCOTime', -200873: 'AOMinMaxNotSupportedDACRangeTooSmall', -200872: 'AOMinMaxNotSupportedGivenDACRange', -200871: 'AOMinMaxNotSupportedGivenDACRangeAndOffsetVal', -200870: 'AOMinMaxNotSupportedDACOffsetValInappropriate', -200869: 'AOMinMaxNotSupportedGivenDACOffsetVal', -200868: 'AOMinMaxNotSupportedDACRefValTooSmall', -200867: 'AOMinMaxNotSupportedGivenDACRefVal', -200866: 'AOMinMaxNotSupportedGivenDACRefAndOffsetVal', -200865: 'WhenAcqCompAndNumSampsPerChanExceedsOnBrdBufSize', -200864: 'WhenAcqCompAndNoRefTrig', -200863: 'WaitForNextSampClkNotSupported', -200862: 'DevInUnidentifiedPXIChassis', -200861: 'MaxSoundPressureMicSensitivitRelatedAIPropertiesNotSupportedByDev', -200860: 'MaxSoundPressureAndMicSensitivityNotSupportedByDev', -200859: 'AOBufferSizeZeroForSampClkTimingType', -200858: 'AOCallWriteBeforeStartForSampClkTimingType', -200857: 'InvalidCalLowPassCutoffFreq', -200856: 'SimulationCannotBeDisabledForDevCreatedAsSimulatedDev', -200855: 'CannotAddNewDevsAfterTaskConfiguration', -200854: 'DifftSyncPulseSrcAndSampClkTimebaseSrcDevMultiDevTask', -200853: 'TermWithoutDevInMultiDevTask', -200852: 'SyncNoDevSampClkTimebaseOrSyncPulseInPXISlot2', -200851: 'PhysicalChanNotOnThisConnector', -200850: 'NumSampsToWaitNotGreaterThanZeroInScript', -200849: 'NumSampsToWaitNotMultipleOfAlignmentQuantumInScript', -200848: 'EveryNSamplesEventNotSupportedForNonBufferedTasks', -200847: 'BufferedAndDataXferPIO', -200846: 'CannotWriteWhenAutoStartFalseAndTaskNotRunning', -200845: 'NonBufferedAndDataXferInterrupts', -200844: 'WriteFailedMultipleCtrsWithFREQOUT', -200843: 'ReadNotCompleteBefore3SampClkEdges', -200842: 'CtrHWTimedSinglePointAndDataXferNotProgIO', -200841: 'PrescalerNot1ForInputTerminal', -200840: 'PrescalerNot1ForTimebaseSrc', -200839: 'SampClkTimingTypeWhenTristateIsFalse', -200838: 'OutputBufferSizeNotMultOfXferSize', -200837: 'SampPerChanNotMultOfXferSize', -200836: 'WriteToTEDSFailed', -200835: 'SCXIDevNotUsablePowerTurnedOff', -200834: 'CannotReadWhenAutoStartFalseBufSizeZeroAndTaskNotRunning', -200833: 'CannotReadWhenAutoStartFalseHWTimedSinglePtAndTaskNotRunning', -200832: 'CannotReadWhenAutoStartFalseOnDemandAndTaskNotRunning', -200831: 'SimultaneousAOWhenNotOnDemandTiming', -200830: 'MemMapAndSimultaneousAO', -200829: 'WriteFailedMultipleCOOutputTypes', -200828: 'WriteToTEDSNotSupportedOnRT', -200827: 'VirtualTEDSDataFileError', -200826: 'TEDSSensorDataError', -200825: 'DataSizeMoreThanSizeOfEEPROMOnTEDS', -200824: 'PROMOnTEDSContainsBasicTEDSData', -200823: 'PROMOnTEDSAlreadyWritten', -200822: 'TEDSDoesNotContainPROM', -200821: 'HWTimedSinglePointNotSupportedAI', -200820: 'HWTimedSinglePointOddNumChansInAITask', -200819: 'CantUseOnlyOnBoardMemWithProgrammedIO', -200818: 'SwitchDevShutDownDueToHighTemp', -200817: 'ExcitationNotSupportedWhenTermCfgDiff', -200816: 'TEDSMinElecValGEMaxElecVal', -200815: 'TEDSMinPhysValGEMaxPhysVal', -200814: 'CIOnboardClockNotSupportedAsInputTerm', -200813: 'InvalidSampModeForPositionMeas', -200812: 'TrigWhenAOHWTimedSinglePtSampMode', -200811: 'DAQmxCantUseStringDueToUnknownChar', -200810: 'DAQmxCantRetrieveStringDueToUnknownChar', -200809: 'ClearTEDSNotSupportedOnRT', -200808: 'CfgTEDSNotSupportedOnRT', -200807: 'ProgFilterClkCfgdToDifferentMinPulseWidthBySameTask1PerDev', -200806: 'ProgFilterClkCfgdToDifferentMinPulseWidthByAnotherTask1PerDev', -200804: 'NoLastExtCalDateTimeLastExtCalNotDAQmx', -200803: 'CannotWriteNotStartedAutoStartFalseNotOnDemandHWTimedSglPt', -200802: 'CannotWriteNotStartedAutoStartFalseNotOnDemandBufSizeZero', -200801: 'COInvalidTimingSrcDueToSignal', -200800: 'CIInvalidTimingSrcForSampClkDueToSampTimingType', -200799: 'CIInvalidTimingSrcForEventCntDueToSampMode', -200798: 'NoChangeDetectOnNonInputDigLineForDev', -200797: 'EmptyStringTermNameNotSupported', -200796: 'MemMapEnabledForHWTimedNonBufferedAO', -200795: 'DevOnboardMemOverflowDuringHWTimedNonBufferedGen', -200794: 'CODAQmxWriteMultipleChans', -200793: 'CantMaintainExistingValueAOSync', -200792: 'MStudioMultiplePhysChansNotSupported', -200791: 'CantConfigureTEDSForChan', -200790: 'WriteDataTypeTooSmall', -200789: 'ReadDataTypeTooSmall', -200788: 'MeasuredBridgeOffsetTooHigh', -200787: 'StartTrigConflictWithCOHWTimedSinglePt', -200786: 'SampClkRateExtSampClkTimebaseRateMismatch', -200785: 'InvalidTimingSrcDueToSampTimingType', -200784: 'VirtualTEDSFileNotFound', -200783: 'MStudioNoForwardPolyScaleCoeffs', -200782: 'MStudioNoReversePolyScaleCoeffs', -200781: 'MStudioNoPolyScaleCoeffsUseCalc', -200780: 'MStudioNoForwardPolyScaleCoeffsUseCalc', -200779: 'MStudioNoReversePolyScaleCoeffsUseCalc', -200778: 'COSampModeSampTimingTypeSampClkConflict', -200777: 'DevCannotProduceMinPulseWidth', -200776: 'CannotProduceMinPulseWidthGivenPropertyValues', -200775: 'TermCfgdToDifferentMinPulseWidthByAnotherTask', -200774: 'TermCfgdToDifferentMinPulseWidthByAnotherProperty', -200773: 'DigSyncNotAvailableOnTerm', -200772: 'DigFilterNotAvailableOnTerm', -200771: 'DigFilterEnabledMinPulseWidthNotCfg', -200770: 'DigFilterAndSyncBothEnabled', -200769: 'HWTimedSinglePointAOAndDataXferNotProgIO', -200768: 'NonBufferedAOAndDataXferNotProgIO', -200767: 'ProgIODataXferForBufferedAO', -200766: 'TEDSLegacyTemplateIDInvalidOrUnsupported', -200765: 'TEDSMappingMethodInvalidOrUnsupported', -200764: 'TEDSLinearMappingSlopeZero', -200763: 'AIInputBufferSizeNotMultOfXferSize', -200762: 'NoSyncPulseExtSampClkTimebase', -200761: 'NoSyncPulseAnotherTaskRunning', -200760: 'AOMinMaxNotInGainRange', -200759: 'AOMinMaxNotInDACRange', -200758: 'DevOnlySupportsSampClkTimingAO', -200757: 'DevOnlySupportsSampClkTimingAI', -200756: 'TEDSIncompatibleSensorAndMeasType', -200755: 'TEDSMultipleCalTemplatesNotSupported', -200754: 'TEDSTemplateParametersNotSupported', -200753: 'ParsingTEDSData', -200752: 'MultipleActivePhysChansNotSupported', -200751: 'NoChansSpecdForChangeDetect', -200750: 'InvalidCalVoltageForGivenGain', -200749: 'InvalidCalGain', -200748: 'MultipleWritesBetweenSampClks', -200747: 'InvalidAcqTypeForFREQOUT', -200746: 'SuitableTimebaseNotFoundTimeCombo2', -200745: 'SuitableTimebaseNotFoundFrequencyCombo2', -200744: 'RefClkRateRefClkSrcMismatch', -200743: 'NoTEDSTerminalBlock', -200742: 'CorruptedTEDSMemory', -200741: 'TEDSNotSupported', -200740: 'TimingSrcTaskStartedBeforeTimedLoop', -200739: 'PropertyNotSupportedForTimingSrc', -200738: 'TimingSrcDoesNotExist', -200737: 'InputBufferSizeNotEqualSampsPerChanForFiniteSampMode', -200736: 'FREQOUTCannotProduceDesiredFrequency2', -200735: 'ExtRefClkRateNotSpecified', -200734: 'DeviceDoesNotSupportDMADataXferForNonBufferedAcq', -200733: 'DigFilterMinPulseWidthSetWhenTristateIsFalse', -200732: 'DigFilterEnableSetWhenTristateIsFalse', -200731: 'NoHWTimingWithOnDemand', -200730: 'CannotDetectChangesWhenTristateIsFalse', -200729: 'CannotHandshakeWhenTristateIsFalse', -200728: 'LinesUsedForStaticInputNotForHandshakingControl', -200727: 'LinesUsedForHandshakingControlNotForStaticInput', -200726: 'LinesUsedForStaticInputNotForHandshakingInput', -200725: 'LinesUsedForHandshakingInputNotForStaticInput', -200724: 'DifferentDITristateValsForChansInTask', -200723: 'TimebaseCalFreqVarianceTooLarge', -200722: 'TimebaseCalFailedToConverge', -200721: 'InadequateResolutionForTimebaseCal', -200720: 'InvalidAOGainCalConst', -200719: 'InvalidAOOffsetCalConst', -200718: 'InvalidAIGainCalConst', -200717: 'InvalidAIOffsetCalConst', -200716: 'DigOutputOverrun', -200715: 'DigInputOverrun', -200714: 'AcqStoppedDriverCantXferDataFastEnough', -200713: 'ChansCantAppearInSameTask', -200712: 'InputCfgFailedBecauseWatchdogExpired', -200711: 'AnalogTrigChanNotExternal', -200710: 'TooManyChansForInternalAIInputSrc', -200709: 'TEDSSensorNotDetected', -200708: 'PrptyGetSpecdActiveItemFailedDueToDifftValues', -200706: 'RoutingDestTermPXIClk10InNotInSlot2', -200705: 'RoutingDestTermPXIStarXNotInSlot2', -200704: 'RoutingSrcTermPXIStarXNotInSlot2', -200703: 'RoutingSrcTermPXIStarInSlot16AndAbove', -200702: 'RoutingDestTermPXIStarInSlot16AndAbove', -200701: 'RoutingDestTermPXIStarInSlot2', -200700: 'RoutingSrcTermPXIStarInSlot2', -200699: 'RoutingDestTermPXIChassisNotIdentified', -200698: 'RoutingSrcTermPXIChassisNotIdentified', -200697: 'FailedToAcquireCalData', -200696: 'BridgeOffsetNullingCalNotSupported', -200695: 'AIMaxNotSpecified', -200694: 'AIMinNotSpecified', -200693: 'OddTotalBufferSizeToWrite', -200692: 'OddTotalNumSampsToWrite', -200691: 'BufferWithWaitMode', -200690: 'BufferWithHWTimedSinglePointSampMode', -200689: 'COWritePulseLowTicksNotSupported', -200688: 'COWritePulseHighTicksNotSupported', -200687: 'COWritePulseLowTimeOutOfRange', -200686: 'COWritePulseHighTimeOutOfRange', -200685: 'COWriteFreqOutOfRange', -200684: 'COWriteDutyCycleOutOfRange', -200683: 'InvalidInstallation', -200682: 'RefTrigMasterSessionUnavailable', -200681: 'RouteFailedBecauseWatchdogExpired', -200680: 'DeviceShutDownDueToHighTemp', -200679: 'NoMemMapWhenHWTimedSinglePoint', -200678: 'WriteFailedBecauseWatchdogExpired', -200677: 'DifftInternalAIInputSrcs', -200676: 'DifftAIInputSrcInOneChanGroup', -200675: 'InternalAIInputSrcInMultChanGroups', -200674: 'SwitchOpFailedDueToPrevError', -200673: 'WroteMultiSampsUsingSingleSampWrite', -200672: 'MismatchedInputArraySizes', -200671: 'CantExceedRelayDriveLimit', -200670: 'DACRngLowNotEqualToMinusRefVal', -200669: 'CantAllowConnectDACToGnd', -200668: 'WatchdogTimeoutOutOfRangeAndNotSpecialVal', -200667: 'NoWatchdogOutputOnPortReservedForInput', -200666: 'NoInputOnPortCfgdForWatchdogOutput', -200665: 'WatchdogExpirationStateNotEqualForLinesInPort', -200664: 'CannotPerformOpWhenTaskNotReserved', -200663: 'PowerupStateNotSupported', -200662: 'WatchdogTimerNotSupported', -200661: 'OpNotSupportedWhenRefClkSrcNone', -200660: 'SampClkRateUnavailable', -200659: 'PrptyGetSpecdSingleActiveChanFailedDueToDifftVals', -200658: 'PrptyGetImpliedActiveChanFailedDueToDifftVals', -200657: 'PrptyGetSpecdActiveChanFailedDueToDifftVals', -200656: 'NoRegenWhenUsingBrdMem', -200655: 'NonbufferedReadMoreThanSampsPerChan', -200654: 'WatchdogExpirationTristateNotSpecdForEntirePort', -200653: 'PowerupTristateNotSpecdForEntirePort', -200652: 'PowerupStateNotSpecdForEntirePort', -200651: 'CantSetWatchdogExpirationOnDigInChan', -200650: 'CantSetPowerupStateOnDigInChan', -200649: 'PhysChanNotInTask', -200648: 'PhysChanDevNotInTask', -200647: 'DigInputNotSupported', -200646: 'DigFilterIntervalNotEqualForLines', -200645: 'DigFilterIntervalAlreadyCfgd', -200644: 'CantResetExpiredWatchdog', -200643: 'ActiveChanTooManyLinesSpecdWhenGettingPrpty', -200642: 'ActiveChanNotSpecdWhenGetting1LinePrpty', -200641: 'DigPrptyCannotBeSetPerLine', -200640: 'SendAdvCmpltAfterWaitForTrigInScanlist', -200639: 'DisconnectionRequiredInScanlist', -200638: 'TwoWaitForTrigsAfterConnectionInScanlist', -200637: 'ActionSeparatorRequiredAfterBreakingConnectionInScanlist', -200636: 'ConnectionInScanlistMustWaitForTrig', -200635: 'ActionNotSupportedTaskNotWatchdog', -200634: 'WfmNameSameAsScriptName', -200633: 'ScriptNameSameAsWfmName', -200632: 'DSFStopClock', -200631: 'DSFReadyForStartClock', -200630: 'WriteOffsetNotMultOfIncr', -200629: 'DifferentPrptyValsNotSupportedOnDev', -200628: 'RefAndPauseTrigConfigured', -200627: 'FailedToEnableHighSpeedInputClock', -200626: 'EmptyPhysChanInPowerUpStatesArray', -200625: 'ActivePhysChanTooManyLinesSpecdWhenGettingPrpty', -200624: 'ActivePhysChanNotSpecdWhenGetting1LinePrpty', -200623: 'PXIDevTempCausedShutDown', -200622: 'InvalidNumSampsToWrite', -200621: 'OutputFIFOUnderflow2', -200620: 'RepeatedAIPhysicalChan', -200619: 'MultScanOpsInOneChassis', -200618: 'InvalidAIChanOrder', -200617: 'ReversePowerProtectionActivated', -200616: 'InvalidAsynOpHandle', -200615: 'FailedToEnableHighSpeedOutput', -200614: 'CannotReadPastEndOfRecord', -200613: 'AcqStoppedToPreventInputBufferOverwriteOneDataXferMech', -200612: 'ZeroBasedChanIndexInvalid', -200611: 'NoChansOfGivenTypeInTask', -200610: 'SampClkSrcInvalidForOutputValidForInput', -200609: 'OutputBufSizeTooSmallToStartGen', -200608: 'InputBufSizeTooSmallToStartAcq', -200607: 'ExportTwoSignalsOnSameTerminal', -200606: 'ChanIndexInvalid', -200605: 'RangeSyntaxNumberTooBig', -200604: 'NULLPtr', -200603: 'ScaledMinEqualMax', -200602: 'PreScaledMinEqualMax', -200601: 'PropertyNotSupportedForScaleType', -200600: 'ChannelNameGenerationNumberTooBig', -200599: 'RepeatedNumberInScaledValues', -200598: 'RepeatedNumberInPreScaledValues', -200597: 'LinesAlreadyReservedForOutput', -200596: 'SwitchOperationChansSpanMultipleDevsInList', -200595: 'InvalidIDInListAtBeginningOfSwitchOperation', -200594: 'MStudioInvalidPolyDirection', -200593: 'MStudioPropertyGetWhileTaskNotVerified', -200592: 'RangeWithTooManyObjects', -200591: 'CppDotNetAPINegativeBufferSize', -200590: 'CppCantRemoveInvalidEventHandler', -200589: 'CppCantRemoveEventHandlerTwice', -200588: 'CppCantRemoveOtherObjectsEventHandler', -200587: 'DigLinesReservedOrUnavailable', -200586: 'DSFFailedToResetStream', -200585: 'DSFReadyForOutputNotAsserted', -200584: 'SampToWritePerChanNotMultipleOfIncr', -200583: 'AOPropertiesCauseVoltageBelowMin', -200582: 'AOPropertiesCauseVoltageOverMax', -200581: 'PropertyNotSupportedWhenRefClkSrcNone', -200580: 'AIMaxTooSmall', -200579: 'AIMaxTooLarge', -200578: 'AIMinTooSmall', -200577: 'AIMinTooLarge', -200576: 'BuiltInCJCSrcNotSupported', -200575: 'TooManyPostTrigSampsPerChan', -200574: 'TrigLineNotFoundSingleDevRoute', -200573: 'DifferentInternalAIInputSources', -200572: 'DifferentAIInputSrcInOneChanGroup', -200571: 'InternalAIInputSrcInMultipleChanGroups', -200570: 'CAPIChanIndexInvalid', -200569: 'CollectionDoesNotMatchChanType', -200568: 'OutputCantStartChangedRegenerationMode', -200567: 'OutputCantStartChangedBufferSize', -200566: 'ChanSizeTooBigForU32PortWrite', -200565: 'ChanSizeTooBigForU8PortWrite', -200564: 'ChanSizeTooBigForU32PortRead', -200563: 'ChanSizeTooBigForU8PortRead', -200562: 'InvalidDigDataWrite', -200561: 'InvalidAODataWrite', -200560: 'WaitUntilDoneDoesNotIndicateDone', -200559: 'MultiChanTypesInTask', -200558: 'MultiDevsInTask', -200557: 'CannotSetPropertyWhenTaskRunning', -200556: 'CannotGetPropertyWhenTaskNotCommittedOrRunning', -200555: 'LeadingUnderscoreInString', -200554: 'TrailingSpaceInString', -200553: 'LeadingSpaceInString', -200552: 'InvalidCharInString', -200551: 'DLLBecameUnlocked', -200550: 'DLLLock', -200549: 'SelfCalConstsInvalid', -200548: 'InvalidTrigCouplingExceptForExtTrigChan', -200547: 'WriteFailsBufferSizeAutoConfigured', -200546: 'ExtCalAdjustExtRefVoltageFailed', -200545: 'SelfCalFailedExtNoiseOrRefVoltageOutOfCal', -200544: 'ExtCalTemperatureNotDAQmx', -200543: 'ExtCalDateTimeNotDAQmx', -200542: 'SelfCalTemperatureNotDAQmx', -200541: 'SelfCalDateTimeNotDAQmx', -200540: 'DACRefValNotSet', -200539: 'AnalogMultiSampWriteNotSupported', -200538: 'InvalidActionInControlTask', -200537: 'PolyCoeffsInconsistent', -200536: 'SensorValTooLow', -200535: 'SensorValTooHigh', -200534: 'WaveformNameTooLong', -200533: 'IdentifierTooLongInScript', -200532: 'UnexpectedIDFollowingSwitchChanName', -200531: 'RelayNameNotSpecifiedInList', -200530: 'UnexpectedIDFollowingRelayNameInList', -200529: 'UnexpectedIDFollowingSwitchOpInList', -200528: 'InvalidLineGrouping', -200527: 'CtrMinMax', -200526: 'WriteChanTypeMismatch', -200525: 'ReadChanTypeMismatch', -200524: 'WriteNumChansMismatch', -200523: 'OneChanReadForMultiChanTask', -200522: 'CannotSelfCalDuringExtCal', -200521: 'MeasCalAdjustOscillatorPhaseDAC', -200520: 'InvalidCalConstCalADCAdjustment', -200519: 'InvalidCalConstOscillatorFreqDACValue', -200518: 'InvalidCalConstOscillatorPhaseDACValue', -200517: 'InvalidCalConstOffsetDACValue', -200516: 'InvalidCalConstGainDACValue', -200515: 'InvalidNumCalADCReadsToAverage', -200514: 'InvalidCfgCalAdjustDirectPathOutputImpedance', -200513: 'InvalidCfgCalAdjustMainPathOutputImpedance', -200512: 'InvalidCfgCalAdjustMainPathPostAmpGainAndOffset', -200511: 'InvalidCfgCalAdjustMainPathPreAmpGain', -200510: 'InvalidCfgCalAdjustMainPreAmpOffset', -200509: 'MeasCalAdjustCalADC', -200508: 'MeasCalAdjustOscillatorFrequency', -200507: 'MeasCalAdjustDirectPathOutputImpedance', -200506: 'MeasCalAdjustMainPathOutputImpedance', -200505: 'MeasCalAdjustDirectPathGain', -200504: 'MeasCalAdjustMainPathPostAmpGainAndOffset', -200503: 'MeasCalAdjustMainPathPreAmpGain', -200502: 'MeasCalAdjustMainPathPreAmpOffset', -200501: 'InvalidDateTimeInEEPROM', -200500: 'UnableToLocateErrorResources', -200499: 'DotNetAPINotUnsigned32BitNumber', -200498: 'InvalidRangeOfObjectsSyntaxInString', -200497: 'AttemptToEnableLineNotPreviouslyDisabled', -200496: 'InvalidCharInPattern', -200495: 'IntermediateBufferFull', -200494: 'LoadTaskFailsBecauseNoTimingOnDev', -200493: 'CAPIReservedParamNotNULLNorEmpty', -200492: 'CAPIReservedParamNotNULL', -200491: 'CAPIReservedParamNotZero', -200490: 'SampleValueOutOfRange', -200489: 'ChanAlreadyInTask', -200488: 'VirtualChanDoesNotExist', -200486: 'ChanNotInTask', -200485: 'TaskNotInDataNeighborhood', -200484: 'CantSaveTaskWithoutReplace', -200483: 'CantSaveChanWithoutReplace', -200482: 'DevNotInTask', -200481: 'DevAlreadyInTask', -200479: 'CanNotPerformOpWhileTaskRunning', -200478: 'CanNotPerformOpWhenNoChansInTask', -200477: 'CanNotPerformOpWhenNoDevInTask', -200475: 'CannotPerformOpWhenTaskNotRunning', -200474: 'OperationTimedOut', -200473: 'CannotReadWhenAutoStartFalseAndTaskNotRunningOrCommitted', -200472: 'CannotWriteWhenAutoStartFalseAndTaskNotRunningOrCommitted', -200470: 'TaskVersionNew', -200469: 'ChanVersionNew', -200467: 'EmptyString', -200466: 'ChannelSizeTooBigForPortReadType', -200465: 'ChannelSizeTooBigForPortWriteType', -200464: 'ExpectedNumberOfChannelsVerificationFailed', -200463: 'NumLinesMismatchInReadOrWrite', -200462: 'OutputBufferEmpty', -200461: 'InvalidChanName', -200460: 'ReadNoInputChansInTask', -200459: 'WriteNoOutputChansInTask', -200457: 'PropertyNotSupportedNotInputTask', -200456: 'PropertyNotSupportedNotOutputTask', -200455: 'GetPropertyNotInputBufferedTask', -200454: 'GetPropertyNotOutputBufferedTask', -200453: 'InvalidTimeoutVal', -200452: 'AttributeNotSupportedInTaskContext', -200451: 'AttributeNotQueryableUnlessTaskIsCommitted', -200450: 'AttributeNotSettableWhenTaskIsRunning', -200449: 'DACRngLowNotMinusRefValNorZero', -200448: 'DACRngHighNotEqualRefVal', -200447: 'UnitsNotFromCustomScale', -200446: 'InvalidVoltageReadingDuringExtCal', -200445: 'CalFunctionNotSupported', -200444: 'InvalidPhysicalChanForCal', -200443: 'ExtCalNotComplete', -200442: 'CantSyncToExtStimulusFreqDuringCal', -200441: 'UnableToDetectExtStimulusFreqDuringCal', -200440: 'InvalidCloseAction', -200439: 'ExtCalFunctionOutsideExtCalSession', -200438: 'InvalidCalArea', -200437: 'ExtCalConstsInvalid', -200436: 'StartTrigDelayWithExtSampClk', -200435: 'DelayFromSampClkWithExtConv', -200434: 'FewerThan2PreScaledVals', -200433: 'FewerThan2ScaledValues', -200432: 'PhysChanOutputType', -200431: 'PhysChanMeasType', -200430: 'InvalidPhysChanType', -200429: 'LabVIEWEmptyTaskOrChans', -200428: 'LabVIEWInvalidTaskOrChans', -200427: 'InvalidRefClkRate', -200426: 'InvalidExtTrigImpedance', -200425: 'HystTrigLevelAIMax', -200424: 'LineNumIncompatibleWithVideoSignalFormat', -200423: 'TrigWindowAIMinAIMaxCombo', -200422: 'TrigAIMinAIMax', -200421: 'HystTrigLevelAIMin', -200420: 'InvalidSampRateConsiderRIS', -200419: 'InvalidReadPosDuringRIS', -200418: 'ImmedTrigDuringRISMode', -200417: 'TDCNotEnabledDuringRISMode', -200416: 'MultiRecWithRIS', -200415: 'InvalidRefClkSrc', -200414: 'InvalidSampClkSrc', -200413: 'InsufficientOnBoardMemForNumRecsAndSamps', -200412: 'InvalidAIAttenuation', -200411: 'ACCouplingNotAllowedWith50OhmImpedance', -200410: 'InvalidRecordNum', -200409: 'ZeroSlopeLinearScale', -200408: 'ZeroReversePolyScaleCoeffs', -200407: 'ZeroForwardPolyScaleCoeffs', -200406: 'NoReversePolyScaleCoeffs', -200405: 'NoForwardPolyScaleCoeffs', -200404: 'NoPolyScaleCoeffs', -200403: 'ReversePolyOrderLessThanNumPtsToCompute', -200402: 'ReversePolyOrderNotPositive', -200401: 'NumPtsToComputeNotPositive', -200400: 'WaveformLengthNotMultipleOfIncr', -200399: 'CAPINoExtendedErrorInfoAvailable', -200398: 'CVIFunctionNotFoundInDAQmxDLL', -200397: 'CVIFailedToLoadDAQmxDLL', -200396: 'NoCommonTrigLineForImmedRoute', -200395: 'NoCommonTrigLineForTaskRoute', -200394: 'F64PrptyValNotUnsignedInt', -200393: 'RegisterNotWritable', -200392: 'InvalidOutputVoltageAtSampClkRate', -200391: 'StrobePhaseShiftDCMBecameUnlocked', -200390: 'DrivePhaseShiftDCMBecameUnlocked', -200389: 'ClkOutPhaseShiftDCMBecameUnlocked', -200388: 'OutputBoardClkDCMBecameUnlocked', -200387: 'InputBoardClkDCMBecameUnlocked', -200386: 'InternalClkDCMBecameUnlocked', -200385: 'DCMLock', -200384: 'DataLineReservedForDynamicOutput', -200383: 'InvalidRefClkSrcGivenSampClkSrc', -200382: 'NoPatternMatcherAvailable', -200381: 'InvalidDelaySampRateBelowPhaseShiftDCMThresh', -200380: 'StrainGageCalibration', -200379: 'InvalidExtClockFreqAndDivCombo', -200378: 'CustomScaleDoesNotExist', -200377: 'OnlyFrontEndChanOpsDuringScan', -200376: 'InvalidOptionForDigitalPortChannel', -200375: 'UnsupportedSignalTypeExportSignal', -200374: 'InvalidSignalTypeExportSignal', -200373: 'UnsupportedTrigTypeSendsSWTrig', -200372: 'InvalidTrigTypeSendsSWTrig', -200371: 'RepeatedPhysicalChan', -200370: 'ResourcesInUseForRouteInTask', -200369: 'ResourcesInUseForRoute', -200368: 'RouteNotSupportedByHW', -200367: 'ResourcesInUseForExportSignalPolarity', -200366: 'ResourcesInUseForInversionInTask', -200365: 'ResourcesInUseForInversion', -200364: 'ExportSignalPolarityNotSupportedByHW', -200363: 'InversionNotSupportedByHW', -200362: 'OverloadedChansExistNotRead', -200361: 'InputFIFOOverflow2', -200360: 'CJCChanNotSpecd', -200359: 'CtrExportSignalNotPossible', -200358: 'RefTrigWhenContinuous', -200357: 'IncompatibleSensorOutputAndDeviceInputRanges', -200356: 'CustomScaleNameUsed', -200355: 'PropertyValNotSupportedByHW', -200354: 'PropertyValNotValidTermName', -200353: 'ResourcesInUseForProperty', -200352: 'CJCChanAlreadyUsed', -200351: 'ForwardPolynomialCoefNotSpecd', -200350: 'TableScaleNumPreScaledAndScaledValsNotEqual', -200349: 'TableScalePreScaledValsNotSpecd', -200348: 'TableScaleScaledValsNotSpecd', -200347: 'IntermediateBufferSizeNotMultipleOfIncr', -200346: 'EventPulseWidthOutOfRange', -200345: 'EventDelayOutOfRange', -200344: 'SampPerChanNotMultipleOfIncr', -200343: 'CannotCalculateNumSampsTaskNotStarted', -200342: 'ScriptNotInMem', -200341: 'OnboardMemTooSmall', -200340: 'ReadAllAvailableDataWithoutBuffer', -200339: 'PulseActiveAtStart', -200338: 'CalTempNotSupported', -200337: 'DelayFromSampClkTooLong', -200336: 'DelayFromSampClkTooShort', -200335: 'AIConvRateTooHigh', -200334: 'DelayFromStartTrigTooLong', -200333: 'DelayFromStartTrigTooShort', -200332: 'SampRateTooHigh', -200331: 'SampRateTooLow', -200330: 'PFI0UsedForAnalogAndDigitalSrc', -200329: 'PrimingCfgFIFO', -200328: 'CannotOpenTopologyCfgFile', -200327: 'InvalidDTInsideWfmDataType', -200326: 'RouteSrcAndDestSame', -200325: 'ReversePolynomialCoefNotSpecd', -200324: 'DevAbsentOrUnavailable', -200323: 'NoAdvTrigForMultiDevScan', -200322: 'InterruptsInsufficientDataXferMech', -200321: 'InvalidAttentuationBasedOnMinMax', -200320: 'CabledModuleCannotRouteSSH', -200319: 'CabledModuleCannotRouteConvClk', -200318: 'InvalidExcitValForScaling', -200317: 'NoDevMemForScript', -200316: 'ScriptDataUnderflow', -200315: 'NoDevMemForWaveform', -200314: 'StreamDCMBecameUnlocked', -200313: 'StreamDCMLock', -200312: 'WaveformNotInMem', -200311: 'WaveformWriteOutOfBounds', -200310: 'WaveformPreviouslyAllocated', -200309: 'SampClkTbMasterTbDivNotAppropriateForSampTbSrc', -200308: 'SampTbRateSampTbSrcMismatch', -200307: 'MasterTbRateMasterTbSrcMismatch', -200306: 'SampsPerChanTooBig', -200305: 'FinitePulseTrainNotPossible', -200304: 'ExtMasterTimebaseRateNotSpecified', -200303: 'ExtSampClkSrcNotSpecified', -200302: 'InputSignalSlowerThanMeasTime', -200301: 'CannotUpdatePulseGenProperty', -200300: 'InvalidTimingType', -200297: 'PropertyUnavailWhenUsingOnboardMemory', -200295: 'CannotWriteAfterStartWithOnboardMemory', -200294: 'NotEnoughSampsWrittenForInitialXferRqstCondition', -200293: 'NoMoreSpace', -200292: 'SamplesCanNotYetBeWritten', -200291: 'GenStoppedToPreventIntermediateBufferRegenOfOldSamples', -200290: 'GenStoppedToPreventRegenOfOldSamples', -200289: 'SamplesNoLongerWriteable', -200288: 'SamplesWillNeverBeGenerated', -200287: 'NegativeWriteSampleNumber', -200286: 'NoAcqStarted', -200284: 'SamplesNotYetAvailable', -200283: 'AcqStoppedToPreventIntermediateBufferOverflow', -200282: 'NoRefTrigConfigured', -200281: 'CannotReadRelativeToRefTrigUntilDone', -200279: 'SamplesNoLongerAvailable', -200278: 'SamplesWillNeverBeAvailable', -200277: 'NegativeReadSampleNumber', -200276: 'ExternalSampClkAndRefClkThruSameTerm', -200275: 'ExtSampClkRateTooLowForClkIn', -200274: 'ExtSampClkRateTooHighForBackplane', -200273: 'SampClkRateAndDivCombo', -200272: 'SampClkRateTooLowForDivDown', -200271: 'ProductOfAOMinAndGainTooSmall', -200270: 'InterpolationRateNotPossible', -200269: 'OffsetTooLarge', -200268: 'OffsetTooSmall', -200267: 'ProductOfAOMaxAndGainTooLarge', -200266: 'MinAndMaxNotSymmetric', -200265: 'InvalidAnalogTrigSrc', -200264: 'TooManyChansForAnalogRefTrig', -200263: 'TooManyChansForAnalogPauseTrig', -200262: 'TrigWhenOnDemandSampTiming', -200261: 'InconsistentAnalogTrigSettings', -200260: 'MemMapDataXferModeSampTimingCombo', -200259: 'InvalidJumperedAttr', -200258: 'InvalidGainBasedOnMinMax', -200257: 'InconsistentExcit', -200256: 'TopologyNotSupportedByCfgTermBlock', -200255: 'BuiltInTempSensorNotSupported', -200254: 'InvalidTerm', -200253: 'CannotTristateTerm', -200252: 'CannotTristateBusyTerm', -200251: 'NoDMAChansAvailable', -200250: 'InvalidWaveformLengthWithinLoopInScript', -200249: 'InvalidSubsetLengthWithinLoopInScript', -200248: 'MarkerPosInvalidForLoopInScript', -200247: 'IntegerExpectedInScript', -200246: 'PLLBecameUnlocked', -200245: 'PLLLock', -200244: 'DDCClkOutDCMBecameUnlocked', -200243: 'DDCClkOutDCMLock', -200242: 'ClkDoublerDCMBecameUnlocked', -200241: 'ClkDoublerDCMLock', -200240: 'SampClkDCMBecameUnlocked', -200239: 'SampClkDCMLock', -200238: 'SampClkTimebaseDCMBecameUnlocked', -200237: 'SampClkTimebaseDCMLock', -200236: 'AttrCannotBeReset', -200235: 'ExplanationNotFound', -200234: 'WriteBufferTooSmall', -200233: 'SpecifiedAttrNotValid', -200232: 'AttrCannotBeRead', -200231: 'AttrCannotBeSet', -200230: 'NULLPtrForC_Api', -200229: 'ReadBufferTooSmall', -200228: 'BufferTooSmallForString', -200227: 'NoAvailTrigLinesOnDevice', -200226: 'TrigBusLineNotAvail', -200225: 'CouldNotReserveRequestedTrigLine', -200224: 'TrigLineNotFound', -200223: 'SCXI1126ThreshHystCombination', -200222: 'AcqStoppedToPreventInputBufferOverwrite', -200221: 'TimeoutExceeded', -200220: 'InvalidDeviceID', -200219: 'InvalidAOChanOrder', -200218: 'SampleTimingTypeAndDataXferMode', -200217: 'BufferWithOnDemandSampTiming', -200216: 'BufferAndDataXferMode', -200215: 'MemMapAndBuffer', -200214: 'NoAnalogTrigHW', -200213: 'TooManyPretrigPlusMinPostTrigSamps', -200212: 'InconsistentUnitsSpecified', -200211: 'MultipleRelaysForSingleRelayOp', -200210: 'MultipleDevIDsPerChassisSpecifiedInList', -200209: 'DuplicateDevIDInList', -200208: 'InvalidRangeStatementCharInList', -200207: 'InvalidDeviceIDInList', -200206: 'TriggerPolarityConflict', -200205: 'CannotScanWithCurrentTopology', -200204: 'UnexpectedIdentifierInFullySpecifiedPathInList', -200203: 'SwitchCannotDriveMultipleTrigLines', -200202: 'InvalidRelayName', -200201: 'SwitchScanlistTooBig', -200200: 'SwitchChanInUse', -200199: 'SwitchNotResetBeforeScan', -200198: 'InvalidTopology', -200197: 'AttrNotSupported', -200196: 'UnexpectedEndOfActionsInList', -200195: 'PowerBudgetExceeded', -200194: 'HWUnexpectedlyPoweredOffAndOn', -200193: 'SwitchOperationNotSupported', -200192: 'OnlyContinuousScanSupported', -200191: 'SwitchDifferentTopologyWhenScanning', -200190: 'DisconnectPathNotSameAsExistingPath', -200189: 'ConnectionNotPermittedOnChanReservedForRouting', -200188: 'CannotConnectSrcChans', -200187: 'CannotConnectChannelToItself', -200186: 'ChannelNotReservedForRouting', -200185: 'CannotConnectChansDirectly', -200184: 'ChansAlreadyConnected', -200183: 'ChanDuplicatedInPath', -200182: 'NoPathToDisconnect', -200181: 'InvalidSwitchChan', -200180: 'NoPathAvailableBetween2SwitchChans', -200179: 'ExplicitConnectionExists', -200178: 'SwitchDifferentSettlingTimeWhenScanning', -200177: 'OperationOnlyPermittedWhileScanning', -200176: 'OperationNotPermittedWhileScanning', -200175: 'HardwareNotResponding', -200173: 'InvalidSampAndMasterTimebaseRateCombo', -200172: 'NonZeroBufferSizeInProgIOXfer', -200171: 'VirtualChanNameUsed', -200170: 'PhysicalChanDoesNotExist', -200169: 'MemMapOnlyForProgIOXfer', -200168: 'TooManyChans', -200167: 'CannotHaveCJTempWithOtherChans', -200166: 'OutputBufferUnderwrite', -200163: 'SensorInvalidCompletionResistance', -200162: 'VoltageExcitIncompatibleWith2WireCfg', -200161: 'IntExcitSrcNotAvailable', -200160: 'CannotCreateChannelAfterTaskVerified', -200159: 'LinesReservedForSCXIControl', -200158: 'CouldNotReserveLinesForSCXIControl', -200157: 'CalibrationFailed', -200156: 'ReferenceFrequencyInvalid', -200155: 'ReferenceResistanceInvalid', -200154: 'ReferenceCurrentInvalid', -200153: 'ReferenceVoltageInvalid', -200152: 'EEPROMDataInvalid', -200151: 'CabledModuleNotCapableOfRoutingAI', -200150: 'ChannelNotAvailableInParallelMode', -200149: 'ExternalTimebaseRateNotKnownForDelay', -200148: 'FREQOUTCannotProduceDesiredFrequency', -200147: 'MultipleCounterInputTask', -200146: 'CounterStartPauseTriggerConflict', -200145: 'CounterInputPauseTriggerAndSampleClockInvalid', -200144: 'CounterOutputPauseTriggerInvalid', -200143: 'CounterTimebaseRateNotSpecified', -200142: 'CounterTimebaseRateNotFound', -200141: 'CounterOverflow', -200140: 'CounterNoTimebaseEdgesBetweenGates', -200139: 'CounterMaxMinRangeFreq', -200138: 'CounterMaxMinRangeTime', -200137: 'SuitableTimebaseNotFoundTimeCombo', -200136: 'SuitableTimebaseNotFoundFrequencyCombo', -200135: 'InternalTimebaseSourceDivisorCombo', -200134: 'InternalTimebaseSourceRateCombo', -200133: 'InternalTimebaseRateDivisorSourceCombo', -200132: 'ExternalTimebaseRateNotknownForRate', -200131: 'AnalogTrigChanNotFirstInScanList', -200130: 'NoDivisorForExternalSignal', -200128: 'AttributeInconsistentAcrossRepeatedPhysicalChannels', -200127: 'CannotHandshakeWithPort0', -200126: 'ControlLineConflictOnPortC', -200125: 'Lines4To7ConfiguredForOutput', -200124: 'Lines4To7ConfiguredForInput', -200123: 'Lines0To3ConfiguredForOutput', -200122: 'Lines0To3ConfiguredForInput', -200121: 'PortConfiguredForOutput', -200120: 'PortConfiguredForInput', -200119: 'PortConfiguredForStaticDigitalOps', -200118: 'PortReservedForHandshaking', -200117: 'PortDoesNotSupportHandshakingDataIO', -200116: 'CannotTristate8255OutputLines', -200113: 'TemperatureOutOfRangeForCalibration', -200112: 'CalibrationHandleInvalid', -200111: 'PasswordRequired', -200110: 'IncorrectPassword', -200109: 'PasswordTooLong', -200108: 'CalibrationSessionAlreadyOpen', -200107: 'SCXIModuleIncorrect', -200106: 'AttributeInconsistentAcrossChannelsOnDevice', -200105: 'SCXI1122ResistanceChanNotSupportedForCfg', -200104: 'BracketPairingMismatchInList', -200103: 'InconsistentNumSamplesToWrite', -200102: 'IncorrectDigitalPattern', -200101: 'IncorrectNumChannelsToWrite', -200100: 'IncorrectReadFunction', -200099: 'PhysicalChannelNotSpecified', -200098: 'MoreThanOneTerminal', -200097: 'MoreThanOneActiveChannelSpecified', -200096: 'InvalidNumberSamplesToRead', -200095: 'AnalogWaveformExpected', -200094: 'DigitalWaveformExpected', -200093: 'ActiveChannelNotSpecified', -200092: 'FunctionNotSupportedForDeviceTasks', -200091: 'FunctionNotInLibrary', -200090: 'LibraryNotPresent', -200089: 'DuplicateTask', -200088: 'InvalidTask', -200087: 'InvalidChannel', -200086: 'InvalidSyntaxForPhysicalChannelRange', -200082: 'MinNotLessThanMax', -200081: 'SampleRateNumChansConvertPeriodCombo', -200079: 'AODuringCounter1DMAConflict', -200078: 'AIDuringCounter0DMAConflict', -200077: 'InvalidAttributeValue', -200076: 'SuppliedCurrentDataOutsideSpecifiedRange', -200075: 'SuppliedVoltageDataOutsideSpecifiedRange', -200074: 'CannotStoreCalConst', -200073: 'SCXIModuleNotFound', -200072: 'DuplicatePhysicalChansNotSupported', -200071: 'TooManyPhysicalChansInList', -200070: 'InvalidAdvanceEventTriggerType', -200069: 'DeviceIsNotAValidSwitch', -200068: 'DeviceDoesNotSupportScanning', -200067: 'ScanListCannotBeTimed', -200066: 'ConnectOperatorInvalidAtPointInList', -200065: 'UnexpectedSwitchActionInList', -200064: 'UnexpectedSeparatorInList', -200063: 'ExpectedTerminatorInList', -200062: 'ExpectedConnectOperatorInList', -200061: 'ExpectedSeparatorInList', -200060: 'FullySpecifiedPathInListContainsRange', -200059: 'ConnectionSeparatorAtEndOfList', -200058: 'IdentifierInListTooLong', -200057: 'DuplicateDeviceIDInListWhenSettling', -200056: 'ChannelNameNotSpecifiedInList', -200055: 'DeviceIDNotSpecifiedInList', -200054: 'SemicolonDoesNotFollowRangeInList', -200053: 'SwitchActionInListSpansMultipleDevices', -200052: 'RangeWithoutAConnectActionInList', -200051: 'InvalidIdentifierFollowingSeparatorInList', -200050: 'InvalidChannelNameInList', -200049: 'InvalidNumberInRepeatStatementInList', -200048: 'InvalidTriggerLineInList', -200047: 'InvalidIdentifierInListFollowingDeviceID', -200046: 'InvalidIdentifierInListAtEndOfSwitchAction', -200045: 'DeviceRemoved', -200044: 'RoutingPathNotAvailable', -200043: 'RoutingHardwareBusy', -200042: 'RequestedSignalInversionForRoutingNotPossible', -200041: 'InvalidRoutingDestinationTerminalName', -200040: 'InvalidRoutingSourceTerminalName', -200039: 'RoutingNotSupportedForDevice', -200038: 'WaitIsLastInstructionOfLoopInScript', -200037: 'ClearIsLastInstructionOfLoopInScript', -200036: 'InvalidLoopIterationsInScript', -200035: 'RepeatLoopNestingTooDeepInScript', -200034: 'MarkerPositionOutsideSubsetInScript', -200033: 'SubsetStartOffsetNotAlignedInScript', -200032: 'InvalidSubsetLengthInScript', -200031: 'MarkerPositionNotAlignedInScript', -200030: 'SubsetOutsideWaveformInScript', -200029: 'MarkerOutsideWaveformInScript', -200028: 'WaveformInScriptNotInMem', -200027: 'KeywordExpectedInScript', -200026: 'BufferNameExpectedInScript', -200025: 'ProcedureNameExpectedInScript', -200024: 'ScriptHasInvalidIdentifier', -200023: 'ScriptHasInvalidCharacter', -200022: 'ResourceAlreadyReserved', -200020: 'SelfTestFailed', -200019: 'ADCOverrun', -200018: 'DACUnderflow', -200017: 'InputFIFOUnderflow', -200016: 'OutputFIFOUnderflow', -200015: 'SCXISerialCommunication', -200014: 'DigitalTerminalSpecifiedMoreThanOnce', -200012: 'DigitalOutputNotSupported', -200011: 'InconsistentChannelDirections', -200010: 'InputFIFOOverflow', -200009: 'TimeStampOverwritten', -200008: 'StopTriggerHasNotOccurred', -200007: 'RecordNotAvailable', -200006: 'RecordOverwritten', -200005: 'DataNotAvailable', -200004: 'DataOverwrittenInDeviceMemory', -200003: 'DuplicatedChannel', 209800: 'ngReadNotCompleteBeforeSampClk', 209801: 'ngWriteNotCompleteBeforeSampClk', 209802: 'ngWaitForNextSampClkDetectedMissedSampClk', 50100: 'ngPALResourceOwnedBySystem', 50102: 'ngPALResourceNotReserved', 50103: 'ngPALResourceReserved', 50104: 'ngPALResourceNotInitialized', 50105: 'ngPALResourceInitialized', 50106: 'ngPALResourceBusy', 50107: 'ngPALResourceAmbiguous', -50807: 'PALIsocStreamBufferError', -50806: 'PALInvalidAddressComponent', -50805: 'PALSharingViolation', -50804: 'PALInvalidDeviceState', -50803: 'PALConnectionReset', -50802: 'PALConnectionAborted', -50801: 'PALConnectionRefused', -50800: 'PALBusResetOccurred', -50700: 'PALWaitInterrupted', -50651: 'PALMessageUnderflow', -50650: 'PALMessageOverflow', -50604: 'PALThreadAlreadyDead', -50603: 'PALThreadStackSizeNotSupported', -50602: 'PALThreadControllerIsNotThreadCreator', -50601: 'PALThreadHasNoThreadObject', -50600: 'PALThreadCouldNotRun', -50551: 'PALSyncAbandoned', -50550: 'PALSyncTimedOut', -50503: 'PALReceiverSocketInvalid', -50502: 'PALSocketListenerInvalid', -50501: 'PALSocketListenerAlreadyRegistered', -50500: 'PALDispatcherAlreadyExported', -50450: 'PALDMALinkEventMissed', -50413: 'PALBusError', -50412: 'PALRetryLimitExceeded', -50411: 'PALTransferOverread', -50410: 'PALTransferOverwritten', -50409: 'PALPhysicalBufferFull', -50408: 'PALPhysicalBufferEmpty', -50407: 'PALLogicalBufferFull', -50406: 'PALLogicalBufferEmpty', -50405: 'PALTransferAborted', -50404: 'PALTransferStopped', -50403: 'PALTransferInProgress', -50402: 'PALTransferNotInProgress', -50401: 'PALCommunicationsFault', -50400: 'PALTransferTimedOut', -50355: 'PALMemoryHeapNotEmpty', -50354: 'PALMemoryBlockCheckFailed', -50353: 'PALMemoryPageLockFailed', -50352: 'PALMemoryFull', -50351: 'PALMemoryAlignmentFault', -50350: 'PALMemoryConfigurationFault', -50303: 'PALDeviceInitializationFault', -50302: 'PALDeviceNotSupported', -50301: 'PALDeviceUnknown', -50300: 'PALDeviceNotFound', -50265: 'PALFeatureDisabled', -50264: 'PALComponentBusy', -50263: 'PALComponentAlreadyInstalled', -50262: 'PALComponentNotUnloadable', -50261: 'PALComponentNeverLoaded', -50260: 'PALComponentAlreadyLoaded', -50259: 'PALComponentCircularDependency', -50258: 'PALComponentInitializationFault', -50257: 'PALComponentImageCorrupt', -50256: 'PALFeatureNotSupported', -50255: 'PALFunctionNotFound', -50254: 'PALFunctionObsolete', -50253: 'PALComponentTooNew', -50252: 'PALComponentTooOld', -50251: 'PALComponentNotFound', -50250: 'PALVersionMismatch', -50209: 'PALFileFault', -50208: 'PALFileWriteFault', -50207: 'PALFileReadFault', -50206: 'PALFileSeekFault', -50205: 'PALFileCloseFault', -50204: 'PALFileOpenFault', -50203: 'PALDiskFull', -50202: 'PALOSFault', -50201: 'PALOSInitializationFault', -50200: 'PALOSUnsupported', -50175: 'PALCalculationOverflow', -50152: 'PALHardwareFault', -50151: 'PALFirmwareFault', -50150: 'PALSoftwareFault', -50108: 'PALMessageQueueFull', -50107: 'PALResourceAmbiguous', -50106: 'PALResourceBusy', -50105: 'PALResourceInitialized', -50104: 'PALResourceNotInitialized', -50103: 'PALResourceReserved', -50102: 'PALResourceNotReserved', -50101: 'PALResourceNotAvailable', -50100: 'PALResourceOwnedBySystem', -50020: 'PALBadToken', -50019: 'PALBadThreadMultitask', -50018: 'PALBadLibrarySpecifier', -50017: 'PALBadAddressSpace', -50016: 'PALBadWindowType', -50015: 'PALBadAddressClass', -50014: 'PALBadWriteCount', -50013: 'PALBadWriteOffset', -50012: 'PALBadWriteMode', -50011: 'PALBadReadCount', -50010: 'PALBadReadOffset', -50009: 'PALBadReadMode', -50008: 'PALBadCount', -50007: 'PALBadOffset', -50006: 'PALBadMode', -50005: 'PALBadDataSize', -50004: 'PALBadPointer', -50003: 'PALBadSelector', -50002: 'PALBadDevice', -50001: 'PALIrrelevantAttribute', -50000: 'PALValueConflict'}
principal=int(input("Enter the Principal amount")) year=int(input("Enter the no. of Years")) rateofinterest=int(input("Enter the Rate of Interest. Just enter the number")) amount=principal*((1+rateofinterest/100)**year) compoundinterest = amount-principal print(f"Compound Interest is {compoundinterest} Rupees") print(f"Amount is {amount} Rupees")
principal = int(input('Enter the Principal amount')) year = int(input('Enter the no. of Years')) rateofinterest = int(input('Enter the Rate of Interest. Just enter the number')) amount = principal * (1 + rateofinterest / 100) ** year compoundinterest = amount - principal print(f'Compound Interest is {compoundinterest} Rupees') print(f'Amount is {amount} Rupees')
def div42by(divideBy): return 42 / divideBy print (div42by(2)) print (div42by(12)) print (div42by(0)) print (div42by(1))
def div42by(divideBy): return 42 / divideBy print(div42by(2)) print(div42by(12)) print(div42by(0)) print(div42by(1))
result = {title: str(i) for i, titles in DATA.items() for title in titles}
result = {title: str(i) for (i, titles) in DATA.items() for title in titles}
# -*- coding: utf-8 -*- """ Created on Tue Oct 8 16:55:35 2019 @author: Kelvin """ def spill(init,a,indices): a[a>init['spillsize']]=0 # Finding indices of spill-over elements, up, down, right, left row_centre=indices[0] row_down=[x+1 for x in indices[0]] row_up=[x-1 for x in indices[0]] col_centre=indices[1] col_right=[y+1 for y in indices[1]] col_left=[y-1 for y in indices[1]] # Add one to cell up a[(row_up,col_centre)] = a[(row_up,col_centre)]+1 # Add one to cell down a[(row_down,col_centre)] = a[(row_down,col_centre)]+1 # Add one to cell left a[(row_centre,col_left)] = a[(row_centre,col_left)]+1 # Add one to cell right a[(row_centre,col_right)] = a[(row_centre,col_right)]+1 return a
""" Created on Tue Oct 8 16:55:35 2019 @author: Kelvin """ def spill(init, a, indices): a[a > init['spillsize']] = 0 row_centre = indices[0] row_down = [x + 1 for x in indices[0]] row_up = [x - 1 for x in indices[0]] col_centre = indices[1] col_right = [y + 1 for y in indices[1]] col_left = [y - 1 for y in indices[1]] a[row_up, col_centre] = a[row_up, col_centre] + 1 a[row_down, col_centre] = a[row_down, col_centre] + 1 a[row_centre, col_left] = a[row_centre, col_left] + 1 a[row_centre, col_right] = a[row_centre, col_right] + 1 return a
INCIDENTS_RESULT = [ {'ModuleName': 'InnerServicesModule', 'Brand': 'Builtin', 'Category': 'Builtin', 'ID': '', 'Version': 0, 'Type': 1, 'Contents': { 'ErrorsPrivateDoNotUse': None, 'data': [ { 'CustomFields': {'dbotpredictionprobability': 0, 'detectionsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 20, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'remediationsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 7200, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'timetoassignment': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 0, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'urlsslverification': []}, 'ShardID': 0, 'account': '', 'activated': '0001-01-01T00:00:00Z', 'allRead': False, 'allReadWrite': False, 'attachment': None, 'autime': 1601398110261438200, 'canvases': None, 'category': '', 'closeNotes': '', 'closeReason': '', 'closed': '0001-01-01T00:00:00Z', 'closingUserId': '', 'created': '2020-09-29T16:48:30.261438285Z', 'dbotCreatedBy': 'admin', 'dbotCurrentDirtyFields': None, 'dbotDirtyFields': None, 'dbotMirrorDirection': '', 'dbotMirrorId': '', 'dbotMirrorInstance': '', 'dbotMirrorLastSync': '0001-01-01T00:00:00Z', 'dbotMirrorTags': None, 'details': '', 'droppedCount': 0, 'dueDate': '2020-10-09T16:48:30.261438285Z', 'feedBased': False, 'hasRole': False, 'id': '7', 'investigationId': '7', 'isPlayground': False, 'labels': [{'type': 'Instance', 'value': 'admin'}, {'type': 'Brand', 'value': 'Manual'}], 'lastJobRunTime': '0001-01-01T00:00:00Z', 'lastOpen': '2020-09-30T15:40:11.737120193Z', 'linkedCount': 0, 'linkedIncidents': None, 'modified': '2020-09-30T15:40:36.604919119Z', 'name': 'errors', 'notifyTime': '2020-09-29T16:48:30.436371249Z', 'occurred': '2020-09-29T16:48:30.261438058Z', 'openDuration': 62265, 'owner': '', 'parent': '', 'phase': '', 'playbookId': 'AutoFocusPolling', 'previousAllRead': False, 'previousAllReadWrite': False, 'previousRoles': None, 'rawCategory': '', 'rawCloseReason': '', 'rawJSON': '', 'rawName': 'errors', 'rawPhase': '', 'rawType': 'Unclassified', 'reason': '', 'reminder': '0001-01-01T00:00:00Z', 'roles': None, 'runStatus': 'error', 'severity': 0, 'sla': 0, 'sortValues': ['_score'], 'sourceBrand': 'Manual', 'sourceInstance': 'admin', 'status': 1, 'type': 'Unclassified', 'version': 8}, { 'CustomFields': {'dbotpredictionprobability': 0, 'detectionsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 20, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'integrationscategories': ['Utilities', 'Utilities', 'Utilities', 'Utilities', 'Endpoint', 'Messaging', 'Data Enrichment & Threat Intelligence'], 'integrationsfailedcategories': [ 'Data Enrichment & Threat Intelligence', 'Endpoint'], 'numberofentriesiderrors': 0, 'numberoffailedincidents': 0, 'remediationsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 7200, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'timetoassignment': { 'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 0, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'totalfailedinstances': 2, 'totalgoodinstances': 7, 'totalinstances': 9, 'unassignedincidents': [], 'urlsslverification': []}, 'ShardID': 0, 'account': '', 'activated': '0001-01-01T00:00:00Z', 'allRead': False, 'allReadWrite': False, 'attachment': None, 'autime': 1601388165826470700, 'canvases': None, 'category': '', 'closeNotes': 'Created a new incident type.', 'closeReason': '', 'closed': '0001-01-01T00:00:00Z', 'closingUserId': '', 'created': '2020-09-29T14:02:45.82647067Z', 'dbotCreatedBy': 'admin', 'dbotCurrentDirtyFields': None, 'dbotDirtyFields': None, 'dbotMirrorDirection': '', 'dbotMirrorId': '', 'dbotMirrorInstance': '', 'dbotMirrorLastSync': '0001-01-01T00:00:00Z', 'dbotMirrorTags': None, 'details': '', 'droppedCount': 0, 'dueDate': '0001-01-01T00:00:00Z', 'feedBased': False, 'hasRole': False, 'id': '3', 'investigationId': '3', 'isPlayground': False, 'labels': [{'type': 'Instance', 'value': 'admin'}, {'type': 'Brand', 'value': 'Manual'}], 'lastJobRunTime': '0001-01-01T00:00:00Z', 'lastOpen': '2020-09-30T15:40:48.618174584Z', 'linkedCount': 0, 'linkedIncidents': None, 'modified': '2020-09-30T15:41:15.184226213Z', 'name': 'Incident with error', 'notifyTime': '2020-09-29T14:09:06.048819578Z', 'occurred': '2020-09-29T14:02:45.826470478Z', 'openDuration': 686, 'owner': 'admin', 'parent': '', 'phase': '', 'playbookId': 'JOB - Integrations and Playbooks Health Check', 'previousAllRead': False, 'previousAllReadWrite': False, 'previousRoles': None, 'rawCategory': '', 'rawCloseReason': '', 'rawJSON': '', 'rawName': 'Incident with error', 'rawPhase': '', 'rawType': 'testing', 'reason': '', 'reminder': '0001-01-01T00:00:00Z', 'roles': None, 'runStatus': 'error', 'severity': 0, 'sla': 0, 'sortValues': ['_score'], 'sourceBrand': 'Manual', 'sourceInstance': 'admin', 'status': 1, 'type': 'testing', 'version': 13}, { 'CustomFields': {'dbotpredictionprobability': 0, 'detectionsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 20, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'remediationsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 7200, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'sourceusername': 'JohnJoe', 'timetoassignment': { 'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 0, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'urlsslverification': []}, 'ShardID': 0, 'account': '', 'activated': '0001-01-01T00:00:00Z', 'allRead': False, 'allReadWrite': False, 'attachment': None, 'autime': 1601480646930752000, 'canvases': None, 'category': '', 'closeNotes': '', 'closeReason': '', 'closed': '0001-01-01T00:00:00Z', 'closingUserId': '', 'created': '2020-09-30T15:44:06.930751906Z', 'dbotCreatedBy': 'admin', 'dbotCurrentDirtyFields': None, 'dbotDirtyFields': None, 'dbotMirrorDirection': '', 'dbotMirrorId': '', 'dbotMirrorInstance': '', 'dbotMirrorLastSync': '0001-01-01T00:00:00Z', 'dbotMirrorTags': None, 'details': '', 'droppedCount': 0, 'dueDate': '2020-10-10T15:44:06.930751906Z', 'feedBased': False, 'hasRole': False, 'id': '48', 'investigationId': '48', 'isPlayground': False, 'labels': [{'type': 'Instance', 'value': 'admin'}, {'type': 'Brand', 'value': 'Manual'}], 'lastJobRunTime': '0001-01-01T00:00:00Z', 'lastOpen': '0001-01-01T00:00:00Z', 'linkedCount': 0, 'linkedIncidents': None, 'modified': '2020-09-30T15:46:35.843037049Z', 'name': 'Multiple Failed Logins', 'notifyTime': '2020-09-30T15:46:35.836929058Z', 'occurred': '2020-09-30T15:44:06.930751702Z', 'openDuration': 0, 'owner': 'admin', 'parent': '', 'phase': '', 'playbookId': 'Account Enrichment - Generic v2.1', 'previousAllRead': False, 'previousAllReadWrite': False, 'previousRoles': None, 'rawCategory': '', 'rawCloseReason': '', 'rawJSON': '', 'rawName': 'Multiple Failed Logins', 'rawPhase': '', 'rawType': 'Unclassified', 'reason': '', 'reminder': '0001-01-01T00:00:00Z', 'roles': None, 'runStatus': 'error', 'severity': 1, 'sla': 0, 'sortValues': ['_score'], 'sourceBrand': 'Manual', 'sourceInstance': 'admin', 'status': 1, 'type': 'Unclassified', 'version': 10}], 'total': 3}, 'HumanReadable': None, 'ImportantEntryContext': None, 'EntryContext': None, 'IgnoreAutoExtract': False, 'ReadableContentsFormat': '', 'ContentsFormat': 'json', 'File': '', 'FileID': '', 'FileMetadata': None, 'System': '', 'Note': False, 'Evidence': False, 'EvidenceID': '', 'Tags': None, 'Metadata': {'id': '', 'version': 0, 'modified': '0001-01-01T00:00:00Z', 'sortValues': None, 'roles': None, 'allRead': False, 'allReadWrite': False, 'previousRoles': None, 'previousAllRead': False, 'previousAllReadWrite': False, 'hasRole': False, 'dbotCreatedBy': '', 'ShardID': 0, 'type': 1, 'created': '2020-10-03T12:39:59.908094336Z', 'retryTime': '0001-01-01T00:00:00Z', 'user': '', 'errorSource': '', 'contents': '', 'format': 'json', 'investigationId': '51', 'file': '', 'fileID': '', 'parentId': '156@51', 'pinned': False, 'fileMetadata': None, 'parentContent': '!getIncidents page="0" query="-status:closed and runStatus:error"', 'parentEntryTruncated': False, 'system': '', 'reputations': None, 'category': '', 'note': False, 'isTodo': False, 'tags': None, 'tagsRaw': None, 'startDate': '0001-01-01T00:00:00Z', 'times': 0, 'recurrent': False, 'endingDate': '0001-01-01T00:00:00Z', 'timezoneOffset': 0, 'cronView': False, 'scheduled': False, 'entryTask': None, 'taskId': '', 'playbookId': '', 'reputationSize': 0, 'contentsSize': 0, 'brand': 'Builtin', 'instance': 'Builtin', 'IndicatorTimeline': None, 'mirrored': False}, 'IndicatorTimeline': None}] TASKS_RESULT = [ {'ModuleName': 'Demisto REST API_instance_1', 'Brand': 'Demisto REST API', 'Category': 'Utilities', 'ID': '', 'Version': 0, 'Type': 1, 'Contents': {'response': [{'ancestors': ['AutoFocusPolling'], 'arguments': {'additionalPollingCommandArgNames': '', 'additionalPollingCommandArgValues': '', 'ids': '', 'pollingCommand': '', 'pollingCommandArgName': 'ids'}, 'comments': False, 'completedBy': 'DBot', 'completedDate': '2020-09-29T16:48:30.427891714Z', 'doNotSaveTaskHistory': True, 'dueDate': '0001-01-01T00:00:00Z', 'dueDateDuration': 0, 'entries': ['4@7', '5@7'], 'evidenceData': {'description': None, 'occurred': None, 'tags': None}, 'forEachIndex': 0, 'forEachInputs': None, 'id': '3', 'indent': 0, 'nextTasks': {'#none#': ['1']}, 'note': False, 'outputs': {}, 'playbookInputs': None, 'previousTasks': {'#none#': ['0']}, 'quietMode': 2, 'reputationCalc': 0, 'restrictedCompletion': False, 'scriptArguments': { 'additionalPollingCommandArgNames': {'complex': None, 'simple': '${inputs.AdditionalPollingCommandArgNames}'}, 'additionalPollingCommandArgValues': {'complex': None, 'simple': '${inputs.AdditionalPollingCommandArgValues}'}, 'ids': {'complex': None, 'simple': '${inputs.Ids}'}, 'pollingCommand': {'complex': None, 'simple': '${inputs.PollingCommandName}'}, 'pollingCommandArgName': {'complex': None, 'simple': '${inputs.PollingCommandArgName}'}}, 'separateContext': False, 'startDate': '2020-09-29T16:48:30.324811804Z', 'state': 'Error', 'task': { 'brand': '', 'conditions': None, 'description': 'RunPollingCommand', 'id': 'c6a3af0a-cc78-4323-80c1-93d686010d86', 'isCommand': False, 'isLocked': False, 'modified': '2020-09-29T08:23:25.596407031Z', 'name': 'RunPollingCommand', 'playbookName': '', 'scriptId': 'RunPollingCommand', 'sortValues': None, 'type': 'regular', 'version': 1}, 'taskCompleteData': [], 'taskId': 'c6a3af0a-cc78-4323-80c1-93d686010d86', 'type': 'regular', 'view': {'position': {'x': 50, 'y': 195}}}]}, 'HumanReadable': None, 'ImportantEntryContext': None, 'EntryContext': None, 'IgnoreAutoExtract': False, 'ReadableContentsFormat': '', 'ContentsFormat': 'json', 'File': '', 'FileID': '', 'FileMetadata': None, 'System': '', 'Note': False, 'Evidence': False, 'EvidenceID': '', 'Tags': None, 'Metadata': { 'id': '', 'version': 0, 'modified': '0001-01-01T00:00:00Z', 'sortValues': None, 'roles': None, 'allRead': False, 'allReadWrite': False, 'previousRoles': None, 'previousAllRead': False, 'previousAllReadWrite': False, 'hasRole': False, 'dbotCreatedBy': '', 'ShardID': 0, 'type': 1, 'created': '2020-10-03T12:43:23.006018275Z', 'retryTime': '0001-01-01T00:00:00Z', 'user': '', 'errorSource': '', 'contents': '', 'format': 'json', 'investigationId': '51', 'file': '', 'fileID': '', 'parentId': '158@51', 'pinned': False, 'fileMetadata': None, 'parentContent': '!demisto-api-post uri="investigation/7/workplan/tasks" body=' '"{\\"states\\":[\\"Error\\"],\\"types\\":[\\"regular\\",\\"condition\\",\\"collection\\"]}"', 'parentEntryTruncated': False, 'system': '', 'reputations': None, 'category': '', 'note': False, 'isTodo': False, 'tags': None, 'tagsRaw': None, 'startDate': '0001-01-01T00:00:00Z', 'times': 0, 'recurrent': False, 'endingDate': '0001-01-01T00:00:00Z', 'timezoneOffset': 0, 'cronView': False, 'scheduled': False, 'entryTask': None, 'taskId': '', 'playbookId': '', 'reputationSize': 0, 'contentsSize': 0, 'brand': 'Demisto REST API', 'instance': 'Demisto REST API_instance_1', 'IndicatorTimeline': None, 'mirrored': False}, 'IndicatorTimeline': None}] SERVER_URL = [{'ModuleName': 'CustomScripts', 'Brand': 'Scripts', 'Category': 'automation', 'ID': '', 'Version': 0, 'Type': 1, 'Contents': 'https://ec2-11-123-11-22.eu-west-1.compute.amazonaws.com//acc_test', 'HumanReadable': 'https://ec2-11-123-11-22.eu-west-1.compute.amazonaws.com//acc_test'}]
incidents_result = [{'ModuleName': 'InnerServicesModule', 'Brand': 'Builtin', 'Category': 'Builtin', 'ID': '', 'Version': 0, 'Type': 1, 'Contents': {'ErrorsPrivateDoNotUse': None, 'data': [{'CustomFields': {'dbotpredictionprobability': 0, 'detectionsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 20, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'remediationsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 7200, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'timetoassignment': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 0, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'urlsslverification': []}, 'ShardID': 0, 'account': '', 'activated': '0001-01-01T00:00:00Z', 'allRead': False, 'allReadWrite': False, 'attachment': None, 'autime': 1601398110261438200, 'canvases': None, 'category': '', 'closeNotes': '', 'closeReason': '', 'closed': '0001-01-01T00:00:00Z', 'closingUserId': '', 'created': '2020-09-29T16:48:30.261438285Z', 'dbotCreatedBy': 'admin', 'dbotCurrentDirtyFields': None, 'dbotDirtyFields': None, 'dbotMirrorDirection': '', 'dbotMirrorId': '', 'dbotMirrorInstance': '', 'dbotMirrorLastSync': '0001-01-01T00:00:00Z', 'dbotMirrorTags': None, 'details': '', 'droppedCount': 0, 'dueDate': '2020-10-09T16:48:30.261438285Z', 'feedBased': False, 'hasRole': False, 'id': '7', 'investigationId': '7', 'isPlayground': False, 'labels': [{'type': 'Instance', 'value': 'admin'}, {'type': 'Brand', 'value': 'Manual'}], 'lastJobRunTime': '0001-01-01T00:00:00Z', 'lastOpen': '2020-09-30T15:40:11.737120193Z', 'linkedCount': 0, 'linkedIncidents': None, 'modified': '2020-09-30T15:40:36.604919119Z', 'name': 'errors', 'notifyTime': '2020-09-29T16:48:30.436371249Z', 'occurred': '2020-09-29T16:48:30.261438058Z', 'openDuration': 62265, 'owner': '', 'parent': '', 'phase': '', 'playbookId': 'AutoFocusPolling', 'previousAllRead': False, 'previousAllReadWrite': False, 'previousRoles': None, 'rawCategory': '', 'rawCloseReason': '', 'rawJSON': '', 'rawName': 'errors', 'rawPhase': '', 'rawType': 'Unclassified', 'reason': '', 'reminder': '0001-01-01T00:00:00Z', 'roles': None, 'runStatus': 'error', 'severity': 0, 'sla': 0, 'sortValues': ['_score'], 'sourceBrand': 'Manual', 'sourceInstance': 'admin', 'status': 1, 'type': 'Unclassified', 'version': 8}, {'CustomFields': {'dbotpredictionprobability': 0, 'detectionsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 20, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'integrationscategories': ['Utilities', 'Utilities', 'Utilities', 'Utilities', 'Endpoint', 'Messaging', 'Data Enrichment & Threat Intelligence'], 'integrationsfailedcategories': ['Data Enrichment & Threat Intelligence', 'Endpoint'], 'numberofentriesiderrors': 0, 'numberoffailedincidents': 0, 'remediationsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 7200, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'timetoassignment': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 0, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'totalfailedinstances': 2, 'totalgoodinstances': 7, 'totalinstances': 9, 'unassignedincidents': [], 'urlsslverification': []}, 'ShardID': 0, 'account': '', 'activated': '0001-01-01T00:00:00Z', 'allRead': False, 'allReadWrite': False, 'attachment': None, 'autime': 1601388165826470700, 'canvases': None, 'category': '', 'closeNotes': 'Created a new incident type.', 'closeReason': '', 'closed': '0001-01-01T00:00:00Z', 'closingUserId': '', 'created': '2020-09-29T14:02:45.82647067Z', 'dbotCreatedBy': 'admin', 'dbotCurrentDirtyFields': None, 'dbotDirtyFields': None, 'dbotMirrorDirection': '', 'dbotMirrorId': '', 'dbotMirrorInstance': '', 'dbotMirrorLastSync': '0001-01-01T00:00:00Z', 'dbotMirrorTags': None, 'details': '', 'droppedCount': 0, 'dueDate': '0001-01-01T00:00:00Z', 'feedBased': False, 'hasRole': False, 'id': '3', 'investigationId': '3', 'isPlayground': False, 'labels': [{'type': 'Instance', 'value': 'admin'}, {'type': 'Brand', 'value': 'Manual'}], 'lastJobRunTime': '0001-01-01T00:00:00Z', 'lastOpen': '2020-09-30T15:40:48.618174584Z', 'linkedCount': 0, 'linkedIncidents': None, 'modified': '2020-09-30T15:41:15.184226213Z', 'name': 'Incident with error', 'notifyTime': '2020-09-29T14:09:06.048819578Z', 'occurred': '2020-09-29T14:02:45.826470478Z', 'openDuration': 686, 'owner': 'admin', 'parent': '', 'phase': '', 'playbookId': 'JOB - Integrations and Playbooks Health Check', 'previousAllRead': False, 'previousAllReadWrite': False, 'previousRoles': None, 'rawCategory': '', 'rawCloseReason': '', 'rawJSON': '', 'rawName': 'Incident with error', 'rawPhase': '', 'rawType': 'testing', 'reason': '', 'reminder': '0001-01-01T00:00:00Z', 'roles': None, 'runStatus': 'error', 'severity': 0, 'sla': 0, 'sortValues': ['_score'], 'sourceBrand': 'Manual', 'sourceInstance': 'admin', 'status': 1, 'type': 'testing', 'version': 13}, {'CustomFields': {'dbotpredictionprobability': 0, 'detectionsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 20, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'remediationsla': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 7200, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'sourceusername': 'JohnJoe', 'timetoassignment': {'accumulatedPause': 0, 'breachTriggered': False, 'dueDate': '0001-01-01T00:00:00Z', 'endDate': '0001-01-01T00:00:00Z', 'lastPauseDate': '0001-01-01T00:00:00Z', 'runStatus': 'idle', 'sla': 0, 'slaStatus': -1, 'startDate': '0001-01-01T00:00:00Z', 'totalDuration': 0}, 'urlsslverification': []}, 'ShardID': 0, 'account': '', 'activated': '0001-01-01T00:00:00Z', 'allRead': False, 'allReadWrite': False, 'attachment': None, 'autime': 1601480646930752000, 'canvases': None, 'category': '', 'closeNotes': '', 'closeReason': '', 'closed': '0001-01-01T00:00:00Z', 'closingUserId': '', 'created': '2020-09-30T15:44:06.930751906Z', 'dbotCreatedBy': 'admin', 'dbotCurrentDirtyFields': None, 'dbotDirtyFields': None, 'dbotMirrorDirection': '', 'dbotMirrorId': '', 'dbotMirrorInstance': '', 'dbotMirrorLastSync': '0001-01-01T00:00:00Z', 'dbotMirrorTags': None, 'details': '', 'droppedCount': 0, 'dueDate': '2020-10-10T15:44:06.930751906Z', 'feedBased': False, 'hasRole': False, 'id': '48', 'investigationId': '48', 'isPlayground': False, 'labels': [{'type': 'Instance', 'value': 'admin'}, {'type': 'Brand', 'value': 'Manual'}], 'lastJobRunTime': '0001-01-01T00:00:00Z', 'lastOpen': '0001-01-01T00:00:00Z', 'linkedCount': 0, 'linkedIncidents': None, 'modified': '2020-09-30T15:46:35.843037049Z', 'name': 'Multiple Failed Logins', 'notifyTime': '2020-09-30T15:46:35.836929058Z', 'occurred': '2020-09-30T15:44:06.930751702Z', 'openDuration': 0, 'owner': 'admin', 'parent': '', 'phase': '', 'playbookId': 'Account Enrichment - Generic v2.1', 'previousAllRead': False, 'previousAllReadWrite': False, 'previousRoles': None, 'rawCategory': '', 'rawCloseReason': '', 'rawJSON': '', 'rawName': 'Multiple Failed Logins', 'rawPhase': '', 'rawType': 'Unclassified', 'reason': '', 'reminder': '0001-01-01T00:00:00Z', 'roles': None, 'runStatus': 'error', 'severity': 1, 'sla': 0, 'sortValues': ['_score'], 'sourceBrand': 'Manual', 'sourceInstance': 'admin', 'status': 1, 'type': 'Unclassified', 'version': 10}], 'total': 3}, 'HumanReadable': None, 'ImportantEntryContext': None, 'EntryContext': None, 'IgnoreAutoExtract': False, 'ReadableContentsFormat': '', 'ContentsFormat': 'json', 'File': '', 'FileID': '', 'FileMetadata': None, 'System': '', 'Note': False, 'Evidence': False, 'EvidenceID': '', 'Tags': None, 'Metadata': {'id': '', 'version': 0, 'modified': '0001-01-01T00:00:00Z', 'sortValues': None, 'roles': None, 'allRead': False, 'allReadWrite': False, 'previousRoles': None, 'previousAllRead': False, 'previousAllReadWrite': False, 'hasRole': False, 'dbotCreatedBy': '', 'ShardID': 0, 'type': 1, 'created': '2020-10-03T12:39:59.908094336Z', 'retryTime': '0001-01-01T00:00:00Z', 'user': '', 'errorSource': '', 'contents': '', 'format': 'json', 'investigationId': '51', 'file': '', 'fileID': '', 'parentId': '156@51', 'pinned': False, 'fileMetadata': None, 'parentContent': '!getIncidents page="0" query="-status:closed and runStatus:error"', 'parentEntryTruncated': False, 'system': '', 'reputations': None, 'category': '', 'note': False, 'isTodo': False, 'tags': None, 'tagsRaw': None, 'startDate': '0001-01-01T00:00:00Z', 'times': 0, 'recurrent': False, 'endingDate': '0001-01-01T00:00:00Z', 'timezoneOffset': 0, 'cronView': False, 'scheduled': False, 'entryTask': None, 'taskId': '', 'playbookId': '', 'reputationSize': 0, 'contentsSize': 0, 'brand': 'Builtin', 'instance': 'Builtin', 'IndicatorTimeline': None, 'mirrored': False}, 'IndicatorTimeline': None}] tasks_result = [{'ModuleName': 'Demisto REST API_instance_1', 'Brand': 'Demisto REST API', 'Category': 'Utilities', 'ID': '', 'Version': 0, 'Type': 1, 'Contents': {'response': [{'ancestors': ['AutoFocusPolling'], 'arguments': {'additionalPollingCommandArgNames': '', 'additionalPollingCommandArgValues': '', 'ids': '', 'pollingCommand': '', 'pollingCommandArgName': 'ids'}, 'comments': False, 'completedBy': 'DBot', 'completedDate': '2020-09-29T16:48:30.427891714Z', 'doNotSaveTaskHistory': True, 'dueDate': '0001-01-01T00:00:00Z', 'dueDateDuration': 0, 'entries': ['4@7', '5@7'], 'evidenceData': {'description': None, 'occurred': None, 'tags': None}, 'forEachIndex': 0, 'forEachInputs': None, 'id': '3', 'indent': 0, 'nextTasks': {'#none#': ['1']}, 'note': False, 'outputs': {}, 'playbookInputs': None, 'previousTasks': {'#none#': ['0']}, 'quietMode': 2, 'reputationCalc': 0, 'restrictedCompletion': False, 'scriptArguments': {'additionalPollingCommandArgNames': {'complex': None, 'simple': '${inputs.AdditionalPollingCommandArgNames}'}, 'additionalPollingCommandArgValues': {'complex': None, 'simple': '${inputs.AdditionalPollingCommandArgValues}'}, 'ids': {'complex': None, 'simple': '${inputs.Ids}'}, 'pollingCommand': {'complex': None, 'simple': '${inputs.PollingCommandName}'}, 'pollingCommandArgName': {'complex': None, 'simple': '${inputs.PollingCommandArgName}'}}, 'separateContext': False, 'startDate': '2020-09-29T16:48:30.324811804Z', 'state': 'Error', 'task': {'brand': '', 'conditions': None, 'description': 'RunPollingCommand', 'id': 'c6a3af0a-cc78-4323-80c1-93d686010d86', 'isCommand': False, 'isLocked': False, 'modified': '2020-09-29T08:23:25.596407031Z', 'name': 'RunPollingCommand', 'playbookName': '', 'scriptId': 'RunPollingCommand', 'sortValues': None, 'type': 'regular', 'version': 1}, 'taskCompleteData': [], 'taskId': 'c6a3af0a-cc78-4323-80c1-93d686010d86', 'type': 'regular', 'view': {'position': {'x': 50, 'y': 195}}}]}, 'HumanReadable': None, 'ImportantEntryContext': None, 'EntryContext': None, 'IgnoreAutoExtract': False, 'ReadableContentsFormat': '', 'ContentsFormat': 'json', 'File': '', 'FileID': '', 'FileMetadata': None, 'System': '', 'Note': False, 'Evidence': False, 'EvidenceID': '', 'Tags': None, 'Metadata': {'id': '', 'version': 0, 'modified': '0001-01-01T00:00:00Z', 'sortValues': None, 'roles': None, 'allRead': False, 'allReadWrite': False, 'previousRoles': None, 'previousAllRead': False, 'previousAllReadWrite': False, 'hasRole': False, 'dbotCreatedBy': '', 'ShardID': 0, 'type': 1, 'created': '2020-10-03T12:43:23.006018275Z', 'retryTime': '0001-01-01T00:00:00Z', 'user': '', 'errorSource': '', 'contents': '', 'format': 'json', 'investigationId': '51', 'file': '', 'fileID': '', 'parentId': '158@51', 'pinned': False, 'fileMetadata': None, 'parentContent': '!demisto-api-post uri="investigation/7/workplan/tasks" body="{\\"states\\":[\\"Error\\"],\\"types\\":[\\"regular\\",\\"condition\\",\\"collection\\"]}"', 'parentEntryTruncated': False, 'system': '', 'reputations': None, 'category': '', 'note': False, 'isTodo': False, 'tags': None, 'tagsRaw': None, 'startDate': '0001-01-01T00:00:00Z', 'times': 0, 'recurrent': False, 'endingDate': '0001-01-01T00:00:00Z', 'timezoneOffset': 0, 'cronView': False, 'scheduled': False, 'entryTask': None, 'taskId': '', 'playbookId': '', 'reputationSize': 0, 'contentsSize': 0, 'brand': 'Demisto REST API', 'instance': 'Demisto REST API_instance_1', 'IndicatorTimeline': None, 'mirrored': False}, 'IndicatorTimeline': None}] server_url = [{'ModuleName': 'CustomScripts', 'Brand': 'Scripts', 'Category': 'automation', 'ID': '', 'Version': 0, 'Type': 1, 'Contents': 'https://ec2-11-123-11-22.eu-west-1.compute.amazonaws.com//acc_test', 'HumanReadable': 'https://ec2-11-123-11-22.eu-west-1.compute.amazonaws.com//acc_test'}]
class Event: def __init__(self, label=None, half=None, time=None, team=None, position= None, visibility=None): self.label = label self.half = half self.time = time self.team = team self.position = position self.visibility = visibility def to_text(self): return self.time + " || " + self.label + " - " + self.team + " - " + str(self.half) + " - " + str(self.visibility) def __lt__(self, other): self.position < other.position class Camera: def __init__(self, label=None, half=None, time=None, change_type=None, position= None, replay=None, link=None): self.label = label self.half = half self.time = time self.change_type = change_type self.position = position self.replay = replay self.link = link def to_text(self): if self.link is None: return self.time + " || " + self.label + " - " + self.change_type + " - " + str(self.half) + " - " + str(self.replay) else: return self.time + " || " + self.label + " - " + self.change_type + " - " + str(self.half) + " - " + str(self.replay) + "\n<--" + self.link.to_text() def __lt__(self, other): self.position < other.position def ms_to_time(position): minutes = int(position//1000)//60 seconds = int(position//1000)%60 return str(minutes).zfill(2) + ":" + str(seconds).zfill(2)
class Event: def __init__(self, label=None, half=None, time=None, team=None, position=None, visibility=None): self.label = label self.half = half self.time = time self.team = team self.position = position self.visibility = visibility def to_text(self): return self.time + ' || ' + self.label + ' - ' + self.team + ' - ' + str(self.half) + ' - ' + str(self.visibility) def __lt__(self, other): self.position < other.position class Camera: def __init__(self, label=None, half=None, time=None, change_type=None, position=None, replay=None, link=None): self.label = label self.half = half self.time = time self.change_type = change_type self.position = position self.replay = replay self.link = link def to_text(self): if self.link is None: return self.time + ' || ' + self.label + ' - ' + self.change_type + ' - ' + str(self.half) + ' - ' + str(self.replay) else: return self.time + ' || ' + self.label + ' - ' + self.change_type + ' - ' + str(self.half) + ' - ' + str(self.replay) + '\n<--' + self.link.to_text() def __lt__(self, other): self.position < other.position def ms_to_time(position): minutes = int(position // 1000) // 60 seconds = int(position // 1000) % 60 return str(minutes).zfill(2) + ':' + str(seconds).zfill(2)
lower = int(input('Min: ')) upper = int(input('Max: ')) for num in range(lower, upper + 1): sum = 0 n = len(str(num)) temp = num while temp > 0: digit = temp % 10 sum += digit ** n temp //= 10 if num == sum: print(num)
lower = int(input('Min: ')) upper = int(input('Max: ')) for num in range(lower, upper + 1): sum = 0 n = len(str(num)) temp = num while temp > 0: digit = temp % 10 sum += digit ** n temp //= 10 if num == sum: print(num)
def test_home_page(client): """test home page""" response = client.get("/") assert b"Create Your Own Resolution" in response.data assert b"Resolution List" in response.data def test_statistic_page(client): """test statistic page""" response = client.get("/statistic") assert b"Create Your Own Resolution" in response.data assert b"Resolution Finishing Statistic" in response.data
def test_home_page(client): """test home page""" response = client.get('/') assert b'Create Your Own Resolution' in response.data assert b'Resolution List' in response.data def test_statistic_page(client): """test statistic page""" response = client.get('/statistic') assert b'Create Your Own Resolution' in response.data assert b'Resolution Finishing Statistic' in response.data
def linearRegression(px,py): sumx = 0 sumy = 0 sumxy = 0 sumxx = 0 n = len (px) for i in range(n): x = px[i] y = py[i] sumx += x sumy += y sumxx += x*x sumxy += x*y a=(sumxy-sumx*sumy/n)/(sumxx-(sumx**2)/n) b=(sumy-a*sumx)/n print(sumx,sumy,sumxy,sumxx) return a,b x=[0,1,2,3,4] y=[4,6,8,10,12] #print(x.__len__()) a,b=linearRegression(x,y) print(a,b) #y=ax+b
def linear_regression(px, py): sumx = 0 sumy = 0 sumxy = 0 sumxx = 0 n = len(px) for i in range(n): x = px[i] y = py[i] sumx += x sumy += y sumxx += x * x sumxy += x * y a = (sumxy - sumx * sumy / n) / (sumxx - sumx ** 2 / n) b = (sumy - a * sumx) / n print(sumx, sumy, sumxy, sumxx) return (a, b) x = [0, 1, 2, 3, 4] y = [4, 6, 8, 10, 12] (a, b) = linear_regression(x, y) print(a, b)
expected_output = { "vrf": { "default": { "interfaces": { "GigabitEthernet1": { "address_family": { "ipv4": { "dr_priority": 1, "hello_interval": 30, "neighbor_count": 1, "version": 2, "mode": "sparse-mode", "dr_address": "10.1.2.2", "address": ["10.1.2.1"], } } }, "GigabitEthernet2": { "address_family": { "ipv4": { "dr_priority": 1, "hello_interval": 30, "neighbor_count": 1, "version": 2, "mode": "sparse-mode", "dr_address": "10.1.3.3", "address": ["10.1.3.1"], } } }, "Loopback0": { "address_family": { "ipv4": { "dr_priority": 1, "hello_interval": 30, "neighbor_count": 0, "version": 2, "mode": "sparse-mode", "dr_address": "10.4.1.1", "address": ["10.4.1.1"], } } }, } } } }
expected_output = {'vrf': {'default': {'interfaces': {'GigabitEthernet1': {'address_family': {'ipv4': {'dr_priority': 1, 'hello_interval': 30, 'neighbor_count': 1, 'version': 2, 'mode': 'sparse-mode', 'dr_address': '10.1.2.2', 'address': ['10.1.2.1']}}}, 'GigabitEthernet2': {'address_family': {'ipv4': {'dr_priority': 1, 'hello_interval': 30, 'neighbor_count': 1, 'version': 2, 'mode': 'sparse-mode', 'dr_address': '10.1.3.3', 'address': ['10.1.3.1']}}}, 'Loopback0': {'address_family': {'ipv4': {'dr_priority': 1, 'hello_interval': 30, 'neighbor_count': 0, 'version': 2, 'mode': 'sparse-mode', 'dr_address': '10.4.1.1', 'address': ['10.4.1.1']}}}}}}}
# Tic-Tac-Toe 3x3 game game = [[" ", " ", " "], [" ", " ", " "], [" ", " ", " "]] players = ["X", "O"] current_player = 0 GAME_CONTINUES = -1 DRAW = -2 # if a player won, number of that player is returned def print_state(game_state): for line in range(3): print(*game_state[line], sep=" | ") # the abobe is the same as print(game_state[0], game_state[1], game_state[2]). # sep="something" is used for the separator between individual variables if line != 2: # don't print on the last line print("--+---+--") # move return True if the move is correct and was added to the board and 0 def move(): try: move = input("Input your move (format L C): ").split(" ") # we get a string a split it up into two numbers3 line, column = int(move[0]), int(move[1]) if not 0 <= line < 3: print("Error: invalid line") return False if not 0 <= column < 3: print("Error: invalid column") return False if game[line][column] != " ": print("Error: already taken") return False game[line][column] = players[current_player] return True except: print("Error: invalid input") return False return True def win(game_state): # lines for line in game_state: if line[0] == line[1] == line[2] and line[0] != " ": # all three are of the same color and not empty if line[0] == players[0]: return 0 else: return 1 # columns for i in range(3): if game_state[0][i] == game_state[1][i] == game_state[2][i] and game_state[2][i] != " ": if game_state[0][i] == players[0]: return 0 else: return 1 # diagonals if game_state[0][0] == game_state[1][1] == game_state[2][2] and game_state[1][1] != " ": if game_state[0][0] == players[0]: return 0 else: return 1 if game_state[2][0] == game_state[1][1] == game_state[0][2] and game_state[1][1] != " ": if game_state[0][0] == players[0]: return 0 else: return 1 # check if draw isDraw = True for line in game_state: for square in line: if square == " ": isDraw = False break if isDraw: return DRAW else: return GAME_CONTINUES # game loop while win(game) == GAME_CONTINUES: print("Now plays player {}".format(current_player + 1)) while not move(): # we wait until the user inputs a valid move pass # pass means "do nothing" print_state(game) current_player += 1 if current_player > 1: current_player = 0 result = win(game) if result == DRAW: print("DRAW") else: print("Player {} ({}) won! Congratulations".format(result + 1, players[result]))
game = [[' ', ' ', ' '], [' ', ' ', ' '], [' ', ' ', ' ']] players = ['X', 'O'] current_player = 0 game_continues = -1 draw = -2 def print_state(game_state): for line in range(3): print(*game_state[line], sep=' | ') if line != 2: print('--+---+--') def move(): try: move = input('Input your move (format L C): ').split(' ') (line, column) = (int(move[0]), int(move[1])) if not 0 <= line < 3: print('Error: invalid line') return False if not 0 <= column < 3: print('Error: invalid column') return False if game[line][column] != ' ': print('Error: already taken') return False game[line][column] = players[current_player] return True except: print('Error: invalid input') return False return True def win(game_state): for line in game_state: if line[0] == line[1] == line[2] and line[0] != ' ': if line[0] == players[0]: return 0 else: return 1 for i in range(3): if game_state[0][i] == game_state[1][i] == game_state[2][i] and game_state[2][i] != ' ': if game_state[0][i] == players[0]: return 0 else: return 1 if game_state[0][0] == game_state[1][1] == game_state[2][2] and game_state[1][1] != ' ': if game_state[0][0] == players[0]: return 0 else: return 1 if game_state[2][0] == game_state[1][1] == game_state[0][2] and game_state[1][1] != ' ': if game_state[0][0] == players[0]: return 0 else: return 1 is_draw = True for line in game_state: for square in line: if square == ' ': is_draw = False break if isDraw: return DRAW else: return GAME_CONTINUES while win(game) == GAME_CONTINUES: print('Now plays player {}'.format(current_player + 1)) while not move(): pass print_state(game) current_player += 1 if current_player > 1: current_player = 0 result = win(game) if result == DRAW: print('DRAW') else: print('Player {} ({}) won! Congratulations'.format(result + 1, players[result]))
# OpenWeatherMap API Key weather_api_key = "6006d361789a66a63d965d32098db97e" # Google API Key g_key = "AIzaSyBkES3rvs8W2Uv7OJXtnd7i86WvOSEJp7A"
weather_api_key = '6006d361789a66a63d965d32098db97e' g_key = 'AIzaSyBkES3rvs8W2Uv7OJXtnd7i86WvOSEJp7A'
class GraphAlgos: """ Wrapper class which handle the graph algorithms more efficiently, by abstracting repeating code. """ database = None # Static variable shared across objects. def __init__(self, database, node_list, rel_list, orientation = "NATURAL"): # Initialize the static variable and class member. if GraphAlgos.database is None: GraphAlgos.database = database # Construct the relationship string. if type(rel_list[0]) is str: rel_string = ', '.join( (f'{rel}: {{type: "{rel}", orientation: "{orientation}"}}') for rel in rel_list) else: rel_string = ', '.join( (f'{rel[0]}: {{type: "{rel[0]}", orientation: "{rel[1]}", properties: {rel[2]}}}') for rel in rel_list) # Construct the projection of the anonymous graph. self.graph_projection = ( f'{{nodeProjection: {node_list}, ' f'relationshipProjection: {{{rel_string}}}' ) def pagerank(self, write_property, max_iterations = 20, damping_factor = 0.85): setup = (f'{self.graph_projection}, ' f'writeProperty: "{write_property}", ' f'maxIterations: {max_iterations}, ' f'dampingFactor: {damping_factor}}}' ) GraphAlgos.database.execute(f'CALL gds.pageRank.write({setup})', 'w') def nodeSimilarity(self, write_property, write_relationship, cutoff = 0.5, top_k = 10): setup = (f'{self.graph_projection}, ' f'writeProperty: "{write_property}", ' f'writeRelationshipType: "{write_relationship}", ' f'similarityCutoff: {cutoff}, ' f'topK: {top_k}}}' ) query = f'CALL gds.nodeSimilarity.write({setup})' GraphAlgos.database.execute(f'CALL gds.nodeSimilarity.write({setup})', 'w') def louvain(self, write_property, max_levels = 10, max_iterations = 10): setup = (f'{self.graph_projection}, ' f'writeProperty: "{write_property}", ' f'maxLevels: {max_levels}, ' f'maxIterations: {max_iterations}}}' ) GraphAlgos.database.execute(f'CALL gds.louvain.write({setup})', 'w') # These methods enable the use of this class in a with statement. def __enter__(self): return self # Automatic cleanup of the created graph of this class. def __exit__(self, exc_type, exc_value, tb): if exc_type is not None: traceback.print_exception(exc_type, exc_value, tb)
class Graphalgos: """ Wrapper class which handle the graph algorithms more efficiently, by abstracting repeating code. """ database = None def __init__(self, database, node_list, rel_list, orientation='NATURAL'): if GraphAlgos.database is None: GraphAlgos.database = database if type(rel_list[0]) is str: rel_string = ', '.join((f'{rel}: {{type: "{rel}", orientation: "{orientation}"}}' for rel in rel_list)) else: rel_string = ', '.join((f'{rel[0]}: {{type: "{rel[0]}", orientation: "{rel[1]}", properties: {rel[2]}}}' for rel in rel_list)) self.graph_projection = f'{{nodeProjection: {node_list}, relationshipProjection: {{{rel_string}}}' def pagerank(self, write_property, max_iterations=20, damping_factor=0.85): setup = f'{self.graph_projection}, writeProperty: "{write_property}", maxIterations: {max_iterations}, dampingFactor: {damping_factor}}}' GraphAlgos.database.execute(f'CALL gds.pageRank.write({setup})', 'w') def node_similarity(self, write_property, write_relationship, cutoff=0.5, top_k=10): setup = f'{self.graph_projection}, writeProperty: "{write_property}", writeRelationshipType: "{write_relationship}", similarityCutoff: {cutoff}, topK: {top_k}}}' query = f'CALL gds.nodeSimilarity.write({setup})' GraphAlgos.database.execute(f'CALL gds.nodeSimilarity.write({setup})', 'w') def louvain(self, write_property, max_levels=10, max_iterations=10): setup = f'{self.graph_projection}, writeProperty: "{write_property}", maxLevels: {max_levels}, maxIterations: {max_iterations}}}' GraphAlgos.database.execute(f'CALL gds.louvain.write({setup})', 'w') def __enter__(self): return self def __exit__(self, exc_type, exc_value, tb): if exc_type is not None: traceback.print_exception(exc_type, exc_value, tb)
_4digit: grove.TM1637 = None def on_forever(): global _4digit if input.button_is_pressed(Button.A): _4digit = grove.create_display(DigitalPin.C16, DigitalPin.C17) _4digit.bit(1, 3) basic.pause(1000) _4digit.bit(2, 3) basic.pause(1000) _4digit.bit(3, 3) basic.pause(1000) _4digit.bit(1, 2) basic.pause(1000) _4digit.bit(2, 2) basic.pause(1000) _4digit.bit(3, 2) basic.pause(1000) _4digit.clear() basic.forever(on_forever)
_4digit: grove.TM1637 = None def on_forever(): global _4digit if input.button_is_pressed(Button.A): _4digit = grove.create_display(DigitalPin.C16, DigitalPin.C17) _4digit.bit(1, 3) basic.pause(1000) _4digit.bit(2, 3) basic.pause(1000) _4digit.bit(3, 3) basic.pause(1000) _4digit.bit(1, 2) basic.pause(1000) _4digit.bit(2, 2) basic.pause(1000) _4digit.bit(3, 2) basic.pause(1000) _4digit.clear() basic.forever(on_forever)
class Solution: def gardenNoAdj(self, N: int, paths: List[List[int]]) -> List[int]: res = [0] * N G = [[] for i in range(N)] for x,y in paths: G[x-1].append(y-1) G[y-1].append(x-1) for i in range(N): res[i] = ({1,2,3,4} - {res[j] for j in G[i]}).pop() return res
class Solution: def garden_no_adj(self, N: int, paths: List[List[int]]) -> List[int]: res = [0] * N g = [[] for i in range(N)] for (x, y) in paths: G[x - 1].append(y - 1) G[y - 1].append(x - 1) for i in range(N): res[i] = ({1, 2, 3, 4} - {res[j] for j in G[i]}).pop() return res
input_file = open("input.txt", "r") entriesArray = input_file.read().split("\n") depth_measure_increase = 0 for i in range(1, len(entriesArray), 1): if int(entriesArray[i]) > int(entriesArray[i-1]): depth_measure_increase += 1 print(f'{depth_measure_increase=}')
input_file = open('input.txt', 'r') entries_array = input_file.read().split('\n') depth_measure_increase = 0 for i in range(1, len(entriesArray), 1): if int(entriesArray[i]) > int(entriesArray[i - 1]): depth_measure_increase += 1 print(f'depth_measure_increase={depth_measure_increase!r}')
class TranslationMissing(Exception): # Exception for commands which currently do not support translation. def __init__(self, name): super().__init__( f"Translation for the command {name} is not currently supported" )
class Translationmissing(Exception): def __init__(self, name): super().__init__(f'Translation for the command {name} is not currently supported')
MONGO_SERVER_CONFIG = { 'host': 'mongo', 'port': 27017, 'username': 'spark-user', 'password': 'spark123' } MONGO_DATABASE_CONFIG = { 'DATABASE_NAME': 'video_games_analysis', 'COLLECTION_NAME': 'games' }
mongo_server_config = {'host': 'mongo', 'port': 27017, 'username': 'spark-user', 'password': 'spark123'} mongo_database_config = {'DATABASE_NAME': 'video_games_analysis', 'COLLECTION_NAME': 'games'}
""" atpthings.util.dataframe ------------------------ """ def add_one(number: int = 8) -> int: """Add one :param number: write number :type number: int :return: return the number :rtype: int """ return number + 1 def add_two(number: int) -> int: """Add two :param number: write number :type number: int :return: return the number :rtype: int """ return number + 2 def add_sum(number1: int, number2: int, number3: int = 6) -> int: """Sum Sum all three numbers Parameters ---------- number1: Number one. number2: Number two. number3: Number three. Returns ------- N arrays with N dimensions each, with N the number of input sequences. Together these arrays form an open mesh. See Also -------- add_two Notes ----- This is really just `rfftn` with different default behavior. For more details see `rfftn`. Examples -------- >>> import texthero as hero >>> import pandas as pd >>> s = pd.Series("1234 falcon9") >>> hero.preprocessing.replace_digits(s, "X") 0 X falcon9 dtype: object >>> hero.preprocessing.replace_digits(s, "X", only_blocks=False) 0 X falconX dtype: object >>> import texthero as hero >>> import pandas as pd >>> s = pd.Series("1234 falcon9") >>> hero.preprocessing.replace_digits(s, "X") """ return number1 + number2 + number3
""" atpthings.util.dataframe ------------------------ """ def add_one(number: int=8) -> int: """Add one :param number: write number :type number: int :return: return the number :rtype: int """ return number + 1 def add_two(number: int) -> int: """Add two :param number: write number :type number: int :return: return the number :rtype: int """ return number + 2 def add_sum(number1: int, number2: int, number3: int=6) -> int: """Sum Sum all three numbers Parameters ---------- number1: Number one. number2: Number two. number3: Number three. Returns ------- N arrays with N dimensions each, with N the number of input sequences. Together these arrays form an open mesh. See Also -------- add_two Notes ----- This is really just `rfftn` with different default behavior. For more details see `rfftn`. Examples -------- >>> import texthero as hero >>> import pandas as pd >>> s = pd.Series("1234 falcon9") >>> hero.preprocessing.replace_digits(s, "X") 0 X falcon9 dtype: object >>> hero.preprocessing.replace_digits(s, "X", only_blocks=False) 0 X falconX dtype: object >>> import texthero as hero >>> import pandas as pd >>> s = pd.Series("1234 falcon9") >>> hero.preprocessing.replace_digits(s, "X") """ return number1 + number2 + number3
# Authors: Hyunwoo Lee <hyunwoo9301@naver.com> # Released under the MIT license. def read_data(file): with open(file, 'r', encoding="utf-8") as f: data = [line.split('\t') for line in f.read().splitlines()] data = data[1:] return data
def read_data(file): with open(file, 'r', encoding='utf-8') as f: data = [line.split('\t') for line in f.read().splitlines()] data = data[1:] return data
class Rounder: def round(self, n, b): m = n%b return n-m if m < (b/2 + b%2) else n+b-m
class Rounder: def round(self, n, b): m = n % b return n - m if m < b / 2 + b % 2 else n + b - m
# Copyright (c) 2012 The Native Client Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Build the specific library dependencies for validating on x86-64 { 'includes': [ '../../../../../build/common.gypi', ], 'target_defaults': { 'variables': { 'target_base': 'none', }, 'target_conditions': [ ['target_base=="ncvalidate_x86_64"', { 'sources': [ 'ncvalidate.c', ], 'cflags!': [ '-Wextra', '-Wswitch-enum', '-Wsign-compare' ], 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ], 'xcode_settings': { 'WARNING_CFLAGS!': [ '-Wextra', '-Wswitch-enum', '-Wsign-compare' ], }, }], ['target_base=="ncvalidate_verbose_x86_64"', { 'sources': [ 'ncvalidate_verbose.c', ], 'cflags!': [ '-Wextra', '-Wswitch-enum', '-Wsign-compare' ], 'defines': [ 'NACL_TRUSTED_BUT_NOT_TCB' ], 'xcode_settings': { 'WARNING_CFLAGS!': [ '-Wextra', '-Wswitch-enum', '-Wsign-compare' ], }, }], ], 'conditions': [ ['OS=="win" and target_arch=="ia32"', { 'variables': { 'win_target': 'x64', }, }], ], }, 'conditions': [ ['OS=="win" or target_arch=="x64"', { 'targets': [ # ---------------------------------------------------------------------- { 'target_name': 'ncvalidate_x86_64', 'type': 'static_library', 'variables': { 'target_base': 'ncvalidate_x86_64', }, 'dependencies': [ '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_x86_64' ], 'hard_dependency': 1, }, { 'target_name': 'ncvalidate_verbose_x86_64', 'type': 'static_library', 'variables': { 'target_base': 'ncvalidate_verbose_x86_64', }, 'dependencies': [ 'ncvalidate_x86_64', '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_verbose_x86_64' ], 'hard_dependency': 1, }, ], }], ], }
{'includes': ['../../../../../build/common.gypi'], 'target_defaults': {'variables': {'target_base': 'none'}, 'target_conditions': [['target_base=="ncvalidate_x86_64"', {'sources': ['ncvalidate.c'], 'cflags!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare'], 'defines': ['NACL_TRUSTED_BUT_NOT_TCB'], 'xcode_settings': {'WARNING_CFLAGS!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare']}}], ['target_base=="ncvalidate_verbose_x86_64"', {'sources': ['ncvalidate_verbose.c'], 'cflags!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare'], 'defines': ['NACL_TRUSTED_BUT_NOT_TCB'], 'xcode_settings': {'WARNING_CFLAGS!': ['-Wextra', '-Wswitch-enum', '-Wsign-compare']}}]], 'conditions': [['OS=="win" and target_arch=="ia32"', {'variables': {'win_target': 'x64'}}]]}, 'conditions': [['OS=="win" or target_arch=="x64"', {'targets': [{'target_name': 'ncvalidate_x86_64', 'type': 'static_library', 'variables': {'target_base': 'ncvalidate_x86_64'}, 'dependencies': ['<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_x86_64'], 'hard_dependency': 1}, {'target_name': 'ncvalidate_verbose_x86_64', 'type': 'static_library', 'variables': {'target_base': 'ncvalidate_verbose_x86_64'}, 'dependencies': ['ncvalidate_x86_64', '<(DEPTH)/native_client/src/trusted/validator/x86/ncval_reg_sfi/ncval_reg_sfi.gyp:ncval_reg_sfi_verbose_x86_64'], 'hard_dependency': 1}]}]]}
n1 = int(input('enter first number: ')) n2 = int(input('enter second number: ')) print('Sum: ', int(n1+n2))
n1 = int(input('enter first number: ')) n2 = int(input('enter second number: ')) print('Sum: ', int(n1 + n2))
n1=480 n2=10 soma=0 for i in range (0,30,1): div=n1/n2 if i%2==0: soma=soma+div else: soma=soma-div n1=n1-5 n2=n2+1 print(soma)
n1 = 480 n2 = 10 soma = 0 for i in range(0, 30, 1): div = n1 / n2 if i % 2 == 0: soma = soma + div else: soma = soma - div n1 = n1 - 5 n2 = n2 + 1 print(soma)
class Student: """ Create a student. """ def __init__(self, name): self.name = name def __repr__(self): return 'This student is easy 4.0' #__str__ has high priority than __repr__ def __str__(self): return 'Zhang A +' def _get_name(self): print('This is get') return self._name def _set_name(self, new_name): if isinstance(new_name, str): self._name = new_name else: raise Exception('Input a string, bro') name = property(_get_name, _set_name) if __name__ == "__main__": s = Student('harry') print(s) s.name = 'jerry' print(s.name) #s.name = 5
class Student: """ Create a student. """ def __init__(self, name): self.name = name def __repr__(self): return 'This student is easy 4.0' def __str__(self): return 'Zhang A +' def _get_name(self): print('This is get') return self._name def _set_name(self, new_name): if isinstance(new_name, str): self._name = new_name else: raise exception('Input a string, bro') name = property(_get_name, _set_name) if __name__ == '__main__': s = student('harry') print(s) s.name = 'jerry' print(s.name)
''' ALU for CPU ''' bit = 0 | 1 byte = 8 * bit def adder(num1: bit, num2: bit, carry: bit) -> [bit, bit]: x = num1 ^ num2 s = x ^ carry a = x & carry b = num1 & num2 c = a | b return [c, s] def adder4bit(num1: byte, num2: byte) -> [bit, byte]: carry, a = adder(int(num1[3]), int(num2[3]), 0) carry, b = adder(int(num1[2]), int(num2[2]), carry) carry, c = adder(int(num1[1]), int(num2[1]), carry) carry, d = adder(int(num1[0]), int(num2[0]), carry) result = str(d) + str(c) + str(b) + str(a) return [carry, result] def adder8bit(num1: byte, num2: byte) -> byte: carry, a = adder(int(num1[7]), int(num2[7]), 0) carry, b = adder(int(num1[6]), int(num2[6]), carry) carry, c = adder(int(num1[5]), int(num2[5]), carry) carry, d = adder(int(num1[4]), int(num2[4]), carry) carry, e = adder(int(num1[3]), int(num2[3]), carry) carry, f = adder(int(num1[2]), int(num2[2]), carry) carry, g = adder(int(num1[1]), int(num2[1]), carry) carry, h = adder(int(num1[0]), int(num2[0]), carry) result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a) return result def subtracter(num1: bit, num2: bit, borrow: bit) -> [bit, bit]: x = num1 ^ num2 n = 1 - num2 a = num1 & n xn = 1 - x a3 = borrow & xn a2 = a & a3 dif = x & borrow return [a2, dif] def subtract8bit(num1: byte, num2: byte) -> byte: borrow, a = subtracter(num1[7], num2[7], 0) borrow, b = subtracter(num1[6], num2[6], borrow) borrow, c = subtracter(num1[5], num2[5], borrow) borrow, d = subtracter(num1[4], num2[4], borrow) borrow, e = subtracter(num1[3], num2[3], borrow) borrow, f = subtracter(num1[2], num2[2], borrow) borrow, g = subtracter(num1[1], num2[1], borrow) borrow, h = subtracter(num1[0], num2[0], borrow) result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a) return result def increment(num: byte) -> byte: return bin(sum([int(num, 2), int('1', 2)]))[2:] def bitwiseOp(op: str, num1: byte, num2: byte = None) -> byte: if op == 'AND': result = int(num1, 2) & int(num2, 2) elif op == 'OR': result = int(num1, 2) | int(num2, 2) elif op == 'XOR': result = int(num1, 2) ^ int(num2, 2) elif op == 'NOT': result = ~int(num1, 2) elif op == 'LSHFT': result = int(num1, 2) << int(num2, 2) elif op == 'RSHFT': result = int(num1, 2) >> int(num2, 2) result = str(result) while len(result) < 8: result = '0' + result return result def mult4bitUC(num1: byte, num2: byte) -> byte: a00 = int(num1[0]) & int(num2[0]) a01 = int(num1[1]) & int(num2[0]) a02 = int(num1[2]) & int(num2[0]) a03 = int(num1[3]) & int(num2[0]) a10 = int(num1[0]) & int(num2[1]) a11 = int(num1[1]) & int(num2[1]) a12 = int(num1[2]) & int(num2[1]) a13 = int(num1[3]) & int(num2[1]) a20 = int(num1[0]) & int(num2[2]) a21 = int(num1[1]) & int(num2[2]) a22 = int(num1[2]) & int(num2[2]) a23 = int(num1[3]) & int(num2[2]) a30 = int(num1[0]) & int(num2[3]) a31 = int(num1[1]) & int(num2[3]) a32 = int(num1[2]) & int(num2[3]) a33 = int(num1[3]) & int(num2[3]) carry, res1 = adder4bit(str(a13) + str(a12) + str(a11) + str(a10), '0' + str(a03) + str(a02) + str(a01)) carry, res2 = adder4bit(str(a23) + str(a22) + str(a21) + str(a20), str(carry) + res1[0] + res1[1] + res1[2]) carry, res3 = adder4bit(str(a33) + str(a32) + str(a31) + str(a30), str(carry) + res2[0] + res2[1] + res2[2]) result = str(carry) + res3[0] + res3[1] + res3[2] + res3[3] + res2[3] + res1[3] + str(a00) return result def mult8bit(num1: byte, num2: byte) -> byte: result = '{0:b}'.format(int(num1, 2)*int(num2, 2)) while len(result) < 8: result = '0' + result return result def div8bit(num1: byte, num2: byte) -> byte: result = '{0:b}'.format(int(num1, 2)*int(num1, 2)) while len(result) < 8: result = '0' + result return result
""" ALU for CPU """ bit = 0 | 1 byte = 8 * bit def adder(num1: bit, num2: bit, carry: bit) -> [bit, bit]: x = num1 ^ num2 s = x ^ carry a = x & carry b = num1 & num2 c = a | b return [c, s] def adder4bit(num1: byte, num2: byte) -> [bit, byte]: (carry, a) = adder(int(num1[3]), int(num2[3]), 0) (carry, b) = adder(int(num1[2]), int(num2[2]), carry) (carry, c) = adder(int(num1[1]), int(num2[1]), carry) (carry, d) = adder(int(num1[0]), int(num2[0]), carry) result = str(d) + str(c) + str(b) + str(a) return [carry, result] def adder8bit(num1: byte, num2: byte) -> byte: (carry, a) = adder(int(num1[7]), int(num2[7]), 0) (carry, b) = adder(int(num1[6]), int(num2[6]), carry) (carry, c) = adder(int(num1[5]), int(num2[5]), carry) (carry, d) = adder(int(num1[4]), int(num2[4]), carry) (carry, e) = adder(int(num1[3]), int(num2[3]), carry) (carry, f) = adder(int(num1[2]), int(num2[2]), carry) (carry, g) = adder(int(num1[1]), int(num2[1]), carry) (carry, h) = adder(int(num1[0]), int(num2[0]), carry) result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a) return result def subtracter(num1: bit, num2: bit, borrow: bit) -> [bit, bit]: x = num1 ^ num2 n = 1 - num2 a = num1 & n xn = 1 - x a3 = borrow & xn a2 = a & a3 dif = x & borrow return [a2, dif] def subtract8bit(num1: byte, num2: byte) -> byte: (borrow, a) = subtracter(num1[7], num2[7], 0) (borrow, b) = subtracter(num1[6], num2[6], borrow) (borrow, c) = subtracter(num1[5], num2[5], borrow) (borrow, d) = subtracter(num1[4], num2[4], borrow) (borrow, e) = subtracter(num1[3], num2[3], borrow) (borrow, f) = subtracter(num1[2], num2[2], borrow) (borrow, g) = subtracter(num1[1], num2[1], borrow) (borrow, h) = subtracter(num1[0], num2[0], borrow) result = str(h) + str(g) + str(f) + str(e) + str(d) + str(c) + str(b) + str(a) return result def increment(num: byte) -> byte: return bin(sum([int(num, 2), int('1', 2)]))[2:] def bitwise_op(op: str, num1: byte, num2: byte=None) -> byte: if op == 'AND': result = int(num1, 2) & int(num2, 2) elif op == 'OR': result = int(num1, 2) | int(num2, 2) elif op == 'XOR': result = int(num1, 2) ^ int(num2, 2) elif op == 'NOT': result = ~int(num1, 2) elif op == 'LSHFT': result = int(num1, 2) << int(num2, 2) elif op == 'RSHFT': result = int(num1, 2) >> int(num2, 2) result = str(result) while len(result) < 8: result = '0' + result return result def mult4bit_uc(num1: byte, num2: byte) -> byte: a00 = int(num1[0]) & int(num2[0]) a01 = int(num1[1]) & int(num2[0]) a02 = int(num1[2]) & int(num2[0]) a03 = int(num1[3]) & int(num2[0]) a10 = int(num1[0]) & int(num2[1]) a11 = int(num1[1]) & int(num2[1]) a12 = int(num1[2]) & int(num2[1]) a13 = int(num1[3]) & int(num2[1]) a20 = int(num1[0]) & int(num2[2]) a21 = int(num1[1]) & int(num2[2]) a22 = int(num1[2]) & int(num2[2]) a23 = int(num1[3]) & int(num2[2]) a30 = int(num1[0]) & int(num2[3]) a31 = int(num1[1]) & int(num2[3]) a32 = int(num1[2]) & int(num2[3]) a33 = int(num1[3]) & int(num2[3]) (carry, res1) = adder4bit(str(a13) + str(a12) + str(a11) + str(a10), '0' + str(a03) + str(a02) + str(a01)) (carry, res2) = adder4bit(str(a23) + str(a22) + str(a21) + str(a20), str(carry) + res1[0] + res1[1] + res1[2]) (carry, res3) = adder4bit(str(a33) + str(a32) + str(a31) + str(a30), str(carry) + res2[0] + res2[1] + res2[2]) result = str(carry) + res3[0] + res3[1] + res3[2] + res3[3] + res2[3] + res1[3] + str(a00) return result def mult8bit(num1: byte, num2: byte) -> byte: result = '{0:b}'.format(int(num1, 2) * int(num2, 2)) while len(result) < 8: result = '0' + result return result def div8bit(num1: byte, num2: byte) -> byte: result = '{0:b}'.format(int(num1, 2) * int(num1, 2)) while len(result) < 8: result = '0' + result return result
def dot(self, name, content): path = j.sal.fs.getTmpFilePath() j.sal.fs.writeFile(filename=path, contents=content) dest = j.sal.fs.joinPaths(j.sal.fs.getDirName(self.last_dest), "%s.png" % name) j.do.execute("dot '%s' -Tpng > '%s'" % (path, dest)) j.sal.fs.remove(path) return "![%s.png](%s.png)" % (name, name)
def dot(self, name, content): path = j.sal.fs.getTmpFilePath() j.sal.fs.writeFile(filename=path, contents=content) dest = j.sal.fs.joinPaths(j.sal.fs.getDirName(self.last_dest), '%s.png' % name) j.do.execute("dot '%s' -Tpng > '%s'" % (path, dest)) j.sal.fs.remove(path) return '![%s.png](%s.png)' % (name, name)
class PagedList(list): def __init__(self, items, token): super(PagedList, self).__init__(items) self.token = token
class Pagedlist(list): def __init__(self, items, token): super(PagedList, self).__init__(items) self.token = token
""" @deprecated will be remove next minor """ class Singleton(type): """ @deprecated will be remove next minor """ _instances = {} def __call__(cls, *args, **kwargs): if cls not in cls._instances: cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) return cls._instances[cls] def singleton(class_): """ @deprecated will be remove next minor """ class WrappedSingleton(class_, metaclass=Singleton): __name__ = class_.__name__ return WrappedSingleton
""" @deprecated will be remove next minor """ class Singleton(type): """ @deprecated will be remove next minor """ _instances = {} def __call__(cls, *args, **kwargs): if cls not in cls._instances: cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) return cls._instances[cls] def singleton(class_): """ @deprecated will be remove next minor """ class Wrappedsingleton(class_, metaclass=Singleton): __name__ = class_.__name__ return WrappedSingleton
class CircularQueuek: def __init__(self, k: int): self.queue = [0 for _ in range(k)] self.k = k self.front = 0 self.rear = -1 self.length = 0 def enQueue(self, value): if self.length < self.k: self.length = self.length +1 self.rear = (self.rear + 1) % self.k self.queue[self.rear] = value return True return False def deQueue(self): if self.length > 0 : self.front = (self.front + 1) % self.k self.length = self.length -1 return True return False def Front(self): if self.length > 0 : return self.queue[self.front] return -1 def Rear(self): if self.length > 0: return self.queue[self.rear] return -1 def isEmpty(self) -> bool: return self.length == 0 def isFull(self) -> bool: return self.length == self.k
class Circularqueuek: def __init__(self, k: int): self.queue = [0 for _ in range(k)] self.k = k self.front = 0 self.rear = -1 self.length = 0 def en_queue(self, value): if self.length < self.k: self.length = self.length + 1 self.rear = (self.rear + 1) % self.k self.queue[self.rear] = value return True return False def de_queue(self): if self.length > 0: self.front = (self.front + 1) % self.k self.length = self.length - 1 return True return False def front(self): if self.length > 0: return self.queue[self.front] return -1 def rear(self): if self.length > 0: return self.queue[self.rear] return -1 def is_empty(self) -> bool: return self.length == 0 def is_full(self) -> bool: return self.length == self.k
n=(int)(input()) dict1={} dict2={} c1=0 while(n>0): n-=1 str1=(input().split(" ")) if(str1[0] not in dict1.keys()): dict1[str1[0]]=str1[1] if(str1[1] not in dict2.keys()): dict2[str1[1]]=1 else: dict2[str1[1]]+=1 c1=max(dict2.values()) for i in dict2.keys(): if(dict2[i]==c1): print(i) break if("football" in dict2.keys()): print(dict2['football']) else: print(0)
n = int(input()) dict1 = {} dict2 = {} c1 = 0 while n > 0: n -= 1 str1 = input().split(' ') if str1[0] not in dict1.keys(): dict1[str1[0]] = str1[1] if str1[1] not in dict2.keys(): dict2[str1[1]] = 1 else: dict2[str1[1]] += 1 c1 = max(dict2.values()) for i in dict2.keys(): if dict2[i] == c1: print(i) break if 'football' in dict2.keys(): print(dict2['football']) else: print(0)
# config files CONFIG_DIR = "config" # Link to DB Configuration DB_CONFIG_FILE = "db.yml" # Name of collection COLLECTION_NAME = 'collection_name' CONFIG_DIR = "config" CONFIG_FNAME = "rss_feeds.yml" PARAM_CONFIG_FILE = "services.yml" APP_KEYS_FILE = "keys.yml" NLU_CONFIG = "nlu_config.yml" MESSAGING_FILE = "messaging_platforms.yml" SOCIALMEDIA_FILE = "socialmedia.yml" EMAIL_FILE = "email.yml" PAR_DIR = ".." # News Organizations ALJAZEERA = "AlJazeera" BBC = "BBC" CNN = "CNN" HUFFINGTONPOST = "HuffingtonPost" NYPOST = "NYPost" NYTIMES = "NYTimes" REUTERS = "Reuters" TELEGRAPH = "Telegraph" THEGLOBAEANDMAIL = "TheGlobeAndMail" GUARDIAN = "Guardian" USTODAY = "USAToday" VICE = "Vice" WSJ = "WSJ" # name of collections COLLECTION_ARTICLES = 'articles' COLLECTION_PODCASTS = 'podcasts' COLLECTION_VIDEOS = 'videos' COLLECTION_LISTS = 'list' COLLECTION_BOOKMARS = 'bookmarks' # Schedulers' names SCHEDULER_NEWS_ARTICLES = "Scheduler-NewsArticles" SCHEDULER_PODCASTS = "Scheduler-Podcasts" SCHEDULER_VIDEOS = "Scheduler-Videos" SECONDS = 60 # Empty string EMPTY_STR = "" EMPTY_LIST = [] EMPTY_DICT = {} # media types ARTICLES = "Articles" PODCASTS = "Podcasts" VIDEOS = "Videos" ARTICLE = "Article" PODCAST = "Podcast" VIDEO = "Video" MEDIA_TYPE_ARTICLES = {ARTICLES: ARTICLE} MEDIA_TYPE_PODCASTS = {PODCASTS: PODCAST} MEDIA_TYPE_VIDEOS = {VIDEOS: VIDEO} # Scheduler STOPPED = "stopped" RUNNING = "running" # Languages EN_LANG = "English" AR_LANG = "Arabic" # Keys for webservices CALAIS_KEY = "calais_key" DBPEDIA_KEY = "dbpedia_key" FREEBASE_KEY = "freebase_key" YAHOO_KEY = "yahoo_key" ZEMANTA_KEY = "zemanta_key" VONA_KEY = "vona_key" VONA_USERNAME = "vona_username" SLACK_API_KEY = "api_key" SLACK_BOT_NAME = "bot_name" SLACK_CHANNEL_NAME = "channel_name" SLACK_SERVICE = "slack" # Voice TTs TTS_PERONA = 'Emma' # Connectors MONGODB = "mongodb" KAFKA = "kafka" # Host/Port HOST = "host" PORT = "port" SENTISTRENGHT_JAR = "../resources/SentiStrength.jar" SENTISTRENGHT_DIR = "../resources/sentstrength_data/" # NLU Server NLU_SERVER = "http://localhost:5000" # NLU Parser parameters MIN_THRESHOLD = 0.30 # List of intents INTENT_FINDNEWSCONTENT = 'findNewsContent' INTENT_ADDCONTENTITEMTOCOLLECTION = 'addContentItemToCollection' INTENT_BOOKMARKCONTENTITEM = 'bookmarkContentItem' INTENT_EMAILCONTENTITEM = 'emailContentItem' INTENT_FAVORITECONTENTITEM = 'favoriteContentItem' INTENT_GETCONTENTINFO = 'getContentInfo' INTENT_LISTENPODCAST = 'listenPodcast' INTENT_RATECONTENTITEM = 'rateContentItem' INTENT_READARTICLE = 'readArticle' INTENT_SHARECONTENTITEM = 'shareContentItem' INTENT_WATCHVIDEO = 'watchVideo' # List of entities ENTITY_FINDNEWSCONTENT_AUTHORNAME = 'findnewscontent_authorname' ENTITY_FINDNEWSCONTENT_CONTENTITEMNAME = 'findnewscontent_contentitemname' ENTITY_FINDNEWSCONTENT_CONTENTTYPE = 'findnewscontent_contenttype' ENTITY_FINDNEWSCONTENT_EVENTNAME = 'findnewscontent_eventname' ENTITY_FINDNEWSCONTENT_LOCATIONNAME = 'findnewscontent_locationname' ENTITY_FINDNEWSCONTENT_ORGNAME = 'findnewscontent_orgname' ENTITY_FINDNEWSCONTENT_PERSONNAME = 'findnewscontent_personname' ENTITY_FINDNEWSCONTENT_SPATIALRELATION = 'findnewscontent_spatialrelation' ENTITY_FINDNEWSCONTENT_TIMEFRAME = 'findnewscontent_timeframe' ENTITY_FINDNEWSCONTENT_TOPICNAME = 'findnewscontent_topicname' ENTITY_ADDCONTENTITEMTOCOLLECTION_COLLECTIONNAME = 'addcontentitemtocollection_collectionname' ENTITY_ADDCONTENTITEMTOCOLLECTION_CONTENTITEMNAME = 'addcontentitemtocollection_contentitemname' ENTITY_ADDCONTENTITEMTOCOLLECTION_CONTENTTYPE = 'addcontentitemtocollection_contenttype' ENTITY_BOOKMARKCONTENTITEM_CONTENTITEMNAME = 'bookmarkcontentitem_contentitemname' ENTITY_BOOKMARKCONTENTITEM_CONTENTTYPE = 'bookmarkcontentitem_contenttype' ENTITY_BOOKMARKCONTENTITEM_SELECTCRITERIA = 'bookmarkcontentitem_selectcriteria' ENTITY_EMAILCONTENTITEM_CONTENTITEMNAME = 'emailcontentitem_contentitemname' ENTITY_EMAILCONTENTITEM_CONTENTTYPE = 'emailcontentitem_contenttype' ENTITY_EMAILCONTENTITEM_RECEIPENT = 'emailcontentitem_receipent' ENTITY_EMAILCONTENTITEM_SELECTCRITERIA = 'emailcontentitem_selectcriteria' ENTITY_FAVORITECONTENTITEM_CONTENTITEMNAME = 'favoritecontentitem_contentitemname' ENTITY_FAVORITECONTENTITEM_CONTENTTYPE = 'favoritecontentitem_contenttype' ENTITY_FAVORITECONTENTITEM_SELECTCRITERIA = 'favoritecontentitem_selectcriteria' ENTITY_GETCONTENTINFO_CONTENTTYPE = 'getcontentinfo_contenttype' ENTITY_GETCONTENTINFO_SELECTCRITERIA = 'getcontentinfo_selectcriteria' ENTITY_LISTENPODCAST_COMMAND = 'listenpodcast_command' ENTITY_LISTENPODCAST_CONTENTITEMNAME = 'listenpodcast_contentitemname' ENTITY_LISTENPODCAST_CONTENTTYPE = 'listenpodcast_contenttype' ENTITY_LISTENPODCAST_SELECTCRITERIA = 'listenpodcast_selectcriteria' ENTITY_RATECONTENTITEM_CONTENTITEMNAME = 'ratecontentitem_contentitemname' ENTITY_RATECONTENTITEM_CONTENTTYPE = 'ratecontentitem_contenttype' ENTITY_RATECONTENTITEM_RATINGVALUE = 'ratecontentitem_ratingvalue' ENTITY_READARTICLE_COMMAND = 'readarticle_command' ENTITY_READARTICLE_CONTENTITEMNAME = 'readarticle_contentitemname' ENTITY_READARTICLE_CONTENTTYPE = 'readarticle_contenttype' ENTITY_READARTICLE_SELECTCRITERIA = 'readarticle_selectcriteria' ENTITY_SHARECONTENTITEM_CONTENTITEMNAME = 'sharecontentitem_contentitemname' ENTITY_SHARECONTENTITEM_CONTENTTYPE = 'sharecontentitem_contenttype' ENTITY_SHARECONTENTITEM_SOCIALNETWORK = 'sharecontentitem_socialnetwork' ENTITY_WATCHVIDEO_COMMAND = 'watchvideo_command' ENTITY_WATCHVIDEO_CONTENTITEMNAME = 'watchvideo_contentitemname' ENTITY_WATCHVIDEO_CONTENTTYPE = 'watchvideo_contenttype' ENTITY_WATCHVIDEO_SELECTCRITERIA = 'watchvideo_selectcriteria'
config_dir = 'config' db_config_file = 'db.yml' collection_name = 'collection_name' config_dir = 'config' config_fname = 'rss_feeds.yml' param_config_file = 'services.yml' app_keys_file = 'keys.yml' nlu_config = 'nlu_config.yml' messaging_file = 'messaging_platforms.yml' socialmedia_file = 'socialmedia.yml' email_file = 'email.yml' par_dir = '..' aljazeera = 'AlJazeera' bbc = 'BBC' cnn = 'CNN' huffingtonpost = 'HuffingtonPost' nypost = 'NYPost' nytimes = 'NYTimes' reuters = 'Reuters' telegraph = 'Telegraph' theglobaeandmail = 'TheGlobeAndMail' guardian = 'Guardian' ustoday = 'USAToday' vice = 'Vice' wsj = 'WSJ' collection_articles = 'articles' collection_podcasts = 'podcasts' collection_videos = 'videos' collection_lists = 'list' collection_bookmars = 'bookmarks' scheduler_news_articles = 'Scheduler-NewsArticles' scheduler_podcasts = 'Scheduler-Podcasts' scheduler_videos = 'Scheduler-Videos' seconds = 60 empty_str = '' empty_list = [] empty_dict = {} articles = 'Articles' podcasts = 'Podcasts' videos = 'Videos' article = 'Article' podcast = 'Podcast' video = 'Video' media_type_articles = {ARTICLES: ARTICLE} media_type_podcasts = {PODCASTS: PODCAST} media_type_videos = {VIDEOS: VIDEO} stopped = 'stopped' running = 'running' en_lang = 'English' ar_lang = 'Arabic' calais_key = 'calais_key' dbpedia_key = 'dbpedia_key' freebase_key = 'freebase_key' yahoo_key = 'yahoo_key' zemanta_key = 'zemanta_key' vona_key = 'vona_key' vona_username = 'vona_username' slack_api_key = 'api_key' slack_bot_name = 'bot_name' slack_channel_name = 'channel_name' slack_service = 'slack' tts_perona = 'Emma' mongodb = 'mongodb' kafka = 'kafka' host = 'host' port = 'port' sentistrenght_jar = '../resources/SentiStrength.jar' sentistrenght_dir = '../resources/sentstrength_data/' nlu_server = 'http://localhost:5000' min_threshold = 0.3 intent_findnewscontent = 'findNewsContent' intent_addcontentitemtocollection = 'addContentItemToCollection' intent_bookmarkcontentitem = 'bookmarkContentItem' intent_emailcontentitem = 'emailContentItem' intent_favoritecontentitem = 'favoriteContentItem' intent_getcontentinfo = 'getContentInfo' intent_listenpodcast = 'listenPodcast' intent_ratecontentitem = 'rateContentItem' intent_readarticle = 'readArticle' intent_sharecontentitem = 'shareContentItem' intent_watchvideo = 'watchVideo' entity_findnewscontent_authorname = 'findnewscontent_authorname' entity_findnewscontent_contentitemname = 'findnewscontent_contentitemname' entity_findnewscontent_contenttype = 'findnewscontent_contenttype' entity_findnewscontent_eventname = 'findnewscontent_eventname' entity_findnewscontent_locationname = 'findnewscontent_locationname' entity_findnewscontent_orgname = 'findnewscontent_orgname' entity_findnewscontent_personname = 'findnewscontent_personname' entity_findnewscontent_spatialrelation = 'findnewscontent_spatialrelation' entity_findnewscontent_timeframe = 'findnewscontent_timeframe' entity_findnewscontent_topicname = 'findnewscontent_topicname' entity_addcontentitemtocollection_collectionname = 'addcontentitemtocollection_collectionname' entity_addcontentitemtocollection_contentitemname = 'addcontentitemtocollection_contentitemname' entity_addcontentitemtocollection_contenttype = 'addcontentitemtocollection_contenttype' entity_bookmarkcontentitem_contentitemname = 'bookmarkcontentitem_contentitemname' entity_bookmarkcontentitem_contenttype = 'bookmarkcontentitem_contenttype' entity_bookmarkcontentitem_selectcriteria = 'bookmarkcontentitem_selectcriteria' entity_emailcontentitem_contentitemname = 'emailcontentitem_contentitemname' entity_emailcontentitem_contenttype = 'emailcontentitem_contenttype' entity_emailcontentitem_receipent = 'emailcontentitem_receipent' entity_emailcontentitem_selectcriteria = 'emailcontentitem_selectcriteria' entity_favoritecontentitem_contentitemname = 'favoritecontentitem_contentitemname' entity_favoritecontentitem_contenttype = 'favoritecontentitem_contenttype' entity_favoritecontentitem_selectcriteria = 'favoritecontentitem_selectcriteria' entity_getcontentinfo_contenttype = 'getcontentinfo_contenttype' entity_getcontentinfo_selectcriteria = 'getcontentinfo_selectcriteria' entity_listenpodcast_command = 'listenpodcast_command' entity_listenpodcast_contentitemname = 'listenpodcast_contentitemname' entity_listenpodcast_contenttype = 'listenpodcast_contenttype' entity_listenpodcast_selectcriteria = 'listenpodcast_selectcriteria' entity_ratecontentitem_contentitemname = 'ratecontentitem_contentitemname' entity_ratecontentitem_contenttype = 'ratecontentitem_contenttype' entity_ratecontentitem_ratingvalue = 'ratecontentitem_ratingvalue' entity_readarticle_command = 'readarticle_command' entity_readarticle_contentitemname = 'readarticle_contentitemname' entity_readarticle_contenttype = 'readarticle_contenttype' entity_readarticle_selectcriteria = 'readarticle_selectcriteria' entity_sharecontentitem_contentitemname = 'sharecontentitem_contentitemname' entity_sharecontentitem_contenttype = 'sharecontentitem_contenttype' entity_sharecontentitem_socialnetwork = 'sharecontentitem_socialnetwork' entity_watchvideo_command = 'watchvideo_command' entity_watchvideo_contentitemname = 'watchvideo_contentitemname' entity_watchvideo_contenttype = 'watchvideo_contenttype' entity_watchvideo_selectcriteria = 'watchvideo_selectcriteria'
''' URL: https://leetcode.com/problems/build-an-array-with-stack-operations/ Difficulty: Easy Description: Build an Array With Stack Operations Given an array target and an integer n. In each iteration, you will read a number from list = {1,2,3..., n}. Build the target array using the following operations: Push: Read a new element from the beginning list, and push it in the array. Pop: delete the last element of the array. If the target array is already built, stop reading more elements. You are guaranteed that the target array is strictly increasing, only containing numbers between 1 to n inclusive. Return the operations to build the target array. You are guaranteed that the answer is unique. Example 1: Input: target = [1,3], n = 3 Output: ["Push","Push","Pop","Push"] Explanation: Read number 1 and automatically push in the array -> [1] Read number 2 and automatically push in the array then Pop it -> [1] Read number 3 and automatically push in the array -> [1,3] Example 2: Input: target = [1,2,3], n = 3 Output: ["Push","Push","Push"] Example 3: Input: target = [1,2], n = 4 Output: ["Push","Push"] Explanation: You only need to read the first 2 numbers and stop. Example 4: Input: target = [2,3,4], n = 4 Output: ["Push","Pop","Push","Push","Push"] Constraints: 1 <= target.length <= 100 1 <= target[i] <= 100 1 <= n <= 100 target is strictly increasing. ''' class Solution: def buildArray(self, target, n): output = [] target_index = 0 for i in range(1, n+1): if output == target or target_index >= len(target): break output.append("Push") if target[target_index] == i: target_index += 1 else: output.append("Pop") return output
""" URL: https://leetcode.com/problems/build-an-array-with-stack-operations/ Difficulty: Easy Description: Build an Array With Stack Operations Given an array target and an integer n. In each iteration, you will read a number from list = {1,2,3..., n}. Build the target array using the following operations: Push: Read a new element from the beginning list, and push it in the array. Pop: delete the last element of the array. If the target array is already built, stop reading more elements. You are guaranteed that the target array is strictly increasing, only containing numbers between 1 to n inclusive. Return the operations to build the target array. You are guaranteed that the answer is unique. Example 1: Input: target = [1,3], n = 3 Output: ["Push","Push","Pop","Push"] Explanation: Read number 1 and automatically push in the array -> [1] Read number 2 and automatically push in the array then Pop it -> [1] Read number 3 and automatically push in the array -> [1,3] Example 2: Input: target = [1,2,3], n = 3 Output: ["Push","Push","Push"] Example 3: Input: target = [1,2], n = 4 Output: ["Push","Push"] Explanation: You only need to read the first 2 numbers and stop. Example 4: Input: target = [2,3,4], n = 4 Output: ["Push","Pop","Push","Push","Push"] Constraints: 1 <= target.length <= 100 1 <= target[i] <= 100 1 <= n <= 100 target is strictly increasing. """ class Solution: def build_array(self, target, n): output = [] target_index = 0 for i in range(1, n + 1): if output == target or target_index >= len(target): break output.append('Push') if target[target_index] == i: target_index += 1 else: output.append('Pop') return output
#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)
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 = '\n aa bbbb b cccccc pp tB B BCCCCCDDDDDDDDFFFF \n aaaaaaabbbbbbbbbb cccc ppptt tttBBBBBCCCCCDDDDDDDFFFFFFFFFFF \n aaaaaaabbbbbbbbbbb ccc nnn pp pttttttBBBBBCCCCCDDDDDFFFFFFFFFFFF F\n aaaaaaaaddddddde fff c o pp tttttttBBBBBCCCEEEEEEEFFFFFFFFFF \n a adddddddeee fff oo p rtttttttBBBBBCCEEEEEEEEFFF F \n adddddddeeeefffff ooo rrrrtttttGGGGBBBCCEEEEHHHHHFFF \n ddddddeeeeffff f qqrrrrtttttGGGGGGBIIIIHHHHHHHHH \n ggggggghh ffff qqsssss ttt GGGGGGIIIIIHHHHHHHH \n ggggggghhhhh qqq ss ss tt GGGGGGIIIIIIIIIII J \n gggggghhhh qq s ssAAAAAAKKKGGIIIIIIIII I JJ \n gggghhhhhh uuuu AAAAAKKKKKKIIIIIIII JJ \n ggghhh h uuuuuuvvvvAAA AKKKKKKKIIIIIII J \n ii uuuuuuuvvvv AAAA KKKKKKLLLLII \n ii uuuuuuuvvvvv AAA KKKK LLLL \n iii uuuuuuuuwwww AA KK LLL \n iiijj uuuuuuuuwwwww K L M \n jjjjj uuuuuuxxwwwww K M MM NN \n kjjjmmmm uxxwww MMMM NNNN \n kkmmmmmmmm xxxwww N \n kkkmmmmm xxxyyy zz PPPP \n lkkmmmm yyyyy z OOPPPPP \n lllll yyyy z OOOOOPPPP \n llll yyy OOOOPPPP \n lll yy OO PPPP \n' 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'} 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()}) self.connections = CONNECTIONS.copy() self.areas = AREA_TERRITORIES.copy() self.area_values = dict({key: value[0] for (key, value) in AREAS.items()}) else: 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
""" Management of Contrail resources ================================ :depends: - vnc_api Python module Enforce the virtual router existence ------------------------------------ .. code-block:: yaml virtual_router: contrail.virtual_router_present: name: tor01 ip_address: 10.0.0.23 dpdk_enabled: False router_type: tor-agent Enforce the virtual router absence ---------------------------------- .. code-block:: yaml virtual_router_tor01: contrail.virtual_router_absent: name: tor01 Enforce the physical router existence ------------------------------------ .. code-block:: yaml physical_router_phr01: contrail.physical_router_present: name: phr01 parent_type: global-system-config management_ip: 10.167.4.206 dataplane_ip: 172.17.56.9 vendor_name: MyVendor product_name: MyProduct agents: - tor01 - tns01 Enforce the physical router absence ---------------------------------- .. code-block:: yaml physical_router_delete_phr01: contrail.physical_router_absent: name: phr01 Enforce the physical interface present ---------------------------------- .. code-block:: yaml create physical interface ge-0/1/10 for phr01: contrail.physical_interface_present: - name: ge-0/1/10 - physical_router: prh01 Enforce the physical interface absence ---------------------------------- .. code-block:: yaml physical_interface_delete ge-0/1/10: contrail.physical_interface_absent: name: ge-0/1/10 physical_router: phr01 Enforce the logical interface present ---------------------------------- .. code-block:: yaml create logical interface 11/15: contrail.logical_interface_present: - name: ge-0/1/11.15 - parent_names: - ge-0/1/11 - phr01 - parent_type: physical-interface - vlan_tag: 15 - interface_type: L3 Enforce the logical interface absence ---------------------------------- .. code-block:: yaml logical interface delete ge-0/1/10.0 phr02: contrail.logical_interface_absent: - name: ge-0/1/10.0 - parent_names: - ge-0/1/10 - phr02 - parent_type: physical-interface Enforce the global vrouter config existence ------------------------------------------- .. code-block:: yaml #Example opencontrail_client_virtual_router_global_conf_create: contrail.global_vrouter_config_present: - name: "global-vrouter-config" - parent_type: "global-system-config" - encap_priority : "MPLSoUDP,MPLSoGRE" - vxlan_vn_id_mode : "automatic" - flow_export_rate: 100 - fq_names: - default-global-system-config - default-global-vrouter-config Enforce the global vrouter config absence ----------------------------------------- .. code-block:: yaml #Example opencontrail_client_virtual_router_global_conf_delete: contrail.global_vrouter_config_absent: - name: "global-vrouter-config" Enforce the link local service entry existence ---------------------------------------------- .. code-block:: yaml # Example with dns name, only one is permited lls_meta1: contrail.linklocal_service_present: - name: meta1 - lls_ip: 10.0.0.23 - lls_port: 80 - ipf_addresses: "meta.example.com" - ipf_port: 80 # Example with multiple ip addresses lls_meta2: contrail.linklocal_service_present: - name: meta2 - lls_ip: 10.0.0.23 - lls_port: 80 - ipf_addresses: - 10.10.10.10 - 10.20.20.20 - 10.30.30.30 - ipf_port: 80 # Example with one ip addresses lls_meta3: contrail.linklocal_service_present: - name: meta3 - lls_ip: 10.0.0.23 - lls_port: 80 - ipf_addresses: - 10.10.10.10 - ipf_port: 80 Enforce the link local service entry absence -------------------------------------------- .. code-block:: yaml lls_meta1_delete: contrail.linklocal_service_absent: - name: cmp01 Enforce the analytics node existence ------------------------------------ .. code-block:: yaml analytics_node01: contrail.analytics_node_present: - name: nal01 - ip_address: 10.0.0.13 Enforce the analytics node absence ------------------------------------ .. code-block:: yaml analytics_node01_delete: contrail.analytics_node_absent: - name: nal01 Enforce the config node existence --------------------------------- .. code-block:: yaml config_node01: contrail.config_node_present: - name: ntw01 - ip_address: 10.0.0.23 Enforce the config node absence ------------------------------- .. code-block:: yaml config_node01_delete: contrail.config_node_absent: - name: ntw01 Enforce the BGP router existence -------------------------------- .. code-block:: yaml BGP router mx01: contrail.bgp_router_present: - name: mx01 - ip_address: 10.0.0.133 - type: mx - asn: 64512 - key_type: md5 - key: password Enforce the BGP router absence ------------------------------ .. code-block:: yaml BGP router mx01: contrail.bgp_router_absence: - name: mx01 Enforce the service appliance set existence ------------------------------------------- .. code-block:: yaml create service appliance: contrail.service_appliance_set_present: - name: testappliance - driver: 'neutron_lbaas.drivers.avi.avi_ocdriver.OpencontrailAviLoadbalancerDriver' - ha_mode: active-backup - properties: address: 10.1.11.3 user: admin password: avi123 cloud: Default-Cloud Enforce the service appliance set entry absence ----------------------------------------------- .. code-block:: yaml delete service appliance: contrail.service_appliance_set_absent: - name: testappliance Enforce the database node existence ----------------------------------- .. code-block:: yaml database_node01: contrail.database_node_present: - name: dbs01 - ip_address: 10.0.0.33 Enforce the database node absence ----------------------------------- .. code-block:: yaml database_node01: contrail.database_node_absent: - name: dbs01 Enforce the global system config existence ------------------------------------------ .. code-block:: yaml global_system_config_update: contrail.global_system_config_present: - name: default-global-system_config - ans: 64512 - grp: enable: true restart_time: 400 bgp_helper_enable: true xmpp_helper_enable: true long_lived_restart_time: 400 end_of_rib_timeout: 40 Enforce the global system config absence ---------------------------------------- .. code-block:: yaml global_system_config_delete: contrail.global_system_config_absent: - name: global-system_config Enforce the virtual network existence ---------------------------------------- .. code-block: yaml virtual_network_create: contrail.virtual_network_present: - name: virtual_network_name - conf: domain: domain name project: domain project ipam_domain: ipam domain name ipam_project: ipam project name ipam_name: ipam name ip_prefix: xxx.xxx.xxx.xxx ip_prefix_len: 24 asn: 64512 target: 10000 external: False allow_transit: False forwading_mode: 'l2_l3' rpf: 'disabled' mirror_destination: False Enforce Floating Ip Pool configuration ---------------------------------------- .. code-block: yaml floating_ip_pool_present - vn_name: virtual_network_name - vn_project: - vn_domain - owner_access: owner_access_permission - global_access: global_access_permission - projects: list of project-permission pairs """ def __virtual__(): """ Load Contrail module """ return 'contrail' def virtual_router_present(name, ip_address, router_type=None, dpdk_enabled=False, **kwargs): """ Ensures that the Contrail virtual router exists. :param name: Virtual router name :param ip_address: Virtual router IP address :param router_type: Any of ['tor-agent', 'tor-service-node', 'embedded'] """ ret = __salt__['contrail.virtual_router_create'](name, ip_address, router_type, dpdk_enabled, **kwargs) if len(ret['changes']) == 0: pass return ret def virtual_router_absent(name, **kwargs): """ Ensure that the Contrail virtual router doesn't exist :param name: The name of the virtual router that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Virtual router "{0}" is already absent'.format(name)} virtual_router = __salt__['contrail.virtual_router_get'](name, **kwargs) if 'Error' not in virtual_router: ret = __salt__['contrail.virtual_router_delete'](name, **kwargs) return ret def physical_router_present(name, parent_type=None, management_ip=None, dataplane_ip=None, vendor_name=None, product_name=None, vnc_managed=None, junos_service_ports=None, agents=None, **kwargs): """ Ensures that the Contrail virtual router exists. :param name: Physical router name :param parent_type: Parent resource type: Any of ['global-system-config'] :param management_ip: Management ip for this physical router. It is used by the device manager to perform netconf and by SNMP collector if enabled. :param dataplane_ip: VTEP address in web GUI. This is ip address in the ip-fabric(underlay) network that can be used in data plane by physical router. Usually it is the VTEP address in VxLAN for the TOR switch. :param vendor_name: Vendor name of the physical router (e.g juniper). Used by the device manager to select driver. :param product_name: Model name of the physical router (e.g juniper). Used by the device manager to select driver. :param vnc_managed: This physical router is enabled to be configured by device manager. :param user_credentials: Username and password for netconf to the physical router by device manager. :param junos_service_ports: Juniper JUNOS specific service interfaces name to perform services like NAT. :param agents: List of virtual-router references """ ret = __salt__['contrail.physical_router_create'](name, parent_type, management_ip, dataplane_ip, vendor_name, product_name, vnc_managed, junos_service_ports, agents, **kwargs) if len(ret['changes']) == 0: pass return ret def physical_router_absent(name, **kwargs): """ Ensure that the Contrail physical router doesn't exist :param name: The name of the physical router that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Physical router "{0}" is already absent'.format(name)} physical_router = __salt__['contrail.physical_router_get'](name, **kwargs) if 'Error' not in physical_router: ret = __salt__['contrail.physical_router_delete'](name, **kwargs) return ret def physical_interface_present(name, physical_router, **kwargs): """ Ensures that the Contrail physical interface exists. :param name: Physical interface name :param physical_router: Name of existing physical router """ ret = __salt__['contrail.physical_interface_create'](name, physical_router, **kwargs) if len(ret['changes']) == 0: pass return ret def physical_interface_absent(name, physical_router, **kwargs): """ Ensure that the Contrail physical interface doesn't exist :param name: The name of the physical interface that should not exist :param physical_router: Physical router name """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Physical interface "{0}" is already absent'.format(name)} physical_interface = __salt__['contrail.physical_interface_get'](name, physical_router, **kwargs) if 'Error' not in physical_interface: ret = __salt__['contrail.physical_interface_delete'](name, physical_router, **kwargs) return ret def logical_interface_present(name, parent_names, parent_type, vlan_tag=None, interface_type='L2', vmis=None, **kwargs): """ Ensures that the Contrail logical interface exists. :param name: Logical interface name :param parent_names: List of parents :param parent_type Parent resource type. Any of ['physical-router', 'physical-interface'] :param vlan_tag: VLAN tag (.1Q) classifier for this logical interface. :param interface_type: Logical interface type can be L2 or L3. :param vmis: Virtual machine interface name associate with """ ret = __salt__['contrail.logical_interface_create'](name, parent_names, parent_type, vlan_tag, interface_type, vmis=vmis, **kwargs) if len(ret['changes']) == 0: pass return ret def logical_interface_absent(name, parent_names, parent_type=None, **kwargs): """ Ensure that the Contrail logical interface doesn't exist :param name: The name of the logical interface that should not exist :param parent_names: List of parent names. Example ['phr01','ge-0/1/0'] :param parent_type: Parent resource type. Any of ['physical-router', 'physical-interface'] """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'logical interface "{0}" is already absent'.format(name)} logical_interface = __salt__['contrail.logical_interface_get'](name, parent_names, parent_type, **kwargs) if 'Error' not in logical_interface: ret = __salt__['contrail.logical_interface_delete'](name, parent_names, parent_type, **kwargs) return ret def global_vrouter_config_present(name, parent_type, encap_priority='MPLSoUDP,MPLSoGRE', vxlan_vn_id_mode='automatic', flow_export_rate=None, *fq_names, **kwargs): """ Ensures that the Contrail global vrouter config exists. :param name: Global vrouter config name :param parent_type: Parent resource type :param encap_priority: Ordered list of encapsulations that vrouter will use in priority order :param vxlan_vn_id_mode: Method of allocation of VxLAN VNI(s). :param fq_names: Fully Qualified Name of resource devided <string>array :param flow_export_rate: Flow export rate is global config, rate at which each vrouter will sample and export flow records to analytics """ ret = __salt__['contrail.global_vrouter_config_create'](name, parent_type, encap_priority, vxlan_vn_id_mode, flow_export_rate, *fq_names, **kwargs) if len(ret['changes']) == 0: pass return ret def global_vrouter_config_absent(name, **kwargs): """ Ensure that the Contrail global vrouter config doesn't exist :param name: The name of the global vrouter config that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Global vrouter config "{0}" is already absent'.format(name)} vrouter_conf = __salt__['contrail.global_vrouter_config_get'](name, **kwargs) if 'Error' not in vrouter_conf: ret = __salt__['contrail.global_vrouter_config_delete'](name, **kwargs) return ret def linklocal_service_present(name, lls_ip, lls_port, ipf_addresses, ipf_port, **kwargs): """ Ensures that the Contrail link local service entry exists. :param name: Link local service name :param lls_ip: Link local ip address :param lls_port: Link local service port :param ipf_addresses: IP fabric dns name or list of IP fabric ip addresses :param ipf_port: IP fabric port """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Link local service "{0}" already exists'.format(name)} ret = __salt__['contrail.linklocal_service_create'](name, lls_ip, lls_port, ipf_addresses, ipf_port, **kwargs) if len(ret['changes']) == 0: pass return ret def linklocal_service_absent(name, **kwargs): """ Ensure that the Contrail link local service entry doesn't exist :param name: The name of the link local service entry """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Linklocal service "{0}" is already absent'.format(name)} lls = __salt__['contrail.linklocal_service_get'](name, **kwargs) if 'Error' not in lls: ret = __salt__['contrail.linklocal_service_delete'](name, **kwargs) return ret def analytics_node_present(name, ip_address, **kwargs): """ Ensures that the Contrail analytics node exists. :param name: Analytics node name """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Analytics node {0} already exists'.format(name)} ret = __salt__['contrail.analytics_node_create'](name, ip_address, **kwargs) if len(ret['changes']) == 0: pass return ret def analytics_node_absent(name, **kwargs): """ Ensure that the Contrail analytics node doesn't exist :param name: The name of the analytics node that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Analytics node "{0}" is already absent'.format(name)} node = __salt__['contrail.analytics_node_get'](name, **kwargs) if 'Error' not in node: ret = __salt__['contrail.analytics_node_delete'](name, **kwargs) return ret def config_node_present(name, ip_address, **kwargs): """ Ensures that the Contrail config node exists. :param name: Config node name """ ret = __salt__['contrail.config_node_create'](name, ip_address, **kwargs) if len(ret['changes']) == 0: pass return ret def config_node_absent(name, **kwargs): """ Ensure that the Contrail config node doesn't exist :param name: The name of the config node that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Config node "{0}" is already absent'.format(name)} node = __salt__['contrail.config_node_get'](name, **kwargs) if 'Error' not in node: ret = __salt__['contrail.config_node_delete'](name, **kwargs) return ret def bgp_router_present(name, type, ip_address, asn=64512, key_type=None, key=None, **kwargs): """ Ensures that the Contrail BGP router exists. :param name: BGP router name """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'BGP router {0} already exists'.format(name)} ret = __salt__['contrail.bgp_router_create'](name, type, ip_address, asn, key_type, key, **kwargs) if len(ret['changes']) == 0: pass return ret def bgp_router_absent(name, **kwargs): """ Ensure that the Contrail BGP router doesn't exist :param name: The name of the BGP router that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'BGP router "{0}" is already absent'.format(name)} node = __salt__['contrail.bgp_router_get'](name, **kwargs) if 'Error' not in node: ret = __salt__['contrail.bgp_router_delete'](name, **kwargs) return ret def database_node_present(name, ip_address, **kwargs): """ Ensures that the Contrail database node exists. :param name: Database node name """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Database node {0} already exists'.format(name)} ret = __salt__['contrail.database_node_create'](name, ip_address, **kwargs) if len(ret['changes']) == 0: pass return ret def database_node_absent(name, **kwargs): """ Ensure that the Contrail database node doesn't exist :param name: The name of the database node that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Database node "{0}" is already absent'.format(name)} node = __salt__['contrail.database_node_get'](name, **kwargs) if 'Error' not in node: ret = __salt__['contrail.database_node_delete'](name, **kwargs) return ret def virtual_machine_interface_present(name, virtual_network, mac_address=None, ip_address=None, security_group=None, **kwargs): """ Ensures that the Contrail virtual machine interface exists. :param name: Virtual machine interface name :param virtual_network: Network name :param mac_address: Mac address of vmi interface :param ip_address: Virtual machine interface ip address """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Virtual machine interface "{0}" already exists'.format(name)} vmis = __salt__['contrail.virtual_machine_interface_list'](**kwargs) for vmi in vmis: if vmi['name'] == name: return ret vmi = __salt__['contrail.virtual_machine_interface_create'](name, virtual_network, mac_address=mac_address, ip_address=ip_address, security_group=security_group, **kwargs) if vmi['name'] == name: ret['comment'] = 'Virtual machine interface {0} has been created'.format(name) ret['result'] = True else: ret['comment'] = 'Virtual machine interface {0} creation failed'.format(name) ret['result'] = False return ret def service_appliance_set_present(name, properties=None, driver=None, ha_mode=None, **kwargs): """ Ensures that the Contrail service appliance set exists. :param name: Service appliance set name :param properties: Key:Value pairs that are used by the provider driver and opaque to sytem. :param driver: Name of the provider driver for this service appliance set. :param ha_mode: High availability mode for the service appliance set, active-active or active-backup. """ ret = __salt__['contrail.service_appliance_set_create'](name, properties, driver, ha_mode, **kwargs) if len(ret['changes']) == 0: pass return ret def service_appliance_set_absent(name, **kwargs): """ Ensure that the Contrail service appliance set doesn't exist :param name: The name of the service appliance set that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Service appliance set "{0}" is already absent'.format(name)} physical_router = __salt__['contrail.service_appliance_set_get'](name, **kwargs) if 'Error' not in physical_router: ret = __salt__['contrail.service_appliance_set_delete'](name, **kwargs) return ret def global_system_config_present(name, ans=64512, grp=None, **kwargs): """ Ensures that the Contrail global system config exists or is updated :param name: Virtual router name :param ans: Autonomous system number :param grp: Graceful-Restart-Parameters - dict of parameters """ ret = __salt__['contrail.global_system_config_create'](name=name, ans=ans, grp=grp, **kwargs) if len(ret['changes']) == 0: pass return ret def global_system_config_absent(name, **kwargs): """ Ensure that the Contrail global system config doesn't exist :param name: The name of the global system config that should not exist """ ret = {'name': name, 'changes': {}, 'result': True, 'comment': 'Global system config "{0}" is already absent'.format(name)} gsc = __salt__['contrail.global_system_config_get'](name, **kwargs) if 'Error' not in gsc: ret = __salt__['contrail.global_system_config_delete'](name, **kwargs) return ret def virtual_network_present(name, conf=None, **kwargs): """ Ensure that the virtual network exists. :param name: Name of the virtual network :param conf: Key:Value pairs used for network creation """ ret = __salt__['contrail.virtual_network_create'](name, conf, **kwargs) return ret def floating_ip_pool_present(vn_name, vn_project, vn_domain=None, owner_access=None, global_access=None, projects=None, **kwargs): """ Ensure that floating ip pool existst Virtual network with flag external need to be created before this function is called :param vn_name: Name of the virtual network with external flag, tell us which floating ip pool we want to manage :param vn_project: Name of the project in which floating pool exists :param vn_domain: Name of the domain in which floating pool exists :param owner_access: permissions rights for owner of the pool :param global_access: permissions rights for other users than owner :param projects: list of pairs (project, permission for given project) """ ret = __salt__['contrail.update_floating_ip_pool'](vn_name, vn_project, vn_domain, owner_access, global_access, projects, **kwargs) return ret
# There's a function blackbox(lst) that takes a list, does some magic, and returns a list. # You don't know if it modifies the given list or creates a completely different one. # Find this out testing the function on your own list and print "modifies" if the fu # blackbox(lst) # print("modifies") # if the function changes the given list or "new" # if the returned list is not connected to the initial one. football_list = ["Liverpool Football Club", "English Premier League", "Champion 2019-2020"] football_list_id = id(football_list) new_list = blackbox(football_list) new_list_id = id(new_list) if football_list_id == new_list_id: print("modifies") else: print("new")
football_list = ['Liverpool Football Club', 'English Premier League', 'Champion 2019-2020'] football_list_id = id(football_list) new_list = blackbox(football_list) new_list_id = id(new_list) if football_list_id == new_list_id: print('modifies') else: print('new')
# Path to the root location of the application inside the container. APP_ROOT = '/intend4' # Configuration directory, inside the application CONFIG_DIR = "{}/config".format(APP_ROOT) # Logging level LOG_LEVEL = 'INFO' # CRITICAL / ERROR / WARNING / INFO / DEBUG
app_root = '/intend4' config_dir = '{}/config'.format(APP_ROOT) log_level = 'INFO'
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: # @return a ListNode def removeNthFromEnd(self, head, n): if head is None: return None nodes = [] p = head while p : nodes.append(p) p = p.next if n == len(nodes): return nodes[1] if len(nodes) > 1 else None else: nodes[-n-1].next = nodes[-n+1] if n > 1 else None return head
class Solution: def remove_nth_from_end(self, head, n): if head is None: return None nodes = [] p = head while p: nodes.append(p) p = p.next if n == len(nodes): return nodes[1] if len(nodes) > 1 else None else: nodes[-n - 1].next = nodes[-n + 1] if n > 1 else None return head
# # Automatically generated # class Asm6502(object): pass Asm6502.BRK = 0x00 Asm6502.ORA_IX = 0x01 Asm6502.ORA_Z = 0x05 Asm6502.ASL_Z = 0x06 Asm6502.PHP = 0x08 Asm6502.ORA_IM = 0x09 Asm6502.ASL = 0x0A Asm6502.ORA_A = 0x0D Asm6502.ASL_A = 0x0E Asm6502.BPL = 0x10 Asm6502.ORA_IY = 0x11 Asm6502.ORA_ZX = 0x15 Asm6502.ASL_ZX = 0x16 Asm6502.CLC = 0x18 Asm6502.ORA_AY = 0x19 Asm6502.ORA_AX = 0x1D Asm6502.ASL_AX = 0x1E Asm6502.JSR_A = 0x20 Asm6502.AND_IX = 0x21 Asm6502.BIT_Z = 0x24 Asm6502.AND_Z = 0x25 Asm6502.ROL_Z = 0x26 Asm6502.PLP = 0x28 Asm6502.AND_IM = 0x29 Asm6502.ROL = 0x2A Asm6502.BIT_A = 0x2C Asm6502.AND_A = 0x2D Asm6502.ROL_A = 0x2E Asm6502.BMI = 0x30 Asm6502.AND_IY = 0x31 Asm6502.AND_ZX = 0x35 Asm6502.ROL_ZX = 0x36 Asm6502.SEC = 0x38 Asm6502.AND_AY = 0x39 Asm6502.AND_AX = 0x3D Asm6502.ROL_AX = 0x3E Asm6502.RTI = 0x40 Asm6502.EOR_IX = 0x41 Asm6502.EOR_Z = 0x45 Asm6502.LSR_Z = 0x46 Asm6502.PHA = 0x48 Asm6502.EOR_IM = 0x49 Asm6502.LSR = 0x4A Asm6502.JMP_A = 0x4C Asm6502.EOR_A = 0x4D Asm6502.LSR_A = 0x4E Asm6502.BVC = 0x50 Asm6502.EOR_IY = 0x51 Asm6502.EOR_ZX = 0x55 Asm6502.LSR_ZX = 0x56 Asm6502.CLI = 0x58 Asm6502.EOR_AY = 0x59 Asm6502.EOR_AX = 0x5D Asm6502.LSR_AX = 0x5E Asm6502.RTS = 0x60 Asm6502.ADC_IX = 0x61 Asm6502.ADC_Z = 0x65 Asm6502.ROR_Z = 0x66 Asm6502.PLA = 0x68 Asm6502.ADC_IM = 0x69 Asm6502.ROR = 0x6A Asm6502.JMP_IND = 0x6C Asm6502.ADC_A = 0x6D Asm6502.ROR_A = 0x6E Asm6502.BVC = 0x70 Asm6502.ADC_IY = 0x71 Asm6502.ADC_ZX = 0x75 Asm6502.ROR_ZX = 0x76 Asm6502.SEI = 0x78 Asm6502.ADC_AY = 0x79 Asm6502.ADC_AX = 0x7D Asm6502.ROR_AX = 0x7E Asm6502.STA_IX = 0x81 Asm6502.STY_Z = 0x84 Asm6502.STA_Z = 0x85 Asm6502.STX_Z = 0x86 Asm6502.DEY = 0x88 Asm6502.TXA = 0x8A Asm6502.STY_A = 0x8C Asm6502.STA_A = 0x8D Asm6502.STX_A = 0x8E Asm6502.BCC = 0x90 Asm6502.STA_IY = 0x91 Asm6502.STY_ZX = 0x94 Asm6502.STA_ZX = 0x95 Asm6502.STX_ZY = 0x96 Asm6502.TYA = 0x98 Asm6502.STA_AY = 0x99 Asm6502.TXS = 0x9A Asm6502.STA_AX = 0x9D Asm6502.LDY_IM = 0xA0 Asm6502.LDA_IX = 0xA1 Asm6502.LDX_IM = 0xA2 Asm6502.LDY_Z = 0xA4 Asm6502.LDA_Z = 0xA5 Asm6502.LDX_Z = 0xA6 Asm6502.TAY = 0xA8 Asm6502.LDA_IM = 0xA9 Asm6502.TAX = 0xAA Asm6502.LDY_A = 0xAC Asm6502.LDA_A = 0xAD Asm6502.LDX_A = 0xAE Asm6502.BCS = 0xB0 Asm6502.LDA_IY = 0xB1 Asm6502.LDY_ZX = 0xB4 Asm6502.LDA_ZX = 0xB5 Asm6502.LDX_ZY = 0xB6 Asm6502.CLV = 0xB8 Asm6502.LDA_AY = 0xB9 Asm6502.TSX = 0xBA Asm6502.LDY_AX = 0xBC Asm6502.LDA_AX = 0xBD Asm6502.LDX_AY = 0xBE Asm6502.CPY_IM = 0xC0 Asm6502.CMP_IX = 0xC1 Asm6502.CPY_Z = 0xC4 Asm6502.CMP_Z = 0xC5 Asm6502.DEC_Z = 0xC6 Asm6502.INY = 0xC8 Asm6502.CMP_IM = 0xC9 Asm6502.DEX = 0xCA Asm6502.CPY_A = 0xCC Asm6502.CMP_A = 0xCD Asm6502.DEC_A = 0xCE Asm6502.BNE = 0xD0 Asm6502.CMP_IY = 0xD1 Asm6502.CMP_ZX = 0xD5 Asm6502.DEC_ZX = 0xD6 Asm6502.CLD = 0xD8 Asm6502.CMP_AY = 0xD9 Asm6502.CMP_AX = 0xDD Asm6502.DEC_AX = 0xDE Asm6502.CPX_IM = 0xE0 Asm6502.SBC_IX = 0xE1 Asm6502.CPX_Z = 0xE4 Asm6502.SBC_Z = 0xE5 Asm6502.INC_Z = 0xE6 Asm6502.INX = 0xE8 Asm6502.SBC_IM = 0xE9 Asm6502.NOP = 0xEA Asm6502.CPX_A = 0xEC Asm6502.SBC_A = 0xED Asm6502.INC_A = 0xEE Asm6502.BEQ = 0xF0 Asm6502.SBC_IY = 0xF1 Asm6502.SBC_ZX = 0xF5 Asm6502.INC_ZX = 0xF6 Asm6502.SED = 0xF8 Asm6502.SBC_AY = 0xF9 Asm6502.SBC_AX = 0xFD Asm6502.INC_AX = 0xFE
class Asm6502(object): pass Asm6502.BRK = 0 Asm6502.ORA_IX = 1 Asm6502.ORA_Z = 5 Asm6502.ASL_Z = 6 Asm6502.PHP = 8 Asm6502.ORA_IM = 9 Asm6502.ASL = 10 Asm6502.ORA_A = 13 Asm6502.ASL_A = 14 Asm6502.BPL = 16 Asm6502.ORA_IY = 17 Asm6502.ORA_ZX = 21 Asm6502.ASL_ZX = 22 Asm6502.CLC = 24 Asm6502.ORA_AY = 25 Asm6502.ORA_AX = 29 Asm6502.ASL_AX = 30 Asm6502.JSR_A = 32 Asm6502.AND_IX = 33 Asm6502.BIT_Z = 36 Asm6502.AND_Z = 37 Asm6502.ROL_Z = 38 Asm6502.PLP = 40 Asm6502.AND_IM = 41 Asm6502.ROL = 42 Asm6502.BIT_A = 44 Asm6502.AND_A = 45 Asm6502.ROL_A = 46 Asm6502.BMI = 48 Asm6502.AND_IY = 49 Asm6502.AND_ZX = 53 Asm6502.ROL_ZX = 54 Asm6502.SEC = 56 Asm6502.AND_AY = 57 Asm6502.AND_AX = 61 Asm6502.ROL_AX = 62 Asm6502.RTI = 64 Asm6502.EOR_IX = 65 Asm6502.EOR_Z = 69 Asm6502.LSR_Z = 70 Asm6502.PHA = 72 Asm6502.EOR_IM = 73 Asm6502.LSR = 74 Asm6502.JMP_A = 76 Asm6502.EOR_A = 77 Asm6502.LSR_A = 78 Asm6502.BVC = 80 Asm6502.EOR_IY = 81 Asm6502.EOR_ZX = 85 Asm6502.LSR_ZX = 86 Asm6502.CLI = 88 Asm6502.EOR_AY = 89 Asm6502.EOR_AX = 93 Asm6502.LSR_AX = 94 Asm6502.RTS = 96 Asm6502.ADC_IX = 97 Asm6502.ADC_Z = 101 Asm6502.ROR_Z = 102 Asm6502.PLA = 104 Asm6502.ADC_IM = 105 Asm6502.ROR = 106 Asm6502.JMP_IND = 108 Asm6502.ADC_A = 109 Asm6502.ROR_A = 110 Asm6502.BVC = 112 Asm6502.ADC_IY = 113 Asm6502.ADC_ZX = 117 Asm6502.ROR_ZX = 118 Asm6502.SEI = 120 Asm6502.ADC_AY = 121 Asm6502.ADC_AX = 125 Asm6502.ROR_AX = 126 Asm6502.STA_IX = 129 Asm6502.STY_Z = 132 Asm6502.STA_Z = 133 Asm6502.STX_Z = 134 Asm6502.DEY = 136 Asm6502.TXA = 138 Asm6502.STY_A = 140 Asm6502.STA_A = 141 Asm6502.STX_A = 142 Asm6502.BCC = 144 Asm6502.STA_IY = 145 Asm6502.STY_ZX = 148 Asm6502.STA_ZX = 149 Asm6502.STX_ZY = 150 Asm6502.TYA = 152 Asm6502.STA_AY = 153 Asm6502.TXS = 154 Asm6502.STA_AX = 157 Asm6502.LDY_IM = 160 Asm6502.LDA_IX = 161 Asm6502.LDX_IM = 162 Asm6502.LDY_Z = 164 Asm6502.LDA_Z = 165 Asm6502.LDX_Z = 166 Asm6502.TAY = 168 Asm6502.LDA_IM = 169 Asm6502.TAX = 170 Asm6502.LDY_A = 172 Asm6502.LDA_A = 173 Asm6502.LDX_A = 174 Asm6502.BCS = 176 Asm6502.LDA_IY = 177 Asm6502.LDY_ZX = 180 Asm6502.LDA_ZX = 181 Asm6502.LDX_ZY = 182 Asm6502.CLV = 184 Asm6502.LDA_AY = 185 Asm6502.TSX = 186 Asm6502.LDY_AX = 188 Asm6502.LDA_AX = 189 Asm6502.LDX_AY = 190 Asm6502.CPY_IM = 192 Asm6502.CMP_IX = 193 Asm6502.CPY_Z = 196 Asm6502.CMP_Z = 197 Asm6502.DEC_Z = 198 Asm6502.INY = 200 Asm6502.CMP_IM = 201 Asm6502.DEX = 202 Asm6502.CPY_A = 204 Asm6502.CMP_A = 205 Asm6502.DEC_A = 206 Asm6502.BNE = 208 Asm6502.CMP_IY = 209 Asm6502.CMP_ZX = 213 Asm6502.DEC_ZX = 214 Asm6502.CLD = 216 Asm6502.CMP_AY = 217 Asm6502.CMP_AX = 221 Asm6502.DEC_AX = 222 Asm6502.CPX_IM = 224 Asm6502.SBC_IX = 225 Asm6502.CPX_Z = 228 Asm6502.SBC_Z = 229 Asm6502.INC_Z = 230 Asm6502.INX = 232 Asm6502.SBC_IM = 233 Asm6502.NOP = 234 Asm6502.CPX_A = 236 Asm6502.SBC_A = 237 Asm6502.INC_A = 238 Asm6502.BEQ = 240 Asm6502.SBC_IY = 241 Asm6502.SBC_ZX = 245 Asm6502.INC_ZX = 246 Asm6502.SED = 248 Asm6502.SBC_AY = 249 Asm6502.SBC_AX = 253 Asm6502.INC_AX = 254
class WindowPosition: position = [] def get(self, quantity, pos_x, pos_y, width, height): if quantity == 1: self.position.append({'pos_x': pos_x, 'pos_y': pos_y, 'width': width, 'height': height}) else: height_ratio = height * 4 / 3 # TODO hard coded 4:3 ratio if width > height_ratio: new_width = width / 2 new_height = height new_pos_x = pos_x + new_width new_pos_y = pos_y else: new_width = width new_height = height / 2 new_pos_x = pos_x new_pos_y = pos_y + new_height quantity1 = int(quantity / 2) quantity2 = quantity - quantity1 self.get(quantity1, pos_x, pos_y, new_width, new_height) self.get(quantity2, new_pos_x, new_pos_y, new_width, new_height) return self.position
class Windowposition: position = [] def get(self, quantity, pos_x, pos_y, width, height): if quantity == 1: self.position.append({'pos_x': pos_x, 'pos_y': pos_y, 'width': width, 'height': height}) else: height_ratio = height * 4 / 3 if width > height_ratio: new_width = width / 2 new_height = height new_pos_x = pos_x + new_width new_pos_y = pos_y else: new_width = width new_height = height / 2 new_pos_x = pos_x new_pos_y = pos_y + new_height quantity1 = int(quantity / 2) quantity2 = quantity - quantity1 self.get(quantity1, pos_x, pos_y, new_width, new_height) self.get(quantity2, new_pos_x, new_pos_y, new_width, new_height) return self.position
#! python3 # __author__ = "YangJiaHao" # date: 2018/12/25 def duplicate(nums): length = len(nums) for n in nums: if n < 0 or n >= length: return False for i in range(len(nums)): while nums[i] != i: if nums[i] == nums[nums[i]]: return nums[i] else: nums[i], nums[nums[i]] = nums[nums[i]], nums[i] return False
def duplicate(nums): length = len(nums) for n in nums: if n < 0 or n >= length: return False for i in range(len(nums)): while nums[i] != i: if nums[i] == nums[nums[i]]: return nums[i] else: (nums[i], nums[nums[i]]) = (nums[nums[i]], nums[i]) return False
#!/usr/bin/env python3 PIKS_DEFAULT_DIR=".piks" PIKS_DEFAULT_FILE="piks.db" PIKS_DEFAULT_CHECKSUM="sha512" if __name__ == "__main__": pass
piks_default_dir = '.piks' piks_default_file = 'piks.db' piks_default_checksum = 'sha512' if __name__ == '__main__': pass
categories = { 'Network Stereo Zone Amplifier', 'Network Stereo Receiver', 'Portable Player', 'Media Player', 'Network Streamer', 'Network player & Preamplifier', 'CD Player', 'Speaker', 'DAC', 'CD player', 'Streaming DAC', 'DAC & Network Streamer', 'DAC & Headphone Amp', 'Network Audio & CD Player', 'All-in-One', 'Wireless speakers & Sound Hub', 'CD & Digital Player', 'Home Automation', 'All-In-One Music Player', 'DACs & Network Player', 'Network Audio Transport', 'Portable DAC', 'Control Amplifier', 'Pre-amplifier', 'Network Player &USB DAC', 'Integrated Amplifier', 'Super Audio CD player', 'Music Server & Streamer', 'All-in-One Music Player', 'All-in-One HD Hi-Fi Music Player', 'Soundbar', 'Network Audio Player', 'Compact Portable Player', 'Network Audio Receiver', 'Network Streamer &CD Player', 'Reference-level Music Server & DAC', 'Network Adapter & DAC', 'Streaming Transport', 'Network Streamer & DAC', 'Super Audio CD Player', 'Network Streamer & Music Server', 'Network CD Receiver', 'Mini-Streamer', 'Digital Music Server' } ingore_categories = { 'Onkyo Granbeat', }
categories = {'Network Stereo Zone Amplifier', 'Network Stereo Receiver', 'Portable Player', 'Media Player', 'Network Streamer', 'Network player & Preamplifier', 'CD Player', 'Speaker', 'DAC', 'CD player', 'Streaming DAC', 'DAC & Network Streamer', 'DAC & Headphone Amp', 'Network Audio & CD Player', 'All-in-One', 'Wireless speakers & Sound Hub', 'CD & Digital Player', 'Home Automation', 'All-In-One Music Player', 'DACs & Network Player', 'Network Audio Transport', 'Portable DAC', 'Control Amplifier', 'Pre-amplifier', 'Network Player &USB DAC', 'Integrated Amplifier', 'Super Audio CD player', 'Music Server & Streamer', 'All-in-One Music Player', 'All-in-One HD Hi-Fi Music Player', 'Soundbar', 'Network Audio Player', 'Compact Portable Player', 'Network Audio Receiver', 'Network Streamer &CD Player', 'Reference-level Music Server & DAC', 'Network Adapter & DAC', 'Streaming Transport', 'Network Streamer & DAC', 'Super Audio CD Player', 'Network Streamer & Music Server', 'Network CD Receiver', 'Mini-Streamer', 'Digital Music Server'} ingore_categories = {'Onkyo Granbeat'}
#return True if sum of any two num in list equals key O(n) num=[] n=int(input()) for x in range(n): num.append(int(input())) key=int(input()) for x in range(n): if key-num[x] in num: print(True) exit() #quit() print(None)
num = [] n = int(input()) for x in range(n): num.append(int(input())) key = int(input()) for x in range(n): if key - num[x] in num: print(True) exit() print(None)
class Order(): ASCENDING = 0 # lower is better DESCENDING = 1 # higher is better class Format(): ANONYMOUS = 0b0001 NAMED = 0b0010 LEADERBOARD = 0b0100 LIST = 0b1000 Delim = '|' KeyScorePosition = -1 # indeks v rezultatu, po katerem sortiramo ExpectedNicknamePosition = 10000 # indeks nickname-a v rezultatu Labels = ["no label"] FileName = "LEADERBOARDS.txt" OutputFormat = Format.LEADERBOARD | Format.NAMED OutputOrder = Order.DESCENDING IgnoreFlag = "%robot:ignore" SkipOP = False
class Order: ascending = 0 descending = 1 class Format: anonymous = 1 named = 2 leaderboard = 4 list = 8 delim = '|' key_score_position = -1 expected_nickname_position = 10000 labels = ['no label'] file_name = 'LEADERBOARDS.txt' output_format = Format.LEADERBOARD | Format.NAMED output_order = Order.DESCENDING ignore_flag = '%robot:ignore' skip_op = False
"""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"""
"""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()
n = int(input()) triangle_list = [] for i in range(n): temp = [] if i == 0: temp.append(1) else: for j in range(i + 1): if j == 0 or j == i: temp.append(triangleList[i - 1][j - 1]) else: temp.append(triangleList[i - 1][j] + triangleList[i - 1][j - 1]) triangleList.append(temp) for i in range(n): for j in range(i + 1): print(triangleList[i][j], end=' ') print()
""" 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"
""" 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]
lf_stable_version = '1.6' lf_latest_version = '1.7' lf_dev_version = '1.dev' lf_versions = [lf_stable_version, lf_latest_version, lf_dev_version]
class PluginBase(object): def run(self, **kwargs): err = "Error, this is an abstract method " \ "you need implement this in a derived class" raise NotImplementedError(err) class PluginDescription(object): def __init__(self, name, author, short_desc, long_desc, help_str, instance): self.name = name self.author = author self.short_desc = short_desc self.long_desc = long_desc self.help_str = help_str self.instance = instance
class Pluginbase(object): def run(self, **kwargs): err = 'Error, this is an abstract method you need implement this in a derived class' raise not_implemented_error(err) class Plugindescription(object): def __init__(self, name, author, short_desc, long_desc, help_str, instance): self.name = name self.author = author self.short_desc = short_desc self.long_desc = long_desc self.help_str = help_str self.instance = instance
# -*- coding: utf-8 -*- config = dict( age_config={ "feature_name": "age", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("age", "$..content.age", "f_assert_not_null->f_assert_must_digit_or_float")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "" }, apply_register_duration_config={ "feature_name": "apply_register_duration", "feature_data_type": "float", "default_value": "PositiveSignedFloatTypeDefault", "json_path_list": [ ("application_on", "$.apply_data.data.application_on", "f_assert_not_null->f_assert_must_basestring"), ("registration_on", "$.portrait_data.data.registration_on", "f_assert_not_null->f_assert_must_basestring") ], "f_map_and_filter_chain": "m_to_slice(0,10)->f_assert_seq0_gte_seq1->m_get_mon_sub(2)", "reduce_chain": "", "l_map_and_filter_chain": "" }, application_on_config={ "feature_name": "application_on", "feature_data_type": "string", "default_value": "StringTypeDefault", "json_path_list": [("application_on", "$..application_on", "f_assert_not_null->f_assert_must_basestring")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, application_on_plus_config={ "feature_name": "application_on_plus", "feature_data_type": "string", "default_value": "StringTypeDefault", "json_path_list": [("application_on", "$..application_on", "f_assert_not_null->f_assert_must_basestring")], "f_map_and_filter_chain": "m_get_seq_index_value(0)->m_datetime_only_hour_minute", "reduce_chain": "", "l_map_and_filter_chain": "", }, car_count_config={ "feature_name": "car_count", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [ ("result", "$..result", "f_assert_jsonpath_true->f_assert_must_list"), ], "f_map_and_filter_chain": "f_not_null->m_to_len", "reduce_chain": "", "l_map_and_filter_chain": "" }, cc_bill_age_config={ "feature_name": "cc_bill_age", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("cc_bill_age", "$..result.rrx_once_all.credit_card_account_age", "f_assert_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, complete_degree_config={ "feature_name": "complete_degree", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("complete_degree", "$..complete_degree", "f_assert_not_null->f_assert_must_int")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, creditcard_count_config={ "feature_name": "creditcard_count", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [ ("creditcard_count", "$..result.rrx_once_all.credit_cards_num", "f_assert_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, dc_bill_age_config={ "feature_name": "dc_bill_age", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [ ("dc_bill_age", "$..result.rrx_once_all.debit_card_account_age", "f_assert_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, education_degree_code_config={ "feature_name": "education_degree_code", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("education_degree_code", "$..edu_exp_form[*].degree", "f_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_to_int->r_min->m_to_str->m_to_code('education_degree_code')", "reduce_chain": "", "l_map_and_filter_chain": "", }, is_loan_agency_config={ "feature_name": "is_loan_agency", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("is_loan_agency", "$..result", "f_assert_not_null->f_assert_must_basestring")], "f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool('00')", "reduce_chain": "", "l_map_and_filter_chain": "", }, is_netsky_black_config={ "feature_name": "is_netsky_black", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [ ("is_netsky_black", "$..result", "f_assert_not_null->f_assert_must_basestring")], "f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool('00')", "reduce_chain": "", "l_map_and_filter_chain": "", }, is_organization_g_black_config={ "feature_name": "is_organization_g_black", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("is_organization_g_black", "$..result", "f_assert_not_null->f_assert_must_basestring")], "f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool('00')", "reduce_chain": "", "l_map_and_filter_chain": "", }, is_pingan_multi_loan_config={ "feature_name": "is_pingan_multi_loan", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("is_pingan_multi_loan", "$..result", "f_assert_not_null->f_assert_must_int")], "f_map_and_filter_chain": "m_get_seq_index_value(0)->m_to_bool(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, mobile_mark_config={ "feature_name": "mobile_mark", "feature_data_type": "string", "default_value": "StringTypeDefault", "json_path_list": [("mobile_mark", "$..tags.contactMain_IMSI1_IMEI1.label", "f_assert_not_null->f_assert_must_basestring")], "f_map_and_filter_chain": "m_get_seq_index_value(0)", "reduce_chain": "", "l_map_and_filter_chain": "", }, online_time_config={ "feature_name": "online_time", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [ ("online_time", "$.yd_mobile_online_time_s.content.online_time", "m_yd_online_time"), ("online_time", "$.unicome_mobile_online_time_s.content.online_time", "m_unicom_online_time"), ("online_time", "$.telecom_mobile_online_time_s.content.online_time", "m_telecom_online_time"), ], "f_map_and_filter_chain": "f_assert_not_null->m_to_sum", "reduce_chain": "", "l_map_and_filter_chain": "", }, income_level_config={ "feature_name": "income_level", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [ ("portrait_data", "$.portrait_data.data.work_exp_form", "m_lp_income(0.56)->m_to_code('income_level')"), ("cc_credit", "$..debit_card_12m_passentry_amount", "m_to_code('income_level_yd')->m_single_to_list"), ("unicom_finance_portrait_s", "$..last12.debit.income_range", "m_to_code('income_level_lt')->m_single_to_list"), ], "f_map_and_filter_chain": "f_assert_not_null->m_to_sum", "reduce_chain": "", "l_map_and_filter_chain": "", }, pingan_multi_loan_count_config={ "feature_name": "pingan_multi_loan_count", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("pingan_multi_loan_count", "$..orgNums", "f_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_to_int->m_to_sum", "reduce_chain": "", "l_map_and_filter_chain": "", }, overspeed_count_config={ "feature_name": "overspeed_count", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("overspeed_count", "$..content.over_speed_list[*].month_times", "f_not_null->f_assert_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_to_int->m_to_sum", "reduce_chain": "", "l_map_and_filter_chain": "", }, overload_count_config={ "feature_name": "overload_count", "feature_data_type": "int", "default_value": "PositiveSignedTypeDefault", "json_path_list": [("overload_count", "$..content.over_load_list[*].month_times", "f_not_null->f_assert_not_null->f_assert_must_digit")], "f_map_and_filter_chain": "m_to_int->m_to_sum", "reduce_chain": "", "l_map_and_filter_chain": "", }, )
config = dict(age_config={'feature_name': 'age', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('age', '$..content.age', 'f_assert_not_null->f_assert_must_digit_or_float')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, apply_register_duration_config={'feature_name': 'apply_register_duration', 'feature_data_type': 'float', 'default_value': 'PositiveSignedFloatTypeDefault', 'json_path_list': [('application_on', '$.apply_data.data.application_on', 'f_assert_not_null->f_assert_must_basestring'), ('registration_on', '$.portrait_data.data.registration_on', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_to_slice(0,10)->f_assert_seq0_gte_seq1->m_get_mon_sub(2)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, application_on_config={'feature_name': 'application_on', 'feature_data_type': 'string', 'default_value': 'StringTypeDefault', 'json_path_list': [('application_on', '$..application_on', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, application_on_plus_config={'feature_name': 'application_on_plus', 'feature_data_type': 'string', 'default_value': 'StringTypeDefault', 'json_path_list': [('application_on', '$..application_on', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)->m_datetime_only_hour_minute', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, car_count_config={'feature_name': 'car_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('result', '$..result', 'f_assert_jsonpath_true->f_assert_must_list')], 'f_map_and_filter_chain': 'f_not_null->m_to_len', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, cc_bill_age_config={'feature_name': 'cc_bill_age', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('cc_bill_age', '$..result.rrx_once_all.credit_card_account_age', 'f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, complete_degree_config={'feature_name': 'complete_degree', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('complete_degree', '$..complete_degree', 'f_assert_not_null->f_assert_must_int')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, creditcard_count_config={'feature_name': 'creditcard_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('creditcard_count', '$..result.rrx_once_all.credit_cards_num', 'f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, dc_bill_age_config={'feature_name': 'dc_bill_age', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('dc_bill_age', '$..result.rrx_once_all.debit_card_account_age', 'f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, education_degree_code_config={'feature_name': 'education_degree_code', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('education_degree_code', '$..edu_exp_form[*].degree', 'f_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': "m_to_int->r_min->m_to_str->m_to_code('education_degree_code')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_loan_agency_config={'feature_name': 'is_loan_agency', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_loan_agency', '$..result', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': "m_get_seq_index_value(0)->m_to_bool('00')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_netsky_black_config={'feature_name': 'is_netsky_black', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_netsky_black', '$..result', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': "m_get_seq_index_value(0)->m_to_bool('00')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_organization_g_black_config={'feature_name': 'is_organization_g_black', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_organization_g_black', '$..result', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': "m_get_seq_index_value(0)->m_to_bool('00')", 'reduce_chain': '', 'l_map_and_filter_chain': ''}, is_pingan_multi_loan_config={'feature_name': 'is_pingan_multi_loan', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('is_pingan_multi_loan', '$..result', 'f_assert_not_null->f_assert_must_int')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)->m_to_bool(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, mobile_mark_config={'feature_name': 'mobile_mark', 'feature_data_type': 'string', 'default_value': 'StringTypeDefault', 'json_path_list': [('mobile_mark', '$..tags.contactMain_IMSI1_IMEI1.label', 'f_assert_not_null->f_assert_must_basestring')], 'f_map_and_filter_chain': 'm_get_seq_index_value(0)', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, online_time_config={'feature_name': 'online_time', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('online_time', '$.yd_mobile_online_time_s.content.online_time', 'm_yd_online_time'), ('online_time', '$.unicome_mobile_online_time_s.content.online_time', 'm_unicom_online_time'), ('online_time', '$.telecom_mobile_online_time_s.content.online_time', 'm_telecom_online_time')], 'f_map_and_filter_chain': 'f_assert_not_null->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, income_level_config={'feature_name': 'income_level', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('portrait_data', '$.portrait_data.data.work_exp_form', "m_lp_income(0.56)->m_to_code('income_level')"), ('cc_credit', '$..debit_card_12m_passentry_amount', "m_to_code('income_level_yd')->m_single_to_list"), ('unicom_finance_portrait_s', '$..last12.debit.income_range', "m_to_code('income_level_lt')->m_single_to_list")], 'f_map_and_filter_chain': 'f_assert_not_null->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, pingan_multi_loan_count_config={'feature_name': 'pingan_multi_loan_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('pingan_multi_loan_count', '$..orgNums', 'f_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_to_int->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, overspeed_count_config={'feature_name': 'overspeed_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('overspeed_count', '$..content.over_speed_list[*].month_times', 'f_not_null->f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_to_int->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''}, overload_count_config={'feature_name': 'overload_count', 'feature_data_type': 'int', 'default_value': 'PositiveSignedTypeDefault', 'json_path_list': [('overload_count', '$..content.over_load_list[*].month_times', 'f_not_null->f_assert_not_null->f_assert_must_digit')], 'f_map_and_filter_chain': 'm_to_int->m_to_sum', 'reduce_chain': '', 'l_map_and_filter_chain': ''})
# # @lc app=leetcode id=309 lang=python3 # # [309] Best Time to Buy and Sell Stock with Cooldown # # @lc code=start class Solution: def maxProfit(self, prices: List[int]) -> int: if len(prices) < 2: return 0 s0 = 0 s1 = -prices[0] s2 = float('-inf') for i in range(len(prices)): pre0 = s0 pre1 = s1 pre2 = s2 s0 = max(pre0, pre2) s1 = max(pre0 - prices[i], pre1) s2 = pre1 + prices[i] return max(s0, s2) # @lc code=end
class Solution: def max_profit(self, prices: List[int]) -> int: if len(prices) < 2: return 0 s0 = 0 s1 = -prices[0] s2 = float('-inf') for i in range(len(prices)): pre0 = s0 pre1 = s1 pre2 = s2 s0 = max(pre0, pre2) s1 = max(pre0 - prices[i], pre1) s2 = pre1 + prices[i] return max(s0, s2)
class ArgumentsMethods(object): def add_arguments(self, parser): parser.add_argument( "states", nargs="+", help="States to export by FIPS code." )
class Argumentsmethods(object): def add_arguments(self, parser): parser.add_argument('states', nargs='+', help='States to export by FIPS code.')
# Programa recebe uma lista e transforma em uma strng separada por ',' e and antecedendo o ultimo elemento. def concatenar(lista): temporario = '' index = 0 for item in lista: if index == len(lista)-1: temporario += f'and {item}.' else: temporario += f'{item}, ' index += 1 return temporario spam = ['apples', 'bananas', 'tofu', 'cats', 1] print(concatenar(spam))
def concatenar(lista): temporario = '' index = 0 for item in lista: if index == len(lista) - 1: temporario += f'and {item}.' else: temporario += f'{item}, ' index += 1 return temporario spam = ['apples', 'bananas', 'tofu', 'cats', 1] print(concatenar(spam))
MESSAGES = dict({ "1": "\n\nData provided for method __init__() of class Feature \n" "was not correct to create dict() object", "2": "\n\nFeature object is not a valid geojson feature object, \n" "one of the following failed, geometry, properties or type field are missing \n", "3": "\n\nCoordinates Array Items must be of float type\n" })
messages = dict({'1': '\n\nData provided for method __init__() of class Feature \nwas not correct to create dict() object', '2': '\n\nFeature object is not a valid geojson feature object, \none of the following failed, geometry, properties or type field are missing \n', '3': '\n\nCoordinates Array Items must be of float type\n'})
# parsetab.py # This file is automatically generated. Do not edit. # pylint: disable=W,C,R _tabversion = '3.10' _lr_method = 'LALR' _lr_signature = 'leftTYPECASTrightUMINUSrightUNOTleftMASMENOSleftPOTENCIAleftPORDIVRESIDUOleftANDORSIMBOLOOR2SIMBOLOORSIMBOLOAND2leftDESPLAZAMIENTOIZQUIERDADESPLAZAMIENTODERECHAABS ACOS ACOSD ACOSH ADD ALL ALTER AND ANY AS ASC ASIN ASIND ASINH ATAN ATAN2 ATAN2D ATAND ATANH AUTO_INCREMENT AVG BEGIN BETWEEN BIGINT BOOLEAN BOTH BY CADENA CASE CBRT CEIL CEILING CHAR CHARACTER CHECK COLOCHO COLUMN COLUMNS COMA CONCAT CONSTRAINT CONT CONVERT CORCHETEDER CORCHETEIZQ COS COSD COSH COT COTD CREATE CURRENT_USER DATABASE DATABASES DATE DAY DECIMAL DECIMALTOKEN DECLARE DECODE DEFAULT DEGREES DELETE DESC DESPLAZAMIENTODERECHA DESPLAZAMIENTOIZQUIERDA DIFERENTE DISTINCT DIV DIV DOSPUNTOS DOUBLE DROP ELSE ENCODE END ENTERO ENUM ENUM ESCAPE ETIQUETA EXCEPT EXISTS EXP FACTORIAL FALSE FIRST FLOOR FOR FOREIGN FROM FULL FUNCTION GCD GET_BYTE GREATEST GROUP HAVING HOUR ID IF IGUAL IGUALIGUAL ILIKE IN INHERITS INNER INSERT INTEGER INTERSECT INTERVAL INTO IS ISNULL JOIN KEY LAST LCM LEADING LEAST LEFT LENGTH LIKE LIMIT LN LOG LOG10 MAS MAX MAYOR MAYORIGUAL MD5 MENOR MENORIGUAL MENOS MIN MINUTE MIN_SCALE MOD MODE MONEY MONTH NATURAL NOT NOTEQUAL NOTNULL NULL NULLS NUMERAL NUMERIC OF OFFSET ON ONLY OR ORDER OUTER OWNER PARENTESISDERECHA PARENTESISIZQUIERDA PI POR POTENCIA POWER PRECISION PRIMARY PUNTO PUNTOYCOMA RADIANS RANDOM REAL REFERENCES RENAME REPLACE RESIDUO RETURNING RETURNS RIGHT ROUND SCALE SECOND SELECT SESSION_USER SET SETSEED SET_BYTE SHA256 SHOW SIGN SIMBOLOAND SIMBOLOAND2 SIMBOLOOR SIMBOLOOR2 SIN SIND SINH SMALLINT SOME SQRT SUBSTR SUBSTRING SUM SYMMETRIC TABLE TABLES TAN TAND TANH TEXT THEN TIME TIMESTAMP TO TRAILING TRIM TRIM_SCALE TRUE TRUNC TYPE TYPECAST UNION UNIQUE UNKNOWN UPDATE UPPER USING VALUES VARCHAR VARYING VIEW WHEN WHERE WIDTH_BUCKET YEARinicio : queriesqueries : queries queryqueries : queryquery : mostrarBD\n | crearBD\n | alterBD\n | dropBD\n | operacion\n | insertinBD\n | updateinBD\n | deleteinBD\n | createTable\n | inheritsBD\n | dropTable\n | alterTable\n | variantesAt\n | contAdd\n | contDrop\n | contAlter\n | listaid\n | tipoAlter \n | selectData\n crearBD : CREATE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMAcrearBD : CREATE DATABASE ID parametrosCrearBD PUNTOYCOMAparametrosCrearBD : parametrosCrearBD parametroCrearBDparametrosCrearBD : parametroCrearBDparametroCrearBD : OWNER IGUAL final\n | MODE IGUAL final\n mostrarBD : SHOW DATABASES PUNTOYCOMAalterBD : ALTER DATABASE ID RENAME TO ID PUNTOYCOMAalterBD : ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMAparametroAlterUser : CURRENT_USER\n | SESSION_USER\n | final\n dropTable : DROP TABLE ID PUNTOYCOMA\n alterTable : ALTER TABLE ID variantesAt PUNTOYCOMA\n\n \n variantesAt : ADD contAdd\n | ALTER contAlter\n | DROP contDrop\n \n listaContAlter : listaContAlter COMA contAlter \n \n listaContAlter : contAlter\n \n contAlter : COLUMN ID SET NOT NULL \n | COLUMN ID TYPE tipo\n \n contAdd : COLUMN ID tipo \n | CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID\n | PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA\n \n contDrop : COLUMN ID \n | CONSTRAINT ID\n \n listaid : listaid COMA ID\n \n listaid : ID\n \n tipoAlter : ADD \n | DROP\n dropBD : DROP DATABASE ID PUNTOYCOMAdropBD : DROP DATABASE IF EXISTS ID PUNTOYCOMAoperacion : operacion MAS operacion\n | operacion MENOS operacion\n | operacion POR operacion\n | operacion DIV operacion\n | operacion RESIDUO operacion\n | operacion POTENCIA operacion\n | operacion AND operacion\n | operacion OR operacion\n | operacion SIMBOLOOR2 operacion\n | operacion SIMBOLOOR operacion\n | operacion SIMBOLOAND2 operacion\n | operacion DESPLAZAMIENTOIZQUIERDA operacion\n | operacion DESPLAZAMIENTODERECHA operacion\n | operacion IGUAL operacion\n | operacion IGUALIGUAL operacion\n | operacion NOTEQUAL operacion\n | operacion MAYORIGUAL operacion\n | operacion MENORIGUAL operacion\n | operacion MAYOR operacion\n | operacion MENOR operacion\n | operacion DIFERENTE operacion\n | PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n operacion : MENOS ENTERO %prec UMINUS\n | MENOS DECIMAL %prec UMINUS\n \n operacion : NOT operacion %prec UNOToperacion : funcionBasicaoperacion : finalfuncionBasica : ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | PI PARENTESISIZQUIERDA PARENTESISDERECHA\n | POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA\n \n \n | ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n \n\n | COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\t\t\t | COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\n\n\n | COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA\n | GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n funcionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA opcionTrim : LEADING\n | TRAILING\n | BOTH\n final : DECIMAL\n | ENTEROfinal : IDfinal : ID PUNTO IDfinal : CADENAinsertinBD : INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAinsertinBD : INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAlistaParam : listaParam COMA finallistaParam : finalupdateinBD : UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMAasignaciones : asignaciones COMA asignaasignaciones : asignaasigna : ID IGUAL operaciondeleteinBD : DELETE FROM ID PUNTOYCOMAdeleteinBD : DELETE FROM ID WHERE operacion PUNTOYCOMAinheritsBD : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMAcreateTable : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMAcreaColumnas : creaColumnas COMA ColumnacreaColumnas : ColumnaColumna : ID tipoColumna : ID tipo paramOpcionalColumna : UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHAColumna : constraintcheckColumna : checkinColumnColumna : primaryKeyColumna : foreignKeyparamOpcional : paramOpcional paramopcparamOpcional : paramopcparamopc : DEFAULT final\n | NULL\n | NOT NULL\n | UNIQUE\n | PRIMARY KEY\n paramopc : constraintcheckparamopc : checkinColumnparamopc : CONSTRAINT ID UNIQUEcheckinColumn : CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAconstraintcheck : CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAprimaryKey : PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHAforeignKey : FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHAtipo : SMALLINT\n | INTEGER\n | BIGINT\n | DECIMAL\n | NUMERIC\n | REAL\n | DOUBLE PRECISION\n | MONEY\n | VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | TEXT\n | BOOLEAN\n | TIMESTAMP\n | TIME\n | INTERVAL\n | DATE\n | YEAR\n | MONTH \n | DAY\n | HOUR \n | MINUTE\n | SECOND\n selectData : SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n selectData : SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA\n selectData : SELECT select_list FROM select_list PUNTOYCOMA\n | SELECT POR FROM select_list PUNTOYCOMA\n selectData : SELECT select_list PUNTOYCOMA\n opcionesSelect : opcionesSelect opcionSelect\n opcionesSelect : opcionSelect\n opcionSelect : LIMIT operacion\n | GROUP BY select_list\n | HAVING select_list\n | ORDER BY select_list \n opcionSelect : LIMIT operacion OFFSET operacion\n | ORDER BY select_list ordenamiento \n ordenamiento : ASC\n | DESC search_condition : search_condition AND search_condition\n | search_condition OR search_condition \n search_condition : NOT search_conditionsearch_condition : operacionsearch_condition : PARENTESISIZQUIERDA search_condition PARENTESISDERECHA select_list : select_list COMA operacion select_list : select_list COMA asignacion select_list : asignacionselect_list : operacion select_list : select_list condicion_select operacion COMA operacion select_list : condicion_select operacion asignacion : operacion AS operacioncondicion_select : DISTINCT FROM \n condicion_select : IS DISTINCT FROM \n condicion_select : IS NOT DISTINCT FROMcondicion_select : DISTINCT condicion_select : IS DISTINCT \n condicion_select : IS NOT DISTINCT \n funcionBasica : operacion BETWEEN operacion AND operacionfuncionBasica : operacion LIKE CADENAfuncionBasica : operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA funcionBasica : operacion NOT BETWEEN operacion AND operacion funcionBasica : operacion BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion NOT BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion condicion_select operacion' _lr_action_items = {'SHOW':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[23,23,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'CREATE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[24,24,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'ALTER':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,266,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[26,26,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,395,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'DROP':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,266,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[27,27,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,398,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'PARENTESISIZQUIERDA':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,29,30,31,32,33,34,35,39,41,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,131,132,142,146,149,150,151,153,154,158,161,162,163,164,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,263,264,271,272,274,275,280,283,284,285,286,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,310,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,403,408,409,411,412,414,417,420,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,499,505,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,564,565,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,623,626,630,631,633,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,708,709,],[30,30,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,151,30,-152,-151,30,-85,-86,-56,162,30,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,-155,-2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,253,30,-247,-40,-41,-82,-83,30,-153,-84,-39,-52,30,307,308,-53,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,30,-251,30,30,-256,-244,-248,-54,-31,392,-154,-52,-53,-81,404,-46,-191,-192,-193,-194,-195,-196,-198,413,415,416,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,421,30,-221,30,30,30,30,-101,-110,30,-148,-149,-150,30,30,-245,-249,-23,-58,-37,30,513,-164,30,-45,-197,522,-47,527,-87,-88,-89,-90,-91,-93,-94,-95,30,30,-98,-99,30,30,-103,-104,-105,-106,-107,-108,30,-111,-112,-113,-114,-115,-116,30,30,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,30,-136,30,-138,30,30,30,30,-143,-144,30,30,-250,30,-252,30,-246,-26,561,563,-38,30,-44,-49,590,-219,30,590,-220,30,-254,-253,30,-24,30,628,629,-59,-92,-165,-199,-201,-202,-51,590,590,-96,-97,-100,-102,30,-117,-118,-135,30,30,30,-141,-142,30,-146,-147,-255,-25,-167,665,667,-32,-33,672,-160,-200,-48,-50,-217,590,590,30,30,-218,-134,30,-156,-215,30,30,-216,30,-137,-139,-140,-145,30,-109,-166,710,-157,]),'MENOS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,152,153,154,158,161,162,165,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,264,271,272,273,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,382,383,384,385,386,399,401,402,408,409,411,412,417,423,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,510,512,516,519,520,526,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,556,563,571,572,576,579,580,582,583,586,588,589,590,591,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,622,627,630,631,635,636,637,638,640,641,642,644,646,649,651,653,654,655,656,657,658,659,667,671,673,677,678,680,682,683,684,685,686,687,690,694,697,702,706,707,709,],[28,28,-3,-4,-5,-6,-7,107,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,28,-152,-151,28,-85,-86,-56,28,-155,-2,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,-247,-40,-41,-82,-83,28,107,-153,107,-39,-52,28,-53,107,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,107,107,107,107,107,107,107,107,107,28,-251,28,28,107,-244,-248,-54,-31,-154,-52,-53,107,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,107,28,-221,28,28,28,28,107,107,107,107,107,107,107,107,107,107,107,107,107,107,-101,107,107,107,107,107,107,107,107,-110,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,28,-148,-149,-150,107,107,107,107,107,107,107,107,107,107,107,28,107,107,28,-245,-249,-23,-58,-37,28,-164,28,-45,-197,-47,107,107,107,-87,-88,-89,-90,-91,-93,-94,-95,28,28,-98,-99,28,28,-103,-104,-105,-106,-107,-108,28,-111,-112,-113,-114,-115,-116,28,28,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,107,28,-136,28,-138,28,28,28,28,-143,-144,28,28,-66,28,-252,28,107,-246,-26,-38,107,28,107,-44,-49,28,-219,28,28,-220,107,107,107,107,107,107,107,28,107,107,107,107,107,107,107,107,-66,-66,28,-24,28,-59,-92,107,-165,-199,-201,-202,-51,28,107,28,107,-96,-97,-100,-102,28,-117,-118,107,-135,28,28,28,-141,-142,28,-146,-147,-66,-25,-167,107,-32,-33,-160,-200,-48,-50,-217,28,28,28,28,107,107,-218,107,-134,107,107,107,107,28,-156,-215,107,28,28,-216,28,-137,-139,-140,-145,107,28,107,107,-109,-166,-157,]),'NOT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,133,142,146,149,150,151,152,153,154,158,161,162,165,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,264,271,272,273,274,280,281,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,382,383,384,385,386,399,401,402,408,409,411,412,417,423,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,510,512,516,519,520,526,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,556,558,563,571,572,576,579,580,582,583,586,588,589,590,591,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,615,617,619,620,622,627,630,631,635,636,637,638,640,641,642,644,646,649,651,653,654,655,656,657,658,659,660,661,662,663,667,668,671,673,677,678,680,682,683,684,685,686,687,688,690,694,697,699,702,706,707,709,],[33,33,-3,-4,-5,-6,-7,130,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,33,-152,-151,33,-85,-86,-56,33,-155,-2,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,-247,258,-40,-41,-82,-83,33,130,-153,-84,-39,-52,33,-53,130,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,130,130,130,130,130,130,130,130,130,33,-251,33,33,130,-244,-248,-54,-31,-154,-52,-53,130,-81,-46,410,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,130,33,-221,33,33,33,33,130,130,130,130,130,130,130,130,130,130,130,130,130,130,-101,130,130,130,130,130,130,130,130,-110,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,130,33,-148,-149,-150,130,130,130,130,130,130,130,130,130,130,130,33,130,130,33,-245,-249,-23,-58,-37,33,-164,33,-45,-197,-47,130,130,130,-87,-88,-89,-90,-91,-93,-94,-95,33,33,-98,-99,33,33,-103,-104,-105,-106,-107,-108,33,-111,-112,-113,-114,-115,-116,33,33,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,130,33,-136,33,-138,33,33,33,33,-143,-144,33,33,-66,33,-252,33,130,-246,-26,-38,130,33,130,-44,-49,588,-219,33,588,-220,130,130,130,130,130,130,130,33,130,130,130,130,130,130,130,130,-66,-66,33,-24,616,33,-59,-92,130,-165,-199,-201,-202,-51,588,130,588,130,-96,-97,-100,-102,33,-117,-118,130,-135,33,33,33,-141,-142,33,-146,-147,-66,-25,616,-178,-180,-182,-184,-185,-167,130,-32,-33,-160,-200,-48,-50,-217,588,588,33,33,-84,130,-218,130,-134,130,130,130,130,-177,-179,-181,-183,33,-187,-156,-215,130,33,33,-216,33,-137,-139,-140,-145,-186,130,33,130,-188,130,-109,-166,-157,]),'INSERT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[36,36,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'UPDATE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[37,37,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'DELETE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[38,38,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'ADD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,266,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[39,39,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,397,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'COLUMN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,395,397,398,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[40,40,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,143,147,-152,-151,-85,-86,159,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,143,159,147,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'CHECK':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,558,560,562,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,612,613,615,617,619,620,622,630,631,635,636,637,638,640,653,655,660,661,662,663,664,668,671,673,682,684,685,686,687,688,699,706,707,709,],[41,41,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,41,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,505,41,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,505,505,626,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,505,-178,-180,-182,-184,-185,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-177,-179,-181,-183,626,-187,-156,-215,-216,-137,-139,-140,-145,-186,-188,-109,-166,-157,]),'FOREIGN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,560,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[42,42,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,42,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,507,42,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,507,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'PRIMARY':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,279,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,558,560,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,612,613,615,617,619,620,622,630,631,635,636,637,638,640,653,655,660,661,662,663,668,671,673,682,684,685,686,687,688,699,706,707,709,],[43,43,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,43,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,309,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,309,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,506,43,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,618,506,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,618,-178,-180,-182,-184,-185,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-177,-179,-181,-183,-187,-156,-215,-216,-137,-139,-140,-145,-186,-188,-109,-166,-157,]),'CONSTRAINT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,392,397,398,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,558,560,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,612,613,615,617,619,620,622,630,631,635,636,637,638,640,653,655,660,661,662,663,668,671,673,682,684,685,686,687,688,699,706,707,709,],[44,44,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,148,-152,-151,-85,-86,160,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,504,160,148,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,621,504,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,621,-178,-180,-182,-184,-185,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-177,-179,-181,-183,-187,-156,-215,-216,-137,-139,-140,-145,-186,-188,-109,-166,-157,]),'ID':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,37,39,40,44,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,134,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,157,158,159,160,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,276,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,307,308,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,391,392,399,400,401,402,404,408,409,411,412,417,421,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,504,508,509,510,513,516,517,518,520,526,527,530,531,532,533,534,542,551,552,553,556,560,561,563,571,572,575,579,580,582,583,584,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,621,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,665,667,671,672,673,678,680,682,683,684,685,686,687,694,700,706,707,709,710,],[25,25,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,153,-152,-151,153,-85,-86,156,-56,161,165,153,-155,-2,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,-247,259,261,263,264,265,266,-40,267,268,270,-41,271,272,-82,-83,153,-153,-84,275,277,-39,278,279,-52,153,-53,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,153,-251,153,153,-256,-244,-248,-54,-31,-154,-52,-53,-81,405,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,418,419,153,-221,153,153,153,153,-101,-110,153,-148,-149,-150,153,153,-245,-249,-23,495,496,-58,511,-37,153,153,-164,153,-45,-197,-47,528,-87,-88,-89,-90,-91,-93,-94,-95,153,153,-98,-99,153,153,-103,-104,-105,-106,-107,-108,153,-111,-112,-113,-114,-115,-116,153,153,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,153,-136,153,-138,153,153,153,153,-143,-144,153,153,-250,153,-252,153,-246,-26,153,153,562,566,153,-38,153,153,405,405,-44,-49,585,153,-219,153,153,-220,153,-254,-253,153,-24,496,153,153,-59,-92,153,-165,-199,-201,-202,637,-51,153,153,-96,-97,-100,-102,153,-117,-118,-135,153,153,153,-141,-142,153,-146,-147,-255,-25,153,664,-167,153,153,-32,-33,-160,-200,-48,-50,-217,153,153,153,153,-218,-134,689,153,-156,153,-215,153,153,-216,153,-137,-139,-140,-145,153,708,-109,-166,-157,153,]),'SELECT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[45,45,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'ABS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[46,46,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,46,-152,-151,46,-85,-86,-56,46,-155,-2,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,-247,-40,-41,-82,-83,46,-153,-84,-39,-52,46,-53,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,46,-251,46,46,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,46,-221,46,46,46,46,-101,-110,46,-148,-149,-150,46,46,-245,-249,-23,-58,-37,46,-164,46,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,46,46,-98,-99,46,46,-103,-104,-105,-106,-107,-108,46,-111,-112,-113,-114,-115,-116,46,46,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,46,-136,46,-138,46,46,46,46,-143,-144,46,46,-250,46,-252,46,-246,-26,-38,46,-44,-49,46,-219,46,46,-220,46,-254,-253,46,-24,46,-59,-92,-165,-199,-201,-202,-51,46,46,-96,-97,-100,-102,46,-117,-118,-135,46,46,46,-141,-142,46,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,46,46,46,46,-218,-134,46,-156,-215,46,46,-216,46,-137,-139,-140,-145,46,-109,-166,-157,]),'CBRT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[47,47,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,47,-152,-151,47,-85,-86,-56,47,-155,-2,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,-247,-40,-41,-82,-83,47,-153,-84,-39,-52,47,-53,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,47,-251,47,47,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,47,-221,47,47,47,47,-101,-110,47,-148,-149,-150,47,47,-245,-249,-23,-58,-37,47,-164,47,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,47,47,-98,-99,47,47,-103,-104,-105,-106,-107,-108,47,-111,-112,-113,-114,-115,-116,47,47,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,47,-136,47,-138,47,47,47,47,-143,-144,47,47,-250,47,-252,47,-246,-26,-38,47,-44,-49,47,-219,47,47,-220,47,-254,-253,47,-24,47,-59,-92,-165,-199,-201,-202,-51,47,47,-96,-97,-100,-102,47,-117,-118,-135,47,47,47,-141,-142,47,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,47,47,47,47,-218,-134,47,-156,-215,47,47,-216,47,-137,-139,-140,-145,47,-109,-166,-157,]),'CEIL':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[48,48,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,48,-152,-151,48,-85,-86,-56,48,-155,-2,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,-247,-40,-41,-82,-83,48,-153,-84,-39,-52,48,-53,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,48,-251,48,48,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,48,-221,48,48,48,48,-101,-110,48,-148,-149,-150,48,48,-245,-249,-23,-58,-37,48,-164,48,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,48,48,-98,-99,48,48,-103,-104,-105,-106,-107,-108,48,-111,-112,-113,-114,-115,-116,48,48,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,48,-136,48,-138,48,48,48,48,-143,-144,48,48,-250,48,-252,48,-246,-26,-38,48,-44,-49,48,-219,48,48,-220,48,-254,-253,48,-24,48,-59,-92,-165,-199,-201,-202,-51,48,48,-96,-97,-100,-102,48,-117,-118,-135,48,48,48,-141,-142,48,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,48,48,48,48,-218,-134,48,-156,-215,48,48,-216,48,-137,-139,-140,-145,48,-109,-166,-157,]),'CEILING':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[49,49,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,49,-152,-151,49,-85,-86,-56,49,-155,-2,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,-247,-40,-41,-82,-83,49,-153,-84,-39,-52,49,-53,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,49,-251,49,49,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,49,-221,49,49,49,49,-101,-110,49,-148,-149,-150,49,49,-245,-249,-23,-58,-37,49,-164,49,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,49,49,-98,-99,49,49,-103,-104,-105,-106,-107,-108,49,-111,-112,-113,-114,-115,-116,49,49,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,49,-136,49,-138,49,49,49,49,-143,-144,49,49,-250,49,-252,49,-246,-26,-38,49,-44,-49,49,-219,49,49,-220,49,-254,-253,49,-24,49,-59,-92,-165,-199,-201,-202,-51,49,49,-96,-97,-100,-102,49,-117,-118,-135,49,49,49,-141,-142,49,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,49,49,49,49,-218,-134,49,-156,-215,49,49,-216,49,-137,-139,-140,-145,49,-109,-166,-157,]),'DEGREES':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[50,50,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,50,-152,-151,50,-85,-86,-56,50,-155,-2,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,-247,-40,-41,-82,-83,50,-153,-84,-39,-52,50,-53,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,50,-251,50,50,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,50,-221,50,50,50,50,-101,-110,50,-148,-149,-150,50,50,-245,-249,-23,-58,-37,50,-164,50,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,50,50,-98,-99,50,50,-103,-104,-105,-106,-107,-108,50,-111,-112,-113,-114,-115,-116,50,50,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,50,-136,50,-138,50,50,50,50,-143,-144,50,50,-250,50,-252,50,-246,-26,-38,50,-44,-49,50,-219,50,50,-220,50,-254,-253,50,-24,50,-59,-92,-165,-199,-201,-202,-51,50,50,-96,-97,-100,-102,50,-117,-118,-135,50,50,50,-141,-142,50,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,50,50,50,50,-218,-134,50,-156,-215,50,50,-216,50,-137,-139,-140,-145,50,-109,-166,-157,]),'DIV':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,152,153,154,158,161,162,165,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,259,260,264,271,272,273,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,382,383,384,385,386,399,401,402,408,409,411,412,417,423,425,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,510,512,516,519,520,526,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,556,563,571,572,576,579,580,582,583,586,588,589,590,591,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,622,627,630,631,635,636,637,638,640,641,642,644,646,649,651,653,654,655,656,657,658,659,667,671,673,677,678,680,682,683,684,685,686,687,690,694,697,702,706,707,709,],[29,29,-3,-4,-5,-6,-7,109,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,29,-152,-151,29,-85,-86,-56,29,-155,-2,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,-247,-40,-41,-82,-83,29,109,-153,109,-39,-52,29,-53,109,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,109,109,-62,-63,-64,109,-66,-67,-68,-69,-70,-71,-72,109,109,109,109,109,109,109,109,109,29,-251,29,29,109,-244,-248,-54,-31,-154,-52,-53,109,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,109,29,-221,29,29,29,29,109,109,109,109,109,109,109,109,109,109,109,109,109,109,-101,109,109,109,109,109,109,109,109,-110,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,29,-148,-149,-150,109,109,109,109,109,109,109,109,109,109,109,29,109,109,29,-245,-249,-23,-58,-37,29,-164,29,-45,-197,-47,109,109,109,-87,-88,-89,-90,-91,-93,-94,-95,29,29,-98,-99,29,29,-103,-104,-105,-106,-107,-108,29,-111,-112,-113,-114,-115,-116,29,29,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,109,29,-136,29,-138,29,29,29,29,-143,-144,29,29,-66,29,-252,29,109,-246,-26,-38,109,29,109,-44,-49,29,-219,29,29,-220,109,109,109,109,109,109,109,29,109,109,109,109,109,109,109,109,-66,-66,29,-24,29,-59,-92,109,-165,-199,-201,-202,-51,29,109,29,109,-96,-97,-100,-102,29,-117,-118,109,-135,29,29,29,-141,-142,29,-146,-147,-66,-25,-167,109,-32,-33,-160,-200,-48,-50,-217,29,29,29,29,109,109,-218,109,-134,109,109,109,109,29,-156,-215,109,29,29,-216,29,-137,-139,-140,-145,109,29,109,109,-109,-166,-157,]),'EXP':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[51,51,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,51,-152,-151,51,-85,-86,-56,51,-155,-2,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,-247,-40,-41,-82,-83,51,-153,-84,-39,-52,51,-53,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,51,-251,51,51,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,51,-221,51,51,51,51,-101,-110,51,-148,-149,-150,51,51,-245,-249,-23,-58,-37,51,-164,51,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,51,51,-98,-99,51,51,-103,-104,-105,-106,-107,-108,51,-111,-112,-113,-114,-115,-116,51,51,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,51,-136,51,-138,51,51,51,51,-143,-144,51,51,-250,51,-252,51,-246,-26,-38,51,-44,-49,51,-219,51,51,-220,51,-254,-253,51,-24,51,-59,-92,-165,-199,-201,-202,-51,51,51,-96,-97,-100,-102,51,-117,-118,-135,51,51,51,-141,-142,51,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,51,51,51,51,-218,-134,51,-156,-215,51,51,-216,51,-137,-139,-140,-145,51,-109,-166,-157,]),'FACTORIAL':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[52,52,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,52,-152,-151,52,-85,-86,-56,52,-155,-2,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,-247,-40,-41,-82,-83,52,-153,-84,-39,-52,52,-53,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,52,-251,52,52,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,52,-221,52,52,52,52,-101,-110,52,-148,-149,-150,52,52,-245,-249,-23,-58,-37,52,-164,52,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,52,52,-98,-99,52,52,-103,-104,-105,-106,-107,-108,52,-111,-112,-113,-114,-115,-116,52,52,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,52,-136,52,-138,52,52,52,52,-143,-144,52,52,-250,52,-252,52,-246,-26,-38,52,-44,-49,52,-219,52,52,-220,52,-254,-253,52,-24,52,-59,-92,-165,-199,-201,-202,-51,52,52,-96,-97,-100,-102,52,-117,-118,-135,52,52,52,-141,-142,52,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,52,52,52,52,-218,-134,52,-156,-215,52,52,-216,52,-137,-139,-140,-145,52,-109,-166,-157,]),'FLOOR':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[53,53,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,53,-152,-151,53,-85,-86,-56,53,-155,-2,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,-247,-40,-41,-82,-83,53,-153,-84,-39,-52,53,-53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,53,-251,53,53,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,53,-221,53,53,53,53,-101,-110,53,-148,-149,-150,53,53,-245,-249,-23,-58,-37,53,-164,53,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,53,53,-98,-99,53,53,-103,-104,-105,-106,-107,-108,53,-111,-112,-113,-114,-115,-116,53,53,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,53,-136,53,-138,53,53,53,53,-143,-144,53,53,-250,53,-252,53,-246,-26,-38,53,-44,-49,53,-219,53,53,-220,53,-254,-253,53,-24,53,-59,-92,-165,-199,-201,-202,-51,53,53,-96,-97,-100,-102,53,-117,-118,-135,53,53,53,-141,-142,53,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,53,53,53,53,-218,-134,53,-156,-215,53,53,-216,53,-137,-139,-140,-145,53,-109,-166,-157,]),'GCD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[54,54,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,54,-152,-151,54,-85,-86,-56,54,-155,-2,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,-247,-40,-41,-82,-83,54,-153,-84,-39,-52,54,-53,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,54,-251,54,54,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,54,-221,54,54,54,54,-101,-110,54,-148,-149,-150,54,54,-245,-249,-23,-58,-37,54,-164,54,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,54,54,-98,-99,54,54,-103,-104,-105,-106,-107,-108,54,-111,-112,-113,-114,-115,-116,54,54,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,54,-136,54,-138,54,54,54,54,-143,-144,54,54,-250,54,-252,54,-246,-26,-38,54,-44,-49,54,-219,54,54,-220,54,-254,-253,54,-24,54,-59,-92,-165,-199,-201,-202,-51,54,54,-96,-97,-100,-102,54,-117,-118,-135,54,54,54,-141,-142,54,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,54,54,54,54,-218,-134,54,-156,-215,54,54,-216,54,-137,-139,-140,-145,54,-109,-166,-157,]),'LCM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[55,55,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,55,-152,-151,55,-85,-86,-56,55,-155,-2,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,-247,-40,-41,-82,-83,55,-153,-84,-39,-52,55,-53,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,55,-251,55,55,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,55,-221,55,55,55,55,-101,-110,55,-148,-149,-150,55,55,-245,-249,-23,-58,-37,55,-164,55,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,55,55,-98,-99,55,55,-103,-104,-105,-106,-107,-108,55,-111,-112,-113,-114,-115,-116,55,55,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,55,-136,55,-138,55,55,55,55,-143,-144,55,55,-250,55,-252,55,-246,-26,-38,55,-44,-49,55,-219,55,55,-220,55,-254,-253,55,-24,55,-59,-92,-165,-199,-201,-202,-51,55,55,-96,-97,-100,-102,55,-117,-118,-135,55,55,55,-141,-142,55,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,55,55,55,55,-218,-134,55,-156,-215,55,55,-216,55,-137,-139,-140,-145,55,-109,-166,-157,]),'LN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[56,56,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,56,-152,-151,56,-85,-86,-56,56,-155,-2,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,-247,-40,-41,-82,-83,56,-153,-84,-39,-52,56,-53,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,56,-251,56,56,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,56,-221,56,56,56,56,-101,-110,56,-148,-149,-150,56,56,-245,-249,-23,-58,-37,56,-164,56,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,56,56,-98,-99,56,56,-103,-104,-105,-106,-107,-108,56,-111,-112,-113,-114,-115,-116,56,56,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,56,-136,56,-138,56,56,56,56,-143,-144,56,56,-250,56,-252,56,-246,-26,-38,56,-44,-49,56,-219,56,56,-220,56,-254,-253,56,-24,56,-59,-92,-165,-199,-201,-202,-51,56,56,-96,-97,-100,-102,56,-117,-118,-135,56,56,56,-141,-142,56,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,56,56,56,56,-218,-134,56,-156,-215,56,56,-216,56,-137,-139,-140,-145,56,-109,-166,-157,]),'LOG':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[57,57,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,57,-152,-151,57,-85,-86,-56,57,-155,-2,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,-247,-40,-41,-82,-83,57,-153,-84,-39,-52,57,-53,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,57,-251,57,57,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,57,-221,57,57,57,57,-101,-110,57,-148,-149,-150,57,57,-245,-249,-23,-58,-37,57,-164,57,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,57,57,-98,-99,57,57,-103,-104,-105,-106,-107,-108,57,-111,-112,-113,-114,-115,-116,57,57,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,57,-136,57,-138,57,57,57,57,-143,-144,57,57,-250,57,-252,57,-246,-26,-38,57,-44,-49,57,-219,57,57,-220,57,-254,-253,57,-24,57,-59,-92,-165,-199,-201,-202,-51,57,57,-96,-97,-100,-102,57,-117,-118,-135,57,57,57,-141,-142,57,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,57,57,57,57,-218,-134,57,-156,-215,57,57,-216,57,-137,-139,-140,-145,57,-109,-166,-157,]),'MOD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[58,58,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,58,-152,-151,58,-85,-86,-56,58,-155,-2,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,-247,-40,-41,-82,-83,58,-153,-84,-39,-52,58,-53,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,58,-251,58,58,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,58,-221,58,58,58,58,-101,-110,58,-148,-149,-150,58,58,-245,-249,-23,-58,-37,58,-164,58,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,58,58,-98,-99,58,58,-103,-104,-105,-106,-107,-108,58,-111,-112,-113,-114,-115,-116,58,58,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,58,-136,58,-138,58,58,58,58,-143,-144,58,58,-250,58,-252,58,-246,-26,-38,58,-44,-49,58,-219,58,58,-220,58,-254,-253,58,-24,58,-59,-92,-165,-199,-201,-202,-51,58,58,-96,-97,-100,-102,58,-117,-118,-135,58,58,58,-141,-142,58,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,58,58,58,58,-218,-134,58,-156,-215,58,58,-216,58,-137,-139,-140,-145,58,-109,-166,-157,]),'PI':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[59,59,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,59,-152,-151,59,-85,-86,-56,59,-155,-2,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,-247,-40,-41,-82,-83,59,-153,-84,-39,-52,59,-53,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,59,-251,59,59,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,59,-221,59,59,59,59,-101,-110,59,-148,-149,-150,59,59,-245,-249,-23,-58,-37,59,-164,59,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,59,59,-98,-99,59,59,-103,-104,-105,-106,-107,-108,59,-111,-112,-113,-114,-115,-116,59,59,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,59,-136,59,-138,59,59,59,59,-143,-144,59,59,-250,59,-252,59,-246,-26,-38,59,-44,-49,59,-219,59,59,-220,59,-254,-253,59,-24,59,-59,-92,-165,-199,-201,-202,-51,59,59,-96,-97,-100,-102,59,-117,-118,-135,59,59,59,-141,-142,59,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,59,59,59,59,-218,-134,59,-156,-215,59,59,-216,59,-137,-139,-140,-145,59,-109,-166,-157,]),'POWER':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[60,60,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,60,-152,-151,60,-85,-86,-56,60,-155,-2,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,-247,-40,-41,-82,-83,60,-153,-84,-39,-52,60,-53,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,60,-251,60,60,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,60,-221,60,60,60,60,-101,-110,60,-148,-149,-150,60,60,-245,-249,-23,-58,-37,60,-164,60,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,60,60,-98,-99,60,60,-103,-104,-105,-106,-107,-108,60,-111,-112,-113,-114,-115,-116,60,60,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,60,-136,60,-138,60,60,60,60,-143,-144,60,60,-250,60,-252,60,-246,-26,-38,60,-44,-49,60,-219,60,60,-220,60,-254,-253,60,-24,60,-59,-92,-165,-199,-201,-202,-51,60,60,-96,-97,-100,-102,60,-117,-118,-135,60,60,60,-141,-142,60,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,60,60,60,60,-218,-134,60,-156,-215,60,60,-216,60,-137,-139,-140,-145,60,-109,-166,-157,]),'RADIANS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[61,61,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,61,-152,-151,61,-85,-86,-56,61,-155,-2,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,-247,-40,-41,-82,-83,61,-153,-84,-39,-52,61,-53,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,61,-251,61,61,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,61,-221,61,61,61,61,-101,-110,61,-148,-149,-150,61,61,-245,-249,-23,-58,-37,61,-164,61,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,61,61,-98,-99,61,61,-103,-104,-105,-106,-107,-108,61,-111,-112,-113,-114,-115,-116,61,61,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,61,-136,61,-138,61,61,61,61,-143,-144,61,61,-250,61,-252,61,-246,-26,-38,61,-44,-49,61,-219,61,61,-220,61,-254,-253,61,-24,61,-59,-92,-165,-199,-201,-202,-51,61,61,-96,-97,-100,-102,61,-117,-118,-135,61,61,61,-141,-142,61,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,61,61,61,61,-218,-134,61,-156,-215,61,61,-216,61,-137,-139,-140,-145,61,-109,-166,-157,]),'ROUND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[62,62,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,62,-152,-151,62,-85,-86,-56,62,-155,-2,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,-247,-40,-41,-82,-83,62,-153,-84,-39,-52,62,-53,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,62,-251,62,62,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,62,-221,62,62,62,62,-101,-110,62,-148,-149,-150,62,62,-245,-249,-23,-58,-37,62,-164,62,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,62,62,-98,-99,62,62,-103,-104,-105,-106,-107,-108,62,-111,-112,-113,-114,-115,-116,62,62,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,62,-136,62,-138,62,62,62,62,-143,-144,62,62,-250,62,-252,62,-246,-26,-38,62,-44,-49,62,-219,62,62,-220,62,-254,-253,62,-24,62,-59,-92,-165,-199,-201,-202,-51,62,62,-96,-97,-100,-102,62,-117,-118,-135,62,62,62,-141,-142,62,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,62,62,62,62,-218,-134,62,-156,-215,62,62,-216,62,-137,-139,-140,-145,62,-109,-166,-157,]),'SIGN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[63,63,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,63,-152,-151,63,-85,-86,-56,63,-155,-2,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,-247,-40,-41,-82,-83,63,-153,-84,-39,-52,63,-53,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,63,-251,63,63,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,63,-221,63,63,63,63,-101,-110,63,-148,-149,-150,63,63,-245,-249,-23,-58,-37,63,-164,63,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,63,63,-98,-99,63,63,-103,-104,-105,-106,-107,-108,63,-111,-112,-113,-114,-115,-116,63,63,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,63,-136,63,-138,63,63,63,63,-143,-144,63,63,-250,63,-252,63,-246,-26,-38,63,-44,-49,63,-219,63,63,-220,63,-254,-253,63,-24,63,-59,-92,-165,-199,-201,-202,-51,63,63,-96,-97,-100,-102,63,-117,-118,-135,63,63,63,-141,-142,63,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,63,63,63,63,-218,-134,63,-156,-215,63,63,-216,63,-137,-139,-140,-145,63,-109,-166,-157,]),'SQRT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[64,64,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,64,-152,-151,64,-85,-86,-56,64,-155,-2,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,-247,-40,-41,-82,-83,64,-153,-84,-39,-52,64,-53,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,64,-251,64,64,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,64,-221,64,64,64,64,-101,-110,64,-148,-149,-150,64,64,-245,-249,-23,-58,-37,64,-164,64,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,64,64,-98,-99,64,64,-103,-104,-105,-106,-107,-108,64,-111,-112,-113,-114,-115,-116,64,64,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,64,-136,64,-138,64,64,64,64,-143,-144,64,64,-250,64,-252,64,-246,-26,-38,64,-44,-49,64,-219,64,64,-220,64,-254,-253,64,-24,64,-59,-92,-165,-199,-201,-202,-51,64,64,-96,-97,-100,-102,64,-117,-118,-135,64,64,64,-141,-142,64,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,64,64,64,64,-218,-134,64,-156,-215,64,64,-216,64,-137,-139,-140,-145,64,-109,-166,-157,]),'TRIM_SCALE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[65,65,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,65,-152,-151,65,-85,-86,-56,65,-155,-2,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,-247,-40,-41,-82,-83,65,-153,-84,-39,-52,65,-53,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,65,-251,65,65,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,65,-221,65,65,65,65,-101,-110,65,-148,-149,-150,65,65,-245,-249,-23,-58,-37,65,-164,65,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,65,65,-98,-99,65,65,-103,-104,-105,-106,-107,-108,65,-111,-112,-113,-114,-115,-116,65,65,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,65,-136,65,-138,65,65,65,65,-143,-144,65,65,-250,65,-252,65,-246,-26,-38,65,-44,-49,65,-219,65,65,-220,65,-254,-253,65,-24,65,-59,-92,-165,-199,-201,-202,-51,65,65,-96,-97,-100,-102,65,-117,-118,-135,65,65,65,-141,-142,65,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,65,65,65,65,-218,-134,65,-156,-215,65,65,-216,65,-137,-139,-140,-145,65,-109,-166,-157,]),'TRUNC':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[66,66,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,66,-152,-151,66,-85,-86,-56,66,-155,-2,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,-247,-40,-41,-82,-83,66,-153,-84,-39,-52,66,-53,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,66,-251,66,66,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,66,-221,66,66,66,66,-101,-110,66,-148,-149,-150,66,66,-245,-249,-23,-58,-37,66,-164,66,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,66,66,-98,-99,66,66,-103,-104,-105,-106,-107,-108,66,-111,-112,-113,-114,-115,-116,66,66,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,66,-136,66,-138,66,66,66,66,-143,-144,66,66,-250,66,-252,66,-246,-26,-38,66,-44,-49,66,-219,66,66,-220,66,-254,-253,66,-24,66,-59,-92,-165,-199,-201,-202,-51,66,66,-96,-97,-100,-102,66,-117,-118,-135,66,66,66,-141,-142,66,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,66,66,66,66,-218,-134,66,-156,-215,66,66,-216,66,-137,-139,-140,-145,66,-109,-166,-157,]),'WIDTH_BUCKET':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[67,67,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,67,-152,-151,67,-85,-86,-56,67,-155,-2,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,-247,-40,-41,-82,-83,67,-153,-84,-39,-52,67,-53,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,67,-251,67,67,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,67,-221,67,67,67,67,-101,-110,67,-148,-149,-150,67,67,-245,-249,-23,-58,-37,67,-164,67,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,67,67,-98,-99,67,67,-103,-104,-105,-106,-107,-108,67,-111,-112,-113,-114,-115,-116,67,67,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,67,-136,67,-138,67,67,67,67,-143,-144,67,67,-250,67,-252,67,-246,-26,-38,67,-44,-49,67,-219,67,67,-220,67,-254,-253,67,-24,67,-59,-92,-165,-199,-201,-202,-51,67,67,-96,-97,-100,-102,67,-117,-118,-135,67,67,67,-141,-142,67,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,67,67,67,67,-218,-134,67,-156,-215,67,67,-216,67,-137,-139,-140,-145,67,-109,-166,-157,]),'RANDOM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[68,68,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,68,-152,-151,68,-85,-86,-56,68,-155,-2,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,-247,-40,-41,-82,-83,68,-153,-84,-39,-52,68,-53,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,68,-251,68,68,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,68,-221,68,68,68,68,-101,-110,68,-148,-149,-150,68,68,-245,-249,-23,-58,-37,68,-164,68,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,68,68,-98,-99,68,68,-103,-104,-105,-106,-107,-108,68,-111,-112,-113,-114,-115,-116,68,68,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,68,-136,68,-138,68,68,68,68,-143,-144,68,68,-250,68,-252,68,-246,-26,-38,68,-44,-49,68,-219,68,68,-220,68,-254,-253,68,-24,68,-59,-92,-165,-199,-201,-202,-51,68,68,-96,-97,-100,-102,68,-117,-118,-135,68,68,68,-141,-142,68,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,68,68,68,68,-218,-134,68,-156,-215,68,68,-216,68,-137,-139,-140,-145,68,-109,-166,-157,]),'ACOS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[69,69,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,69,-152,-151,69,-85,-86,-56,69,-155,-2,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,-247,-40,-41,-82,-83,69,-153,-84,-39,-52,69,-53,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,69,-251,69,69,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,69,-221,69,69,69,69,-101,-110,69,-148,-149,-150,69,69,-245,-249,-23,-58,-37,69,-164,69,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,69,69,-98,-99,69,69,-103,-104,-105,-106,-107,-108,69,-111,-112,-113,-114,-115,-116,69,69,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,69,-136,69,-138,69,69,69,69,-143,-144,69,69,-250,69,-252,69,-246,-26,-38,69,-44,-49,69,-219,69,69,-220,69,-254,-253,69,-24,69,-59,-92,-165,-199,-201,-202,-51,69,69,-96,-97,-100,-102,69,-117,-118,-135,69,69,69,-141,-142,69,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,69,69,69,69,-218,-134,69,-156,-215,69,69,-216,69,-137,-139,-140,-145,69,-109,-166,-157,]),'ACOSD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[70,70,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,70,-152,-151,70,-85,-86,-56,70,-155,-2,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,-247,-40,-41,-82,-83,70,-153,-84,-39,-52,70,-53,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,70,-251,70,70,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,70,-221,70,70,70,70,-101,-110,70,-148,-149,-150,70,70,-245,-249,-23,-58,-37,70,-164,70,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,70,70,-98,-99,70,70,-103,-104,-105,-106,-107,-108,70,-111,-112,-113,-114,-115,-116,70,70,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,70,-136,70,-138,70,70,70,70,-143,-144,70,70,-250,70,-252,70,-246,-26,-38,70,-44,-49,70,-219,70,70,-220,70,-254,-253,70,-24,70,-59,-92,-165,-199,-201,-202,-51,70,70,-96,-97,-100,-102,70,-117,-118,-135,70,70,70,-141,-142,70,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,70,70,70,70,-218,-134,70,-156,-215,70,70,-216,70,-137,-139,-140,-145,70,-109,-166,-157,]),'ASIN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[71,71,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,71,-152,-151,71,-85,-86,-56,71,-155,-2,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,-247,-40,-41,-82,-83,71,-153,-84,-39,-52,71,-53,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,71,-251,71,71,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,71,-221,71,71,71,71,-101,-110,71,-148,-149,-150,71,71,-245,-249,-23,-58,-37,71,-164,71,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,71,71,-98,-99,71,71,-103,-104,-105,-106,-107,-108,71,-111,-112,-113,-114,-115,-116,71,71,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,71,-136,71,-138,71,71,71,71,-143,-144,71,71,-250,71,-252,71,-246,-26,-38,71,-44,-49,71,-219,71,71,-220,71,-254,-253,71,-24,71,-59,-92,-165,-199,-201,-202,-51,71,71,-96,-97,-100,-102,71,-117,-118,-135,71,71,71,-141,-142,71,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,71,71,71,71,-218,-134,71,-156,-215,71,71,-216,71,-137,-139,-140,-145,71,-109,-166,-157,]),'ASIND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[72,72,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,72,-152,-151,72,-85,-86,-56,72,-155,-2,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,-247,-40,-41,-82,-83,72,-153,-84,-39,-52,72,-53,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,72,-251,72,72,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,72,-221,72,72,72,72,-101,-110,72,-148,-149,-150,72,72,-245,-249,-23,-58,-37,72,-164,72,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,72,72,-98,-99,72,72,-103,-104,-105,-106,-107,-108,72,-111,-112,-113,-114,-115,-116,72,72,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,72,-136,72,-138,72,72,72,72,-143,-144,72,72,-250,72,-252,72,-246,-26,-38,72,-44,-49,72,-219,72,72,-220,72,-254,-253,72,-24,72,-59,-92,-165,-199,-201,-202,-51,72,72,-96,-97,-100,-102,72,-117,-118,-135,72,72,72,-141,-142,72,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,72,72,72,72,-218,-134,72,-156,-215,72,72,-216,72,-137,-139,-140,-145,72,-109,-166,-157,]),'ATAN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[73,73,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,73,-152,-151,73,-85,-86,-56,73,-155,-2,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,-247,-40,-41,-82,-83,73,-153,-84,-39,-52,73,-53,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,73,-251,73,73,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,73,-221,73,73,73,73,-101,-110,73,-148,-149,-150,73,73,-245,-249,-23,-58,-37,73,-164,73,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,73,73,-98,-99,73,73,-103,-104,-105,-106,-107,-108,73,-111,-112,-113,-114,-115,-116,73,73,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,73,-136,73,-138,73,73,73,73,-143,-144,73,73,-250,73,-252,73,-246,-26,-38,73,-44,-49,73,-219,73,73,-220,73,-254,-253,73,-24,73,-59,-92,-165,-199,-201,-202,-51,73,73,-96,-97,-100,-102,73,-117,-118,-135,73,73,73,-141,-142,73,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,73,73,73,73,-218,-134,73,-156,-215,73,73,-216,73,-137,-139,-140,-145,73,-109,-166,-157,]),'ATAND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[74,74,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,74,-152,-151,74,-85,-86,-56,74,-155,-2,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,-247,-40,-41,-82,-83,74,-153,-84,-39,-52,74,-53,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,74,-251,74,74,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,74,-221,74,74,74,74,-101,-110,74,-148,-149,-150,74,74,-245,-249,-23,-58,-37,74,-164,74,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,74,74,-98,-99,74,74,-103,-104,-105,-106,-107,-108,74,-111,-112,-113,-114,-115,-116,74,74,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,74,-136,74,-138,74,74,74,74,-143,-144,74,74,-250,74,-252,74,-246,-26,-38,74,-44,-49,74,-219,74,74,-220,74,-254,-253,74,-24,74,-59,-92,-165,-199,-201,-202,-51,74,74,-96,-97,-100,-102,74,-117,-118,-135,74,74,74,-141,-142,74,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,74,74,74,74,-218,-134,74,-156,-215,74,74,-216,74,-137,-139,-140,-145,74,-109,-166,-157,]),'ATAN2':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[75,75,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,75,-152,-151,75,-85,-86,-56,75,-155,-2,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,-247,-40,-41,-82,-83,75,-153,-84,-39,-52,75,-53,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,75,-251,75,75,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,75,-221,75,75,75,75,-101,-110,75,-148,-149,-150,75,75,-245,-249,-23,-58,-37,75,-164,75,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,75,75,-98,-99,75,75,-103,-104,-105,-106,-107,-108,75,-111,-112,-113,-114,-115,-116,75,75,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,75,-136,75,-138,75,75,75,75,-143,-144,75,75,-250,75,-252,75,-246,-26,-38,75,-44,-49,75,-219,75,75,-220,75,-254,-253,75,-24,75,-59,-92,-165,-199,-201,-202,-51,75,75,-96,-97,-100,-102,75,-117,-118,-135,75,75,75,-141,-142,75,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,75,75,75,75,-218,-134,75,-156,-215,75,75,-216,75,-137,-139,-140,-145,75,-109,-166,-157,]),'ATAN2D':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[76,76,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,76,-152,-151,76,-85,-86,-56,76,-155,-2,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,-247,-40,-41,-82,-83,76,-153,-84,-39,-52,76,-53,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,76,-251,76,76,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,76,-221,76,76,76,76,-101,-110,76,-148,-149,-150,76,76,-245,-249,-23,-58,-37,76,-164,76,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,76,76,-98,-99,76,76,-103,-104,-105,-106,-107,-108,76,-111,-112,-113,-114,-115,-116,76,76,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,76,-136,76,-138,76,76,76,76,-143,-144,76,76,-250,76,-252,76,-246,-26,-38,76,-44,-49,76,-219,76,76,-220,76,-254,-253,76,-24,76,-59,-92,-165,-199,-201,-202,-51,76,76,-96,-97,-100,-102,76,-117,-118,-135,76,76,76,-141,-142,76,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,76,76,76,76,-218,-134,76,-156,-215,76,76,-216,76,-137,-139,-140,-145,76,-109,-166,-157,]),'COS':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[77,77,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,77,-152,-151,77,-85,-86,-56,77,-155,-2,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,-247,-40,-41,-82,-83,77,-153,-84,-39,-52,77,-53,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,77,-251,77,77,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,77,-221,77,77,77,77,-101,-110,77,-148,-149,-150,77,77,-245,-249,-23,-58,-37,77,-164,77,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,77,77,-98,-99,77,77,-103,-104,-105,-106,-107,-108,77,-111,-112,-113,-114,-115,-116,77,77,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,77,-136,77,-138,77,77,77,77,-143,-144,77,77,-250,77,-252,77,-246,-26,-38,77,-44,-49,77,-219,77,77,-220,77,-254,-253,77,-24,77,-59,-92,-165,-199,-201,-202,-51,77,77,-96,-97,-100,-102,77,-117,-118,-135,77,77,77,-141,-142,77,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,77,77,77,77,-218,-134,77,-156,-215,77,77,-216,77,-137,-139,-140,-145,77,-109,-166,-157,]),'COSD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[78,78,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,78,-152,-151,78,-85,-86,-56,78,-155,-2,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,-247,-40,-41,-82,-83,78,-153,-84,-39,-52,78,-53,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,78,-251,78,78,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,78,-221,78,78,78,78,-101,-110,78,-148,-149,-150,78,78,-245,-249,-23,-58,-37,78,-164,78,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,78,78,-98,-99,78,78,-103,-104,-105,-106,-107,-108,78,-111,-112,-113,-114,-115,-116,78,78,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,78,-136,78,-138,78,78,78,78,-143,-144,78,78,-250,78,-252,78,-246,-26,-38,78,-44,-49,78,-219,78,78,-220,78,-254,-253,78,-24,78,-59,-92,-165,-199,-201,-202,-51,78,78,-96,-97,-100,-102,78,-117,-118,-135,78,78,78,-141,-142,78,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,78,78,78,78,-218,-134,78,-156,-215,78,78,-216,78,-137,-139,-140,-145,78,-109,-166,-157,]),'COT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[79,79,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,79,-152,-151,79,-85,-86,-56,79,-155,-2,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,-247,-40,-41,-82,-83,79,-153,-84,-39,-52,79,-53,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,79,-251,79,79,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,79,-221,79,79,79,79,-101,-110,79,-148,-149,-150,79,79,-245,-249,-23,-58,-37,79,-164,79,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,79,79,-98,-99,79,79,-103,-104,-105,-106,-107,-108,79,-111,-112,-113,-114,-115,-116,79,79,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,79,-136,79,-138,79,79,79,79,-143,-144,79,79,-250,79,-252,79,-246,-26,-38,79,-44,-49,79,-219,79,79,-220,79,-254,-253,79,-24,79,-59,-92,-165,-199,-201,-202,-51,79,79,-96,-97,-100,-102,79,-117,-118,-135,79,79,79,-141,-142,79,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,79,79,79,79,-218,-134,79,-156,-215,79,79,-216,79,-137,-139,-140,-145,79,-109,-166,-157,]),'COTD':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[80,80,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,80,-152,-151,80,-85,-86,-56,80,-155,-2,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,-247,-40,-41,-82,-83,80,-153,-84,-39,-52,80,-53,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,80,-251,80,80,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,80,-221,80,80,80,80,-101,-110,80,-148,-149,-150,80,80,-245,-249,-23,-58,-37,80,-164,80,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,80,80,-98,-99,80,80,-103,-104,-105,-106,-107,-108,80,-111,-112,-113,-114,-115,-116,80,80,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,80,-136,80,-138,80,80,80,80,-143,-144,80,80,-250,80,-252,80,-246,-26,-38,80,-44,-49,80,-219,80,80,-220,80,-254,-253,80,-24,80,-59,-92,-165,-199,-201,-202,-51,80,80,-96,-97,-100,-102,80,-117,-118,-135,80,80,80,-141,-142,80,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,80,80,80,80,-218,-134,80,-156,-215,80,80,-216,80,-137,-139,-140,-145,80,-109,-166,-157,]),'SIN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[81,81,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,81,-152,-151,81,-85,-86,-56,81,-155,-2,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,-247,-40,-41,-82,-83,81,-153,-84,-39,-52,81,-53,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,81,-251,81,81,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,81,-221,81,81,81,81,-101,-110,81,-148,-149,-150,81,81,-245,-249,-23,-58,-37,81,-164,81,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,81,81,-98,-99,81,81,-103,-104,-105,-106,-107,-108,81,-111,-112,-113,-114,-115,-116,81,81,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,81,-136,81,-138,81,81,81,81,-143,-144,81,81,-250,81,-252,81,-246,-26,-38,81,-44,-49,81,-219,81,81,-220,81,-254,-253,81,-24,81,-59,-92,-165,-199,-201,-202,-51,81,81,-96,-97,-100,-102,81,-117,-118,-135,81,81,81,-141,-142,81,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,81,81,81,81,-218,-134,81,-156,-215,81,81,-216,81,-137,-139,-140,-145,81,-109,-166,-157,]),'SIND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[82,82,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,82,-152,-151,82,-85,-86,-56,82,-155,-2,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,-247,-40,-41,-82,-83,82,-153,-84,-39,-52,82,-53,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,82,-251,82,82,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,82,-221,82,82,82,82,-101,-110,82,-148,-149,-150,82,82,-245,-249,-23,-58,-37,82,-164,82,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,82,82,-98,-99,82,82,-103,-104,-105,-106,-107,-108,82,-111,-112,-113,-114,-115,-116,82,82,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,82,-136,82,-138,82,82,82,82,-143,-144,82,82,-250,82,-252,82,-246,-26,-38,82,-44,-49,82,-219,82,82,-220,82,-254,-253,82,-24,82,-59,-92,-165,-199,-201,-202,-51,82,82,-96,-97,-100,-102,82,-117,-118,-135,82,82,82,-141,-142,82,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,82,82,82,82,-218,-134,82,-156,-215,82,82,-216,82,-137,-139,-140,-145,82,-109,-166,-157,]),'TAN':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[83,83,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,83,-152,-151,83,-85,-86,-56,83,-155,-2,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,-247,-40,-41,-82,-83,83,-153,-84,-39,-52,83,-53,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,83,-251,83,83,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,83,-221,83,83,83,83,-101,-110,83,-148,-149,-150,83,83,-245,-249,-23,-58,-37,83,-164,83,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,83,83,-98,-99,83,83,-103,-104,-105,-106,-107,-108,83,-111,-112,-113,-114,-115,-116,83,83,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,83,-136,83,-138,83,83,83,83,-143,-144,83,83,-250,83,-252,83,-246,-26,-38,83,-44,-49,83,-219,83,83,-220,83,-254,-253,83,-24,83,-59,-92,-165,-199,-201,-202,-51,83,83,-96,-97,-100,-102,83,-117,-118,-135,83,83,83,-141,-142,83,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,83,83,83,83,-218,-134,83,-156,-215,83,83,-216,83,-137,-139,-140,-145,83,-109,-166,-157,]),'TAND':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[84,84,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,84,-152,-151,84,-85,-86,-56,84,-155,-2,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,-247,-40,-41,-82,-83,84,-153,-84,-39,-52,84,-53,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,84,-251,84,84,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,84,-221,84,84,84,84,-101,-110,84,-148,-149,-150,84,84,-245,-249,-23,-58,-37,84,-164,84,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,84,84,-98,-99,84,84,-103,-104,-105,-106,-107,-108,84,-111,-112,-113,-114,-115,-116,84,84,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,84,-136,84,-138,84,84,84,84,-143,-144,84,84,-250,84,-252,84,-246,-26,-38,84,-44,-49,84,-219,84,84,-220,84,-254,-253,84,-24,84,-59,-92,-165,-199,-201,-202,-51,84,84,-96,-97,-100,-102,84,-117,-118,-135,84,84,84,-141,-142,84,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,84,84,84,84,-218,-134,84,-156,-215,84,84,-216,84,-137,-139,-140,-145,84,-109,-166,-157,]),'SINH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[85,85,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,85,-152,-151,85,-85,-86,-56,85,-155,-2,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,-247,-40,-41,-82,-83,85,-153,-84,-39,-52,85,-53,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,85,-251,85,85,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,85,-221,85,85,85,85,-101,-110,85,-148,-149,-150,85,85,-245,-249,-23,-58,-37,85,-164,85,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,85,85,-98,-99,85,85,-103,-104,-105,-106,-107,-108,85,-111,-112,-113,-114,-115,-116,85,85,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,85,-136,85,-138,85,85,85,85,-143,-144,85,85,-250,85,-252,85,-246,-26,-38,85,-44,-49,85,-219,85,85,-220,85,-254,-253,85,-24,85,-59,-92,-165,-199,-201,-202,-51,85,85,-96,-97,-100,-102,85,-117,-118,-135,85,85,85,-141,-142,85,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,85,85,85,85,-218,-134,85,-156,-215,85,85,-216,85,-137,-139,-140,-145,85,-109,-166,-157,]),'COSH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[86,86,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,86,-152,-151,86,-85,-86,-56,86,-155,-2,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,-247,-40,-41,-82,-83,86,-153,-84,-39,-52,86,-53,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,86,-251,86,86,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,86,-221,86,86,86,86,-101,-110,86,-148,-149,-150,86,86,-245,-249,-23,-58,-37,86,-164,86,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,86,86,-98,-99,86,86,-103,-104,-105,-106,-107,-108,86,-111,-112,-113,-114,-115,-116,86,86,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,86,-136,86,-138,86,86,86,86,-143,-144,86,86,-250,86,-252,86,-246,-26,-38,86,-44,-49,86,-219,86,86,-220,86,-254,-253,86,-24,86,-59,-92,-165,-199,-201,-202,-51,86,86,-96,-97,-100,-102,86,-117,-118,-135,86,86,86,-141,-142,86,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,86,86,86,86,-218,-134,86,-156,-215,86,86,-216,86,-137,-139,-140,-145,86,-109,-166,-157,]),'TANH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[87,87,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,87,-152,-151,87,-85,-86,-56,87,-155,-2,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,-247,-40,-41,-82,-83,87,-153,-84,-39,-52,87,-53,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,87,-251,87,87,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,87,-221,87,87,87,87,-101,-110,87,-148,-149,-150,87,87,-245,-249,-23,-58,-37,87,-164,87,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,87,87,-98,-99,87,87,-103,-104,-105,-106,-107,-108,87,-111,-112,-113,-114,-115,-116,87,87,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,87,-136,87,-138,87,87,87,87,-143,-144,87,87,-250,87,-252,87,-246,-26,-38,87,-44,-49,87,-219,87,87,-220,87,-254,-253,87,-24,87,-59,-92,-165,-199,-201,-202,-51,87,87,-96,-97,-100,-102,87,-117,-118,-135,87,87,87,-141,-142,87,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,87,87,87,87,-218,-134,87,-156,-215,87,87,-216,87,-137,-139,-140,-145,87,-109,-166,-157,]),'ASINH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[88,88,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,88,-152,-151,88,-85,-86,-56,88,-155,-2,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,-247,-40,-41,-82,-83,88,-153,-84,-39,-52,88,-53,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,88,-251,88,88,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,88,-221,88,88,88,88,-101,-110,88,-148,-149,-150,88,88,-245,-249,-23,-58,-37,88,-164,88,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,88,88,-98,-99,88,88,-103,-104,-105,-106,-107,-108,88,-111,-112,-113,-114,-115,-116,88,88,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,88,-136,88,-138,88,88,88,88,-143,-144,88,88,-250,88,-252,88,-246,-26,-38,88,-44,-49,88,-219,88,88,-220,88,-254,-253,88,-24,88,-59,-92,-165,-199,-201,-202,-51,88,88,-96,-97,-100,-102,88,-117,-118,-135,88,88,88,-141,-142,88,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,88,88,88,88,-218,-134,88,-156,-215,88,88,-216,88,-137,-139,-140,-145,88,-109,-166,-157,]),'ACOSH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[89,89,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,89,-152,-151,89,-85,-86,-56,89,-155,-2,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,-247,-40,-41,-82,-83,89,-153,-84,-39,-52,89,-53,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,89,-251,89,89,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,89,-221,89,89,89,89,-101,-110,89,-148,-149,-150,89,89,-245,-249,-23,-58,-37,89,-164,89,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,89,89,-98,-99,89,89,-103,-104,-105,-106,-107,-108,89,-111,-112,-113,-114,-115,-116,89,89,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,89,-136,89,-138,89,89,89,89,-143,-144,89,89,-250,89,-252,89,-246,-26,-38,89,-44,-49,89,-219,89,89,-220,89,-254,-253,89,-24,89,-59,-92,-165,-199,-201,-202,-51,89,89,-96,-97,-100,-102,89,-117,-118,-135,89,89,89,-141,-142,89,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,89,89,89,89,-218,-134,89,-156,-215,89,89,-216,89,-137,-139,-140,-145,89,-109,-166,-157,]),'ATANH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[90,90,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,90,-152,-151,90,-85,-86,-56,90,-155,-2,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,-247,-40,-41,-82,-83,90,-153,-84,-39,-52,90,-53,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,90,-251,90,90,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,90,-221,90,90,90,90,-101,-110,90,-148,-149,-150,90,90,-245,-249,-23,-58,-37,90,-164,90,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,90,90,-98,-99,90,90,-103,-104,-105,-106,-107,-108,90,-111,-112,-113,-114,-115,-116,90,90,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,90,-136,90,-138,90,90,90,90,-143,-144,90,90,-250,90,-252,90,-246,-26,-38,90,-44,-49,90,-219,90,90,-220,90,-254,-253,90,-24,90,-59,-92,-165,-199,-201,-202,-51,90,90,-96,-97,-100,-102,90,-117,-118,-135,90,90,90,-141,-142,90,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,90,90,90,90,-218,-134,90,-156,-215,90,90,-216,90,-137,-139,-140,-145,90,-109,-166,-157,]),'LENGTH':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[91,91,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,91,-152,-151,91,-85,-86,-56,91,-155,-2,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,-247,-40,-41,-82,-83,91,-153,-84,-39,-52,91,-53,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,91,-251,91,91,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,91,-221,91,91,91,91,-101,-110,91,-148,-149,-150,91,91,-245,-249,-23,-58,-37,91,-164,91,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,91,91,-98,-99,91,91,-103,-104,-105,-106,-107,-108,91,-111,-112,-113,-114,-115,-116,91,91,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,91,-136,91,-138,91,91,91,91,-143,-144,91,91,-250,91,-252,91,-246,-26,-38,91,-44,-49,91,-219,91,91,-220,91,-254,-253,91,-24,91,-59,-92,-165,-199,-201,-202,-51,91,91,-96,-97,-100,-102,91,-117,-118,-135,91,91,91,-141,-142,91,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,91,91,91,91,-218,-134,91,-156,-215,91,91,-216,91,-137,-139,-140,-145,91,-109,-166,-157,]),'TRIM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[92,92,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,92,-152,-151,92,-85,-86,-56,92,-155,-2,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,-247,-40,-41,-82,-83,92,-153,-84,-39,-52,92,-53,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,92,-251,92,92,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,92,-221,92,92,92,92,-101,-110,92,-148,-149,-150,92,92,-245,-249,-23,-58,-37,92,-164,92,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,92,92,-98,-99,92,92,-103,-104,-105,-106,-107,-108,92,-111,-112,-113,-114,-115,-116,92,92,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,92,-136,92,-138,92,92,92,92,-143,-144,92,92,-250,92,-252,92,-246,-26,-38,92,-44,-49,92,-219,92,92,-220,92,-254,-253,92,-24,92,-59,-92,-165,-199,-201,-202,-51,92,92,-96,-97,-100,-102,92,-117,-118,-135,92,92,92,-141,-142,92,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,92,92,92,92,-218,-134,92,-156,-215,92,92,-216,92,-137,-139,-140,-145,92,-109,-166,-157,]),'GET_BYTE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[93,93,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,93,-152,-151,93,-85,-86,-56,93,-155,-2,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,-247,-40,-41,-82,-83,93,-153,-84,-39,-52,93,-53,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,93,-251,93,93,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,93,-221,93,93,93,93,-101,-110,93,-148,-149,-150,93,93,-245,-249,-23,-58,-37,93,-164,93,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,93,93,-98,-99,93,93,-103,-104,-105,-106,-107,-108,93,-111,-112,-113,-114,-115,-116,93,93,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,93,-136,93,-138,93,93,93,93,-143,-144,93,93,-250,93,-252,93,-246,-26,-38,93,-44,-49,93,-219,93,93,-220,93,-254,-253,93,-24,93,-59,-92,-165,-199,-201,-202,-51,93,93,-96,-97,-100,-102,93,-117,-118,-135,93,93,93,-141,-142,93,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,93,93,93,93,-218,-134,93,-156,-215,93,93,-216,93,-137,-139,-140,-145,93,-109,-166,-157,]),'MD5':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[94,94,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,94,-152,-151,94,-85,-86,-56,94,-155,-2,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,-247,-40,-41,-82,-83,94,-153,-84,-39,-52,94,-53,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,94,-251,94,94,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,94,-221,94,94,94,94,-101,-110,94,-148,-149,-150,94,94,-245,-249,-23,-58,-37,94,-164,94,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,94,94,-98,-99,94,94,-103,-104,-105,-106,-107,-108,94,-111,-112,-113,-114,-115,-116,94,94,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,94,-136,94,-138,94,94,94,94,-143,-144,94,94,-250,94,-252,94,-246,-26,-38,94,-44,-49,94,-219,94,94,-220,94,-254,-253,94,-24,94,-59,-92,-165,-199,-201,-202,-51,94,94,-96,-97,-100,-102,94,-117,-118,-135,94,94,94,-141,-142,94,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,94,94,94,94,-218,-134,94,-156,-215,94,94,-216,94,-137,-139,-140,-145,94,-109,-166,-157,]),'SET_BYTE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[95,95,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,95,-152,-151,95,-85,-86,-56,95,-155,-2,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,-247,-40,-41,-82,-83,95,-153,-84,-39,-52,95,-53,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,95,-251,95,95,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,95,-221,95,95,95,95,-101,-110,95,-148,-149,-150,95,95,-245,-249,-23,-58,-37,95,-164,95,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,95,95,-98,-99,95,95,-103,-104,-105,-106,-107,-108,95,-111,-112,-113,-114,-115,-116,95,95,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,95,-136,95,-138,95,95,95,95,-143,-144,95,95,-250,95,-252,95,-246,-26,-38,95,-44,-49,95,-219,95,95,-220,95,-254,-253,95,-24,95,-59,-92,-165,-199,-201,-202,-51,95,95,-96,-97,-100,-102,95,-117,-118,-135,95,95,95,-141,-142,95,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,95,95,95,95,-218,-134,95,-156,-215,95,95,-216,95,-137,-139,-140,-145,95,-109,-166,-157,]),'SHA256':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[96,96,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,96,-152,-151,96,-85,-86,-56,96,-155,-2,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,-247,-40,-41,-82,-83,96,-153,-84,-39,-52,96,-53,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,96,-251,96,96,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,96,-221,96,96,96,96,-101,-110,96,-148,-149,-150,96,96,-245,-249,-23,-58,-37,96,-164,96,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,96,96,-98,-99,96,96,-103,-104,-105,-106,-107,-108,96,-111,-112,-113,-114,-115,-116,96,96,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,96,-136,96,-138,96,96,96,96,-143,-144,96,96,-250,96,-252,96,-246,-26,-38,96,-44,-49,96,-219,96,96,-220,96,-254,-253,96,-24,96,-59,-92,-165,-199,-201,-202,-51,96,96,-96,-97,-100,-102,96,-117,-118,-135,96,96,96,-141,-142,96,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,96,96,96,96,-218,-134,96,-156,-215,96,96,-216,96,-137,-139,-140,-145,96,-109,-166,-157,]),'SUBSTR':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[97,97,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,97,-152,-151,97,-85,-86,-56,97,-155,-2,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,-247,-40,-41,-82,-83,97,-153,-84,-39,-52,97,-53,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,97,-251,97,97,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,97,-221,97,97,97,97,-101,-110,97,-148,-149,-150,97,97,-245,-249,-23,-58,-37,97,-164,97,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,97,97,-98,-99,97,97,-103,-104,-105,-106,-107,-108,97,-111,-112,-113,-114,-115,-116,97,97,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,97,-136,97,-138,97,97,97,97,-143,-144,97,97,-250,97,-252,97,-246,-26,-38,97,-44,-49,97,-219,97,97,-220,97,-254,-253,97,-24,97,-59,-92,-165,-199,-201,-202,-51,97,97,-96,-97,-100,-102,97,-117,-118,-135,97,97,97,-141,-142,97,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,97,97,97,97,-218,-134,97,-156,-215,97,97,-216,97,-137,-139,-140,-145,97,-109,-166,-157,]),'CONVERT':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[98,98,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,98,-152,-151,98,-85,-86,-56,98,-155,-2,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,-247,-40,-41,-82,-83,98,-153,-84,-39,-52,98,-53,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,98,-251,98,98,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,98,-221,98,98,98,98,-101,-110,98,-148,-149,-150,98,98,-245,-249,-23,-58,-37,98,-164,98,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,98,98,-98,-99,98,98,-103,-104,-105,-106,-107,-108,98,-111,-112,-113,-114,-115,-116,98,98,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,98,-136,98,-138,98,98,98,98,-143,-144,98,98,-250,98,-252,98,-246,-26,-38,98,-44,-49,98,-219,98,98,-220,98,-254,-253,98,-24,98,-59,-92,-165,-199,-201,-202,-51,98,98,-96,-97,-100,-102,98,-117,-118,-135,98,98,98,-141,-142,98,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,98,98,98,98,-218,-134,98,-156,-215,98,98,-216,98,-137,-139,-140,-145,98,-109,-166,-157,]),'ENCODE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[99,99,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,99,-152,-151,99,-85,-86,-56,99,-155,-2,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,-247,-40,-41,-82,-83,99,-153,-84,-39,-52,99,-53,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,99,-251,99,99,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,99,-221,99,99,99,99,-101,-110,99,-148,-149,-150,99,99,-245,-249,-23,-58,-37,99,-164,99,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,99,99,-98,-99,99,99,-103,-104,-105,-106,-107,-108,99,-111,-112,-113,-114,-115,-116,99,99,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,99,-136,99,-138,99,99,99,99,-143,-144,99,99,-250,99,-252,99,-246,-26,-38,99,-44,-49,99,-219,99,99,-220,99,-254,-253,99,-24,99,-59,-92,-165,-199,-201,-202,-51,99,99,-96,-97,-100,-102,99,-117,-118,-135,99,99,99,-141,-142,99,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,99,99,99,99,-218,-134,99,-156,-215,99,99,-216,99,-137,-139,-140,-145,99,-109,-166,-157,]),'DECODE':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[100,100,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,100,-152,-151,100,-85,-86,-56,100,-155,-2,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,-247,-40,-41,-82,-83,100,-153,-84,-39,-52,100,-53,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,100,-251,100,100,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,100,-221,100,100,100,100,-101,-110,100,-148,-149,-150,100,100,-245,-249,-23,-58,-37,100,-164,100,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,100,100,-98,-99,100,100,-103,-104,-105,-106,-107,-108,100,-111,-112,-113,-114,-115,-116,100,100,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,100,-136,100,-138,100,100,100,100,-143,-144,100,100,-250,100,-252,100,-246,-26,-38,100,-44,-49,100,-219,100,100,-220,100,-254,-253,100,-24,100,-59,-92,-165,-199,-201,-202,-51,100,100,-96,-97,-100,-102,100,-117,-118,-135,100,100,100,-141,-142,100,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,100,100,100,100,-218,-134,100,-156,-215,100,100,-216,100,-137,-139,-140,-145,100,-109,-166,-157,]),'AVG':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[101,101,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,101,-152,-151,101,-85,-86,-56,101,-155,-2,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,-247,-40,-41,-82,-83,101,-153,-84,-39,-52,101,-53,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,101,-251,101,101,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,101,-221,101,101,101,101,-101,-110,101,-148,-149,-150,101,101,-245,-249,-23,-58,-37,101,-164,101,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,101,101,-98,-99,101,101,-103,-104,-105,-106,-107,-108,101,-111,-112,-113,-114,-115,-116,101,101,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,101,-136,101,-138,101,101,101,101,-143,-144,101,101,-250,101,-252,101,-246,-26,-38,101,-44,-49,101,-219,101,101,-220,101,-254,-253,101,-24,101,-59,-92,-165,-199,-201,-202,-51,101,101,-96,-97,-100,-102,101,-117,-118,-135,101,101,101,-141,-142,101,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,101,101,101,101,-218,-134,101,-156,-215,101,101,-216,101,-137,-139,-140,-145,101,-109,-166,-157,]),'SUM':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[102,102,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,102,-152,-151,102,-85,-86,-56,102,-155,-2,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,-247,-40,-41,-82,-83,102,-153,-84,-39,-52,102,-53,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,102,-251,102,102,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,102,-221,102,102,102,102,-101,-110,102,-148,-149,-150,102,102,-245,-249,-23,-58,-37,102,-164,102,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,102,102,-98,-99,102,102,-103,-104,-105,-106,-107,-108,102,-111,-112,-113,-114,-115,-116,102,102,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,102,-136,102,-138,102,102,102,102,-143,-144,102,102,-250,102,-252,102,-246,-26,-38,102,-44,-49,102,-219,102,102,-220,102,-254,-253,102,-24,102,-59,-92,-165,-199,-201,-202,-51,102,102,-96,-97,-100,-102,102,-117,-118,-135,102,102,102,-141,-142,102,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,102,102,102,102,-218,-134,102,-156,-215,102,102,-216,102,-137,-139,-140,-145,102,-109,-166,-157,]),'SUBSTRING':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,510,516,520,526,530,531,532,533,534,542,551,552,553,556,563,571,572,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,622,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,673,678,680,682,683,684,685,686,687,694,706,707,709,],[103,103,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,103,-152,-151,103,-85,-86,-56,103,-155,-2,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,-247,-40,-41,-82,-83,103,-153,-84,-39,-52,103,-53,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,103,-251,103,103,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,103,-221,103,103,103,103,-101,-110,103,-148,-149,-150,103,103,-245,-249,-23,-58,-37,103,-164,103,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,103,103,-98,-99,103,103,-103,-104,-105,-106,-107,-108,103,-111,-112,-113,-114,-115,-116,103,103,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,103,-136,103,-138,103,103,103,103,-143,-144,103,103,-250,103,-252,103,-246,-26,-38,103,-44,-49,103,-219,103,103,-220,103,-254,-253,103,-24,103,-59,-92,-165,-199,-201,-202,-51,103,103,-96,-97,-100,-102,103,-117,-118,-135,103,103,103,-141,-142,103,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,103,103,103,103,-218,-134,103,-156,-215,103,103,-216,103,-137,-139,-140,-145,103,-109,-166,-157,]),'DECIMAL':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,28,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,278,280,282,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,404,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,496,509,510,513,516,520,526,530,531,532,533,534,542,551,552,553,556,561,563,571,572,575,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,672,673,678,680,682,683,684,685,686,687,694,706,707,709,710,],[32,32,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,150,32,-152,-151,32,-85,-86,-56,32,-155,-2,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,-247,-40,-41,-82,-83,32,-153,-84,-39,286,32,-53,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,32,-251,32,32,-256,-244,-248,-54,-31,-154,-52,-53,-81,286,-46,286,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,32,-221,32,32,32,32,-101,-110,32,-148,-149,-150,32,32,-245,-249,-23,-58,-37,32,32,-164,32,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,32,32,-98,-99,32,32,-103,-104,-105,-106,-107,-108,32,-111,-112,-113,-114,-115,-116,32,32,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,32,-136,32,-138,32,32,32,32,-143,-144,32,32,-250,32,-252,32,-246,-26,32,32,286,32,-38,32,32,-44,-49,32,-219,32,32,-220,32,-254,-253,32,-24,32,32,-59,-92,32,-165,-199,-201,-202,-51,32,32,-96,-97,-100,-102,32,-117,-118,-135,32,32,32,-141,-142,32,-146,-147,-255,-25,32,-167,32,32,-32,-33,-160,-200,-48,-50,-217,32,32,32,32,-218,-134,32,-156,32,-215,32,32,-216,32,-137,-139,-140,-145,32,-109,-166,-157,32,]),'ENTERO':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,28,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,404,408,409,411,412,413,415,416,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,509,510,513,516,520,522,526,530,531,532,533,534,542,551,552,553,556,561,563,571,572,575,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,672,673,678,680,682,683,684,685,686,687,694,706,707,709,710,],[31,31,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,149,31,-152,-151,31,-85,-86,-56,31,-155,-2,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,-247,-40,-41,-82,-83,31,-153,-84,-39,-52,31,-53,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,31,-251,31,31,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,31,-221,31,31,31,31,-101,-110,31,-148,-149,-150,31,31,-245,-249,-23,-58,-37,31,31,-164,31,-45,-197,521,523,524,-47,-87,-88,-89,-90,-91,-93,-94,-95,31,31,-98,-99,31,31,-103,-104,-105,-106,-107,-108,31,-111,-112,-113,-114,-115,-116,31,31,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,31,-136,31,-138,31,31,31,31,-143,-144,31,31,-250,31,-252,31,-246,-26,31,31,31,-38,31,31,-44,581,-49,31,-219,31,31,-220,31,-254,-253,31,-24,31,31,-59,-92,31,-165,-199,-201,-202,-51,31,31,-96,-97,-100,-102,31,-117,-118,-135,31,31,31,-141,-142,31,-146,-147,-255,-25,31,-167,31,31,-32,-33,-160,-200,-48,-50,-217,31,31,31,31,-218,-134,31,-156,31,-215,31,31,-216,31,-137,-139,-140,-145,31,-109,-166,-157,31,]),'CADENA':([0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,30,31,32,33,34,35,39,45,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,142,146,149,150,151,153,154,158,161,162,165,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,251,252,253,254,255,256,257,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,311,312,313,314,315,316,331,340,364,365,366,367,379,383,384,385,386,399,401,402,404,408,409,411,412,417,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,490,491,493,494,509,510,513,516,520,526,530,531,532,533,534,542,551,552,553,556,561,563,571,572,575,579,580,582,583,586,588,590,593,594,595,596,597,598,599,601,602,603,604,605,606,607,608,609,610,611,614,622,628,629,630,631,635,636,637,638,640,641,642,644,646,653,655,667,671,672,673,678,680,682,683,684,685,686,687,694,706,707,709,710,],[104,104,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,104,-152,-151,104,-85,-86,-56,104,-155,-2,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,252,104,-247,-40,-41,-82,-83,104,-153,-84,-39,-52,104,-53,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,104,-251,104,104,-256,-244,-248,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,104,-221,104,104,104,104,-101,-110,104,-148,-149,-150,104,104,-245,-249,-23,-58,-37,104,104,-164,104,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,104,104,-98,-99,104,104,-103,-104,-105,-106,-107,-108,104,-111,-112,-113,-114,-115,-116,104,104,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,104,-136,104,-138,104,104,104,104,-143,-144,104,104,-250,104,-252,104,-246,-26,104,104,104,-38,104,104,-44,-49,104,-219,104,104,-220,104,-254,-253,104,-24,104,104,-59,-92,104,-165,-199,-201,-202,-51,104,104,-96,-97,-100,-102,104,-117,-118,-135,104,104,104,-141,-142,104,-146,-147,-255,-25,104,-167,104,104,-32,-33,-160,-200,-48,-50,-217,104,104,104,104,-218,-134,104,-156,104,-215,104,104,-216,104,-137,-139,-140,-145,104,-109,-166,-157,104,]),'$end':([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,27,31,32,34,35,39,104,105,142,146,149,150,153,154,158,161,165,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,260,264,271,272,274,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,312,331,340,386,399,401,408,411,412,417,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,491,510,520,526,531,534,551,552,556,571,572,579,580,582,583,586,593,594,595,596,598,599,601,605,606,608,609,610,611,622,630,631,635,636,637,638,640,653,655,671,673,682,684,685,686,687,706,707,709,],[0,-1,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22,-55,-57,-152,-151,-85,-86,-56,-155,-2,-40,-41,-82,-83,-153,-84,-39,-52,-53,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-31,-154,-52,-53,-81,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-221,-101,-110,-23,-58,-37,-164,-45,-197,-47,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-26,-38,-44,-49,-219,-220,-254,-253,-24,-59,-92,-165,-199,-201,-202,-51,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-25,-167,-32,-33,-160,-200,-48,-50,-217,-218,-134,-156,-215,-216,-137,-139,-140,-145,-109,-166,-157,]),'MAS':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[106,-153,-152,-151,-85,-86,-155,-82,-83,106,-153,106,106,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,106,106,106,106,106,106,106,106,106,-251,106,-154,106,-81,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,-101,106,106,106,106,106,106,106,106,-110,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,106,-136,-138,-143,-144,-66,-252,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,-66,-66,-92,106,106,106,-96,-97,-100,-102,-117,-118,106,-135,-141,-142,-146,-147,-66,106,106,106,106,-134,106,106,106,106,106,-137,-139,-140,-145,106,106,106,-109,]),'POR':([8,25,31,32,34,35,45,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[108,-153,-152,-151,-85,-86,167,-155,-82,-83,108,-153,108,108,108,108,-62,-63,-64,108,-66,-67,-68,-69,-70,-71,-72,108,108,108,108,108,108,108,108,108,-251,108,-154,108,-81,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-101,108,108,108,108,108,108,108,108,-110,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,108,-136,-138,-143,-144,-66,-252,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-66,-66,-92,108,108,108,-96,-97,-100,-102,-117,-118,108,-135,-141,-142,-146,-147,-66,108,108,108,108,-134,108,108,108,108,108,-137,-139,-140,-145,108,108,108,-109,]),'RESIDUO':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[110,-153,-152,-151,-85,-86,-155,-82,-83,110,-153,110,110,110,110,-62,-63,-64,110,-66,-67,-68,-69,-70,-71,-72,110,110,110,110,110,110,110,110,110,-251,110,-154,110,-81,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,-101,110,110,110,110,110,110,110,110,-110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,110,-136,-138,-143,-144,-66,-252,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,-66,-66,-92,110,110,110,-96,-97,-100,-102,-117,-118,110,-135,-141,-142,-146,-147,-66,110,110,110,110,-134,110,110,110,110,110,-137,-139,-140,-145,110,110,110,-109,]),'POTENCIA':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[111,-153,-152,-151,-85,-86,-155,-82,-83,111,-153,111,111,111,111,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,111,111,111,111,111,111,111,111,111,-251,111,-154,111,-81,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,-101,111,111,111,111,111,111,111,111,-110,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,111,-136,-138,-143,-144,-66,-252,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,-66,-66,-92,111,111,111,-96,-97,-100,-102,-117,-118,111,-135,-141,-142,-146,-147,-66,111,111,111,111,-134,111,111,111,111,111,-137,-139,-140,-145,111,111,111,-109,]),'AND':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,587,589,591,592,593,594,595,596,598,599,600,601,605,606,608,609,610,627,648,649,650,651,654,655,656,657,658,659,675,676,677,681,684,685,686,687,690,697,702,706,],[112,-153,-152,-151,-85,-86,-155,-82,-83,112,-153,112,112,112,112,112,112,112,112,-66,-67,-68,-69,-70,-71,-72,112,112,112,112,112,112,112,112,379,-251,112,-154,112,-81,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,-101,112,112,112,112,112,112,112,112,-110,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,486,488,112,112,112,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,112,-136,-138,-143,-144,-66,-252,553,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,-66,-66,-92,112,641,112,112,641,-96,-97,-100,-102,-117,-118,112,-135,-141,-142,-146,-147,-66,112,641,112,641,112,112,-134,112,112,112,112,-232,-233,112,-236,-137,-139,-140,-145,112,112,112,-109,]),'OR':([8,24,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,587,589,591,592,593,594,595,596,598,599,600,601,605,606,608,609,610,627,648,649,650,651,654,655,656,657,658,659,675,676,677,681,684,685,686,687,690,697,702,706,],[113,137,-153,-152,-151,-85,-86,-155,-82,-83,113,-153,113,113,113,113,113,113,113,113,-66,-67,-68,-69,-70,-71,-72,113,113,113,113,113,113,113,113,113,-251,113,-154,113,-81,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,-101,113,113,113,113,113,113,113,113,-110,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,113,-136,-138,-143,-144,-66,-252,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,-66,-66,-92,113,642,113,113,642,-96,-97,-100,-102,-117,-118,113,-135,-141,-142,-146,-147,-66,113,642,113,642,113,113,-134,113,113,113,113,-232,-233,113,-236,-137,-139,-140,-145,113,113,113,-109,]),'SIMBOLOOR2':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[114,-153,-152,-151,-85,-86,-155,-82,-83,114,-153,114,114,114,114,114,114,114,114,-66,-67,-68,-69,-70,-71,-72,114,114,114,114,114,114,114,114,114,-251,114,-154,114,-81,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,-101,114,114,114,114,114,114,114,114,-110,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,114,-136,-138,-143,-144,-66,-252,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,-66,-66,-92,114,114,114,-96,-97,-100,-102,-117,-118,114,-135,-141,-142,-146,-147,-66,114,114,114,114,-134,114,114,114,114,114,-137,-139,-140,-145,114,114,114,-109,]),'SIMBOLOOR':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[115,-153,-152,-151,-85,-86,-155,-82,-83,115,-153,115,115,115,115,115,115,115,115,-66,-67,-68,-69,-70,-71,-72,115,115,115,115,115,115,115,115,115,-251,115,-154,115,-81,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,-101,115,115,115,115,115,115,115,115,-110,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,115,-136,-138,-143,-144,-66,-252,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,-66,-66,-92,115,115,115,-96,-97,-100,-102,-117,-118,115,-135,-141,-142,-146,-147,-66,115,115,115,115,-134,115,115,115,115,115,-137,-139,-140,-145,115,115,115,-109,]),'SIMBOLOAND2':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[116,-153,-152,-151,-85,-86,-155,-82,-83,116,-153,116,116,116,116,116,116,116,116,-66,-67,-68,-69,-70,-71,-72,116,116,116,116,116,116,116,116,116,-251,116,-154,116,-81,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,-101,116,116,116,116,116,116,116,116,-110,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,116,-136,-138,-143,-144,-66,-252,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,-66,-66,-92,116,116,116,-96,-97,-100,-102,-117,-118,116,-135,-141,-142,-146,-147,-66,116,116,116,116,-134,116,116,116,116,116,-137,-139,-140,-145,116,116,116,-109,]),'DESPLAZAMIENTOIZQUIERDA':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[117,-153,-152,-151,-85,-86,-155,-82,-83,117,-153,117,117,117,117,117,117,117,117,117,117,117,117,117,-71,-72,117,117,117,117,117,117,117,117,117,-251,117,-154,117,-81,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,-101,117,117,117,117,117,117,117,117,-110,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,117,-136,-138,-143,-144,117,-252,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,-92,117,117,117,-96,-97,-100,-102,-117,-118,117,-135,-141,-142,-146,-147,117,117,117,117,117,-134,117,117,117,117,117,-137,-139,-140,-145,117,117,117,-109,]),'DESPLAZAMIENTODERECHA':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[118,-153,-152,-151,-85,-86,-155,-82,-83,118,-153,118,118,118,118,118,118,118,118,118,118,118,118,118,-71,-72,118,118,118,118,118,118,118,118,118,-251,118,-154,118,-81,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,-101,118,118,118,118,118,118,118,118,-110,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,118,-136,-138,-143,-144,118,-252,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,-92,118,118,118,-96,-97,-100,-102,-117,-118,118,-135,-141,-142,-146,-147,118,118,118,118,118,-134,118,118,118,118,118,-137,-139,-140,-145,118,118,118,-109,]),'IGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,389,390,405,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[119,-153,-152,-151,-85,-86,-155,-82,-83,119,-153,-84,119,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,119,119,119,119,119,119,119,119,119,-251,119,-154,119,-81,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,-101,119,119,119,119,119,119,119,119,-110,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,493,494,516,119,119,119,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,119,-136,-138,-143,-144,-66,-252,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,-66,-66,-92,119,119,119,-96,-97,-100,-102,-117,-118,119,-135,-141,-142,-146,-147,-66,119,-84,119,119,-134,119,119,119,119,119,-137,-139,-140,-145,119,119,119,-109,]),'IGUALIGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[120,-153,-152,-151,-85,-86,-155,-82,-83,120,-153,-84,120,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,120,120,120,120,120,120,120,120,120,-251,120,-154,120,-81,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,-101,120,120,120,120,120,120,120,120,-110,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,120,-136,-138,-143,-144,-66,-252,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,120,-66,-66,-92,120,120,120,-96,-97,-100,-102,-117,-118,120,-135,-141,-142,-146,-147,-66,120,-84,120,120,-134,120,120,120,120,120,-137,-139,-140,-145,120,120,120,-109,]),'NOTEQUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[121,-153,-152,-151,-85,-86,-155,-82,-83,121,-153,-84,121,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,121,121,121,121,121,121,121,121,121,-251,121,-154,121,-81,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,-101,121,121,121,121,121,121,121,121,-110,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,121,-136,-138,-143,-144,-66,-252,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,121,-66,-66,-92,121,121,121,-96,-97,-100,-102,-117,-118,121,-135,-141,-142,-146,-147,-66,121,-84,121,121,-134,121,121,121,121,121,-137,-139,-140,-145,121,121,121,-109,]),'MAYORIGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[122,-153,-152,-151,-85,-86,-155,-82,-83,122,-153,-84,122,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,122,122,122,122,122,122,122,122,122,-251,122,-154,122,-81,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,-101,122,122,122,122,122,122,122,122,-110,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,122,-136,-138,-143,-144,-66,-252,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,-66,-66,-92,122,122,122,-96,-97,-100,-102,-117,-118,122,-135,-141,-142,-146,-147,-66,122,-84,122,122,-134,122,122,122,122,122,-137,-139,-140,-145,122,122,122,-109,]),'MENORIGUAL':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[123,-153,-152,-151,-85,-86,-155,-82,-83,123,-153,-84,123,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,123,123,123,123,123,123,123,123,123,-251,123,-154,123,-81,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,-101,123,123,123,123,123,123,123,123,-110,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,123,-136,-138,-143,-144,-66,-252,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,123,-66,-66,-92,123,123,123,-96,-97,-100,-102,-117,-118,123,-135,-141,-142,-146,-147,-66,123,-84,123,123,-134,123,123,123,123,123,-137,-139,-140,-145,123,123,123,-109,]),'MAYOR':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[124,-153,-152,-151,-85,-86,-155,-82,-83,124,-153,-84,124,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,124,124,124,124,124,124,124,124,124,-251,124,-154,124,-81,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,-101,124,124,124,124,124,124,124,124,-110,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,124,-136,-138,-143,-144,-66,-252,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,-66,-66,-92,124,124,124,-96,-97,-100,-102,-117,-118,124,-135,-141,-142,-146,-147,-66,124,-84,124,124,-134,124,124,124,124,124,-137,-139,-140,-145,124,124,124,-109,]),'MENOR':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[125,-153,-152,-151,-85,-86,-155,-82,-83,125,-153,-84,125,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,125,125,125,125,125,125,125,125,125,-251,125,-154,125,-81,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,-101,125,125,125,125,125,125,125,125,-110,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,125,-136,-138,-143,-144,-66,-252,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,-66,-66,-92,125,125,125,-96,-97,-100,-102,-117,-118,125,-135,-141,-142,-146,-147,-66,125,-84,125,125,-134,125,125,125,125,125,-137,-139,-140,-145,125,125,125,-109,]),'DIFERENTE':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[126,-153,-152,-151,-85,-86,-155,-82,-83,126,-153,-84,126,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,126,126,126,126,126,126,126,126,126,-251,126,-154,126,-81,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,-101,126,126,126,126,126,126,126,126,-110,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,126,-136,-138,-143,-144,-66,-252,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,126,-66,-66,-92,126,126,126,-96,-97,-100,-102,-117,-118,126,-135,-141,-142,-146,-147,-66,126,-84,126,126,-134,126,126,126,126,126,-137,-139,-140,-145,126,126,126,-109,]),'BETWEEN':([8,25,31,32,34,35,104,130,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[127,-153,-152,-151,-85,-86,-155,254,-82,-83,127,-153,-84,127,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,127,127,127,127,127,127,127,127,127,-251,127,-154,127,-81,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,-101,127,127,127,127,127,127,127,127,-110,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,127,-136,-138,-143,-144,-66,-252,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,-66,-66,-92,127,127,127,-96,-97,-100,-102,-117,-118,127,-135,-141,-142,-146,-147,-66,127,-84,127,127,-134,127,127,127,127,127,-137,-139,-140,-145,127,127,127,-109,]),'LIKE':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[128,-153,-152,-151,-85,-86,-155,-82,-83,128,-153,-84,128,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,128,128,128,128,128,128,128,128,128,-251,128,-154,128,-81,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,-101,128,128,128,128,128,128,128,128,-110,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,128,-136,-138,-143,-144,-66,-252,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,-66,-66,-92,128,128,128,-96,-97,-100,-102,-117,-118,128,-135,-141,-142,-146,-147,-66,128,-84,128,128,-134,128,128,128,128,128,-137,-139,-140,-145,128,128,128,-109,]),'IN':([8,25,31,32,34,35,104,149,150,152,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,255,264,273,274,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,382,423,425,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,649,651,654,655,656,657,658,659,677,684,685,686,687,690,697,702,706,],[129,-153,-152,-151,-85,-86,-155,-82,-83,129,-153,-84,129,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,129,129,129,129,129,129,129,129,129,-251,129,-154,129,-81,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,-101,129,129,129,129,129,129,129,129,-110,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,129,-136,-138,-143,-144,-66,-252,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,129,-66,-66,-92,129,129,129,-96,-97,-100,-102,-117,-118,129,-135,-141,-142,-146,-147,-66,129,-84,129,129,-134,129,129,129,129,129,-137,-139,-140,-145,129,129,129,-109,]),'DISTINCT':([8,25,31,32,34,35,45,104,133,149,150,152,153,154,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,253,255,258,264,273,274,306,311,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,381,382,422,423,424,425,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,646,649,651,654,655,656,657,658,659,677,678,679,680,684,685,686,687,690,695,696,697,702,706,],[132,-153,-152,-151,-85,-86,132,-155,257,-82,-83,132,-153,-84,132,132,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,132,132,132,132,132,132,132,132,132,-251,132,132,385,-154,132,-81,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,-101,132,132,132,132,132,132,132,132,-110,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,-238,132,132,132,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,132,-136,-138,-143,-144,-66,-252,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,132,-66,-66,-92,132,132,132,-96,-97,-100,-102,-117,-118,132,-135,-141,-142,-146,-147,-66,132,132,-84,132,132,-134,132,132,132,132,132,132,132,132,-137,-139,-140,-145,132,132,132,132,132,-109,]),'IS':([8,25,31,32,34,35,45,104,149,150,152,153,154,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,252,253,255,264,273,274,306,311,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,381,382,422,423,424,425,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,572,576,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,627,646,649,651,654,655,656,657,658,659,677,678,679,680,684,685,686,687,690,695,696,697,702,706,],[133,-153,-152,-151,-85,-86,133,-155,-82,-83,133,-153,-84,133,133,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,133,133,133,133,133,133,133,133,133,-251,133,133,-154,133,-81,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,-101,133,133,133,133,133,133,133,133,-110,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,-238,133,133,133,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,133,-136,-138,-143,-144,-66,-252,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,133,-66,-66,-92,133,133,133,-96,-97,-100,-102,-117,-118,133,-135,-141,-142,-146,-147,-66,133,133,-84,133,133,-134,133,133,133,133,133,133,133,133,-137,-139,-140,-145,133,133,133,133,133,-109,]),'COMA':([20,25,31,32,34,35,104,149,150,153,154,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,264,273,274,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,317,326,327,330,331,332,339,340,347,348,368,370,372,373,374,375,381,406,407,412,422,423,424,425,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,497,498,500,501,502,503,514,515,528,529,539,544,545,546,551,552,558,572,573,576,577,578,580,582,583,591,593,594,595,596,598,599,601,605,606,608,609,610,612,613,615,617,619,620,624,625,634,636,654,655,660,661,662,663,666,668,669,670,679,684,685,686,687,688,691,693,695,696,699,706,711,712,],[134,-55,-152,-151,-85,-86,-155,-82,-83,-153,-84,313,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-154,402,-81,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-242,436,437,440,-101,441,448,-110,455,456,473,475,477,478,479,480,313,518,-162,-197,313,-237,-238,532,313,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,560,-169,-173,-174,-175,-176,575,-159,-55,134,597,602,603,604,-254,-253,-170,-92,575,-163,518,-161,-199,-201,-202,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-171,-178,-180,-182,-184,-185,-168,575,-158,-200,683,-134,-177,-179,-181,-183,-172,-187,575,575,313,-137,-139,-140,-145,-186,-189,575,313,313,-188,-109,575,-190,]),'DATABASES':([23,],[135,]),'DATABASE':([24,26,27,262,],[136,140,144,391,]),'TABLE':([24,26,27,],[138,141,145,]),'PUNTO':([25,153,],[139,139,]),'PARENTESISDERECHA':([31,32,34,35,104,149,150,152,153,154,168,169,184,193,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,259,264,274,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,306,317,318,319,320,321,322,323,324,325,328,329,331,333,334,335,336,337,338,340,341,342,343,344,345,346,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,369,371,376,377,381,412,418,419,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,497,498,500,501,502,503,512,514,515,521,523,524,528,529,535,536,537,538,540,541,543,547,548,549,550,551,552,558,572,573,580,581,582,583,585,589,591,593,594,595,596,598,599,600,601,605,606,608,609,610,612,613,615,617,619,620,624,625,627,634,636,648,649,650,651,655,656,657,658,659,660,661,662,663,666,668,669,670,675,676,681,684,685,686,687,688,689,690,691,693,697,699,706,711,712,],[-152,-151,-85,-86,-155,-82,-83,274,-153,-84,-240,-239,331,340,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-54,-154,-81,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,417,-242,428,429,430,431,432,433,434,435,438,439,-101,442,443,444,445,446,447,-110,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,487,-197,525,526,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,559,-169,-173,-174,-175,-176,572,574,-159,580,582,583,-55,586,593,594,595,596,598,599,601,605,606,608,609,-254,-253,-170,-92,632,-199,636,-201,-202,638,-235,-241,-96,-97,-100,-102,-117,-118,655,-135,-141,-142,-146,-147,-255,-171,-178,-180,-182,-184,-185,-168,666,668,-158,-200,-234,-84,681,274,-134,684,685,686,687,-177,-179,-181,-183,-172,-187,691,692,-232,-233,-236,-137,-139,-140,-145,-186,698,699,-189,701,706,-188,-109,712,-190,]),'AS':([31,32,34,35,104,149,150,153,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,331,340,423,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,316,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-101,-110,316,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'FROM':([31,32,34,35,38,104,132,149,150,153,154,166,167,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,257,264,274,317,331,340,378,385,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,474,476,481,482,485,487,551,552,572,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,157,-155,256,-82,-83,-153,-84,311,315,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,384,-154,-81,-242,-101,-110,483,490,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,542,-136,-138,-143,-144,-250,-252,-254,-253,-92,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'PUNTOYCOMA':([31,32,34,35,104,135,142,146,149,150,153,154,158,166,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,261,264,268,270,271,272,274,277,280,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,317,331,340,387,388,396,407,411,412,417,422,423,424,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,492,495,511,519,520,526,551,552,554,555,557,559,566,567,568,569,570,572,576,577,578,580,582,583,586,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,632,636,637,638,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,698,701,702,703,704,705,706,],[-152,-151,-85,-86,-155,260,-40,-41,-82,-83,-153,-84,-39,312,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,386,-154,399,401,-52,-53,-81,408,-46,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-242,-101,-110,491,-28,510,-162,-45,-197,-47,531,-237,-238,534,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-27,556,571,579,-44,-49,-254,-253,-29,-30,611,622,630,631,-34,-35,-36,-92,-163,635,-161,-199,-201,-202,-51,640,-235,-241,653,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,671,-200,-48,-50,673,-223,-234,-84,682,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,707,709,-228,-229,-230,-231,-109,]),'WHERE':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,277,317,331,340,406,407,422,423,424,426,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,576,578,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,409,-242,-101,-110,517,-162,530,-237,-238,533,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-163,-161,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'LIMIT':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,644,-235,-241,644,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,644,-223,-234,-84,644,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'GROUP':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,645,-235,-241,645,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,645,-223,-234,-84,645,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'HAVING':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,646,-235,-241,646,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,646,-223,-234,-84,646,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'ORDER':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,587,589,591,592,593,594,595,596,598,599,601,605,606,608,609,610,639,643,648,649,652,655,674,675,676,677,679,681,684,685,686,687,695,696,702,703,704,705,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,647,-235,-241,647,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,647,-223,-234,-84,647,-134,-222,-232,-233,-224,-226,-236,-137,-139,-140,-145,-225,-227,-228,-229,-230,-231,-109,]),'ASC':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,696,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,704,-109,]),'DESC':([31,32,34,35,104,149,150,153,154,168,169,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,317,331,340,423,424,427,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,591,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,696,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-240,-239,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-242,-101,-110,-237,-238,-243,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-241,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,705,-109,]),'FOR':([31,32,34,35,104,149,150,153,154,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,331,340,378,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,549,551,552,572,593,594,595,596,598,599,601,605,606,608,609,610,655,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-101,-110,484,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,607,-254,-253,-92,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,-137,-139,-140,-145,-109,]),'OFFSET':([31,32,34,35,104,149,150,153,154,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,252,255,264,274,331,340,428,429,430,431,432,433,434,435,438,439,442,443,444,445,446,447,449,450,451,452,453,454,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,474,476,481,482,485,487,551,552,572,593,594,595,596,598,599,601,605,606,608,609,610,655,677,684,685,686,687,706,],[-152,-151,-85,-86,-155,-82,-83,-153,-84,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-251,-256,-154,-81,-101,-110,-87,-88,-89,-90,-91,-93,-94,-95,-98,-99,-103,-104,-105,-106,-107,-108,-111,-112,-113,-114,-115,-116,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-136,-138,-143,-144,-250,-252,-254,-253,-92,-96,-97,-100,-102,-117,-118,-135,-141,-142,-146,-147,-255,-134,694,-137,-139,-140,-145,-109,]),'OWNER':([31,32,104,153,261,264,265,387,388,492,495,554,555,557,],[-152,-151,-155,-153,389,-154,394,389,-28,-27,389,-29,-30,389,]),'MODE':([31,32,104,153,261,264,387,388,492,495,554,555,557,],[-152,-151,-155,-153,390,-154,390,-28,-27,390,-29,-30,390,]),'DEFAULT':([31,32,104,153,264,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,412,558,580,582,583,612,613,615,617,619,620,636,660,661,662,663,668,688,699,],[-152,-151,-155,-153,-154,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,-197,614,-199,-201,-202,614,-178,-180,-182,-184,-185,-200,-177,-179,-181,-183,-187,-186,-188,]),'NULL':([31,32,104,153,264,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,410,412,558,580,582,583,612,613,615,616,617,619,620,636,660,661,662,663,668,688,699,],[-152,-151,-155,-153,-154,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,520,-197,615,-199,-201,-202,615,-178,-180,662,-182,-184,-185,-200,-177,-179,-181,-183,-187,-186,-188,]),'UNIQUE':([31,32,104,153,165,264,279,283,284,285,286,287,288,290,294,295,296,297,298,299,300,301,302,303,304,305,392,412,558,560,580,582,583,612,613,615,617,619,620,636,660,661,662,663,664,668,688,699,],[-152,-151,-155,-153,310,-154,310,-191,-192,-193,-194,-195,-196,-198,-203,-204,-205,-206,-207,-208,-209,-210,-211,-212,-213,-214,499,-197,617,499,-199,-201,-202,617,-178,-180,-182,-184,-185,-200,-177,-179,-181,-183,688,-187,-186,-188,]),'INTO':([36,],[155,]),'KEY':([42,43,309,506,507,618,],[163,164,420,564,565,663,]),'SYMMETRIC':([127,254,],[251,383,]),'REPLACE':([137,],[262,]),'IF':([144,],[269,]),'SET':([156,161,267,],[276,281,281,]),'TYPE':([161,267,],[282,282,]),'SMALLINT':([161,278,282,496,],[283,283,283,283,]),'INTEGER':([161,278,282,496,],[284,284,284,284,]),'BIGINT':([161,278,282,496,],[285,285,285,285,]),'NUMERIC':([161,278,282,496,],[287,287,287,287,]),'REAL':([161,278,282,496,],[288,288,288,288,]),'DOUBLE':([161,278,282,496,],[289,289,289,289,]),'MONEY':([161,278,282,496,],[290,290,290,290,]),'VARCHAR':([161,278,282,496,],[291,291,291,291,]),'CHARACTER':([161,278,282,496,],[292,292,292,292,]),'CHAR':([161,278,282,496,],[293,293,293,293,]),'TEXT':([161,278,282,496,],[294,294,294,294,]),'BOOLEAN':([161,278,282,496,],[295,295,295,295,]),'TIMESTAMP':([161,278,282,496,],[296,296,296,296,]),'TIME':([161,278,282,496,],[297,297,297,297,]),'INTERVAL':([161,278,282,496,],[298,298,298,298,]),'DATE':([161,278,282,496,],[299,299,299,299,]),'YEAR':([161,278,282,496,],[300,300,300,300,]),'MONTH':([161,278,282,496,],[301,301,301,301,]),'DAY':([161,278,282,496,],[302,302,302,302,]),'HOUR':([161,278,282,496,],[303,303,303,303,]),'MINUTE':([161,278,282,496,],[304,304,304,304,]),'SECOND':([161,278,282,496,],[305,305,305,305,]),'LEADING':([217,],[365,]),'TRAILING':([217,],[366,]),'BOTH':([217,],[367,]),'RENAME':([265,],[393,]),'EXISTS':([269,],[400,]),'VALUES':([275,574,],[403,633,]),'PRECISION':([289,],[412,]),'VARYING':([292,],[414,]),'TO':([393,394,],[508,509,]),'CURRENT_USER':([509,],[568,]),'SESSION_USER':([509,],[569,]),'REFERENCES':([525,692,],[584,700,]),'INHERITS':([559,],[623,]),'BY':([645,647,],[678,680,]),} _lr_action = {} for _k, _v in _lr_action_items.items(): for _x,_y in zip(_v[0],_v[1]): if not _x in _lr_action: _lr_action[_x] = {} _lr_action[_x][_k] = _y del _lr_action_items _lr_goto_items = {'inicio':([0,],[1,]),'queries':([0,],[2,]),'query':([0,2,],[3,105,]),'mostrarBD':([0,2,],[4,4,]),'crearBD':([0,2,],[5,5,]),'alterBD':([0,2,],[6,6,]),'dropBD':([0,2,],[7,7,]),'operacion':([0,2,30,33,45,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,151,162,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,251,253,254,311,313,314,315,316,364,379,383,402,409,436,437,440,441,448,455,456,473,475,477,478,479,480,483,484,486,488,516,530,532,533,542,553,563,588,590,597,602,603,604,607,641,642,644,646,667,678,680,683,694,],[8,8,152,154,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,255,273,306,317,318,319,320,321,322,323,324,325,326,327,328,329,330,332,333,334,335,336,337,338,339,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,168,382,168,423,425,168,427,472,485,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,576,589,591,589,600,610,627,649,651,654,656,657,658,659,589,589,677,168,690,168,168,697,702,]),'insertinBD':([0,2,],[9,9,]),'updateinBD':([0,2,],[10,10,]),'deleteinBD':([0,2,],[11,11,]),'createTable':([0,2,],[12,12,]),'inheritsBD':([0,2,],[13,13,]),'dropTable':([0,2,],[14,14,]),'alterTable':([0,2,],[15,15,]),'variantesAt':([0,2,266,],[16,16,396,]),'contAdd':([0,2,39,397,],[17,17,158,158,]),'contDrop':([0,2,27,398,],[18,18,146,146,]),'contAlter':([0,2,26,395,],[19,19,142,142,]),'listaid':([0,2,421,],[20,20,529,]),'tipoAlter':([0,2,],[21,21,]),'selectData':([0,2,],[22,22,]),'funcionBasica':([0,2,30,33,45,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,151,162,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,251,253,254,311,313,314,315,316,364,379,383,402,409,436,437,440,441,448,455,456,473,475,477,478,479,480,483,484,486,488,516,530,532,533,542,553,563,588,590,597,602,603,604,607,641,642,644,646,667,678,680,683,694,],[34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,]),'final':([0,2,30,33,45,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,151,162,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,191,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,251,253,254,311,313,314,315,316,364,379,383,402,404,409,436,437,440,441,448,455,456,473,475,477,478,479,480,483,484,486,488,493,494,509,513,516,530,532,533,542,553,561,563,575,588,590,597,602,603,604,607,614,628,629,641,642,644,646,667,672,678,680,683,694,710,],[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,515,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,554,555,570,515,35,35,35,35,35,35,515,35,634,35,35,35,35,35,35,35,661,515,515,35,35,35,35,35,515,35,35,35,35,515,]),'condicion_select':([8,45,152,154,166,168,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,253,255,273,306,311,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,332,333,334,335,336,337,338,339,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,368,369,370,371,372,373,374,375,376,377,378,380,381,382,422,423,425,426,427,472,485,489,512,519,535,536,537,538,539,540,541,543,544,545,546,547,548,549,550,551,552,576,589,591,600,610,627,646,649,651,654,656,657,658,659,677,678,679,680,690,695,696,697,702,],[131,170,131,131,314,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,170,131,131,131,170,170,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,314,131,314,131,131,314,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,170,131,131,131,131,131,131,131,131,170,314,170,131,314,314,131,131,]),'select_list':([45,253,311,315,646,678,680,],[166,381,422,426,679,695,696,]),'asignacion':([45,253,311,313,315,646,678,680,],[169,169,169,424,169,169,169,169,]),'tipo':([161,278,282,496,],[280,280,411,558,]),'opcionTrim':([217,],[364,]),'parametrosCrearBD':([261,495,],[387,557,]),'parametroCrearBD':([261,387,495,557,],[388,492,388,492,]),'asignaciones':([276,517,],[406,577,]),'asigna':([276,517,518,],[407,407,578,]),'creaColumnas':([392,],[497,]),'Columna':([392,560,],[498,624,]),'constraintcheck':([392,558,560,612,],[500,619,500,619,]),'checkinColumn':([392,558,560,612,],[501,620,501,620,]),'primaryKey':([392,560,],[502,502,]),'foreignKey':([392,560,],[503,503,]),'listaParam':([404,513,561,628,629,672,710,],[514,573,625,669,670,693,711,]),'parametroAlterUser':([509,],[567,]),'search_condition':([530,533,588,590,641,642,],[587,592,648,650,675,676,]),'paramOpcional':([558,],[612,]),'paramopc':([558,612,],[613,660,]),'opcionesSelect':([587,592,],[639,652,]),'opcionSelect':([587,592,639,652,],[643,643,674,674,]),'ordenamiento':([696,],[703,]),} _lr_goto = {} for _k, _v in _lr_goto_items.items(): for _x, _y in zip(_v[0], _v[1]): if not _x in _lr_goto: _lr_goto[_x] = {} _lr_goto[_x][_k] = _y del _lr_goto_items _lr_productions = [ ("S' -> inicio","S'",1,None,None,None), ('inicio -> queries','inicio',1,'p_inicio_1','gramaticaAscendenteTree.py',414), ('queries -> queries query','queries',2,'p_queries_1','gramaticaAscendenteTree.py',425), ('queries -> query','queries',1,'p_queries_2','gramaticaAscendenteTree.py',438), ('query -> mostrarBD','query',1,'p_query','gramaticaAscendenteTree.py',449), ('query -> crearBD','query',1,'p_query','gramaticaAscendenteTree.py',450), ('query -> alterBD','query',1,'p_query','gramaticaAscendenteTree.py',451), ('query -> dropBD','query',1,'p_query','gramaticaAscendenteTree.py',452), ('query -> operacion','query',1,'p_query','gramaticaAscendenteTree.py',453), ('query -> insertinBD','query',1,'p_query','gramaticaAscendenteTree.py',454), ('query -> updateinBD','query',1,'p_query','gramaticaAscendenteTree.py',455), ('query -> deleteinBD','query',1,'p_query','gramaticaAscendenteTree.py',456), ('query -> createTable','query',1,'p_query','gramaticaAscendenteTree.py',457), ('query -> inheritsBD','query',1,'p_query','gramaticaAscendenteTree.py',458), ('query -> dropTable','query',1,'p_query','gramaticaAscendenteTree.py',459), ('query -> alterTable','query',1,'p_query','gramaticaAscendenteTree.py',460), ('query -> variantesAt','query',1,'p_query','gramaticaAscendenteTree.py',461), ('query -> contAdd','query',1,'p_query','gramaticaAscendenteTree.py',462), ('query -> contDrop','query',1,'p_query','gramaticaAscendenteTree.py',463), ('query -> contAlter','query',1,'p_query','gramaticaAscendenteTree.py',464), ('query -> listaid','query',1,'p_query','gramaticaAscendenteTree.py',465), ('query -> tipoAlter','query',1,'p_query','gramaticaAscendenteTree.py',466), ('query -> selectData','query',1,'p_query','gramaticaAscendenteTree.py',467), ('crearBD -> CREATE DATABASE ID PUNTOYCOMA','crearBD',4,'p_crearBaseDatos_1','gramaticaAscendenteTree.py',486), ('crearBD -> CREATE OR REPLACE DATABASE ID PUNTOYCOMA','crearBD',6,'p_crearBaseDatos_2','gramaticaAscendenteTree.py',509), ('crearBD -> CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMA','crearBD',7,'p_crearBaseDatos_3','gramaticaAscendenteTree.py',515), ('crearBD -> CREATE DATABASE ID parametrosCrearBD PUNTOYCOMA','crearBD',5,'p_crearBaseDatos_4','gramaticaAscendenteTree.py',521), ('parametrosCrearBD -> parametrosCrearBD parametroCrearBD','parametrosCrearBD',2,'p_parametrosCrearBD_1','gramaticaAscendenteTree.py',528), ('parametrosCrearBD -> parametroCrearBD','parametrosCrearBD',1,'p_parametrosCrearBD_2','gramaticaAscendenteTree.py',535), ('parametroCrearBD -> OWNER IGUAL final','parametroCrearBD',3,'p_parametroCrearBD','gramaticaAscendenteTree.py',541), ('parametroCrearBD -> MODE IGUAL final','parametroCrearBD',3,'p_parametroCrearBD','gramaticaAscendenteTree.py',542), ('mostrarBD -> SHOW DATABASES PUNTOYCOMA','mostrarBD',3,'p_mostrarBD','gramaticaAscendenteTree.py',554), ('alterBD -> ALTER DATABASE ID RENAME TO ID PUNTOYCOMA','alterBD',7,'p_alterBD_1','gramaticaAscendenteTree.py',560), ('alterBD -> ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMA','alterBD',7,'p_alterBD_2','gramaticaAscendenteTree.py',566), ('parametroAlterUser -> CURRENT_USER','parametroAlterUser',1,'p_parametroAlterUser','gramaticaAscendenteTree.py',572), ('parametroAlterUser -> SESSION_USER','parametroAlterUser',1,'p_parametroAlterUser','gramaticaAscendenteTree.py',573), ('parametroAlterUser -> final','parametroAlterUser',1,'p_parametroAlterUser','gramaticaAscendenteTree.py',574), ('dropTable -> DROP TABLE ID PUNTOYCOMA','dropTable',4,'p_dropTable','gramaticaAscendenteTree.py',581), ('alterTable -> ALTER TABLE ID variantesAt PUNTOYCOMA','alterTable',5,'p_alterTable','gramaticaAscendenteTree.py',587), ('variantesAt -> ADD contAdd','variantesAt',2,'p_variantesAt','gramaticaAscendenteTree.py',597), ('variantesAt -> ALTER contAlter','variantesAt',2,'p_variantesAt','gramaticaAscendenteTree.py',598), ('variantesAt -> DROP contDrop','variantesAt',2,'p_variantesAt','gramaticaAscendenteTree.py',599), ('listaContAlter -> listaContAlter COMA contAlter','listaContAlter',3,'p_listaContAlter','gramaticaAscendenteTree.py',617), ('listaContAlter -> contAlter','listaContAlter',1,'p_listaContAlter_2','gramaticaAscendenteTree.py',623), ('contAlter -> COLUMN ID SET NOT NULL','contAlter',5,'p_contAlter','gramaticaAscendenteTree.py',630), ('contAlter -> COLUMN ID TYPE tipo','contAlter',4,'p_contAlter','gramaticaAscendenteTree.py',631), ('contAdd -> COLUMN ID tipo','contAdd',3,'p_contAdd','gramaticaAscendenteTree.py',645), ('contAdd -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA','contAdd',4,'p_contAdd','gramaticaAscendenteTree.py',646), ('contAdd -> FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID','contAdd',7,'p_contAdd','gramaticaAscendenteTree.py',647), ('contAdd -> PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA','contAdd',5,'p_contAdd','gramaticaAscendenteTree.py',648), ('contAdd -> CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA','contAdd',7,'p_contAdd','gramaticaAscendenteTree.py',649), ('contAdd -> CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA','contAdd',6,'p_contAdd','gramaticaAscendenteTree.py',650), ('contDrop -> COLUMN ID','contDrop',2,'p_contDrop','gramaticaAscendenteTree.py',677), ('contDrop -> CONSTRAINT ID','contDrop',2,'p_contDrop','gramaticaAscendenteTree.py',678), ('listaid -> listaid COMA ID','listaid',3,'p_listaID','gramaticaAscendenteTree.py',692), ('listaid -> ID','listaid',1,'p_listaID_2','gramaticaAscendenteTree.py',701), ('tipoAlter -> ADD','tipoAlter',1,'p_tipoAlter','gramaticaAscendenteTree.py',710), ('tipoAlter -> DROP','tipoAlter',1,'p_tipoAlter','gramaticaAscendenteTree.py',711), ('dropBD -> DROP DATABASE ID PUNTOYCOMA','dropBD',4,'p_dropBD_1','gramaticaAscendenteTree.py',716), ('dropBD -> DROP DATABASE IF EXISTS ID PUNTOYCOMA','dropBD',6,'p_dropBD_2','gramaticaAscendenteTree.py',723), ('operacion -> operacion MAS operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',729), ('operacion -> operacion MENOS operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',730), ('operacion -> operacion POR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',731), ('operacion -> operacion DIV operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',732), ('operacion -> operacion RESIDUO operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',733), ('operacion -> operacion POTENCIA operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',734), ('operacion -> operacion AND operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',735), ('operacion -> operacion OR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',736), ('operacion -> operacion SIMBOLOOR2 operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',737), ('operacion -> operacion SIMBOLOOR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',738), ('operacion -> operacion SIMBOLOAND2 operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',739), ('operacion -> operacion DESPLAZAMIENTOIZQUIERDA operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',740), ('operacion -> operacion DESPLAZAMIENTODERECHA operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',741), ('operacion -> operacion IGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',742), ('operacion -> operacion IGUALIGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',743), ('operacion -> operacion NOTEQUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',744), ('operacion -> operacion MAYORIGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',745), ('operacion -> operacion MENORIGUAL operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',746), ('operacion -> operacion MAYOR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',747), ('operacion -> operacion MENOR operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',748), ('operacion -> operacion DIFERENTE operacion','operacion',3,'p_operacion','gramaticaAscendenteTree.py',749), ('operacion -> PARENTESISIZQUIERDA operacion PARENTESISDERECHA','operacion',3,'p_operacion','gramaticaAscendenteTree.py',750), ('operacion -> MENOS ENTERO','operacion',2,'p_operacion_menos_unario','gramaticaAscendenteTree.py',863), ('operacion -> MENOS DECIMAL','operacion',2,'p_operacion_menos_unario','gramaticaAscendenteTree.py',864), ('operacion -> NOT operacion','operacion',2,'p_operacion_not_unario','gramaticaAscendenteTree.py',872), ('operacion -> funcionBasica','operacion',1,'p_operacion_funcion','gramaticaAscendenteTree.py',878), ('operacion -> final','operacion',1,'p_operacion_final','gramaticaAscendenteTree.py',884), ('funcionBasica -> ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',891), ('funcionBasica -> CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',892), ('funcionBasica -> CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',893), ('funcionBasica -> CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',894), ('funcionBasica -> DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',895), ('funcionBasica -> DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',896), ('funcionBasica -> EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',897), ('funcionBasica -> FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',898), ('funcionBasica -> FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',899), ('funcionBasica -> GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',900), ('funcionBasica -> LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',901), ('funcionBasica -> LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',902), ('funcionBasica -> LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',903), ('funcionBasica -> MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',904), ('funcionBasica -> PI PARENTESISIZQUIERDA PARENTESISDERECHA','funcionBasica',3,'p_funcion_basica','gramaticaAscendenteTree.py',905), ('funcionBasica -> POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',906), ('funcionBasica -> RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',907), ('funcionBasica -> ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',908), ('funcionBasica -> SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',909), ('funcionBasica -> SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',910), ('funcionBasica -> TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',911), ('funcionBasica -> TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',912), ('funcionBasica -> WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',10,'p_funcion_basica','gramaticaAscendenteTree.py',913), ('funcionBasica -> RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA','funcionBasica',3,'p_funcion_basica','gramaticaAscendenteTree.py',914), ('funcionBasica -> ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',917), ('funcionBasica -> ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',918), ('funcionBasica -> ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',919), ('funcionBasica -> ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',920), ('funcionBasica -> ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',921), ('funcionBasica -> ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',922), ('funcionBasica -> ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',923), ('funcionBasica -> ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',924), ('funcionBasica -> COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',927), ('funcionBasica -> COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',928), ('funcionBasica -> COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',929), ('funcionBasica -> COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',930), ('funcionBasica -> SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',931), ('funcionBasica -> SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',932), ('funcionBasica -> TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',933), ('funcionBasica -> TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',934), ('funcionBasica -> SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',935), ('funcionBasica -> COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',939), ('funcionBasica -> TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',940), ('funcionBasica -> ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',941), ('funcionBasica -> ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',942), ('funcionBasica -> ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',943), ('funcionBasica -> LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',944), ('funcionBasica -> TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA','funcionBasica',7,'p_funcion_basica','gramaticaAscendenteTree.py',945), ('funcionBasica -> GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',946), ('funcionBasica -> MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',947), ('funcionBasica -> SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica','gramaticaAscendenteTree.py',948), ('funcionBasica -> SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',949), ('funcionBasica -> SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica','gramaticaAscendenteTree.py',950), ('funcionBasica -> CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica','gramaticaAscendenteTree.py',951), ('funcionBasica -> ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',952), ('funcionBasica -> DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica','gramaticaAscendenteTree.py',953), ('funcionBasica -> AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',954), ('funcionBasica -> SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA','funcionBasica',4,'p_funcion_basica','gramaticaAscendenteTree.py',955), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHA','funcionBasica',8,'p_funcion_basica_1','gramaticaAscendenteTree.py',1129), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica_2','gramaticaAscendenteTree.py',1133), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA','funcionBasica',6,'p_funcion_basica_3','gramaticaAscendenteTree.py',1137), ('opcionTrim -> LEADING','opcionTrim',1,'p_opcionTrim','gramaticaAscendenteTree.py',1142), ('opcionTrim -> TRAILING','opcionTrim',1,'p_opcionTrim','gramaticaAscendenteTree.py',1143), ('opcionTrim -> BOTH','opcionTrim',1,'p_opcionTrim','gramaticaAscendenteTree.py',1144), ('final -> DECIMAL','final',1,'p_final','gramaticaAscendenteTree.py',1151), ('final -> ENTERO','final',1,'p_final','gramaticaAscendenteTree.py',1152), ('final -> ID','final',1,'p_final_id','gramaticaAscendenteTree.py',1165), ('final -> ID PUNTO ID','final',3,'p_final_invocacion','gramaticaAscendenteTree.py',1177), ('final -> CADENA','final',1,'p_final_cadena','gramaticaAscendenteTree.py',1184), ('insertinBD -> INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA','insertinBD',8,'p_insertBD_1','gramaticaAscendenteTree.py',1197), ('insertinBD -> INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA','insertinBD',11,'p_insertBD_2','gramaticaAscendenteTree.py',1227), ('listaParam -> listaParam COMA final','listaParam',3,'p_listaParam','gramaticaAscendenteTree.py',1232), ('listaParam -> final','listaParam',1,'p_listaParam_2','gramaticaAscendenteTree.py',1246), ('updateinBD -> UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMA','updateinBD',7,'p_updateBD','gramaticaAscendenteTree.py',1257), ('asignaciones -> asignaciones COMA asigna','asignaciones',3,'p_asignaciones','gramaticaAscendenteTree.py',1291), ('asignaciones -> asigna','asignaciones',1,'p_asignaciones_2','gramaticaAscendenteTree.py',1305), ('asigna -> ID IGUAL operacion','asigna',3,'p_asigna','gramaticaAscendenteTree.py',1316), ('deleteinBD -> DELETE FROM ID PUNTOYCOMA','deleteinBD',4,'p_deleteinBD_1','gramaticaAscendenteTree.py',1332), ('deleteinBD -> DELETE FROM ID WHERE operacion PUNTOYCOMA','deleteinBD',6,'p_deleteinBD_2','gramaticaAscendenteTree.py',1336), ('inheritsBD -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMA','inheritsBD',11,'p_inheritsBD','gramaticaAscendenteTree.py',1368), ('createTable -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMA','createTable',7,'p_createTable','gramaticaAscendenteTree.py',1402), ('creaColumnas -> creaColumnas COMA Columna','creaColumnas',3,'p_creaColumna','gramaticaAscendenteTree.py',1429), ('creaColumnas -> Columna','creaColumnas',1,'p_creaColumna_2','gramaticaAscendenteTree.py',1442), ('Columna -> ID tipo','Columna',2,'p_columna_1','gramaticaAscendenteTree.py',1454), ('Columna -> ID tipo paramOpcional','Columna',3,'p_columna_2','gramaticaAscendenteTree.py',1469), ('Columna -> UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHA','Columna',4,'p_columna_3','gramaticaAscendenteTree.py',1487), ('Columna -> constraintcheck','Columna',1,'p_columna_4','gramaticaAscendenteTree.py',1502), ('Columna -> checkinColumn','Columna',1,'p_columna_5','gramaticaAscendenteTree.py',1512), ('Columna -> primaryKey','Columna',1,'p_columna_6','gramaticaAscendenteTree.py',1522), ('Columna -> foreignKey','Columna',1,'p_columna_7','gramaticaAscendenteTree.py',1532), ('paramOpcional -> paramOpcional paramopc','paramOpcional',2,'p_paramOpcional','gramaticaAscendenteTree.py',1545), ('paramOpcional -> paramopc','paramOpcional',1,'p_paramOpcional_1','gramaticaAscendenteTree.py',1558), ('paramopc -> DEFAULT final','paramopc',2,'p_paramopc_1','gramaticaAscendenteTree.py',1570), ('paramopc -> NULL','paramopc',1,'p_paramopc_1','gramaticaAscendenteTree.py',1571), ('paramopc -> NOT NULL','paramopc',2,'p_paramopc_1','gramaticaAscendenteTree.py',1572), ('paramopc -> UNIQUE','paramopc',1,'p_paramopc_1','gramaticaAscendenteTree.py',1573), ('paramopc -> PRIMARY KEY','paramopc',2,'p_paramopc_1','gramaticaAscendenteTree.py',1574), ('paramopc -> constraintcheck','paramopc',1,'p_paramopc_2','gramaticaAscendenteTree.py',1651), ('paramopc -> checkinColumn','paramopc',1,'p_paramopc_3','gramaticaAscendenteTree.py',1661), ('paramopc -> CONSTRAINT ID UNIQUE','paramopc',3,'p_paramopc_4','gramaticaAscendenteTree.py',1674), ('checkinColumn -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA','checkinColumn',4,'p_checkcolumna','gramaticaAscendenteTree.py',1699), ('constraintcheck -> CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA','constraintcheck',6,'p_constraintcheck','gramaticaAscendenteTree.py',1715), ('primaryKey -> PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA','primaryKey',5,'p_primaryKey','gramaticaAscendenteTree.py',1741), ('foreignKey -> FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA','foreignKey',10,'p_foreingkey','gramaticaAscendenteTree.py',1761), ('tipo -> SMALLINT','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1796), ('tipo -> INTEGER','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1797), ('tipo -> BIGINT','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1798), ('tipo -> DECIMAL','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1799), ('tipo -> NUMERIC','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1800), ('tipo -> REAL','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1801), ('tipo -> DOUBLE PRECISION','tipo',2,'p_tipo','gramaticaAscendenteTree.py',1802), ('tipo -> MONEY','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1803), ('tipo -> VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',4,'p_tipo','gramaticaAscendenteTree.py',1804), ('tipo -> CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',5,'p_tipo','gramaticaAscendenteTree.py',1805), ('tipo -> CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',4,'p_tipo','gramaticaAscendenteTree.py',1806), ('tipo -> CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA','tipo',4,'p_tipo','gramaticaAscendenteTree.py',1807), ('tipo -> TEXT','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1808), ('tipo -> BOOLEAN','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1809), ('tipo -> TIMESTAMP','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1810), ('tipo -> TIME','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1811), ('tipo -> INTERVAL','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1812), ('tipo -> DATE','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1813), ('tipo -> YEAR','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1814), ('tipo -> MONTH','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1815), ('tipo -> DAY','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1816), ('tipo -> HOUR','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1817), ('tipo -> MINUTE','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1818), ('tipo -> SECOND','tipo',1,'p_tipo','gramaticaAscendenteTree.py',1819), ('selectData -> SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA','selectData',8,'p_select','gramaticaAscendenteTree.py',2129), ('selectData -> SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA','selectData',8,'p_select','gramaticaAscendenteTree.py',2130), ('selectData -> SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA','selectData',7,'p_select_1','gramaticaAscendenteTree.py',2139), ('selectData -> SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA','selectData',7,'p_select_1','gramaticaAscendenteTree.py',2140), ('selectData -> SELECT select_list FROM select_list PUNTOYCOMA','selectData',5,'p_select_2','gramaticaAscendenteTree.py',2148), ('selectData -> SELECT POR FROM select_list PUNTOYCOMA','selectData',5,'p_select_2','gramaticaAscendenteTree.py',2149), ('selectData -> SELECT select_list PUNTOYCOMA','selectData',3,'p_select_3','gramaticaAscendenteTree.py',2169), ('opcionesSelect -> opcionesSelect opcionSelect','opcionesSelect',2,'p_opcionesSelect_1','gramaticaAscendenteTree.py',2175), ('opcionesSelect -> opcionSelect','opcionesSelect',1,'p_opcionesSelect_2','gramaticaAscendenteTree.py',2180), ('opcionSelect -> LIMIT operacion','opcionSelect',2,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2186), ('opcionSelect -> GROUP BY select_list','opcionSelect',3,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2187), ('opcionSelect -> HAVING select_list','opcionSelect',2,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2188), ('opcionSelect -> ORDER BY select_list','opcionSelect',3,'p_opcionesSelect_3','gramaticaAscendenteTree.py',2189), ('opcionSelect -> LIMIT operacion OFFSET operacion','opcionSelect',4,'p_opcionesSelect_4','gramaticaAscendenteTree.py',2201), ('opcionSelect -> ORDER BY select_list ordenamiento','opcionSelect',4,'p_opcionesSelect_4','gramaticaAscendenteTree.py',2202), ('ordenamiento -> ASC','ordenamiento',1,'p_ordenamiento','gramaticaAscendenteTree.py',2212), ('ordenamiento -> DESC','ordenamiento',1,'p_ordenamiento','gramaticaAscendenteTree.py',2213), ('search_condition -> search_condition AND search_condition','search_condition',3,'p_search_condition_1','gramaticaAscendenteTree.py',2217), ('search_condition -> search_condition OR search_condition','search_condition',3,'p_search_condition_1','gramaticaAscendenteTree.py',2218), ('search_condition -> NOT search_condition','search_condition',2,'p_search_condition_2','gramaticaAscendenteTree.py',2223), ('search_condition -> operacion','search_condition',1,'p_search_condition_3','gramaticaAscendenteTree.py',2227), ('search_condition -> PARENTESISIZQUIERDA search_condition PARENTESISDERECHA','search_condition',3,'p_search_condition_4','gramaticaAscendenteTree.py',2231), ('select_list -> select_list COMA operacion','select_list',3,'p_select_list_1','gramaticaAscendenteTree.py',2236), ('select_list -> select_list COMA asignacion','select_list',3,'p_select_list_6','gramaticaAscendenteTree.py',2246), ('select_list -> asignacion','select_list',1,'p_select_list_7','gramaticaAscendenteTree.py',2253), ('select_list -> operacion','select_list',1,'p_select_list_2','gramaticaAscendenteTree.py',2262), ('select_list -> select_list condicion_select operacion COMA operacion','select_list',5,'p_select_list_3','gramaticaAscendenteTree.py',2269), ('select_list -> condicion_select operacion','select_list',2,'p_select_list_4','gramaticaAscendenteTree.py',2273), ('asignacion -> operacion AS operacion','asignacion',3,'p_asignacion_','gramaticaAscendenteTree.py',2278), ('condicion_select -> DISTINCT FROM','condicion_select',2,'p_condicion_select','gramaticaAscendenteTree.py',2286), ('condicion_select -> IS DISTINCT FROM','condicion_select',3,'p_condicion_select_2','gramaticaAscendenteTree.py',2291), ('condicion_select -> IS NOT DISTINCT FROM','condicion_select',4,'p_condicion_select_3','gramaticaAscendenteTree.py',2297), ('condicion_select -> DISTINCT','condicion_select',1,'p_condicion_select_4','gramaticaAscendenteTree.py',2301), ('condicion_select -> IS DISTINCT','condicion_select',2,'p_condicion_select_5','gramaticaAscendenteTree.py',2305), ('condicion_select -> IS NOT DISTINCT','condicion_select',3,'p_condicion_select_6','gramaticaAscendenteTree.py',2310), ('funcionBasica -> operacion BETWEEN operacion AND operacion','funcionBasica',5,'p_funcion_basica_4','gramaticaAscendenteTree.py',2315), ('funcionBasica -> operacion LIKE CADENA','funcionBasica',3,'p_funcion_basica_5','gramaticaAscendenteTree.py',2319), ('funcionBasica -> operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA','funcionBasica',5,'p_funcion_basica_6','gramaticaAscendenteTree.py',2323), ('funcionBasica -> operacion NOT BETWEEN operacion AND operacion','funcionBasica',6,'p_funcion_basica_7','gramaticaAscendenteTree.py',2327), ('funcionBasica -> operacion BETWEEN SYMMETRIC operacion AND operacion','funcionBasica',6,'p_funcion_basica_8','gramaticaAscendenteTree.py',2331), ('funcionBasica -> operacion NOT BETWEEN SYMMETRIC operacion AND operacion','funcionBasica',7,'p_funcion_basica_9','gramaticaAscendenteTree.py',2335), ('funcionBasica -> operacion condicion_select operacion','funcionBasica',3,'p_funcion_basica_10','gramaticaAscendenteTree.py',2340), ]
_tabversion = '3.10' _lr_method = 'LALR' _lr_signature = 'leftTYPECASTrightUMINUSrightUNOTleftMASMENOSleftPOTENCIAleftPORDIVRESIDUOleftANDORSIMBOLOOR2SIMBOLOORSIMBOLOAND2leftDESPLAZAMIENTOIZQUIERDADESPLAZAMIENTODERECHAABS ACOS ACOSD ACOSH ADD ALL ALTER AND ANY AS ASC ASIN ASIND ASINH ATAN ATAN2 ATAN2D ATAND ATANH AUTO_INCREMENT AVG BEGIN BETWEEN BIGINT BOOLEAN BOTH BY CADENA CASE CBRT CEIL CEILING CHAR CHARACTER CHECK COLOCHO COLUMN COLUMNS COMA CONCAT CONSTRAINT CONT CONVERT CORCHETEDER CORCHETEIZQ COS COSD COSH COT COTD CREATE CURRENT_USER DATABASE DATABASES DATE DAY DECIMAL DECIMALTOKEN DECLARE DECODE DEFAULT DEGREES DELETE DESC DESPLAZAMIENTODERECHA DESPLAZAMIENTOIZQUIERDA DIFERENTE DISTINCT DIV DIV DOSPUNTOS DOUBLE DROP ELSE ENCODE END ENTERO ENUM ENUM ESCAPE ETIQUETA EXCEPT EXISTS EXP FACTORIAL FALSE FIRST FLOOR FOR FOREIGN FROM FULL FUNCTION GCD GET_BYTE GREATEST GROUP HAVING HOUR ID IF IGUAL IGUALIGUAL ILIKE IN INHERITS INNER INSERT INTEGER INTERSECT INTERVAL INTO IS ISNULL JOIN KEY LAST LCM LEADING LEAST LEFT LENGTH LIKE LIMIT LN LOG LOG10 MAS MAX MAYOR MAYORIGUAL MD5 MENOR MENORIGUAL MENOS MIN MINUTE MIN_SCALE MOD MODE MONEY MONTH NATURAL NOT NOTEQUAL NOTNULL NULL NULLS NUMERAL NUMERIC OF OFFSET ON ONLY OR ORDER OUTER OWNER PARENTESISDERECHA PARENTESISIZQUIERDA PI POR POTENCIA POWER PRECISION PRIMARY PUNTO PUNTOYCOMA RADIANS RANDOM REAL REFERENCES RENAME REPLACE RESIDUO RETURNING RETURNS RIGHT ROUND SCALE SECOND SELECT SESSION_USER SET SETSEED SET_BYTE SHA256 SHOW SIGN SIMBOLOAND SIMBOLOAND2 SIMBOLOOR SIMBOLOOR2 SIN SIND SINH SMALLINT SOME SQRT SUBSTR SUBSTRING SUM SYMMETRIC TABLE TABLES TAN TAND TANH TEXT THEN TIME TIMESTAMP TO TRAILING TRIM TRIM_SCALE TRUE TRUNC TYPE TYPECAST UNION UNIQUE UNKNOWN UPDATE UPPER USING VALUES VARCHAR VARYING VIEW WHEN WHERE WIDTH_BUCKET YEARinicio : queriesqueries : queries queryqueries : queryquery : mostrarBD\n | crearBD\n | alterBD\n | dropBD\n | operacion\n | insertinBD\n | updateinBD\n | deleteinBD\n | createTable\n | inheritsBD\n | dropTable\n | alterTable\n | variantesAt\n | contAdd\n | contDrop\n | contAlter\n | listaid\n | tipoAlter \n | selectData\n crearBD : CREATE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID PUNTOYCOMAcrearBD : CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMAcrearBD : CREATE DATABASE ID parametrosCrearBD PUNTOYCOMAparametrosCrearBD : parametrosCrearBD parametroCrearBDparametrosCrearBD : parametroCrearBDparametroCrearBD : OWNER IGUAL final\n | MODE IGUAL final\n mostrarBD : SHOW DATABASES PUNTOYCOMAalterBD : ALTER DATABASE ID RENAME TO ID PUNTOYCOMAalterBD : ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMAparametroAlterUser : CURRENT_USER\n | SESSION_USER\n | final\n dropTable : DROP TABLE ID PUNTOYCOMA\n alterTable : ALTER TABLE ID variantesAt PUNTOYCOMA\n\n \n variantesAt : ADD contAdd\n | ALTER contAlter\n | DROP contDrop\n \n listaContAlter : listaContAlter COMA contAlter \n \n listaContAlter : contAlter\n \n contAlter : COLUMN ID SET NOT NULL \n | COLUMN ID TYPE tipo\n \n contAdd : COLUMN ID tipo \n | CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID\n | PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA\n | CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA\n \n contDrop : COLUMN ID \n | CONSTRAINT ID\n \n listaid : listaid COMA ID\n \n listaid : ID\n \n tipoAlter : ADD \n | DROP\n dropBD : DROP DATABASE ID PUNTOYCOMAdropBD : DROP DATABASE IF EXISTS ID PUNTOYCOMAoperacion : operacion MAS operacion\n | operacion MENOS operacion\n | operacion POR operacion\n | operacion DIV operacion\n | operacion RESIDUO operacion\n | operacion POTENCIA operacion\n | operacion AND operacion\n | operacion OR operacion\n | operacion SIMBOLOOR2 operacion\n | operacion SIMBOLOOR operacion\n | operacion SIMBOLOAND2 operacion\n | operacion DESPLAZAMIENTOIZQUIERDA operacion\n | operacion DESPLAZAMIENTODERECHA operacion\n | operacion IGUAL operacion\n | operacion IGUALIGUAL operacion\n | operacion NOTEQUAL operacion\n | operacion MAYORIGUAL operacion\n | operacion MENORIGUAL operacion\n | operacion MAYOR operacion\n | operacion MENOR operacion\n | operacion DIFERENTE operacion\n | PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n operacion : MENOS ENTERO %prec UMINUS\n | MENOS DECIMAL %prec UMINUS\n \n operacion : NOT operacion %prec UNOToperacion : funcionBasicaoperacion : finalfuncionBasica : ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | PI PARENTESISIZQUIERDA PARENTESISDERECHA\n | POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA\n \n \n | ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n \n\n | COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\t\t\t | COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n\n\n\n | COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA\n | GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA \n | SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA\n | ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA\n | AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n | SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA\n funcionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHAfuncionBasica : SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA opcionTrim : LEADING\n | TRAILING\n | BOTH\n final : DECIMAL\n | ENTEROfinal : IDfinal : ID PUNTO IDfinal : CADENAinsertinBD : INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAinsertinBD : INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMAlistaParam : listaParam COMA finallistaParam : finalupdateinBD : UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMAasignaciones : asignaciones COMA asignaasignaciones : asignaasigna : ID IGUAL operaciondeleteinBD : DELETE FROM ID PUNTOYCOMAdeleteinBD : DELETE FROM ID WHERE operacion PUNTOYCOMAinheritsBD : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMAcreateTable : CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMAcreaColumnas : creaColumnas COMA ColumnacreaColumnas : ColumnaColumna : ID tipoColumna : ID tipo paramOpcionalColumna : UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHAColumna : constraintcheckColumna : checkinColumnColumna : primaryKeyColumna : foreignKeyparamOpcional : paramOpcional paramopcparamOpcional : paramopcparamopc : DEFAULT final\n | NULL\n | NOT NULL\n | UNIQUE\n | PRIMARY KEY\n paramopc : constraintcheckparamopc : checkinColumnparamopc : CONSTRAINT ID UNIQUEcheckinColumn : CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAconstraintcheck : CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHAprimaryKey : PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHAforeignKey : FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHAtipo : SMALLINT\n | INTEGER\n | BIGINT\n | DECIMAL\n | NUMERIC\n | REAL\n | DOUBLE PRECISION\n | MONEY\n | VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA\n | TEXT\n | BOOLEAN\n | TIMESTAMP\n | TIME\n | INTERVAL\n | DATE\n | YEAR\n | MONTH \n | DAY\n | HOUR \n | MINUTE\n | SECOND\n selectData : SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA\n selectData : SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA\n | SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA\n selectData : SELECT select_list FROM select_list PUNTOYCOMA\n | SELECT POR FROM select_list PUNTOYCOMA\n selectData : SELECT select_list PUNTOYCOMA\n opcionesSelect : opcionesSelect opcionSelect\n opcionesSelect : opcionSelect\n opcionSelect : LIMIT operacion\n | GROUP BY select_list\n | HAVING select_list\n | ORDER BY select_list \n opcionSelect : LIMIT operacion OFFSET operacion\n | ORDER BY select_list ordenamiento \n ordenamiento : ASC\n | DESC search_condition : search_condition AND search_condition\n | search_condition OR search_condition \n search_condition : NOT search_conditionsearch_condition : operacionsearch_condition : PARENTESISIZQUIERDA search_condition PARENTESISDERECHA select_list : select_list COMA operacion select_list : select_list COMA asignacion select_list : asignacionselect_list : operacion select_list : select_list condicion_select operacion COMA operacion select_list : condicion_select operacion asignacion : operacion AS operacioncondicion_select : DISTINCT FROM \n condicion_select : IS DISTINCT FROM \n condicion_select : IS NOT DISTINCT FROMcondicion_select : DISTINCT condicion_select : IS DISTINCT \n condicion_select : IS NOT DISTINCT \n funcionBasica : operacion BETWEEN operacion AND operacionfuncionBasica : operacion LIKE CADENAfuncionBasica : operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA funcionBasica : operacion NOT BETWEEN operacion AND operacion funcionBasica : operacion BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion NOT BETWEEN SYMMETRIC operacion AND operacionfuncionBasica : operacion condicion_select operacion' _lr_action_items = {'SHOW': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [23, 23, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'CREATE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [24, 24, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'ALTER': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 266, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [26, 26, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, 395, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'DROP': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 266, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [27, 27, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, 398, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'PARENTESISIZQUIERDA': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 29, 30, 31, 32, 33, 34, 35, 39, 41, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 163, 164, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 263, 264, 271, 272, 274, 275, 280, 283, 284, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 310, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 403, 408, 409, 411, 412, 414, 417, 420, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 499, 505, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 564, 565, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 623, 626, 630, 631, 633, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 708, 709], [30, 30, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 151, 30, -152, -151, 30, -85, -86, -56, 162, 30, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, -155, -2, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 253, 30, -247, -40, -41, -82, -83, 30, -153, -84, -39, -52, 30, 307, 308, -53, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 30, -251, 30, 30, -256, -244, -248, -54, -31, 392, -154, -52, -53, -81, 404, -46, -191, -192, -193, -194, -195, -196, -198, 413, 415, 416, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 421, 30, -221, 30, 30, 30, 30, -101, -110, 30, -148, -149, -150, 30, 30, -245, -249, -23, -58, -37, 30, 513, -164, 30, -45, -197, 522, -47, 527, -87, -88, -89, -90, -91, -93, -94, -95, 30, 30, -98, -99, 30, 30, -103, -104, -105, -106, -107, -108, 30, -111, -112, -113, -114, -115, -116, 30, 30, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 30, -136, 30, -138, 30, 30, 30, 30, -143, -144, 30, 30, -250, 30, -252, 30, -246, -26, 561, 563, -38, 30, -44, -49, 590, -219, 30, 590, -220, 30, -254, -253, 30, -24, 30, 628, 629, -59, -92, -165, -199, -201, -202, -51, 590, 590, -96, -97, -100, -102, 30, -117, -118, -135, 30, 30, 30, -141, -142, 30, -146, -147, -255, -25, -167, 665, 667, -32, -33, 672, -160, -200, -48, -50, -217, 590, 590, 30, 30, -218, -134, 30, -156, -215, 30, 30, -216, 30, -137, -139, -140, -145, 30, -109, -166, 710, -157]), 'MENOS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 152, 153, 154, 158, 161, 162, 165, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 273, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 382, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 510, 512, 516, 519, 520, 526, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 563, 571, 572, 576, 579, 580, 582, 583, 586, 588, 589, 590, 591, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 627, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 649, 651, 653, 654, 655, 656, 657, 658, 659, 667, 671, 673, 677, 678, 680, 682, 683, 684, 685, 686, 687, 690, 694, 697, 702, 706, 707, 709], [28, 28, -3, -4, -5, -6, -7, 107, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 28, -152, -151, 28, -85, -86, -56, 28, -155, -2, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, -247, -40, -41, -82, -83, 28, 107, -153, 107, -39, -52, 28, -53, 107, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 107, 107, 107, 107, 107, 107, 107, 107, 107, 28, -251, 28, 28, 107, -244, -248, -54, -31, -154, -52, -53, 107, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 107, 28, -221, 28, 28, 28, 28, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, -101, 107, 107, 107, 107, 107, 107, 107, 107, -110, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 28, -148, -149, -150, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 28, 107, 107, 28, -245, -249, -23, -58, -37, 28, -164, 28, -45, -197, -47, 107, 107, 107, -87, -88, -89, -90, -91, -93, -94, -95, 28, 28, -98, -99, 28, 28, -103, -104, -105, -106, -107, -108, 28, -111, -112, -113, -114, -115, -116, 28, 28, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 107, 28, -136, 28, -138, 28, 28, 28, 28, -143, -144, 28, 28, -66, 28, -252, 28, 107, -246, -26, -38, 107, 28, 107, -44, -49, 28, -219, 28, 28, -220, 107, 107, 107, 107, 107, 107, 107, 28, 107, 107, 107, 107, 107, 107, 107, 107, -66, -66, 28, -24, 28, -59, -92, 107, -165, -199, -201, -202, -51, 28, 107, 28, 107, -96, -97, -100, -102, 28, -117, -118, 107, -135, 28, 28, 28, -141, -142, 28, -146, -147, -66, -25, -167, 107, -32, -33, -160, -200, -48, -50, -217, 28, 28, 28, 28, 107, 107, -218, 107, -134, 107, 107, 107, 107, 28, -156, -215, 107, 28, 28, -216, 28, -137, -139, -140, -145, 107, 28, 107, 107, -109, -166, -157]), 'NOT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 142, 146, 149, 150, 151, 152, 153, 154, 158, 161, 162, 165, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 273, 274, 280, 281, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 382, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 510, 512, 516, 519, 520, 526, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 558, 563, 571, 572, 576, 579, 580, 582, 583, 586, 588, 589, 590, 591, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 627, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 649, 651, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 667, 668, 671, 673, 677, 678, 680, 682, 683, 684, 685, 686, 687, 688, 690, 694, 697, 699, 702, 706, 707, 709], [33, 33, -3, -4, -5, -6, -7, 130, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 33, -152, -151, 33, -85, -86, -56, 33, -155, -2, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, -247, 258, -40, -41, -82, -83, 33, 130, -153, -84, -39, -52, 33, -53, 130, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 130, 130, 130, 130, 130, 130, 130, 130, 130, 33, -251, 33, 33, 130, -244, -248, -54, -31, -154, -52, -53, 130, -81, -46, 410, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 130, 33, -221, 33, 33, 33, 33, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, -101, 130, 130, 130, 130, 130, 130, 130, 130, -110, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 33, -148, -149, -150, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, 33, 130, 130, 33, -245, -249, -23, -58, -37, 33, -164, 33, -45, -197, -47, 130, 130, 130, -87, -88, -89, -90, -91, -93, -94, -95, 33, 33, -98, -99, 33, 33, -103, -104, -105, -106, -107, -108, 33, -111, -112, -113, -114, -115, -116, 33, 33, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 130, 33, -136, 33, -138, 33, 33, 33, 33, -143, -144, 33, 33, -66, 33, -252, 33, 130, -246, -26, -38, 130, 33, 130, -44, -49, 588, -219, 33, 588, -220, 130, 130, 130, 130, 130, 130, 130, 33, 130, 130, 130, 130, 130, 130, 130, 130, -66, -66, 33, -24, 616, 33, -59, -92, 130, -165, -199, -201, -202, -51, 588, 130, 588, 130, -96, -97, -100, -102, 33, -117, -118, 130, -135, 33, 33, 33, -141, -142, 33, -146, -147, -66, -25, 616, -178, -180, -182, -184, -185, -167, 130, -32, -33, -160, -200, -48, -50, -217, 588, 588, 33, 33, -84, 130, -218, 130, -134, 130, 130, 130, 130, -177, -179, -181, -183, 33, -187, -156, -215, 130, 33, 33, -216, 33, -137, -139, -140, -145, -186, 130, 33, 130, -188, 130, -109, -166, -157]), 'INSERT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [36, 36, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'UPDATE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [37, 37, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'DELETE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [38, 38, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'ADD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 266, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [39, 39, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, 397, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'COLUMN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 395, 397, 398, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [40, 40, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, 143, 147, -152, -151, -85, -86, 159, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 143, 159, 147, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'CHECK': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 558, 560, 562, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 660, 661, 662, 663, 664, 668, 671, 673, 682, 684, 685, 686, 687, 688, 699, 706, 707, 709], [41, 41, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, 41, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 505, 41, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 505, 505, 626, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, 505, -178, -180, -182, -184, -185, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -177, -179, -181, -183, 626, -187, -156, -215, -216, -137, -139, -140, -145, -186, -188, -109, -166, -157]), 'FOREIGN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 560, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [42, 42, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, 42, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 507, 42, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 507, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'PRIMARY': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 279, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 558, 560, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 660, 661, 662, 663, 668, 671, 673, 682, 684, 685, 686, 687, 688, 699, 706, 707, 709], [43, 43, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, 43, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, 309, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, 309, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 506, 43, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 618, 506, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, 618, -178, -180, -182, -184, -185, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -177, -179, -181, -183, -187, -156, -215, -216, -137, -139, -140, -145, -186, -188, -109, -166, -157]), 'CONSTRAINT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 392, 397, 398, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 558, 560, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 612, 613, 615, 617, 619, 620, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 660, 661, 662, 663, 668, 671, 673, 682, 684, 685, 686, 687, 688, 699, 706, 707, 709], [44, 44, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, 148, -152, -151, -85, -86, 160, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, 504, 160, 148, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, 621, 504, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, 621, -178, -180, -182, -184, -185, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -177, -179, -181, -183, -187, -156, -215, -216, -137, -139, -140, -145, -186, -188, -109, -166, -157]), 'ID': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 37, 39, 40, 44, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 134, 136, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 157, 158, 159, 160, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 276, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 307, 308, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 391, 392, 399, 400, 401, 402, 404, 408, 409, 411, 412, 417, 421, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 504, 508, 509, 510, 513, 516, 517, 518, 520, 526, 527, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 560, 561, 563, 571, 572, 575, 579, 580, 582, 583, 584, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 621, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 665, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 700, 706, 707, 709, 710], [25, 25, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 153, -152, -151, 153, -85, -86, 156, -56, 161, 165, 153, -155, -2, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, -247, 259, 261, 263, 264, 265, 266, -40, 267, 268, 270, -41, 271, 272, -82, -83, 153, -153, -84, 275, 277, -39, 278, 279, -52, 153, -53, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 153, -251, 153, 153, -256, -244, -248, -54, -31, -154, -52, -53, -81, 405, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 418, 419, 153, -221, 153, 153, 153, 153, -101, -110, 153, -148, -149, -150, 153, 153, -245, -249, -23, 495, 496, -58, 511, -37, 153, 153, -164, 153, -45, -197, -47, 528, -87, -88, -89, -90, -91, -93, -94, -95, 153, 153, -98, -99, 153, 153, -103, -104, -105, -106, -107, -108, 153, -111, -112, -113, -114, -115, -116, 153, 153, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 153, -136, 153, -138, 153, 153, 153, 153, -143, -144, 153, 153, -250, 153, -252, 153, -246, -26, 153, 153, 562, 566, 153, -38, 153, 153, 405, 405, -44, -49, 585, 153, -219, 153, 153, -220, 153, -254, -253, 153, -24, 496, 153, 153, -59, -92, 153, -165, -199, -201, -202, 637, -51, 153, 153, -96, -97, -100, -102, 153, -117, -118, -135, 153, 153, 153, -141, -142, 153, -146, -147, -255, -25, 153, 664, -167, 153, 153, -32, -33, -160, -200, -48, -50, -217, 153, 153, 153, 153, -218, -134, 689, 153, -156, 153, -215, 153, 153, -216, 153, -137, -139, -140, -145, 153, 708, -109, -166, -157, 153]), 'SELECT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [45, 45, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'ABS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [46, 46, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 46, -152, -151, 46, -85, -86, -56, 46, -155, -2, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, -247, -40, -41, -82, -83, 46, -153, -84, -39, -52, 46, -53, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 46, -251, 46, 46, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 46, -221, 46, 46, 46, 46, -101, -110, 46, -148, -149, -150, 46, 46, -245, -249, -23, -58, -37, 46, -164, 46, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 46, 46, -98, -99, 46, 46, -103, -104, -105, -106, -107, -108, 46, -111, -112, -113, -114, -115, -116, 46, 46, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 46, -136, 46, -138, 46, 46, 46, 46, -143, -144, 46, 46, -250, 46, -252, 46, -246, -26, -38, 46, -44, -49, 46, -219, 46, 46, -220, 46, -254, -253, 46, -24, 46, -59, -92, -165, -199, -201, -202, -51, 46, 46, -96, -97, -100, -102, 46, -117, -118, -135, 46, 46, 46, -141, -142, 46, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 46, 46, 46, 46, -218, -134, 46, -156, -215, 46, 46, -216, 46, -137, -139, -140, -145, 46, -109, -166, -157]), 'CBRT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [47, 47, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 47, -152, -151, 47, -85, -86, -56, 47, -155, -2, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, -247, -40, -41, -82, -83, 47, -153, -84, -39, -52, 47, -53, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 47, -251, 47, 47, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 47, -221, 47, 47, 47, 47, -101, -110, 47, -148, -149, -150, 47, 47, -245, -249, -23, -58, -37, 47, -164, 47, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 47, 47, -98, -99, 47, 47, -103, -104, -105, -106, -107, -108, 47, -111, -112, -113, -114, -115, -116, 47, 47, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 47, -136, 47, -138, 47, 47, 47, 47, -143, -144, 47, 47, -250, 47, -252, 47, -246, -26, -38, 47, -44, -49, 47, -219, 47, 47, -220, 47, -254, -253, 47, -24, 47, -59, -92, -165, -199, -201, -202, -51, 47, 47, -96, -97, -100, -102, 47, -117, -118, -135, 47, 47, 47, -141, -142, 47, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 47, 47, 47, 47, -218, -134, 47, -156, -215, 47, 47, -216, 47, -137, -139, -140, -145, 47, -109, -166, -157]), 'CEIL': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [48, 48, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 48, -152, -151, 48, -85, -86, -56, 48, -155, -2, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, -247, -40, -41, -82, -83, 48, -153, -84, -39, -52, 48, -53, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 48, -251, 48, 48, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 48, -221, 48, 48, 48, 48, -101, -110, 48, -148, -149, -150, 48, 48, -245, -249, -23, -58, -37, 48, -164, 48, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 48, 48, -98, -99, 48, 48, -103, -104, -105, -106, -107, -108, 48, -111, -112, -113, -114, -115, -116, 48, 48, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 48, -136, 48, -138, 48, 48, 48, 48, -143, -144, 48, 48, -250, 48, -252, 48, -246, -26, -38, 48, -44, -49, 48, -219, 48, 48, -220, 48, -254, -253, 48, -24, 48, -59, -92, -165, -199, -201, -202, -51, 48, 48, -96, -97, -100, -102, 48, -117, -118, -135, 48, 48, 48, -141, -142, 48, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 48, 48, 48, 48, -218, -134, 48, -156, -215, 48, 48, -216, 48, -137, -139, -140, -145, 48, -109, -166, -157]), 'CEILING': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [49, 49, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 49, -152, -151, 49, -85, -86, -56, 49, -155, -2, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -247, -40, -41, -82, -83, 49, -153, -84, -39, -52, 49, -53, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 49, -251, 49, 49, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 49, -221, 49, 49, 49, 49, -101, -110, 49, -148, -149, -150, 49, 49, -245, -249, -23, -58, -37, 49, -164, 49, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 49, 49, -98, -99, 49, 49, -103, -104, -105, -106, -107, -108, 49, -111, -112, -113, -114, -115, -116, 49, 49, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 49, -136, 49, -138, 49, 49, 49, 49, -143, -144, 49, 49, -250, 49, -252, 49, -246, -26, -38, 49, -44, -49, 49, -219, 49, 49, -220, 49, -254, -253, 49, -24, 49, -59, -92, -165, -199, -201, -202, -51, 49, 49, -96, -97, -100, -102, 49, -117, -118, -135, 49, 49, 49, -141, -142, 49, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 49, 49, 49, 49, -218, -134, 49, -156, -215, 49, 49, -216, 49, -137, -139, -140, -145, 49, -109, -166, -157]), 'DEGREES': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [50, 50, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 50, -152, -151, 50, -85, -86, -56, 50, -155, -2, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, -247, -40, -41, -82, -83, 50, -153, -84, -39, -52, 50, -53, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 50, -251, 50, 50, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 50, -221, 50, 50, 50, 50, -101, -110, 50, -148, -149, -150, 50, 50, -245, -249, -23, -58, -37, 50, -164, 50, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 50, 50, -98, -99, 50, 50, -103, -104, -105, -106, -107, -108, 50, -111, -112, -113, -114, -115, -116, 50, 50, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 50, -136, 50, -138, 50, 50, 50, 50, -143, -144, 50, 50, -250, 50, -252, 50, -246, -26, -38, 50, -44, -49, 50, -219, 50, 50, -220, 50, -254, -253, 50, -24, 50, -59, -92, -165, -199, -201, -202, -51, 50, 50, -96, -97, -100, -102, 50, -117, -118, -135, 50, 50, 50, -141, -142, 50, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 50, 50, 50, 50, -218, -134, 50, -156, -215, 50, 50, -216, 50, -137, -139, -140, -145, 50, -109, -166, -157]), 'DIV': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 152, 153, 154, 158, 161, 162, 165, 168, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 273, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 382, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 510, 512, 516, 519, 520, 526, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 556, 563, 571, 572, 576, 579, 580, 582, 583, 586, 588, 589, 590, 591, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 627, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 649, 651, 653, 654, 655, 656, 657, 658, 659, 667, 671, 673, 677, 678, 680, 682, 683, 684, 685, 686, 687, 690, 694, 697, 702, 706, 707, 709], [29, 29, -3, -4, -5, -6, -7, 109, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 29, -152, -151, 29, -85, -86, -56, 29, -155, -2, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, -247, -40, -41, -82, -83, 29, 109, -153, 109, -39, -52, 29, -53, 109, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 109, 109, -62, -63, -64, 109, -66, -67, -68, -69, -70, -71, -72, 109, 109, 109, 109, 109, 109, 109, 109, 109, 29, -251, 29, 29, 109, -244, -248, -54, -31, -154, -52, -53, 109, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 109, 29, -221, 29, 29, 29, 29, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, -101, 109, 109, 109, 109, 109, 109, 109, 109, -110, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 29, -148, -149, -150, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 29, 109, 109, 29, -245, -249, -23, -58, -37, 29, -164, 29, -45, -197, -47, 109, 109, 109, -87, -88, -89, -90, -91, -93, -94, -95, 29, 29, -98, -99, 29, 29, -103, -104, -105, -106, -107, -108, 29, -111, -112, -113, -114, -115, -116, 29, 29, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 109, 29, -136, 29, -138, 29, 29, 29, 29, -143, -144, 29, 29, -66, 29, -252, 29, 109, -246, -26, -38, 109, 29, 109, -44, -49, 29, -219, 29, 29, -220, 109, 109, 109, 109, 109, 109, 109, 29, 109, 109, 109, 109, 109, 109, 109, 109, -66, -66, 29, -24, 29, -59, -92, 109, -165, -199, -201, -202, -51, 29, 109, 29, 109, -96, -97, -100, -102, 29, -117, -118, 109, -135, 29, 29, 29, -141, -142, 29, -146, -147, -66, -25, -167, 109, -32, -33, -160, -200, -48, -50, -217, 29, 29, 29, 29, 109, 109, -218, 109, -134, 109, 109, 109, 109, 29, -156, -215, 109, 29, 29, -216, 29, -137, -139, -140, -145, 109, 29, 109, 109, -109, -166, -157]), 'EXP': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [51, 51, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 51, -152, -151, 51, -85, -86, -56, 51, -155, -2, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, -247, -40, -41, -82, -83, 51, -153, -84, -39, -52, 51, -53, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 51, -251, 51, 51, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 51, -221, 51, 51, 51, 51, -101, -110, 51, -148, -149, -150, 51, 51, -245, -249, -23, -58, -37, 51, -164, 51, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 51, 51, -98, -99, 51, 51, -103, -104, -105, -106, -107, -108, 51, -111, -112, -113, -114, -115, -116, 51, 51, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 51, -136, 51, -138, 51, 51, 51, 51, -143, -144, 51, 51, -250, 51, -252, 51, -246, -26, -38, 51, -44, -49, 51, -219, 51, 51, -220, 51, -254, -253, 51, -24, 51, -59, -92, -165, -199, -201, -202, -51, 51, 51, -96, -97, -100, -102, 51, -117, -118, -135, 51, 51, 51, -141, -142, 51, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 51, 51, 51, 51, -218, -134, 51, -156, -215, 51, 51, -216, 51, -137, -139, -140, -145, 51, -109, -166, -157]), 'FACTORIAL': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [52, 52, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 52, -152, -151, 52, -85, -86, -56, 52, -155, -2, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, -247, -40, -41, -82, -83, 52, -153, -84, -39, -52, 52, -53, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 52, -251, 52, 52, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 52, -221, 52, 52, 52, 52, -101, -110, 52, -148, -149, -150, 52, 52, -245, -249, -23, -58, -37, 52, -164, 52, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 52, 52, -98, -99, 52, 52, -103, -104, -105, -106, -107, -108, 52, -111, -112, -113, -114, -115, -116, 52, 52, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 52, -136, 52, -138, 52, 52, 52, 52, -143, -144, 52, 52, -250, 52, -252, 52, -246, -26, -38, 52, -44, -49, 52, -219, 52, 52, -220, 52, -254, -253, 52, -24, 52, -59, -92, -165, -199, -201, -202, -51, 52, 52, -96, -97, -100, -102, 52, -117, -118, -135, 52, 52, 52, -141, -142, 52, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 52, 52, 52, 52, -218, -134, 52, -156, -215, 52, 52, -216, 52, -137, -139, -140, -145, 52, -109, -166, -157]), 'FLOOR': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [53, 53, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 53, -152, -151, 53, -85, -86, -56, 53, -155, -2, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, -247, -40, -41, -82, -83, 53, -153, -84, -39, -52, 53, -53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 53, -251, 53, 53, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 53, -221, 53, 53, 53, 53, -101, -110, 53, -148, -149, -150, 53, 53, -245, -249, -23, -58, -37, 53, -164, 53, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 53, 53, -98, -99, 53, 53, -103, -104, -105, -106, -107, -108, 53, -111, -112, -113, -114, -115, -116, 53, 53, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 53, -136, 53, -138, 53, 53, 53, 53, -143, -144, 53, 53, -250, 53, -252, 53, -246, -26, -38, 53, -44, -49, 53, -219, 53, 53, -220, 53, -254, -253, 53, -24, 53, -59, -92, -165, -199, -201, -202, -51, 53, 53, -96, -97, -100, -102, 53, -117, -118, -135, 53, 53, 53, -141, -142, 53, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 53, 53, 53, 53, -218, -134, 53, -156, -215, 53, 53, -216, 53, -137, -139, -140, -145, 53, -109, -166, -157]), 'GCD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [54, 54, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 54, -152, -151, 54, -85, -86, -56, 54, -155, -2, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, -247, -40, -41, -82, -83, 54, -153, -84, -39, -52, 54, -53, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 54, -251, 54, 54, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 54, -221, 54, 54, 54, 54, -101, -110, 54, -148, -149, -150, 54, 54, -245, -249, -23, -58, -37, 54, -164, 54, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 54, 54, -98, -99, 54, 54, -103, -104, -105, -106, -107, -108, 54, -111, -112, -113, -114, -115, -116, 54, 54, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 54, -136, 54, -138, 54, 54, 54, 54, -143, -144, 54, 54, -250, 54, -252, 54, -246, -26, -38, 54, -44, -49, 54, -219, 54, 54, -220, 54, -254, -253, 54, -24, 54, -59, -92, -165, -199, -201, -202, -51, 54, 54, -96, -97, -100, -102, 54, -117, -118, -135, 54, 54, 54, -141, -142, 54, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 54, 54, 54, 54, -218, -134, 54, -156, -215, 54, 54, -216, 54, -137, -139, -140, -145, 54, -109, -166, -157]), 'LCM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [55, 55, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 55, -152, -151, 55, -85, -86, -56, 55, -155, -2, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, -247, -40, -41, -82, -83, 55, -153, -84, -39, -52, 55, -53, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 55, -251, 55, 55, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 55, -221, 55, 55, 55, 55, -101, -110, 55, -148, -149, -150, 55, 55, -245, -249, -23, -58, -37, 55, -164, 55, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 55, 55, -98, -99, 55, 55, -103, -104, -105, -106, -107, -108, 55, -111, -112, -113, -114, -115, -116, 55, 55, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 55, -136, 55, -138, 55, 55, 55, 55, -143, -144, 55, 55, -250, 55, -252, 55, -246, -26, -38, 55, -44, -49, 55, -219, 55, 55, -220, 55, -254, -253, 55, -24, 55, -59, -92, -165, -199, -201, -202, -51, 55, 55, -96, -97, -100, -102, 55, -117, -118, -135, 55, 55, 55, -141, -142, 55, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 55, 55, 55, 55, -218, -134, 55, -156, -215, 55, 55, -216, 55, -137, -139, -140, -145, 55, -109, -166, -157]), 'LN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [56, 56, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 56, -152, -151, 56, -85, -86, -56, 56, -155, -2, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, -247, -40, -41, -82, -83, 56, -153, -84, -39, -52, 56, -53, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 56, -251, 56, 56, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 56, -221, 56, 56, 56, 56, -101, -110, 56, -148, -149, -150, 56, 56, -245, -249, -23, -58, -37, 56, -164, 56, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 56, 56, -98, -99, 56, 56, -103, -104, -105, -106, -107, -108, 56, -111, -112, -113, -114, -115, -116, 56, 56, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 56, -136, 56, -138, 56, 56, 56, 56, -143, -144, 56, 56, -250, 56, -252, 56, -246, -26, -38, 56, -44, -49, 56, -219, 56, 56, -220, 56, -254, -253, 56, -24, 56, -59, -92, -165, -199, -201, -202, -51, 56, 56, -96, -97, -100, -102, 56, -117, -118, -135, 56, 56, 56, -141, -142, 56, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 56, 56, 56, 56, -218, -134, 56, -156, -215, 56, 56, -216, 56, -137, -139, -140, -145, 56, -109, -166, -157]), 'LOG': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [57, 57, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 57, -152, -151, 57, -85, -86, -56, 57, -155, -2, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, -247, -40, -41, -82, -83, 57, -153, -84, -39, -52, 57, -53, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 57, -251, 57, 57, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 57, -221, 57, 57, 57, 57, -101, -110, 57, -148, -149, -150, 57, 57, -245, -249, -23, -58, -37, 57, -164, 57, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 57, 57, -98, -99, 57, 57, -103, -104, -105, -106, -107, -108, 57, -111, -112, -113, -114, -115, -116, 57, 57, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 57, -136, 57, -138, 57, 57, 57, 57, -143, -144, 57, 57, -250, 57, -252, 57, -246, -26, -38, 57, -44, -49, 57, -219, 57, 57, -220, 57, -254, -253, 57, -24, 57, -59, -92, -165, -199, -201, -202, -51, 57, 57, -96, -97, -100, -102, 57, -117, -118, -135, 57, 57, 57, -141, -142, 57, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 57, 57, 57, 57, -218, -134, 57, -156, -215, 57, 57, -216, 57, -137, -139, -140, -145, 57, -109, -166, -157]), 'MOD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [58, 58, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 58, -152, -151, 58, -85, -86, -56, 58, -155, -2, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, -247, -40, -41, -82, -83, 58, -153, -84, -39, -52, 58, -53, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 58, -251, 58, 58, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 58, -221, 58, 58, 58, 58, -101, -110, 58, -148, -149, -150, 58, 58, -245, -249, -23, -58, -37, 58, -164, 58, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 58, 58, -98, -99, 58, 58, -103, -104, -105, -106, -107, -108, 58, -111, -112, -113, -114, -115, -116, 58, 58, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 58, -136, 58, -138, 58, 58, 58, 58, -143, -144, 58, 58, -250, 58, -252, 58, -246, -26, -38, 58, -44, -49, 58, -219, 58, 58, -220, 58, -254, -253, 58, -24, 58, -59, -92, -165, -199, -201, -202, -51, 58, 58, -96, -97, -100, -102, 58, -117, -118, -135, 58, 58, 58, -141, -142, 58, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 58, 58, 58, 58, -218, -134, 58, -156, -215, 58, 58, -216, 58, -137, -139, -140, -145, 58, -109, -166, -157]), 'PI': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [59, 59, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 59, -152, -151, 59, -85, -86, -56, 59, -155, -2, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, -247, -40, -41, -82, -83, 59, -153, -84, -39, -52, 59, -53, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 59, -251, 59, 59, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 59, -221, 59, 59, 59, 59, -101, -110, 59, -148, -149, -150, 59, 59, -245, -249, -23, -58, -37, 59, -164, 59, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 59, 59, -98, -99, 59, 59, -103, -104, -105, -106, -107, -108, 59, -111, -112, -113, -114, -115, -116, 59, 59, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 59, -136, 59, -138, 59, 59, 59, 59, -143, -144, 59, 59, -250, 59, -252, 59, -246, -26, -38, 59, -44, -49, 59, -219, 59, 59, -220, 59, -254, -253, 59, -24, 59, -59, -92, -165, -199, -201, -202, -51, 59, 59, -96, -97, -100, -102, 59, -117, -118, -135, 59, 59, 59, -141, -142, 59, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 59, 59, 59, 59, -218, -134, 59, -156, -215, 59, 59, -216, 59, -137, -139, -140, -145, 59, -109, -166, -157]), 'POWER': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [60, 60, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 60, -152, -151, 60, -85, -86, -56, 60, -155, -2, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, -247, -40, -41, -82, -83, 60, -153, -84, -39, -52, 60, -53, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 60, -251, 60, 60, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 60, -221, 60, 60, 60, 60, -101, -110, 60, -148, -149, -150, 60, 60, -245, -249, -23, -58, -37, 60, -164, 60, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 60, 60, -98, -99, 60, 60, -103, -104, -105, -106, -107, -108, 60, -111, -112, -113, -114, -115, -116, 60, 60, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 60, -136, 60, -138, 60, 60, 60, 60, -143, -144, 60, 60, -250, 60, -252, 60, -246, -26, -38, 60, -44, -49, 60, -219, 60, 60, -220, 60, -254, -253, 60, -24, 60, -59, -92, -165, -199, -201, -202, -51, 60, 60, -96, -97, -100, -102, 60, -117, -118, -135, 60, 60, 60, -141, -142, 60, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 60, 60, 60, 60, -218, -134, 60, -156, -215, 60, 60, -216, 60, -137, -139, -140, -145, 60, -109, -166, -157]), 'RADIANS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [61, 61, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 61, -152, -151, 61, -85, -86, -56, 61, -155, -2, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -247, -40, -41, -82, -83, 61, -153, -84, -39, -52, 61, -53, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 61, -251, 61, 61, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 61, -221, 61, 61, 61, 61, -101, -110, 61, -148, -149, -150, 61, 61, -245, -249, -23, -58, -37, 61, -164, 61, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 61, 61, -98, -99, 61, 61, -103, -104, -105, -106, -107, -108, 61, -111, -112, -113, -114, -115, -116, 61, 61, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 61, -136, 61, -138, 61, 61, 61, 61, -143, -144, 61, 61, -250, 61, -252, 61, -246, -26, -38, 61, -44, -49, 61, -219, 61, 61, -220, 61, -254, -253, 61, -24, 61, -59, -92, -165, -199, -201, -202, -51, 61, 61, -96, -97, -100, -102, 61, -117, -118, -135, 61, 61, 61, -141, -142, 61, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 61, 61, 61, 61, -218, -134, 61, -156, -215, 61, 61, -216, 61, -137, -139, -140, -145, 61, -109, -166, -157]), 'ROUND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [62, 62, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 62, -152, -151, 62, -85, -86, -56, 62, -155, -2, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, -247, -40, -41, -82, -83, 62, -153, -84, -39, -52, 62, -53, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 62, -251, 62, 62, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 62, -221, 62, 62, 62, 62, -101, -110, 62, -148, -149, -150, 62, 62, -245, -249, -23, -58, -37, 62, -164, 62, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 62, 62, -98, -99, 62, 62, -103, -104, -105, -106, -107, -108, 62, -111, -112, -113, -114, -115, -116, 62, 62, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 62, -136, 62, -138, 62, 62, 62, 62, -143, -144, 62, 62, -250, 62, -252, 62, -246, -26, -38, 62, -44, -49, 62, -219, 62, 62, -220, 62, -254, -253, 62, -24, 62, -59, -92, -165, -199, -201, -202, -51, 62, 62, -96, -97, -100, -102, 62, -117, -118, -135, 62, 62, 62, -141, -142, 62, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 62, 62, 62, 62, -218, -134, 62, -156, -215, 62, 62, -216, 62, -137, -139, -140, -145, 62, -109, -166, -157]), 'SIGN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [63, 63, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 63, -152, -151, 63, -85, -86, -56, 63, -155, -2, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, -247, -40, -41, -82, -83, 63, -153, -84, -39, -52, 63, -53, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 63, -251, 63, 63, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 63, -221, 63, 63, 63, 63, -101, -110, 63, -148, -149, -150, 63, 63, -245, -249, -23, -58, -37, 63, -164, 63, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 63, 63, -98, -99, 63, 63, -103, -104, -105, -106, -107, -108, 63, -111, -112, -113, -114, -115, -116, 63, 63, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 63, -136, 63, -138, 63, 63, 63, 63, -143, -144, 63, 63, -250, 63, -252, 63, -246, -26, -38, 63, -44, -49, 63, -219, 63, 63, -220, 63, -254, -253, 63, -24, 63, -59, -92, -165, -199, -201, -202, -51, 63, 63, -96, -97, -100, -102, 63, -117, -118, -135, 63, 63, 63, -141, -142, 63, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 63, 63, 63, 63, -218, -134, 63, -156, -215, 63, 63, -216, 63, -137, -139, -140, -145, 63, -109, -166, -157]), 'SQRT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [64, 64, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 64, -152, -151, 64, -85, -86, -56, 64, -155, -2, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, -247, -40, -41, -82, -83, 64, -153, -84, -39, -52, 64, -53, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 64, -251, 64, 64, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 64, -221, 64, 64, 64, 64, -101, -110, 64, -148, -149, -150, 64, 64, -245, -249, -23, -58, -37, 64, -164, 64, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 64, 64, -98, -99, 64, 64, -103, -104, -105, -106, -107, -108, 64, -111, -112, -113, -114, -115, -116, 64, 64, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 64, -136, 64, -138, 64, 64, 64, 64, -143, -144, 64, 64, -250, 64, -252, 64, -246, -26, -38, 64, -44, -49, 64, -219, 64, 64, -220, 64, -254, -253, 64, -24, 64, -59, -92, -165, -199, -201, -202, -51, 64, 64, -96, -97, -100, -102, 64, -117, -118, -135, 64, 64, 64, -141, -142, 64, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 64, 64, 64, 64, -218, -134, 64, -156, -215, 64, 64, -216, 64, -137, -139, -140, -145, 64, -109, -166, -157]), 'TRIM_SCALE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [65, 65, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 65, -152, -151, 65, -85, -86, -56, 65, -155, -2, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, -247, -40, -41, -82, -83, 65, -153, -84, -39, -52, 65, -53, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 65, -251, 65, 65, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 65, -221, 65, 65, 65, 65, -101, -110, 65, -148, -149, -150, 65, 65, -245, -249, -23, -58, -37, 65, -164, 65, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 65, 65, -98, -99, 65, 65, -103, -104, -105, -106, -107, -108, 65, -111, -112, -113, -114, -115, -116, 65, 65, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 65, -136, 65, -138, 65, 65, 65, 65, -143, -144, 65, 65, -250, 65, -252, 65, -246, -26, -38, 65, -44, -49, 65, -219, 65, 65, -220, 65, -254, -253, 65, -24, 65, -59, -92, -165, -199, -201, -202, -51, 65, 65, -96, -97, -100, -102, 65, -117, -118, -135, 65, 65, 65, -141, -142, 65, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 65, 65, 65, 65, -218, -134, 65, -156, -215, 65, 65, -216, 65, -137, -139, -140, -145, 65, -109, -166, -157]), 'TRUNC': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [66, 66, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 66, -152, -151, 66, -85, -86, -56, 66, -155, -2, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, -247, -40, -41, -82, -83, 66, -153, -84, -39, -52, 66, -53, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 66, -251, 66, 66, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 66, -221, 66, 66, 66, 66, -101, -110, 66, -148, -149, -150, 66, 66, -245, -249, -23, -58, -37, 66, -164, 66, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 66, 66, -98, -99, 66, 66, -103, -104, -105, -106, -107, -108, 66, -111, -112, -113, -114, -115, -116, 66, 66, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 66, -136, 66, -138, 66, 66, 66, 66, -143, -144, 66, 66, -250, 66, -252, 66, -246, -26, -38, 66, -44, -49, 66, -219, 66, 66, -220, 66, -254, -253, 66, -24, 66, -59, -92, -165, -199, -201, -202, -51, 66, 66, -96, -97, -100, -102, 66, -117, -118, -135, 66, 66, 66, -141, -142, 66, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 66, 66, 66, 66, -218, -134, 66, -156, -215, 66, 66, -216, 66, -137, -139, -140, -145, 66, -109, -166, -157]), 'WIDTH_BUCKET': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [67, 67, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 67, -152, -151, 67, -85, -86, -56, 67, -155, -2, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, -247, -40, -41, -82, -83, 67, -153, -84, -39, -52, 67, -53, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 67, -251, 67, 67, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 67, -221, 67, 67, 67, 67, -101, -110, 67, -148, -149, -150, 67, 67, -245, -249, -23, -58, -37, 67, -164, 67, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 67, 67, -98, -99, 67, 67, -103, -104, -105, -106, -107, -108, 67, -111, -112, -113, -114, -115, -116, 67, 67, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 67, -136, 67, -138, 67, 67, 67, 67, -143, -144, 67, 67, -250, 67, -252, 67, -246, -26, -38, 67, -44, -49, 67, -219, 67, 67, -220, 67, -254, -253, 67, -24, 67, -59, -92, -165, -199, -201, -202, -51, 67, 67, -96, -97, -100, -102, 67, -117, -118, -135, 67, 67, 67, -141, -142, 67, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 67, 67, 67, 67, -218, -134, 67, -156, -215, 67, 67, -216, 67, -137, -139, -140, -145, 67, -109, -166, -157]), 'RANDOM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [68, 68, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 68, -152, -151, 68, -85, -86, -56, 68, -155, -2, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, -247, -40, -41, -82, -83, 68, -153, -84, -39, -52, 68, -53, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 68, -251, 68, 68, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 68, -221, 68, 68, 68, 68, -101, -110, 68, -148, -149, -150, 68, 68, -245, -249, -23, -58, -37, 68, -164, 68, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 68, 68, -98, -99, 68, 68, -103, -104, -105, -106, -107, -108, 68, -111, -112, -113, -114, -115, -116, 68, 68, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 68, -136, 68, -138, 68, 68, 68, 68, -143, -144, 68, 68, -250, 68, -252, 68, -246, -26, -38, 68, -44, -49, 68, -219, 68, 68, -220, 68, -254, -253, 68, -24, 68, -59, -92, -165, -199, -201, -202, -51, 68, 68, -96, -97, -100, -102, 68, -117, -118, -135, 68, 68, 68, -141, -142, 68, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 68, 68, 68, 68, -218, -134, 68, -156, -215, 68, 68, -216, 68, -137, -139, -140, -145, 68, -109, -166, -157]), 'ACOS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [69, 69, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 69, -152, -151, 69, -85, -86, -56, 69, -155, -2, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, -247, -40, -41, -82, -83, 69, -153, -84, -39, -52, 69, -53, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 69, -251, 69, 69, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 69, -221, 69, 69, 69, 69, -101, -110, 69, -148, -149, -150, 69, 69, -245, -249, -23, -58, -37, 69, -164, 69, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 69, 69, -98, -99, 69, 69, -103, -104, -105, -106, -107, -108, 69, -111, -112, -113, -114, -115, -116, 69, 69, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 69, -136, 69, -138, 69, 69, 69, 69, -143, -144, 69, 69, -250, 69, -252, 69, -246, -26, -38, 69, -44, -49, 69, -219, 69, 69, -220, 69, -254, -253, 69, -24, 69, -59, -92, -165, -199, -201, -202, -51, 69, 69, -96, -97, -100, -102, 69, -117, -118, -135, 69, 69, 69, -141, -142, 69, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 69, 69, 69, 69, -218, -134, 69, -156, -215, 69, 69, -216, 69, -137, -139, -140, -145, 69, -109, -166, -157]), 'ACOSD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [70, 70, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 70, -152, -151, 70, -85, -86, -56, 70, -155, -2, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, -247, -40, -41, -82, -83, 70, -153, -84, -39, -52, 70, -53, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 70, -251, 70, 70, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 70, -221, 70, 70, 70, 70, -101, -110, 70, -148, -149, -150, 70, 70, -245, -249, -23, -58, -37, 70, -164, 70, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 70, 70, -98, -99, 70, 70, -103, -104, -105, -106, -107, -108, 70, -111, -112, -113, -114, -115, -116, 70, 70, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 70, -136, 70, -138, 70, 70, 70, 70, -143, -144, 70, 70, -250, 70, -252, 70, -246, -26, -38, 70, -44, -49, 70, -219, 70, 70, -220, 70, -254, -253, 70, -24, 70, -59, -92, -165, -199, -201, -202, -51, 70, 70, -96, -97, -100, -102, 70, -117, -118, -135, 70, 70, 70, -141, -142, 70, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 70, 70, 70, 70, -218, -134, 70, -156, -215, 70, 70, -216, 70, -137, -139, -140, -145, 70, -109, -166, -157]), 'ASIN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [71, 71, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 71, -152, -151, 71, -85, -86, -56, 71, -155, -2, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, -247, -40, -41, -82, -83, 71, -153, -84, -39, -52, 71, -53, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 71, -251, 71, 71, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 71, -221, 71, 71, 71, 71, -101, -110, 71, -148, -149, -150, 71, 71, -245, -249, -23, -58, -37, 71, -164, 71, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 71, 71, -98, -99, 71, 71, -103, -104, -105, -106, -107, -108, 71, -111, -112, -113, -114, -115, -116, 71, 71, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 71, -136, 71, -138, 71, 71, 71, 71, -143, -144, 71, 71, -250, 71, -252, 71, -246, -26, -38, 71, -44, -49, 71, -219, 71, 71, -220, 71, -254, -253, 71, -24, 71, -59, -92, -165, -199, -201, -202, -51, 71, 71, -96, -97, -100, -102, 71, -117, -118, -135, 71, 71, 71, -141, -142, 71, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 71, 71, 71, 71, -218, -134, 71, -156, -215, 71, 71, -216, 71, -137, -139, -140, -145, 71, -109, -166, -157]), 'ASIND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [72, 72, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 72, -152, -151, 72, -85, -86, -56, 72, -155, -2, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -247, -40, -41, -82, -83, 72, -153, -84, -39, -52, 72, -53, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 72, -251, 72, 72, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 72, -221, 72, 72, 72, 72, -101, -110, 72, -148, -149, -150, 72, 72, -245, -249, -23, -58, -37, 72, -164, 72, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 72, 72, -98, -99, 72, 72, -103, -104, -105, -106, -107, -108, 72, -111, -112, -113, -114, -115, -116, 72, 72, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 72, -136, 72, -138, 72, 72, 72, 72, -143, -144, 72, 72, -250, 72, -252, 72, -246, -26, -38, 72, -44, -49, 72, -219, 72, 72, -220, 72, -254, -253, 72, -24, 72, -59, -92, -165, -199, -201, -202, -51, 72, 72, -96, -97, -100, -102, 72, -117, -118, -135, 72, 72, 72, -141, -142, 72, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 72, 72, 72, 72, -218, -134, 72, -156, -215, 72, 72, -216, 72, -137, -139, -140, -145, 72, -109, -166, -157]), 'ATAN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [73, 73, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 73, -152, -151, 73, -85, -86, -56, 73, -155, -2, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, -247, -40, -41, -82, -83, 73, -153, -84, -39, -52, 73, -53, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 73, -251, 73, 73, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 73, -221, 73, 73, 73, 73, -101, -110, 73, -148, -149, -150, 73, 73, -245, -249, -23, -58, -37, 73, -164, 73, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 73, 73, -98, -99, 73, 73, -103, -104, -105, -106, -107, -108, 73, -111, -112, -113, -114, -115, -116, 73, 73, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 73, -136, 73, -138, 73, 73, 73, 73, -143, -144, 73, 73, -250, 73, -252, 73, -246, -26, -38, 73, -44, -49, 73, -219, 73, 73, -220, 73, -254, -253, 73, -24, 73, -59, -92, -165, -199, -201, -202, -51, 73, 73, -96, -97, -100, -102, 73, -117, -118, -135, 73, 73, 73, -141, -142, 73, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 73, 73, 73, 73, -218, -134, 73, -156, -215, 73, 73, -216, 73, -137, -139, -140, -145, 73, -109, -166, -157]), 'ATAND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [74, 74, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 74, -152, -151, 74, -85, -86, -56, 74, -155, -2, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, -247, -40, -41, -82, -83, 74, -153, -84, -39, -52, 74, -53, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 74, -251, 74, 74, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 74, -221, 74, 74, 74, 74, -101, -110, 74, -148, -149, -150, 74, 74, -245, -249, -23, -58, -37, 74, -164, 74, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 74, 74, -98, -99, 74, 74, -103, -104, -105, -106, -107, -108, 74, -111, -112, -113, -114, -115, -116, 74, 74, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 74, -136, 74, -138, 74, 74, 74, 74, -143, -144, 74, 74, -250, 74, -252, 74, -246, -26, -38, 74, -44, -49, 74, -219, 74, 74, -220, 74, -254, -253, 74, -24, 74, -59, -92, -165, -199, -201, -202, -51, 74, 74, -96, -97, -100, -102, 74, -117, -118, -135, 74, 74, 74, -141, -142, 74, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 74, 74, 74, 74, -218, -134, 74, -156, -215, 74, 74, -216, 74, -137, -139, -140, -145, 74, -109, -166, -157]), 'ATAN2': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [75, 75, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 75, -152, -151, 75, -85, -86, -56, 75, -155, -2, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, -247, -40, -41, -82, -83, 75, -153, -84, -39, -52, 75, -53, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 75, -251, 75, 75, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 75, -221, 75, 75, 75, 75, -101, -110, 75, -148, -149, -150, 75, 75, -245, -249, -23, -58, -37, 75, -164, 75, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 75, 75, -98, -99, 75, 75, -103, -104, -105, -106, -107, -108, 75, -111, -112, -113, -114, -115, -116, 75, 75, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 75, -136, 75, -138, 75, 75, 75, 75, -143, -144, 75, 75, -250, 75, -252, 75, -246, -26, -38, 75, -44, -49, 75, -219, 75, 75, -220, 75, -254, -253, 75, -24, 75, -59, -92, -165, -199, -201, -202, -51, 75, 75, -96, -97, -100, -102, 75, -117, -118, -135, 75, 75, 75, -141, -142, 75, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 75, 75, 75, 75, -218, -134, 75, -156, -215, 75, 75, -216, 75, -137, -139, -140, -145, 75, -109, -166, -157]), 'ATAN2D': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [76, 76, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 76, -152, -151, 76, -85, -86, -56, 76, -155, -2, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, -247, -40, -41, -82, -83, 76, -153, -84, -39, -52, 76, -53, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 76, -251, 76, 76, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 76, -221, 76, 76, 76, 76, -101, -110, 76, -148, -149, -150, 76, 76, -245, -249, -23, -58, -37, 76, -164, 76, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 76, 76, -98, -99, 76, 76, -103, -104, -105, -106, -107, -108, 76, -111, -112, -113, -114, -115, -116, 76, 76, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 76, -136, 76, -138, 76, 76, 76, 76, -143, -144, 76, 76, -250, 76, -252, 76, -246, -26, -38, 76, -44, -49, 76, -219, 76, 76, -220, 76, -254, -253, 76, -24, 76, -59, -92, -165, -199, -201, -202, -51, 76, 76, -96, -97, -100, -102, 76, -117, -118, -135, 76, 76, 76, -141, -142, 76, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 76, 76, 76, 76, -218, -134, 76, -156, -215, 76, 76, -216, 76, -137, -139, -140, -145, 76, -109, -166, -157]), 'COS': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [77, 77, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 77, -152, -151, 77, -85, -86, -56, 77, -155, -2, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, -247, -40, -41, -82, -83, 77, -153, -84, -39, -52, 77, -53, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 77, -251, 77, 77, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 77, -221, 77, 77, 77, 77, -101, -110, 77, -148, -149, -150, 77, 77, -245, -249, -23, -58, -37, 77, -164, 77, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 77, 77, -98, -99, 77, 77, -103, -104, -105, -106, -107, -108, 77, -111, -112, -113, -114, -115, -116, 77, 77, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 77, -136, 77, -138, 77, 77, 77, 77, -143, -144, 77, 77, -250, 77, -252, 77, -246, -26, -38, 77, -44, -49, 77, -219, 77, 77, -220, 77, -254, -253, 77, -24, 77, -59, -92, -165, -199, -201, -202, -51, 77, 77, -96, -97, -100, -102, 77, -117, -118, -135, 77, 77, 77, -141, -142, 77, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 77, 77, 77, 77, -218, -134, 77, -156, -215, 77, 77, -216, 77, -137, -139, -140, -145, 77, -109, -166, -157]), 'COSD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [78, 78, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 78, -152, -151, 78, -85, -86, -56, 78, -155, -2, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, -247, -40, -41, -82, -83, 78, -153, -84, -39, -52, 78, -53, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 78, -251, 78, 78, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 78, -221, 78, 78, 78, 78, -101, -110, 78, -148, -149, -150, 78, 78, -245, -249, -23, -58, -37, 78, -164, 78, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 78, 78, -98, -99, 78, 78, -103, -104, -105, -106, -107, -108, 78, -111, -112, -113, -114, -115, -116, 78, 78, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 78, -136, 78, -138, 78, 78, 78, 78, -143, -144, 78, 78, -250, 78, -252, 78, -246, -26, -38, 78, -44, -49, 78, -219, 78, 78, -220, 78, -254, -253, 78, -24, 78, -59, -92, -165, -199, -201, -202, -51, 78, 78, -96, -97, -100, -102, 78, -117, -118, -135, 78, 78, 78, -141, -142, 78, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 78, 78, 78, 78, -218, -134, 78, -156, -215, 78, 78, -216, 78, -137, -139, -140, -145, 78, -109, -166, -157]), 'COT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [79, 79, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 79, -152, -151, 79, -85, -86, -56, 79, -155, -2, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, -247, -40, -41, -82, -83, 79, -153, -84, -39, -52, 79, -53, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 79, -251, 79, 79, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 79, -221, 79, 79, 79, 79, -101, -110, 79, -148, -149, -150, 79, 79, -245, -249, -23, -58, -37, 79, -164, 79, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 79, 79, -98, -99, 79, 79, -103, -104, -105, -106, -107, -108, 79, -111, -112, -113, -114, -115, -116, 79, 79, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 79, -136, 79, -138, 79, 79, 79, 79, -143, -144, 79, 79, -250, 79, -252, 79, -246, -26, -38, 79, -44, -49, 79, -219, 79, 79, -220, 79, -254, -253, 79, -24, 79, -59, -92, -165, -199, -201, -202, -51, 79, 79, -96, -97, -100, -102, 79, -117, -118, -135, 79, 79, 79, -141, -142, 79, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 79, 79, 79, 79, -218, -134, 79, -156, -215, 79, 79, -216, 79, -137, -139, -140, -145, 79, -109, -166, -157]), 'COTD': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [80, 80, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 80, -152, -151, 80, -85, -86, -56, 80, -155, -2, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, -247, -40, -41, -82, -83, 80, -153, -84, -39, -52, 80, -53, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 80, -251, 80, 80, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 80, -221, 80, 80, 80, 80, -101, -110, 80, -148, -149, -150, 80, 80, -245, -249, -23, -58, -37, 80, -164, 80, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 80, 80, -98, -99, 80, 80, -103, -104, -105, -106, -107, -108, 80, -111, -112, -113, -114, -115, -116, 80, 80, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 80, -136, 80, -138, 80, 80, 80, 80, -143, -144, 80, 80, -250, 80, -252, 80, -246, -26, -38, 80, -44, -49, 80, -219, 80, 80, -220, 80, -254, -253, 80, -24, 80, -59, -92, -165, -199, -201, -202, -51, 80, 80, -96, -97, -100, -102, 80, -117, -118, -135, 80, 80, 80, -141, -142, 80, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 80, 80, 80, 80, -218, -134, 80, -156, -215, 80, 80, -216, 80, -137, -139, -140, -145, 80, -109, -166, -157]), 'SIN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [81, 81, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 81, -152, -151, 81, -85, -86, -56, 81, -155, -2, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, -247, -40, -41, -82, -83, 81, -153, -84, -39, -52, 81, -53, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 81, -251, 81, 81, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 81, -221, 81, 81, 81, 81, -101, -110, 81, -148, -149, -150, 81, 81, -245, -249, -23, -58, -37, 81, -164, 81, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 81, 81, -98, -99, 81, 81, -103, -104, -105, -106, -107, -108, 81, -111, -112, -113, -114, -115, -116, 81, 81, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 81, -136, 81, -138, 81, 81, 81, 81, -143, -144, 81, 81, -250, 81, -252, 81, -246, -26, -38, 81, -44, -49, 81, -219, 81, 81, -220, 81, -254, -253, 81, -24, 81, -59, -92, -165, -199, -201, -202, -51, 81, 81, -96, -97, -100, -102, 81, -117, -118, -135, 81, 81, 81, -141, -142, 81, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 81, 81, 81, 81, -218, -134, 81, -156, -215, 81, 81, -216, 81, -137, -139, -140, -145, 81, -109, -166, -157]), 'SIND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [82, 82, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 82, -152, -151, 82, -85, -86, -56, 82, -155, -2, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, -247, -40, -41, -82, -83, 82, -153, -84, -39, -52, 82, -53, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 82, -251, 82, 82, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 82, -221, 82, 82, 82, 82, -101, -110, 82, -148, -149, -150, 82, 82, -245, -249, -23, -58, -37, 82, -164, 82, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 82, 82, -98, -99, 82, 82, -103, -104, -105, -106, -107, -108, 82, -111, -112, -113, -114, -115, -116, 82, 82, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 82, -136, 82, -138, 82, 82, 82, 82, -143, -144, 82, 82, -250, 82, -252, 82, -246, -26, -38, 82, -44, -49, 82, -219, 82, 82, -220, 82, -254, -253, 82, -24, 82, -59, -92, -165, -199, -201, -202, -51, 82, 82, -96, -97, -100, -102, 82, -117, -118, -135, 82, 82, 82, -141, -142, 82, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 82, 82, 82, 82, -218, -134, 82, -156, -215, 82, 82, -216, 82, -137, -139, -140, -145, 82, -109, -166, -157]), 'TAN': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [83, 83, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 83, -152, -151, 83, -85, -86, -56, 83, -155, -2, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, -247, -40, -41, -82, -83, 83, -153, -84, -39, -52, 83, -53, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 83, -251, 83, 83, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 83, -221, 83, 83, 83, 83, -101, -110, 83, -148, -149, -150, 83, 83, -245, -249, -23, -58, -37, 83, -164, 83, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 83, 83, -98, -99, 83, 83, -103, -104, -105, -106, -107, -108, 83, -111, -112, -113, -114, -115, -116, 83, 83, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 83, -136, 83, -138, 83, 83, 83, 83, -143, -144, 83, 83, -250, 83, -252, 83, -246, -26, -38, 83, -44, -49, 83, -219, 83, 83, -220, 83, -254, -253, 83, -24, 83, -59, -92, -165, -199, -201, -202, -51, 83, 83, -96, -97, -100, -102, 83, -117, -118, -135, 83, 83, 83, -141, -142, 83, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 83, 83, 83, 83, -218, -134, 83, -156, -215, 83, 83, -216, 83, -137, -139, -140, -145, 83, -109, -166, -157]), 'TAND': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [84, 84, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 84, -152, -151, 84, -85, -86, -56, 84, -155, -2, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, -247, -40, -41, -82, -83, 84, -153, -84, -39, -52, 84, -53, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 84, -251, 84, 84, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 84, -221, 84, 84, 84, 84, -101, -110, 84, -148, -149, -150, 84, 84, -245, -249, -23, -58, -37, 84, -164, 84, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 84, 84, -98, -99, 84, 84, -103, -104, -105, -106, -107, -108, 84, -111, -112, -113, -114, -115, -116, 84, 84, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 84, -136, 84, -138, 84, 84, 84, 84, -143, -144, 84, 84, -250, 84, -252, 84, -246, -26, -38, 84, -44, -49, 84, -219, 84, 84, -220, 84, -254, -253, 84, -24, 84, -59, -92, -165, -199, -201, -202, -51, 84, 84, -96, -97, -100, -102, 84, -117, -118, -135, 84, 84, 84, -141, -142, 84, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 84, 84, 84, 84, -218, -134, 84, -156, -215, 84, 84, -216, 84, -137, -139, -140, -145, 84, -109, -166, -157]), 'SINH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [85, 85, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 85, -152, -151, 85, -85, -86, -56, 85, -155, -2, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, -247, -40, -41, -82, -83, 85, -153, -84, -39, -52, 85, -53, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 85, -251, 85, 85, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 85, -221, 85, 85, 85, 85, -101, -110, 85, -148, -149, -150, 85, 85, -245, -249, -23, -58, -37, 85, -164, 85, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 85, 85, -98, -99, 85, 85, -103, -104, -105, -106, -107, -108, 85, -111, -112, -113, -114, -115, -116, 85, 85, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 85, -136, 85, -138, 85, 85, 85, 85, -143, -144, 85, 85, -250, 85, -252, 85, -246, -26, -38, 85, -44, -49, 85, -219, 85, 85, -220, 85, -254, -253, 85, -24, 85, -59, -92, -165, -199, -201, -202, -51, 85, 85, -96, -97, -100, -102, 85, -117, -118, -135, 85, 85, 85, -141, -142, 85, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 85, 85, 85, 85, -218, -134, 85, -156, -215, 85, 85, -216, 85, -137, -139, -140, -145, 85, -109, -166, -157]), 'COSH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [86, 86, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 86, -152, -151, 86, -85, -86, -56, 86, -155, -2, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, -247, -40, -41, -82, -83, 86, -153, -84, -39, -52, 86, -53, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 86, -251, 86, 86, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 86, -221, 86, 86, 86, 86, -101, -110, 86, -148, -149, -150, 86, 86, -245, -249, -23, -58, -37, 86, -164, 86, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 86, 86, -98, -99, 86, 86, -103, -104, -105, -106, -107, -108, 86, -111, -112, -113, -114, -115, -116, 86, 86, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 86, -136, 86, -138, 86, 86, 86, 86, -143, -144, 86, 86, -250, 86, -252, 86, -246, -26, -38, 86, -44, -49, 86, -219, 86, 86, -220, 86, -254, -253, 86, -24, 86, -59, -92, -165, -199, -201, -202, -51, 86, 86, -96, -97, -100, -102, 86, -117, -118, -135, 86, 86, 86, -141, -142, 86, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 86, 86, 86, 86, -218, -134, 86, -156, -215, 86, 86, -216, 86, -137, -139, -140, -145, 86, -109, -166, -157]), 'TANH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [87, 87, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 87, -152, -151, 87, -85, -86, -56, 87, -155, -2, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, -247, -40, -41, -82, -83, 87, -153, -84, -39, -52, 87, -53, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 87, -251, 87, 87, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 87, -221, 87, 87, 87, 87, -101, -110, 87, -148, -149, -150, 87, 87, -245, -249, -23, -58, -37, 87, -164, 87, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 87, 87, -98, -99, 87, 87, -103, -104, -105, -106, -107, -108, 87, -111, -112, -113, -114, -115, -116, 87, 87, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 87, -136, 87, -138, 87, 87, 87, 87, -143, -144, 87, 87, -250, 87, -252, 87, -246, -26, -38, 87, -44, -49, 87, -219, 87, 87, -220, 87, -254, -253, 87, -24, 87, -59, -92, -165, -199, -201, -202, -51, 87, 87, -96, -97, -100, -102, 87, -117, -118, -135, 87, 87, 87, -141, -142, 87, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 87, 87, 87, 87, -218, -134, 87, -156, -215, 87, 87, -216, 87, -137, -139, -140, -145, 87, -109, -166, -157]), 'ASINH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [88, 88, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 88, -152, -151, 88, -85, -86, -56, 88, -155, -2, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, -247, -40, -41, -82, -83, 88, -153, -84, -39, -52, 88, -53, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 88, -251, 88, 88, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 88, -221, 88, 88, 88, 88, -101, -110, 88, -148, -149, -150, 88, 88, -245, -249, -23, -58, -37, 88, -164, 88, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 88, 88, -98, -99, 88, 88, -103, -104, -105, -106, -107, -108, 88, -111, -112, -113, -114, -115, -116, 88, 88, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 88, -136, 88, -138, 88, 88, 88, 88, -143, -144, 88, 88, -250, 88, -252, 88, -246, -26, -38, 88, -44, -49, 88, -219, 88, 88, -220, 88, -254, -253, 88, -24, 88, -59, -92, -165, -199, -201, -202, -51, 88, 88, -96, -97, -100, -102, 88, -117, -118, -135, 88, 88, 88, -141, -142, 88, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 88, 88, 88, 88, -218, -134, 88, -156, -215, 88, 88, -216, 88, -137, -139, -140, -145, 88, -109, -166, -157]), 'ACOSH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [89, 89, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 89, -152, -151, 89, -85, -86, -56, 89, -155, -2, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, -247, -40, -41, -82, -83, 89, -153, -84, -39, -52, 89, -53, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 89, -251, 89, 89, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 89, -221, 89, 89, 89, 89, -101, -110, 89, -148, -149, -150, 89, 89, -245, -249, -23, -58, -37, 89, -164, 89, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 89, 89, -98, -99, 89, 89, -103, -104, -105, -106, -107, -108, 89, -111, -112, -113, -114, -115, -116, 89, 89, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 89, -136, 89, -138, 89, 89, 89, 89, -143, -144, 89, 89, -250, 89, -252, 89, -246, -26, -38, 89, -44, -49, 89, -219, 89, 89, -220, 89, -254, -253, 89, -24, 89, -59, -92, -165, -199, -201, -202, -51, 89, 89, -96, -97, -100, -102, 89, -117, -118, -135, 89, 89, 89, -141, -142, 89, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 89, 89, 89, 89, -218, -134, 89, -156, -215, 89, 89, -216, 89, -137, -139, -140, -145, 89, -109, -166, -157]), 'ATANH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [90, 90, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 90, -152, -151, 90, -85, -86, -56, 90, -155, -2, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, -247, -40, -41, -82, -83, 90, -153, -84, -39, -52, 90, -53, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 90, -251, 90, 90, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 90, -221, 90, 90, 90, 90, -101, -110, 90, -148, -149, -150, 90, 90, -245, -249, -23, -58, -37, 90, -164, 90, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 90, 90, -98, -99, 90, 90, -103, -104, -105, -106, -107, -108, 90, -111, -112, -113, -114, -115, -116, 90, 90, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 90, -136, 90, -138, 90, 90, 90, 90, -143, -144, 90, 90, -250, 90, -252, 90, -246, -26, -38, 90, -44, -49, 90, -219, 90, 90, -220, 90, -254, -253, 90, -24, 90, -59, -92, -165, -199, -201, -202, -51, 90, 90, -96, -97, -100, -102, 90, -117, -118, -135, 90, 90, 90, -141, -142, 90, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 90, 90, 90, 90, -218, -134, 90, -156, -215, 90, 90, -216, 90, -137, -139, -140, -145, 90, -109, -166, -157]), 'LENGTH': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [91, 91, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 91, -152, -151, 91, -85, -86, -56, 91, -155, -2, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, -247, -40, -41, -82, -83, 91, -153, -84, -39, -52, 91, -53, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 91, -251, 91, 91, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 91, -221, 91, 91, 91, 91, -101, -110, 91, -148, -149, -150, 91, 91, -245, -249, -23, -58, -37, 91, -164, 91, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 91, 91, -98, -99, 91, 91, -103, -104, -105, -106, -107, -108, 91, -111, -112, -113, -114, -115, -116, 91, 91, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 91, -136, 91, -138, 91, 91, 91, 91, -143, -144, 91, 91, -250, 91, -252, 91, -246, -26, -38, 91, -44, -49, 91, -219, 91, 91, -220, 91, -254, -253, 91, -24, 91, -59, -92, -165, -199, -201, -202, -51, 91, 91, -96, -97, -100, -102, 91, -117, -118, -135, 91, 91, 91, -141, -142, 91, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 91, 91, 91, 91, -218, -134, 91, -156, -215, 91, 91, -216, 91, -137, -139, -140, -145, 91, -109, -166, -157]), 'TRIM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [92, 92, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 92, -152, -151, 92, -85, -86, -56, 92, -155, -2, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, -247, -40, -41, -82, -83, 92, -153, -84, -39, -52, 92, -53, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 92, -251, 92, 92, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 92, -221, 92, 92, 92, 92, -101, -110, 92, -148, -149, -150, 92, 92, -245, -249, -23, -58, -37, 92, -164, 92, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 92, 92, -98, -99, 92, 92, -103, -104, -105, -106, -107, -108, 92, -111, -112, -113, -114, -115, -116, 92, 92, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 92, -136, 92, -138, 92, 92, 92, 92, -143, -144, 92, 92, -250, 92, -252, 92, -246, -26, -38, 92, -44, -49, 92, -219, 92, 92, -220, 92, -254, -253, 92, -24, 92, -59, -92, -165, -199, -201, -202, -51, 92, 92, -96, -97, -100, -102, 92, -117, -118, -135, 92, 92, 92, -141, -142, 92, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 92, 92, 92, 92, -218, -134, 92, -156, -215, 92, 92, -216, 92, -137, -139, -140, -145, 92, -109, -166, -157]), 'GET_BYTE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [93, 93, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 93, -152, -151, 93, -85, -86, -56, 93, -155, -2, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, -247, -40, -41, -82, -83, 93, -153, -84, -39, -52, 93, -53, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 93, -251, 93, 93, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 93, -221, 93, 93, 93, 93, -101, -110, 93, -148, -149, -150, 93, 93, -245, -249, -23, -58, -37, 93, -164, 93, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 93, 93, -98, -99, 93, 93, -103, -104, -105, -106, -107, -108, 93, -111, -112, -113, -114, -115, -116, 93, 93, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 93, -136, 93, -138, 93, 93, 93, 93, -143, -144, 93, 93, -250, 93, -252, 93, -246, -26, -38, 93, -44, -49, 93, -219, 93, 93, -220, 93, -254, -253, 93, -24, 93, -59, -92, -165, -199, -201, -202, -51, 93, 93, -96, -97, -100, -102, 93, -117, -118, -135, 93, 93, 93, -141, -142, 93, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 93, 93, 93, 93, -218, -134, 93, -156, -215, 93, 93, -216, 93, -137, -139, -140, -145, 93, -109, -166, -157]), 'MD5': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [94, 94, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 94, -152, -151, 94, -85, -86, -56, 94, -155, -2, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, -247, -40, -41, -82, -83, 94, -153, -84, -39, -52, 94, -53, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 94, -251, 94, 94, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 94, -221, 94, 94, 94, 94, -101, -110, 94, -148, -149, -150, 94, 94, -245, -249, -23, -58, -37, 94, -164, 94, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 94, 94, -98, -99, 94, 94, -103, -104, -105, -106, -107, -108, 94, -111, -112, -113, -114, -115, -116, 94, 94, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 94, -136, 94, -138, 94, 94, 94, 94, -143, -144, 94, 94, -250, 94, -252, 94, -246, -26, -38, 94, -44, -49, 94, -219, 94, 94, -220, 94, -254, -253, 94, -24, 94, -59, -92, -165, -199, -201, -202, -51, 94, 94, -96, -97, -100, -102, 94, -117, -118, -135, 94, 94, 94, -141, -142, 94, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 94, 94, 94, 94, -218, -134, 94, -156, -215, 94, 94, -216, 94, -137, -139, -140, -145, 94, -109, -166, -157]), 'SET_BYTE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [95, 95, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 95, -152, -151, 95, -85, -86, -56, 95, -155, -2, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, -247, -40, -41, -82, -83, 95, -153, -84, -39, -52, 95, -53, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 95, -251, 95, 95, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 95, -221, 95, 95, 95, 95, -101, -110, 95, -148, -149, -150, 95, 95, -245, -249, -23, -58, -37, 95, -164, 95, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 95, 95, -98, -99, 95, 95, -103, -104, -105, -106, -107, -108, 95, -111, -112, -113, -114, -115, -116, 95, 95, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 95, -136, 95, -138, 95, 95, 95, 95, -143, -144, 95, 95, -250, 95, -252, 95, -246, -26, -38, 95, -44, -49, 95, -219, 95, 95, -220, 95, -254, -253, 95, -24, 95, -59, -92, -165, -199, -201, -202, -51, 95, 95, -96, -97, -100, -102, 95, -117, -118, -135, 95, 95, 95, -141, -142, 95, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 95, 95, 95, 95, -218, -134, 95, -156, -215, 95, 95, -216, 95, -137, -139, -140, -145, 95, -109, -166, -157]), 'SHA256': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [96, 96, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 96, -152, -151, 96, -85, -86, -56, 96, -155, -2, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, -247, -40, -41, -82, -83, 96, -153, -84, -39, -52, 96, -53, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 96, -251, 96, 96, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 96, -221, 96, 96, 96, 96, -101, -110, 96, -148, -149, -150, 96, 96, -245, -249, -23, -58, -37, 96, -164, 96, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 96, 96, -98, -99, 96, 96, -103, -104, -105, -106, -107, -108, 96, -111, -112, -113, -114, -115, -116, 96, 96, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 96, -136, 96, -138, 96, 96, 96, 96, -143, -144, 96, 96, -250, 96, -252, 96, -246, -26, -38, 96, -44, -49, 96, -219, 96, 96, -220, 96, -254, -253, 96, -24, 96, -59, -92, -165, -199, -201, -202, -51, 96, 96, -96, -97, -100, -102, 96, -117, -118, -135, 96, 96, 96, -141, -142, 96, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 96, 96, 96, 96, -218, -134, 96, -156, -215, 96, 96, -216, 96, -137, -139, -140, -145, 96, -109, -166, -157]), 'SUBSTR': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [97, 97, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 97, -152, -151, 97, -85, -86, -56, 97, -155, -2, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, -247, -40, -41, -82, -83, 97, -153, -84, -39, -52, 97, -53, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 97, -251, 97, 97, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 97, -221, 97, 97, 97, 97, -101, -110, 97, -148, -149, -150, 97, 97, -245, -249, -23, -58, -37, 97, -164, 97, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 97, 97, -98, -99, 97, 97, -103, -104, -105, -106, -107, -108, 97, -111, -112, -113, -114, -115, -116, 97, 97, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 97, -136, 97, -138, 97, 97, 97, 97, -143, -144, 97, 97, -250, 97, -252, 97, -246, -26, -38, 97, -44, -49, 97, -219, 97, 97, -220, 97, -254, -253, 97, -24, 97, -59, -92, -165, -199, -201, -202, -51, 97, 97, -96, -97, -100, -102, 97, -117, -118, -135, 97, 97, 97, -141, -142, 97, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 97, 97, 97, 97, -218, -134, 97, -156, -215, 97, 97, -216, 97, -137, -139, -140, -145, 97, -109, -166, -157]), 'CONVERT': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [98, 98, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 98, -152, -151, 98, -85, -86, -56, 98, -155, -2, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, -247, -40, -41, -82, -83, 98, -153, -84, -39, -52, 98, -53, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 98, -251, 98, 98, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 98, -221, 98, 98, 98, 98, -101, -110, 98, -148, -149, -150, 98, 98, -245, -249, -23, -58, -37, 98, -164, 98, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 98, 98, -98, -99, 98, 98, -103, -104, -105, -106, -107, -108, 98, -111, -112, -113, -114, -115, -116, 98, 98, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 98, -136, 98, -138, 98, 98, 98, 98, -143, -144, 98, 98, -250, 98, -252, 98, -246, -26, -38, 98, -44, -49, 98, -219, 98, 98, -220, 98, -254, -253, 98, -24, 98, -59, -92, -165, -199, -201, -202, -51, 98, 98, -96, -97, -100, -102, 98, -117, -118, -135, 98, 98, 98, -141, -142, 98, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 98, 98, 98, 98, -218, -134, 98, -156, -215, 98, 98, -216, 98, -137, -139, -140, -145, 98, -109, -166, -157]), 'ENCODE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [99, 99, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 99, -152, -151, 99, -85, -86, -56, 99, -155, -2, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, -247, -40, -41, -82, -83, 99, -153, -84, -39, -52, 99, -53, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 99, -251, 99, 99, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 99, -221, 99, 99, 99, 99, -101, -110, 99, -148, -149, -150, 99, 99, -245, -249, -23, -58, -37, 99, -164, 99, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 99, 99, -98, -99, 99, 99, -103, -104, -105, -106, -107, -108, 99, -111, -112, -113, -114, -115, -116, 99, 99, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 99, -136, 99, -138, 99, 99, 99, 99, -143, -144, 99, 99, -250, 99, -252, 99, -246, -26, -38, 99, -44, -49, 99, -219, 99, 99, -220, 99, -254, -253, 99, -24, 99, -59, -92, -165, -199, -201, -202, -51, 99, 99, -96, -97, -100, -102, 99, -117, -118, -135, 99, 99, 99, -141, -142, 99, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 99, 99, 99, 99, -218, -134, 99, -156, -215, 99, 99, -216, 99, -137, -139, -140, -145, 99, -109, -166, -157]), 'DECODE': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [100, 100, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 100, -152, -151, 100, -85, -86, -56, 100, -155, -2, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, -247, -40, -41, -82, -83, 100, -153, -84, -39, -52, 100, -53, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 100, -251, 100, 100, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 100, -221, 100, 100, 100, 100, -101, -110, 100, -148, -149, -150, 100, 100, -245, -249, -23, -58, -37, 100, -164, 100, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 100, 100, -98, -99, 100, 100, -103, -104, -105, -106, -107, -108, 100, -111, -112, -113, -114, -115, -116, 100, 100, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 100, -136, 100, -138, 100, 100, 100, 100, -143, -144, 100, 100, -250, 100, -252, 100, -246, -26, -38, 100, -44, -49, 100, -219, 100, 100, -220, 100, -254, -253, 100, -24, 100, -59, -92, -165, -199, -201, -202, -51, 100, 100, -96, -97, -100, -102, 100, -117, -118, -135, 100, 100, 100, -141, -142, 100, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 100, 100, 100, 100, -218, -134, 100, -156, -215, 100, 100, -216, 100, -137, -139, -140, -145, 100, -109, -166, -157]), 'AVG': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [101, 101, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 101, -152, -151, 101, -85, -86, -56, 101, -155, -2, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, -247, -40, -41, -82, -83, 101, -153, -84, -39, -52, 101, -53, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 101, -251, 101, 101, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 101, -221, 101, 101, 101, 101, -101, -110, 101, -148, -149, -150, 101, 101, -245, -249, -23, -58, -37, 101, -164, 101, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 101, 101, -98, -99, 101, 101, -103, -104, -105, -106, -107, -108, 101, -111, -112, -113, -114, -115, -116, 101, 101, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 101, -136, 101, -138, 101, 101, 101, 101, -143, -144, 101, 101, -250, 101, -252, 101, -246, -26, -38, 101, -44, -49, 101, -219, 101, 101, -220, 101, -254, -253, 101, -24, 101, -59, -92, -165, -199, -201, -202, -51, 101, 101, -96, -97, -100, -102, 101, -117, -118, -135, 101, 101, 101, -141, -142, 101, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 101, 101, 101, 101, -218, -134, 101, -156, -215, 101, 101, -216, 101, -137, -139, -140, -145, 101, -109, -166, -157]), 'SUM': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [102, 102, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 102, -152, -151, 102, -85, -86, -56, 102, -155, -2, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, -247, -40, -41, -82, -83, 102, -153, -84, -39, -52, 102, -53, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 102, -251, 102, 102, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 102, -221, 102, 102, 102, 102, -101, -110, 102, -148, -149, -150, 102, 102, -245, -249, -23, -58, -37, 102, -164, 102, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 102, 102, -98, -99, 102, 102, -103, -104, -105, -106, -107, -108, 102, -111, -112, -113, -114, -115, -116, 102, 102, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 102, -136, 102, -138, 102, 102, 102, 102, -143, -144, 102, 102, -250, 102, -252, 102, -246, -26, -38, 102, -44, -49, 102, -219, 102, 102, -220, 102, -254, -253, 102, -24, 102, -59, -92, -165, -199, -201, -202, -51, 102, 102, -96, -97, -100, -102, 102, -117, -118, -135, 102, 102, 102, -141, -142, 102, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 102, 102, 102, 102, -218, -134, 102, -156, -215, 102, 102, -216, 102, -137, -139, -140, -145, 102, -109, -166, -157]), 'SUBSTRING': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 510, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 563, 571, 572, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709], [103, 103, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 103, -152, -151, 103, -85, -86, -56, 103, -155, -2, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, -247, -40, -41, -82, -83, 103, -153, -84, -39, -52, 103, -53, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 103, -251, 103, 103, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 103, -221, 103, 103, 103, 103, -101, -110, 103, -148, -149, -150, 103, 103, -245, -249, -23, -58, -37, 103, -164, 103, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 103, 103, -98, -99, 103, 103, -103, -104, -105, -106, -107, -108, 103, -111, -112, -113, -114, -115, -116, 103, 103, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 103, -136, 103, -138, 103, 103, 103, 103, -143, -144, 103, 103, -250, 103, -252, 103, -246, -26, -38, 103, -44, -49, 103, -219, 103, 103, -220, 103, -254, -253, 103, -24, 103, -59, -92, -165, -199, -201, -202, -51, 103, 103, -96, -97, -100, -102, 103, -117, -118, -135, 103, 103, 103, -141, -142, 103, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, 103, 103, 103, 103, -218, -134, 103, -156, -215, 103, 103, -216, 103, -137, -139, -140, -145, 103, -109, -166, -157]), 'DECIMAL': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 28, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 278, 280, 282, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 404, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 496, 509, 510, 513, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 561, 563, 571, 572, 575, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709, 710], [32, 32, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 150, 32, -152, -151, 32, -85, -86, -56, 32, -155, -2, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, -247, -40, -41, -82, -83, 32, -153, -84, -39, 286, 32, -53, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 32, -251, 32, 32, -256, -244, -248, -54, -31, -154, -52, -53, -81, 286, -46, 286, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 32, -221, 32, 32, 32, 32, -101, -110, 32, -148, -149, -150, 32, 32, -245, -249, -23, -58, -37, 32, 32, -164, 32, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 32, 32, -98, -99, 32, 32, -103, -104, -105, -106, -107, -108, 32, -111, -112, -113, -114, -115, -116, 32, 32, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 32, -136, 32, -138, 32, 32, 32, 32, -143, -144, 32, 32, -250, 32, -252, 32, -246, -26, 32, 32, 286, 32, -38, 32, 32, -44, -49, 32, -219, 32, 32, -220, 32, -254, -253, 32, -24, 32, 32, -59, -92, 32, -165, -199, -201, -202, -51, 32, 32, -96, -97, -100, -102, 32, -117, -118, -135, 32, 32, 32, -141, -142, 32, -146, -147, -255, -25, 32, -167, 32, 32, -32, -33, -160, -200, -48, -50, -217, 32, 32, 32, 32, -218, -134, 32, -156, 32, -215, 32, 32, -216, 32, -137, -139, -140, -145, 32, -109, -166, -157, 32]), 'ENTERO': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 28, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 404, 408, 409, 411, 412, 413, 415, 416, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 509, 510, 513, 516, 520, 522, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 561, 563, 571, 572, 575, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709, 710], [31, 31, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 149, 31, -152, -151, 31, -85, -86, -56, 31, -155, -2, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, -247, -40, -41, -82, -83, 31, -153, -84, -39, -52, 31, -53, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 31, -251, 31, 31, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 31, -221, 31, 31, 31, 31, -101, -110, 31, -148, -149, -150, 31, 31, -245, -249, -23, -58, -37, 31, 31, -164, 31, -45, -197, 521, 523, 524, -47, -87, -88, -89, -90, -91, -93, -94, -95, 31, 31, -98, -99, 31, 31, -103, -104, -105, -106, -107, -108, 31, -111, -112, -113, -114, -115, -116, 31, 31, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 31, -136, 31, -138, 31, 31, 31, 31, -143, -144, 31, 31, -250, 31, -252, 31, -246, -26, 31, 31, 31, -38, 31, 31, -44, 581, -49, 31, -219, 31, 31, -220, 31, -254, -253, 31, -24, 31, 31, -59, -92, 31, -165, -199, -201, -202, -51, 31, 31, -96, -97, -100, -102, 31, -117, -118, -135, 31, 31, 31, -141, -142, 31, -146, -147, -255, -25, 31, -167, 31, 31, -32, -33, -160, -200, -48, -50, -217, 31, 31, 31, 31, -218, -134, 31, -156, 31, -215, 31, 31, -216, 31, -137, -139, -140, -145, 31, -109, -166, -157, 31]), 'CADENA': ([0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 30, 31, 32, 33, 34, 35, 39, 45, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 142, 146, 149, 150, 151, 153, 154, 158, 161, 162, 165, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254, 255, 256, 257, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 311, 312, 313, 314, 315, 316, 331, 340, 364, 365, 366, 367, 379, 383, 384, 385, 386, 399, 401, 402, 404, 408, 409, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 490, 491, 493, 494, 509, 510, 513, 516, 520, 526, 530, 531, 532, 533, 534, 542, 551, 552, 553, 556, 561, 563, 571, 572, 575, 579, 580, 582, 583, 586, 588, 590, 593, 594, 595, 596, 597, 598, 599, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 622, 628, 629, 630, 631, 635, 636, 637, 638, 640, 641, 642, 644, 646, 653, 655, 667, 671, 672, 673, 678, 680, 682, 683, 684, 685, 686, 687, 694, 706, 707, 709, 710], [104, 104, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, 104, -152, -151, 104, -85, -86, -56, 104, -155, -2, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 252, 104, -247, -40, -41, -82, -83, 104, -153, -84, -39, -52, 104, -53, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, 104, -251, 104, 104, -256, -244, -248, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 104, -221, 104, 104, 104, 104, -101, -110, 104, -148, -149, -150, 104, 104, -245, -249, -23, -58, -37, 104, 104, -164, 104, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, 104, 104, -98, -99, 104, 104, -103, -104, -105, -106, -107, -108, 104, -111, -112, -113, -114, -115, -116, 104, 104, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 104, -136, 104, -138, 104, 104, 104, 104, -143, -144, 104, 104, -250, 104, -252, 104, -246, -26, 104, 104, 104, -38, 104, 104, -44, -49, 104, -219, 104, 104, -220, 104, -254, -253, 104, -24, 104, 104, -59, -92, 104, -165, -199, -201, -202, -51, 104, 104, -96, -97, -100, -102, 104, -117, -118, -135, 104, 104, 104, -141, -142, 104, -146, -147, -255, -25, 104, -167, 104, 104, -32, -33, -160, -200, -48, -50, -217, 104, 104, 104, 104, -218, -134, 104, -156, 104, -215, 104, 104, -216, 104, -137, -139, -140, -145, 104, -109, -166, -157, 104]), '$end': ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 27, 31, 32, 34, 35, 39, 104, 105, 142, 146, 149, 150, 153, 154, 158, 161, 165, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 260, 264, 271, 272, 274, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 312, 331, 340, 386, 399, 401, 408, 411, 412, 417, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 491, 510, 520, 526, 531, 534, 551, 552, 556, 571, 572, 579, 580, 582, 583, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 611, 622, 630, 631, 635, 636, 637, 638, 640, 653, 655, 671, 673, 682, 684, 685, 686, 687, 706, 707, 709], [0, -1, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -21, -22, -55, -57, -152, -151, -85, -86, -56, -155, -2, -40, -41, -82, -83, -153, -84, -39, -52, -53, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -31, -154, -52, -53, -81, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -221, -101, -110, -23, -58, -37, -164, -45, -197, -47, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -26, -38, -44, -49, -219, -220, -254, -253, -24, -59, -92, -165, -199, -201, -202, -51, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -25, -167, -32, -33, -160, -200, -48, -50, -217, -218, -134, -156, -215, -216, -137, -139, -140, -145, -109, -166, -157]), 'MAS': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [106, -153, -152, -151, -85, -86, -155, -82, -83, 106, -153, 106, 106, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 106, 106, 106, 106, 106, 106, 106, 106, 106, -251, 106, -154, 106, -81, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, -101, 106, 106, 106, 106, 106, 106, 106, 106, -110, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 106, -136, -138, -143, -144, -66, -252, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, -66, -66, -92, 106, 106, 106, -96, -97, -100, -102, -117, -118, 106, -135, -141, -142, -146, -147, -66, 106, 106, 106, 106, -134, 106, 106, 106, 106, 106, -137, -139, -140, -145, 106, 106, 106, -109]), 'POR': ([8, 25, 31, 32, 34, 35, 45, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [108, -153, -152, -151, -85, -86, 167, -155, -82, -83, 108, -153, 108, 108, 108, 108, -62, -63, -64, 108, -66, -67, -68, -69, -70, -71, -72, 108, 108, 108, 108, 108, 108, 108, 108, 108, -251, 108, -154, 108, -81, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -101, 108, 108, 108, 108, 108, 108, 108, 108, -110, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 108, -136, -138, -143, -144, -66, -252, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -66, -66, -92, 108, 108, 108, -96, -97, -100, -102, -117, -118, 108, -135, -141, -142, -146, -147, -66, 108, 108, 108, 108, -134, 108, 108, 108, 108, 108, -137, -139, -140, -145, 108, 108, 108, -109]), 'RESIDUO': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [110, -153, -152, -151, -85, -86, -155, -82, -83, 110, -153, 110, 110, 110, 110, -62, -63, -64, 110, -66, -67, -68, -69, -70, -71, -72, 110, 110, 110, 110, 110, 110, 110, 110, 110, -251, 110, -154, 110, -81, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, -101, 110, 110, 110, 110, 110, 110, 110, 110, -110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 110, -136, -138, -143, -144, -66, -252, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, -66, -66, -92, 110, 110, 110, -96, -97, -100, -102, -117, -118, 110, -135, -141, -142, -146, -147, -66, 110, 110, 110, 110, -134, 110, 110, 110, 110, 110, -137, -139, -140, -145, 110, 110, 110, -109]), 'POTENCIA': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [111, -153, -152, -151, -85, -86, -155, -82, -83, 111, -153, 111, 111, 111, 111, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 111, 111, 111, 111, 111, 111, 111, 111, 111, -251, 111, -154, 111, -81, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, -101, 111, 111, 111, 111, 111, 111, 111, 111, -110, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 111, -136, -138, -143, -144, -66, -252, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, -66, -66, -92, 111, 111, 111, -96, -97, -100, -102, -117, -118, 111, -135, -141, -142, -146, -147, -66, 111, 111, 111, 111, -134, 111, 111, 111, 111, 111, -137, -139, -140, -145, 111, 111, 111, -109]), 'AND': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 648, 649, 650, 651, 654, 655, 656, 657, 658, 659, 675, 676, 677, 681, 684, 685, 686, 687, 690, 697, 702, 706], [112, -153, -152, -151, -85, -86, -155, -82, -83, 112, -153, 112, 112, 112, 112, 112, 112, 112, 112, -66, -67, -68, -69, -70, -71, -72, 112, 112, 112, 112, 112, 112, 112, 112, 379, -251, 112, -154, 112, -81, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, -101, 112, 112, 112, 112, 112, 112, 112, 112, -110, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 486, 488, 112, 112, 112, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 112, -136, -138, -143, -144, -66, -252, 553, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, -66, -66, -92, 112, 641, 112, 112, 641, -96, -97, -100, -102, -117, -118, 112, -135, -141, -142, -146, -147, -66, 112, 641, 112, 641, 112, 112, -134, 112, 112, 112, 112, -232, -233, 112, -236, -137, -139, -140, -145, 112, 112, 112, -109]), 'OR': ([8, 24, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 648, 649, 650, 651, 654, 655, 656, 657, 658, 659, 675, 676, 677, 681, 684, 685, 686, 687, 690, 697, 702, 706], [113, 137, -153, -152, -151, -85, -86, -155, -82, -83, 113, -153, 113, 113, 113, 113, 113, 113, 113, 113, -66, -67, -68, -69, -70, -71, -72, 113, 113, 113, 113, 113, 113, 113, 113, 113, -251, 113, -154, 113, -81, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, -101, 113, 113, 113, 113, 113, 113, 113, 113, -110, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 113, -136, -138, -143, -144, -66, -252, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, -66, -66, -92, 113, 642, 113, 113, 642, -96, -97, -100, -102, -117, -118, 113, -135, -141, -142, -146, -147, -66, 113, 642, 113, 642, 113, 113, -134, 113, 113, 113, 113, -232, -233, 113, -236, -137, -139, -140, -145, 113, 113, 113, -109]), 'SIMBOLOOR2': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [114, -153, -152, -151, -85, -86, -155, -82, -83, 114, -153, 114, 114, 114, 114, 114, 114, 114, 114, -66, -67, -68, -69, -70, -71, -72, 114, 114, 114, 114, 114, 114, 114, 114, 114, -251, 114, -154, 114, -81, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, -101, 114, 114, 114, 114, 114, 114, 114, 114, -110, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 114, -136, -138, -143, -144, -66, -252, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, -66, -66, -92, 114, 114, 114, -96, -97, -100, -102, -117, -118, 114, -135, -141, -142, -146, -147, -66, 114, 114, 114, 114, -134, 114, 114, 114, 114, 114, -137, -139, -140, -145, 114, 114, 114, -109]), 'SIMBOLOOR': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [115, -153, -152, -151, -85, -86, -155, -82, -83, 115, -153, 115, 115, 115, 115, 115, 115, 115, 115, -66, -67, -68, -69, -70, -71, -72, 115, 115, 115, 115, 115, 115, 115, 115, 115, -251, 115, -154, 115, -81, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, -101, 115, 115, 115, 115, 115, 115, 115, 115, -110, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 115, -136, -138, -143, -144, -66, -252, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, -66, -66, -92, 115, 115, 115, -96, -97, -100, -102, -117, -118, 115, -135, -141, -142, -146, -147, -66, 115, 115, 115, 115, -134, 115, 115, 115, 115, 115, -137, -139, -140, -145, 115, 115, 115, -109]), 'SIMBOLOAND2': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [116, -153, -152, -151, -85, -86, -155, -82, -83, 116, -153, 116, 116, 116, 116, 116, 116, 116, 116, -66, -67, -68, -69, -70, -71, -72, 116, 116, 116, 116, 116, 116, 116, 116, 116, -251, 116, -154, 116, -81, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -101, 116, 116, 116, 116, 116, 116, 116, 116, -110, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 116, -136, -138, -143, -144, -66, -252, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, -66, -66, -92, 116, 116, 116, -96, -97, -100, -102, -117, -118, 116, -135, -141, -142, -146, -147, -66, 116, 116, 116, 116, -134, 116, 116, 116, 116, 116, -137, -139, -140, -145, 116, 116, 116, -109]), 'DESPLAZAMIENTOIZQUIERDA': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [117, -153, -152, -151, -85, -86, -155, -82, -83, 117, -153, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -71, -72, 117, 117, 117, 117, 117, 117, 117, 117, 117, -251, 117, -154, 117, -81, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -101, 117, 117, 117, 117, 117, 117, 117, 117, -110, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 117, -136, -138, -143, -144, 117, -252, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, -92, 117, 117, 117, -96, -97, -100, -102, -117, -118, 117, -135, -141, -142, -146, -147, 117, 117, 117, 117, 117, -134, 117, 117, 117, 117, 117, -137, -139, -140, -145, 117, 117, 117, -109]), 'DESPLAZAMIENTODERECHA': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [118, -153, -152, -151, -85, -86, -155, -82, -83, 118, -153, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -71, -72, 118, 118, 118, 118, 118, 118, 118, 118, 118, -251, 118, -154, 118, -81, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -101, 118, 118, 118, 118, 118, 118, 118, 118, -110, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 118, -136, -138, -143, -144, 118, -252, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, -92, 118, 118, 118, -96, -97, -100, -102, -117, -118, 118, -135, -141, -142, -146, -147, 118, 118, 118, 118, 118, -134, 118, 118, 118, 118, 118, -137, -139, -140, -145, 118, 118, 118, -109]), 'IGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 389, 390, 405, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [119, -153, -152, -151, -85, -86, -155, -82, -83, 119, -153, -84, 119, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 119, 119, 119, 119, 119, 119, 119, 119, 119, -251, 119, -154, 119, -81, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, -101, 119, 119, 119, 119, 119, 119, 119, 119, -110, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 493, 494, 516, 119, 119, 119, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 119, -136, -138, -143, -144, -66, -252, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, -66, -66, -92, 119, 119, 119, -96, -97, -100, -102, -117, -118, 119, -135, -141, -142, -146, -147, -66, 119, -84, 119, 119, -134, 119, 119, 119, 119, 119, -137, -139, -140, -145, 119, 119, 119, -109]), 'IGUALIGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [120, -153, -152, -151, -85, -86, -155, -82, -83, 120, -153, -84, 120, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 120, 120, 120, 120, 120, 120, 120, 120, 120, -251, 120, -154, 120, -81, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, -101, 120, 120, 120, 120, 120, 120, 120, 120, -110, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 120, -136, -138, -143, -144, -66, -252, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, -66, -66, -92, 120, 120, 120, -96, -97, -100, -102, -117, -118, 120, -135, -141, -142, -146, -147, -66, 120, -84, 120, 120, -134, 120, 120, 120, 120, 120, -137, -139, -140, -145, 120, 120, 120, -109]), 'NOTEQUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [121, -153, -152, -151, -85, -86, -155, -82, -83, 121, -153, -84, 121, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 121, 121, 121, 121, 121, 121, 121, 121, 121, -251, 121, -154, 121, -81, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, -101, 121, 121, 121, 121, 121, 121, 121, 121, -110, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 121, -136, -138, -143, -144, -66, -252, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, -66, -66, -92, 121, 121, 121, -96, -97, -100, -102, -117, -118, 121, -135, -141, -142, -146, -147, -66, 121, -84, 121, 121, -134, 121, 121, 121, 121, 121, -137, -139, -140, -145, 121, 121, 121, -109]), 'MAYORIGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [122, -153, -152, -151, -85, -86, -155, -82, -83, 122, -153, -84, 122, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 122, 122, 122, 122, 122, 122, 122, 122, 122, -251, 122, -154, 122, -81, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, -101, 122, 122, 122, 122, 122, 122, 122, 122, -110, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 122, -136, -138, -143, -144, -66, -252, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, -66, -66, -92, 122, 122, 122, -96, -97, -100, -102, -117, -118, 122, -135, -141, -142, -146, -147, -66, 122, -84, 122, 122, -134, 122, 122, 122, 122, 122, -137, -139, -140, -145, 122, 122, 122, -109]), 'MENORIGUAL': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [123, -153, -152, -151, -85, -86, -155, -82, -83, 123, -153, -84, 123, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 123, 123, 123, 123, 123, 123, 123, 123, 123, -251, 123, -154, 123, -81, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, -101, 123, 123, 123, 123, 123, 123, 123, 123, -110, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 123, -136, -138, -143, -144, -66, -252, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, -66, -66, -92, 123, 123, 123, -96, -97, -100, -102, -117, -118, 123, -135, -141, -142, -146, -147, -66, 123, -84, 123, 123, -134, 123, 123, 123, 123, 123, -137, -139, -140, -145, 123, 123, 123, -109]), 'MAYOR': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [124, -153, -152, -151, -85, -86, -155, -82, -83, 124, -153, -84, 124, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 124, 124, 124, 124, 124, 124, 124, 124, 124, -251, 124, -154, 124, -81, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, -101, 124, 124, 124, 124, 124, 124, 124, 124, -110, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 124, -136, -138, -143, -144, -66, -252, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, -66, -66, -92, 124, 124, 124, -96, -97, -100, -102, -117, -118, 124, -135, -141, -142, -146, -147, -66, 124, -84, 124, 124, -134, 124, 124, 124, 124, 124, -137, -139, -140, -145, 124, 124, 124, -109]), 'MENOR': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [125, -153, -152, -151, -85, -86, -155, -82, -83, 125, -153, -84, 125, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 125, 125, 125, 125, 125, 125, 125, 125, 125, -251, 125, -154, 125, -81, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, -101, 125, 125, 125, 125, 125, 125, 125, 125, -110, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 125, -136, -138, -143, -144, -66, -252, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, -66, -66, -92, 125, 125, 125, -96, -97, -100, -102, -117, -118, 125, -135, -141, -142, -146, -147, -66, 125, -84, 125, 125, -134, 125, 125, 125, 125, 125, -137, -139, -140, -145, 125, 125, 125, -109]), 'DIFERENTE': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [126, -153, -152, -151, -85, -86, -155, -82, -83, 126, -153, -84, 126, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 126, 126, 126, 126, 126, 126, 126, 126, 126, -251, 126, -154, 126, -81, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, -101, 126, 126, 126, 126, 126, 126, 126, 126, -110, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 126, -136, -138, -143, -144, -66, -252, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, -66, -66, -92, 126, 126, 126, -96, -97, -100, -102, -117, -118, 126, -135, -141, -142, -146, -147, -66, 126, -84, 126, 126, -134, 126, 126, 126, 126, 126, -137, -139, -140, -145, 126, 126, 126, -109]), 'BETWEEN': ([8, 25, 31, 32, 34, 35, 104, 130, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [127, -153, -152, -151, -85, -86, -155, 254, -82, -83, 127, -153, -84, 127, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 127, 127, 127, 127, 127, 127, 127, 127, 127, -251, 127, -154, 127, -81, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, -101, 127, 127, 127, 127, 127, 127, 127, 127, -110, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 127, -136, -138, -143, -144, -66, -252, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, -66, -66, -92, 127, 127, 127, -96, -97, -100, -102, -117, -118, 127, -135, -141, -142, -146, -147, -66, 127, -84, 127, 127, -134, 127, 127, 127, 127, 127, -137, -139, -140, -145, 127, 127, 127, -109]), 'LIKE': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [128, -153, -152, -151, -85, -86, -155, -82, -83, 128, -153, -84, 128, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 128, 128, 128, 128, 128, 128, 128, 128, 128, -251, 128, -154, 128, -81, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, -101, 128, 128, 128, 128, 128, 128, 128, 128, -110, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 128, -136, -138, -143, -144, -66, -252, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, -66, -66, -92, 128, 128, 128, -96, -97, -100, -102, -117, -118, 128, -135, -141, -142, -146, -147, -66, 128, -84, 128, 128, -134, 128, 128, 128, 128, 128, -137, -139, -140, -145, 128, 128, 128, -109]), 'IN': ([8, 25, 31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 255, 264, 273, 274, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 382, 423, 425, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 649, 651, 654, 655, 656, 657, 658, 659, 677, 684, 685, 686, 687, 690, 697, 702, 706], [129, -153, -152, -151, -85, -86, -155, -82, -83, 129, -153, -84, 129, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 129, 129, 129, 129, 129, 129, 129, 129, 129, -251, 129, -154, 129, -81, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, -101, 129, 129, 129, 129, 129, 129, 129, 129, -110, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 129, -136, -138, -143, -144, -66, -252, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, -66, -66, -92, 129, 129, 129, -96, -97, -100, -102, -117, -118, 129, -135, -141, -142, -146, -147, -66, 129, -84, 129, 129, -134, 129, 129, 129, 129, 129, -137, -139, -140, -145, 129, 129, 129, -109]), 'DISTINCT': ([8, 25, 31, 32, 34, 35, 45, 104, 133, 149, 150, 152, 153, 154, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 255, 258, 264, 273, 274, 306, 311, 315, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 646, 649, 651, 654, 655, 656, 657, 658, 659, 677, 678, 679, 680, 684, 685, 686, 687, 690, 695, 696, 697, 702, 706], [132, -153, -152, -151, -85, -86, 132, -155, 257, -82, -83, 132, -153, -84, 132, 132, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 132, 132, 132, 132, 132, 132, 132, 132, 132, -251, 132, 132, 385, -154, 132, -81, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, -101, 132, 132, 132, 132, 132, 132, 132, 132, -110, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, -238, 132, 132, 132, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 132, -136, -138, -143, -144, -66, -252, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, -66, -66, -92, 132, 132, 132, -96, -97, -100, -102, -117, -118, 132, -135, -141, -142, -146, -147, -66, 132, 132, -84, 132, 132, -134, 132, 132, 132, 132, 132, 132, 132, 132, -137, -139, -140, -145, 132, 132, 132, 132, 132, -109]), 'IS': ([8, 25, 31, 32, 34, 35, 45, 104, 149, 150, 152, 153, 154, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 255, 264, 273, 274, 306, 311, 315, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 572, 576, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 627, 646, 649, 651, 654, 655, 656, 657, 658, 659, 677, 678, 679, 680, 684, 685, 686, 687, 690, 695, 696, 697, 702, 706], [133, -153, -152, -151, -85, -86, 133, -155, -82, -83, 133, -153, -84, 133, 133, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, 133, 133, 133, 133, 133, 133, 133, 133, 133, -251, 133, 133, -154, 133, -81, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, -101, 133, 133, 133, 133, 133, 133, 133, 133, -110, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, -238, 133, 133, 133, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 133, -136, -138, -143, -144, -66, -252, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, -66, -66, -92, 133, 133, 133, -96, -97, -100, -102, -117, -118, 133, -135, -141, -142, -146, -147, -66, 133, 133, -84, 133, 133, -134, 133, 133, 133, 133, 133, 133, 133, 133, -137, -139, -140, -145, 133, 133, 133, 133, 133, -109]), 'COMA': ([20, 25, 31, 32, 34, 35, 104, 149, 150, 153, 154, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 264, 273, 274, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 317, 326, 327, 330, 331, 332, 339, 340, 347, 348, 368, 370, 372, 373, 374, 375, 381, 406, 407, 412, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 497, 498, 500, 501, 502, 503, 514, 515, 528, 529, 539, 544, 545, 546, 551, 552, 558, 572, 573, 576, 577, 578, 580, 582, 583, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 612, 613, 615, 617, 619, 620, 624, 625, 634, 636, 654, 655, 660, 661, 662, 663, 666, 668, 669, 670, 679, 684, 685, 686, 687, 688, 691, 693, 695, 696, 699, 706, 711, 712], [134, -55, -152, -151, -85, -86, -155, -82, -83, -153, -84, 313, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -154, 402, -81, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -242, 436, 437, 440, -101, 441, 448, -110, 455, 456, 473, 475, 477, 478, 479, 480, 313, 518, -162, -197, 313, -237, -238, 532, 313, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, 560, -169, -173, -174, -175, -176, 575, -159, -55, 134, 597, 602, 603, 604, -254, -253, -170, -92, 575, -163, 518, -161, -199, -201, -202, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -171, -178, -180, -182, -184, -185, -168, 575, -158, -200, 683, -134, -177, -179, -181, -183, -172, -187, 575, 575, 313, -137, -139, -140, -145, -186, -189, 575, 313, 313, -188, -109, 575, -190]), 'DATABASES': ([23], [135]), 'DATABASE': ([24, 26, 27, 262], [136, 140, 144, 391]), 'TABLE': ([24, 26, 27], [138, 141, 145]), 'PUNTO': ([25, 153], [139, 139]), 'PARENTESISDERECHA': ([31, 32, 34, 35, 104, 149, 150, 152, 153, 154, 168, 169, 184, 193, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 259, 264, 274, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 328, 329, 331, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 369, 371, 376, 377, 381, 412, 418, 419, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 497, 498, 500, 501, 502, 503, 512, 514, 515, 521, 523, 524, 528, 529, 535, 536, 537, 538, 540, 541, 543, 547, 548, 549, 550, 551, 552, 558, 572, 573, 580, 581, 582, 583, 585, 589, 591, 593, 594, 595, 596, 598, 599, 600, 601, 605, 606, 608, 609, 610, 612, 613, 615, 617, 619, 620, 624, 625, 627, 634, 636, 648, 649, 650, 651, 655, 656, 657, 658, 659, 660, 661, 662, 663, 666, 668, 669, 670, 675, 676, 681, 684, 685, 686, 687, 688, 689, 690, 691, 693, 697, 699, 706, 711, 712], [-152, -151, -85, -86, -155, -82, -83, 274, -153, -84, -240, -239, 331, 340, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -54, -154, -81, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 417, -242, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, -101, 442, 443, 444, 445, 446, 447, -110, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 487, -197, 525, 526, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, 559, -169, -173, -174, -175, -176, 572, 574, -159, 580, 582, 583, -55, 586, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, -254, -253, -170, -92, 632, -199, 636, -201, -202, 638, -235, -241, -96, -97, -100, -102, -117, -118, 655, -135, -141, -142, -146, -147, -255, -171, -178, -180, -182, -184, -185, -168, 666, 668, -158, -200, -234, -84, 681, 274, -134, 684, 685, 686, 687, -177, -179, -181, -183, -172, -187, 691, 692, -232, -233, -236, -137, -139, -140, -145, -186, 698, 699, -189, 701, 706, -188, -109, 712, -190]), 'AS': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 331, 340, 423, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, 316, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -101, -110, 316, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'FROM': ([31, 32, 34, 35, 38, 104, 132, 149, 150, 153, 154, 166, 167, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 257, 264, 274, 317, 331, 340, 378, 385, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 474, 476, 481, 482, 485, 487, 551, 552, 572, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, 157, -155, 256, -82, -83, -153, -84, 311, 315, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, 384, -154, -81, -242, -101, -110, 483, 490, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, 542, -136, -138, -143, -144, -250, -252, -254, -253, -92, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'PUNTOYCOMA': ([31, 32, 34, 35, 104, 135, 142, 146, 149, 150, 153, 154, 158, 166, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 261, 264, 268, 270, 271, 272, 274, 277, 280, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 317, 331, 340, 387, 388, 396, 407, 411, 412, 417, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 492, 495, 511, 519, 520, 526, 551, 552, 554, 555, 557, 559, 566, 567, 568, 569, 570, 572, 576, 577, 578, 580, 582, 583, 586, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 632, 636, 637, 638, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 698, 701, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, 260, -40, -41, -82, -83, -153, -84, -39, 312, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, 386, -154, 399, 401, -52, -53, -81, 408, -46, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -242, -101, -110, 491, -28, 510, -162, -45, -197, -47, 531, -237, -238, 534, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -27, 556, 571, 579, -44, -49, -254, -253, -29, -30, 611, 622, 630, 631, -34, -35, -36, -92, -163, 635, -161, -199, -201, -202, -51, 640, -235, -241, 653, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 671, -200, -48, -50, 673, -223, -234, -84, 682, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, 707, 709, -228, -229, -230, -231, -109]), 'WHERE': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 277, 317, 331, 340, 406, 407, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 576, 578, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, 409, -242, -101, -110, 517, -162, 530, -237, -238, 533, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -163, -161, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'LIMIT': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 644, -235, -241, 644, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 644, -223, -234, -84, 644, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'GROUP': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 645, -235, -241, 645, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 645, -223, -234, -84, 645, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'HAVING': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 646, -235, -241, 646, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 646, -223, -234, -84, 646, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'ORDER': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 587, 589, 591, 592, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 639, 643, 648, 649, 652, 655, 674, 675, 676, 677, 679, 681, 684, 685, 686, 687, 695, 696, 702, 703, 704, 705, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, 647, -235, -241, 647, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, 647, -223, -234, -84, 647, -134, -222, -232, -233, -224, -226, -236, -137, -139, -140, -145, -225, -227, -228, -229, -230, -231, -109]), 'ASC': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 696, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, 704, -109]), 'DESC': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 168, 169, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 317, 331, 340, 423, 424, 427, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 591, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 696, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -240, -239, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -242, -101, -110, -237, -238, -243, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -241, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, 705, -109]), 'FOR': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 331, 340, 378, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 549, 551, 552, 572, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -101, -110, 484, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, 607, -254, -253, -92, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, -137, -139, -140, -145, -109]), 'OFFSET': ([31, 32, 34, 35, 104, 149, 150, 153, 154, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 252, 255, 264, 274, 331, 340, 428, 429, 430, 431, 432, 433, 434, 435, 438, 439, 442, 443, 444, 445, 446, 447, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 474, 476, 481, 482, 485, 487, 551, 552, 572, 593, 594, 595, 596, 598, 599, 601, 605, 606, 608, 609, 610, 655, 677, 684, 685, 686, 687, 706], [-152, -151, -85, -86, -155, -82, -83, -153, -84, -60, -61, -62, -63, -64, -65, -66, -67, -68, -69, -70, -71, -72, -73, -74, -75, -76, -77, -78, -79, -80, -251, -256, -154, -81, -101, -110, -87, -88, -89, -90, -91, -93, -94, -95, -98, -99, -103, -104, -105, -106, -107, -108, -111, -112, -113, -114, -115, -116, -119, -120, -121, -122, -123, -124, -125, -126, -127, -128, -129, -130, -131, -132, -133, -136, -138, -143, -144, -250, -252, -254, -253, -92, -96, -97, -100, -102, -117, -118, -135, -141, -142, -146, -147, -255, -134, 694, -137, -139, -140, -145, -109]), 'OWNER': ([31, 32, 104, 153, 261, 264, 265, 387, 388, 492, 495, 554, 555, 557], [-152, -151, -155, -153, 389, -154, 394, 389, -28, -27, 389, -29, -30, 389]), 'MODE': ([31, 32, 104, 153, 261, 264, 387, 388, 492, 495, 554, 555, 557], [-152, -151, -155, -153, 390, -154, 390, -28, -27, 390, -29, -30, 390]), 'DEFAULT': ([31, 32, 104, 153, 264, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 412, 558, 580, 582, 583, 612, 613, 615, 617, 619, 620, 636, 660, 661, 662, 663, 668, 688, 699], [-152, -151, -155, -153, -154, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, -197, 614, -199, -201, -202, 614, -178, -180, -182, -184, -185, -200, -177, -179, -181, -183, -187, -186, -188]), 'NULL': ([31, 32, 104, 153, 264, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 410, 412, 558, 580, 582, 583, 612, 613, 615, 616, 617, 619, 620, 636, 660, 661, 662, 663, 668, 688, 699], [-152, -151, -155, -153, -154, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 520, -197, 615, -199, -201, -202, 615, -178, -180, 662, -182, -184, -185, -200, -177, -179, -181, -183, -187, -186, -188]), 'UNIQUE': ([31, 32, 104, 153, 165, 264, 279, 283, 284, 285, 286, 287, 288, 290, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 392, 412, 558, 560, 580, 582, 583, 612, 613, 615, 617, 619, 620, 636, 660, 661, 662, 663, 664, 668, 688, 699], [-152, -151, -155, -153, 310, -154, 310, -191, -192, -193, -194, -195, -196, -198, -203, -204, -205, -206, -207, -208, -209, -210, -211, -212, -213, -214, 499, -197, 617, 499, -199, -201, -202, 617, -178, -180, -182, -184, -185, -200, -177, -179, -181, -183, 688, -187, -186, -188]), 'INTO': ([36], [155]), 'KEY': ([42, 43, 309, 506, 507, 618], [163, 164, 420, 564, 565, 663]), 'SYMMETRIC': ([127, 254], [251, 383]), 'REPLACE': ([137], [262]), 'IF': ([144], [269]), 'SET': ([156, 161, 267], [276, 281, 281]), 'TYPE': ([161, 267], [282, 282]), 'SMALLINT': ([161, 278, 282, 496], [283, 283, 283, 283]), 'INTEGER': ([161, 278, 282, 496], [284, 284, 284, 284]), 'BIGINT': ([161, 278, 282, 496], [285, 285, 285, 285]), 'NUMERIC': ([161, 278, 282, 496], [287, 287, 287, 287]), 'REAL': ([161, 278, 282, 496], [288, 288, 288, 288]), 'DOUBLE': ([161, 278, 282, 496], [289, 289, 289, 289]), 'MONEY': ([161, 278, 282, 496], [290, 290, 290, 290]), 'VARCHAR': ([161, 278, 282, 496], [291, 291, 291, 291]), 'CHARACTER': ([161, 278, 282, 496], [292, 292, 292, 292]), 'CHAR': ([161, 278, 282, 496], [293, 293, 293, 293]), 'TEXT': ([161, 278, 282, 496], [294, 294, 294, 294]), 'BOOLEAN': ([161, 278, 282, 496], [295, 295, 295, 295]), 'TIMESTAMP': ([161, 278, 282, 496], [296, 296, 296, 296]), 'TIME': ([161, 278, 282, 496], [297, 297, 297, 297]), 'INTERVAL': ([161, 278, 282, 496], [298, 298, 298, 298]), 'DATE': ([161, 278, 282, 496], [299, 299, 299, 299]), 'YEAR': ([161, 278, 282, 496], [300, 300, 300, 300]), 'MONTH': ([161, 278, 282, 496], [301, 301, 301, 301]), 'DAY': ([161, 278, 282, 496], [302, 302, 302, 302]), 'HOUR': ([161, 278, 282, 496], [303, 303, 303, 303]), 'MINUTE': ([161, 278, 282, 496], [304, 304, 304, 304]), 'SECOND': ([161, 278, 282, 496], [305, 305, 305, 305]), 'LEADING': ([217], [365]), 'TRAILING': ([217], [366]), 'BOTH': ([217], [367]), 'RENAME': ([265], [393]), 'EXISTS': ([269], [400]), 'VALUES': ([275, 574], [403, 633]), 'PRECISION': ([289], [412]), 'VARYING': ([292], [414]), 'TO': ([393, 394], [508, 509]), 'CURRENT_USER': ([509], [568]), 'SESSION_USER': ([509], [569]), 'REFERENCES': ([525, 692], [584, 700]), 'INHERITS': ([559], [623]), 'BY': ([645, 647], [678, 680])} _lr_action = {} for (_k, _v) in _lr_action_items.items(): for (_x, _y) in zip(_v[0], _v[1]): if not _x in _lr_action: _lr_action[_x] = {} _lr_action[_x][_k] = _y del _lr_action_items _lr_goto_items = {'inicio': ([0], [1]), 'queries': ([0], [2]), 'query': ([0, 2], [3, 105]), 'mostrarBD': ([0, 2], [4, 4]), 'crearBD': ([0, 2], [5, 5]), 'alterBD': ([0, 2], [6, 6]), 'dropBD': ([0, 2], [7, 7]), 'operacion': ([0, 2, 30, 33, 45, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 151, 162, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 251, 253, 254, 311, 313, 314, 315, 316, 364, 379, 383, 402, 409, 436, 437, 440, 441, 448, 455, 456, 473, 475, 477, 478, 479, 480, 483, 484, 486, 488, 516, 530, 532, 533, 542, 553, 563, 588, 590, 597, 602, 603, 604, 607, 641, 642, 644, 646, 667, 678, 680, 683, 694], [8, 8, 152, 154, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 255, 273, 306, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 168, 382, 168, 423, 425, 168, 427, 472, 485, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 576, 589, 591, 589, 600, 610, 627, 649, 651, 654, 656, 657, 658, 659, 589, 589, 677, 168, 690, 168, 168, 697, 702]), 'insertinBD': ([0, 2], [9, 9]), 'updateinBD': ([0, 2], [10, 10]), 'deleteinBD': ([0, 2], [11, 11]), 'createTable': ([0, 2], [12, 12]), 'inheritsBD': ([0, 2], [13, 13]), 'dropTable': ([0, 2], [14, 14]), 'alterTable': ([0, 2], [15, 15]), 'variantesAt': ([0, 2, 266], [16, 16, 396]), 'contAdd': ([0, 2, 39, 397], [17, 17, 158, 158]), 'contDrop': ([0, 2, 27, 398], [18, 18, 146, 146]), 'contAlter': ([0, 2, 26, 395], [19, 19, 142, 142]), 'listaid': ([0, 2, 421], [20, 20, 529]), 'tipoAlter': ([0, 2], [21, 21]), 'selectData': ([0, 2], [22, 22]), 'funcionBasica': ([0, 2, 30, 33, 45, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 151, 162, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 251, 253, 254, 311, 313, 314, 315, 316, 364, 379, 383, 402, 409, 436, 437, 440, 441, 448, 455, 456, 473, 475, 477, 478, 479, 480, 483, 484, 486, 488, 516, 530, 532, 533, 542, 553, 563, 588, 590, 597, 602, 603, 604, 607, 641, 642, 644, 646, 667, 678, 680, 683, 694], [34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34]), 'final': ([0, 2, 30, 33, 45, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 151, 162, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 251, 253, 254, 311, 313, 314, 315, 316, 364, 379, 383, 402, 404, 409, 436, 437, 440, 441, 448, 455, 456, 473, 475, 477, 478, 479, 480, 483, 484, 486, 488, 493, 494, 509, 513, 516, 530, 532, 533, 542, 553, 561, 563, 575, 588, 590, 597, 602, 603, 604, 607, 614, 628, 629, 641, 642, 644, 646, 667, 672, 678, 680, 683, 694, 710], [35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 515, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 554, 555, 570, 515, 35, 35, 35, 35, 35, 35, 515, 35, 634, 35, 35, 35, 35, 35, 35, 35, 661, 515, 515, 35, 35, 35, 35, 35, 515, 35, 35, 35, 35, 515]), 'condicion_select': ([8, 45, 152, 154, 166, 168, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 253, 255, 273, 306, 311, 315, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 339, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 380, 381, 382, 422, 423, 425, 426, 427, 472, 485, 489, 512, 519, 535, 536, 537, 538, 539, 540, 541, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 576, 589, 591, 600, 610, 627, 646, 649, 651, 654, 656, 657, 658, 659, 677, 678, 679, 680, 690, 695, 696, 697, 702], [131, 170, 131, 131, 314, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 170, 131, 131, 131, 170, 170, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 314, 131, 314, 131, 131, 314, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 170, 131, 131, 131, 131, 131, 131, 131, 131, 170, 314, 170, 131, 314, 314, 131, 131]), 'select_list': ([45, 253, 311, 315, 646, 678, 680], [166, 381, 422, 426, 679, 695, 696]), 'asignacion': ([45, 253, 311, 313, 315, 646, 678, 680], [169, 169, 169, 424, 169, 169, 169, 169]), 'tipo': ([161, 278, 282, 496], [280, 280, 411, 558]), 'opcionTrim': ([217], [364]), 'parametrosCrearBD': ([261, 495], [387, 557]), 'parametroCrearBD': ([261, 387, 495, 557], [388, 492, 388, 492]), 'asignaciones': ([276, 517], [406, 577]), 'asigna': ([276, 517, 518], [407, 407, 578]), 'creaColumnas': ([392], [497]), 'Columna': ([392, 560], [498, 624]), 'constraintcheck': ([392, 558, 560, 612], [500, 619, 500, 619]), 'checkinColumn': ([392, 558, 560, 612], [501, 620, 501, 620]), 'primaryKey': ([392, 560], [502, 502]), 'foreignKey': ([392, 560], [503, 503]), 'listaParam': ([404, 513, 561, 628, 629, 672, 710], [514, 573, 625, 669, 670, 693, 711]), 'parametroAlterUser': ([509], [567]), 'search_condition': ([530, 533, 588, 590, 641, 642], [587, 592, 648, 650, 675, 676]), 'paramOpcional': ([558], [612]), 'paramopc': ([558, 612], [613, 660]), 'opcionesSelect': ([587, 592], [639, 652]), 'opcionSelect': ([587, 592, 639, 652], [643, 643, 674, 674]), 'ordenamiento': ([696], [703])} _lr_goto = {} for (_k, _v) in _lr_goto_items.items(): for (_x, _y) in zip(_v[0], _v[1]): if not _x in _lr_goto: _lr_goto[_x] = {} _lr_goto[_x][_k] = _y del _lr_goto_items _lr_productions = [("S' -> inicio", "S'", 1, None, None, None), ('inicio -> queries', 'inicio', 1, 'p_inicio_1', 'gramaticaAscendenteTree.py', 414), ('queries -> queries query', 'queries', 2, 'p_queries_1', 'gramaticaAscendenteTree.py', 425), ('queries -> query', 'queries', 1, 'p_queries_2', 'gramaticaAscendenteTree.py', 438), ('query -> mostrarBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 449), ('query -> crearBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 450), ('query -> alterBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 451), ('query -> dropBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 452), ('query -> operacion', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 453), ('query -> insertinBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 454), ('query -> updateinBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 455), ('query -> deleteinBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 456), ('query -> createTable', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 457), ('query -> inheritsBD', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 458), ('query -> dropTable', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 459), ('query -> alterTable', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 460), ('query -> variantesAt', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 461), ('query -> contAdd', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 462), ('query -> contDrop', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 463), ('query -> contAlter', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 464), ('query -> listaid', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 465), ('query -> tipoAlter', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 466), ('query -> selectData', 'query', 1, 'p_query', 'gramaticaAscendenteTree.py', 467), ('crearBD -> CREATE DATABASE ID PUNTOYCOMA', 'crearBD', 4, 'p_crearBaseDatos_1', 'gramaticaAscendenteTree.py', 486), ('crearBD -> CREATE OR REPLACE DATABASE ID PUNTOYCOMA', 'crearBD', 6, 'p_crearBaseDatos_2', 'gramaticaAscendenteTree.py', 509), ('crearBD -> CREATE OR REPLACE DATABASE ID parametrosCrearBD PUNTOYCOMA', 'crearBD', 7, 'p_crearBaseDatos_3', 'gramaticaAscendenteTree.py', 515), ('crearBD -> CREATE DATABASE ID parametrosCrearBD PUNTOYCOMA', 'crearBD', 5, 'p_crearBaseDatos_4', 'gramaticaAscendenteTree.py', 521), ('parametrosCrearBD -> parametrosCrearBD parametroCrearBD', 'parametrosCrearBD', 2, 'p_parametrosCrearBD_1', 'gramaticaAscendenteTree.py', 528), ('parametrosCrearBD -> parametroCrearBD', 'parametrosCrearBD', 1, 'p_parametrosCrearBD_2', 'gramaticaAscendenteTree.py', 535), ('parametroCrearBD -> OWNER IGUAL final', 'parametroCrearBD', 3, 'p_parametroCrearBD', 'gramaticaAscendenteTree.py', 541), ('parametroCrearBD -> MODE IGUAL final', 'parametroCrearBD', 3, 'p_parametroCrearBD', 'gramaticaAscendenteTree.py', 542), ('mostrarBD -> SHOW DATABASES PUNTOYCOMA', 'mostrarBD', 3, 'p_mostrarBD', 'gramaticaAscendenteTree.py', 554), ('alterBD -> ALTER DATABASE ID RENAME TO ID PUNTOYCOMA', 'alterBD', 7, 'p_alterBD_1', 'gramaticaAscendenteTree.py', 560), ('alterBD -> ALTER DATABASE ID OWNER TO parametroAlterUser PUNTOYCOMA', 'alterBD', 7, 'p_alterBD_2', 'gramaticaAscendenteTree.py', 566), ('parametroAlterUser -> CURRENT_USER', 'parametroAlterUser', 1, 'p_parametroAlterUser', 'gramaticaAscendenteTree.py', 572), ('parametroAlterUser -> SESSION_USER', 'parametroAlterUser', 1, 'p_parametroAlterUser', 'gramaticaAscendenteTree.py', 573), ('parametroAlterUser -> final', 'parametroAlterUser', 1, 'p_parametroAlterUser', 'gramaticaAscendenteTree.py', 574), ('dropTable -> DROP TABLE ID PUNTOYCOMA', 'dropTable', 4, 'p_dropTable', 'gramaticaAscendenteTree.py', 581), ('alterTable -> ALTER TABLE ID variantesAt PUNTOYCOMA', 'alterTable', 5, 'p_alterTable', 'gramaticaAscendenteTree.py', 587), ('variantesAt -> ADD contAdd', 'variantesAt', 2, 'p_variantesAt', 'gramaticaAscendenteTree.py', 597), ('variantesAt -> ALTER contAlter', 'variantesAt', 2, 'p_variantesAt', 'gramaticaAscendenteTree.py', 598), ('variantesAt -> DROP contDrop', 'variantesAt', 2, 'p_variantesAt', 'gramaticaAscendenteTree.py', 599), ('listaContAlter -> listaContAlter COMA contAlter', 'listaContAlter', 3, 'p_listaContAlter', 'gramaticaAscendenteTree.py', 617), ('listaContAlter -> contAlter', 'listaContAlter', 1, 'p_listaContAlter_2', 'gramaticaAscendenteTree.py', 623), ('contAlter -> COLUMN ID SET NOT NULL', 'contAlter', 5, 'p_contAlter', 'gramaticaAscendenteTree.py', 630), ('contAlter -> COLUMN ID TYPE tipo', 'contAlter', 4, 'p_contAlter', 'gramaticaAscendenteTree.py', 631), ('contAdd -> COLUMN ID tipo', 'contAdd', 3, 'p_contAdd', 'gramaticaAscendenteTree.py', 645), ('contAdd -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'contAdd', 4, 'p_contAdd', 'gramaticaAscendenteTree.py', 646), ('contAdd -> FOREIGN KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA REFERENCES ID', 'contAdd', 7, 'p_contAdd', 'gramaticaAscendenteTree.py', 647), ('contAdd -> PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA', 'contAdd', 5, 'p_contAdd', 'gramaticaAscendenteTree.py', 648), ('contAdd -> CONSTRAINT ID PRIMARY KEY PARENTESISIZQUIERDA ID PARENTESISDERECHA', 'contAdd', 7, 'p_contAdd', 'gramaticaAscendenteTree.py', 649), ('contAdd -> CONSTRAINT ID UNIQUE PARENTESISIZQUIERDA listaid PARENTESISDERECHA', 'contAdd', 6, 'p_contAdd', 'gramaticaAscendenteTree.py', 650), ('contDrop -> COLUMN ID', 'contDrop', 2, 'p_contDrop', 'gramaticaAscendenteTree.py', 677), ('contDrop -> CONSTRAINT ID', 'contDrop', 2, 'p_contDrop', 'gramaticaAscendenteTree.py', 678), ('listaid -> listaid COMA ID', 'listaid', 3, 'p_listaID', 'gramaticaAscendenteTree.py', 692), ('listaid -> ID', 'listaid', 1, 'p_listaID_2', 'gramaticaAscendenteTree.py', 701), ('tipoAlter -> ADD', 'tipoAlter', 1, 'p_tipoAlter', 'gramaticaAscendenteTree.py', 710), ('tipoAlter -> DROP', 'tipoAlter', 1, 'p_tipoAlter', 'gramaticaAscendenteTree.py', 711), ('dropBD -> DROP DATABASE ID PUNTOYCOMA', 'dropBD', 4, 'p_dropBD_1', 'gramaticaAscendenteTree.py', 716), ('dropBD -> DROP DATABASE IF EXISTS ID PUNTOYCOMA', 'dropBD', 6, 'p_dropBD_2', 'gramaticaAscendenteTree.py', 723), ('operacion -> operacion MAS operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 729), ('operacion -> operacion MENOS operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 730), ('operacion -> operacion POR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 731), ('operacion -> operacion DIV operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 732), ('operacion -> operacion RESIDUO operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 733), ('operacion -> operacion POTENCIA operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 734), ('operacion -> operacion AND operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 735), ('operacion -> operacion OR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 736), ('operacion -> operacion SIMBOLOOR2 operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 737), ('operacion -> operacion SIMBOLOOR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 738), ('operacion -> operacion SIMBOLOAND2 operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 739), ('operacion -> operacion DESPLAZAMIENTOIZQUIERDA operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 740), ('operacion -> operacion DESPLAZAMIENTODERECHA operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 741), ('operacion -> operacion IGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 742), ('operacion -> operacion IGUALIGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 743), ('operacion -> operacion NOTEQUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 744), ('operacion -> operacion MAYORIGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 745), ('operacion -> operacion MENORIGUAL operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 746), ('operacion -> operacion MAYOR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 747), ('operacion -> operacion MENOR operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 748), ('operacion -> operacion DIFERENTE operacion', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 749), ('operacion -> PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'operacion', 3, 'p_operacion', 'gramaticaAscendenteTree.py', 750), ('operacion -> MENOS ENTERO', 'operacion', 2, 'p_operacion_menos_unario', 'gramaticaAscendenteTree.py', 863), ('operacion -> MENOS DECIMAL', 'operacion', 2, 'p_operacion_menos_unario', 'gramaticaAscendenteTree.py', 864), ('operacion -> NOT operacion', 'operacion', 2, 'p_operacion_not_unario', 'gramaticaAscendenteTree.py', 872), ('operacion -> funcionBasica', 'operacion', 1, 'p_operacion_funcion', 'gramaticaAscendenteTree.py', 878), ('operacion -> final', 'operacion', 1, 'p_operacion_final', 'gramaticaAscendenteTree.py', 884), ('funcionBasica -> ABS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 891), ('funcionBasica -> CBRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 892), ('funcionBasica -> CEIL PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 893), ('funcionBasica -> CEILING PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 894), ('funcionBasica -> DEGREES PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 895), ('funcionBasica -> DIV PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 896), ('funcionBasica -> EXP PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 897), ('funcionBasica -> FACTORIAL PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 898), ('funcionBasica -> FLOOR PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 899), ('funcionBasica -> GCD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 900), ('funcionBasica -> LCM PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 901), ('funcionBasica -> LN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 902), ('funcionBasica -> LOG PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 903), ('funcionBasica -> MOD PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 904), ('funcionBasica -> PI PARENTESISIZQUIERDA PARENTESISDERECHA', 'funcionBasica', 3, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 905), ('funcionBasica -> POWER PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 906), ('funcionBasica -> RADIANS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 907), ('funcionBasica -> ROUND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 908), ('funcionBasica -> SIGN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 909), ('funcionBasica -> SQRT PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 910), ('funcionBasica -> TRIM_SCALE PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 911), ('funcionBasica -> TRUNC PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 912), ('funcionBasica -> WIDTH_BUCKET PARENTESISIZQUIERDA operacion COMA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 10, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 913), ('funcionBasica -> RANDOM PARENTESISIZQUIERDA PARENTESISDERECHA', 'funcionBasica', 3, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 914), ('funcionBasica -> ACOS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 917), ('funcionBasica -> ACOSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 918), ('funcionBasica -> ASIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 919), ('funcionBasica -> ASIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 920), ('funcionBasica -> ATAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 921), ('funcionBasica -> ATAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 922), ('funcionBasica -> ATAN2 PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 923), ('funcionBasica -> ATAN2D PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 924), ('funcionBasica -> COS PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 927), ('funcionBasica -> COSD PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 928), ('funcionBasica -> COT PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 929), ('funcionBasica -> COTD PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 930), ('funcionBasica -> SIN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 931), ('funcionBasica -> SIND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 932), ('funcionBasica -> TAN PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 933), ('funcionBasica -> TAND PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 934), ('funcionBasica -> SINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 935), ('funcionBasica -> COSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 939), ('funcionBasica -> TANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 940), ('funcionBasica -> ASINH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 941), ('funcionBasica -> ACOSH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 942), ('funcionBasica -> ATANH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 943), ('funcionBasica -> LENGTH PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 944), ('funcionBasica -> TRIM PARENTESISIZQUIERDA opcionTrim operacion FROM operacion PARENTESISDERECHA', 'funcionBasica', 7, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 945), ('funcionBasica -> GET_BYTE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 946), ('funcionBasica -> MD5 PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 947), ('funcionBasica -> SET_BYTE PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 948), ('funcionBasica -> SHA256 PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 949), ('funcionBasica -> SUBSTR PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 950), ('funcionBasica -> CONVERT PARENTESISIZQUIERDA operacion COMA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 951), ('funcionBasica -> ENCODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 952), ('funcionBasica -> DECODE PARENTESISIZQUIERDA operacion COMA operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 953), ('funcionBasica -> AVG PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 954), ('funcionBasica -> SUM PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'funcionBasica', 4, 'p_funcion_basica', 'gramaticaAscendenteTree.py', 955), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion FOR operacion PARENTESISDERECHA', 'funcionBasica', 8, 'p_funcion_basica_1', 'gramaticaAscendenteTree.py', 1129), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FROM operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica_2', 'gramaticaAscendenteTree.py', 1133), ('funcionBasica -> SUBSTRING PARENTESISIZQUIERDA operacion FOR operacion PARENTESISDERECHA', 'funcionBasica', 6, 'p_funcion_basica_3', 'gramaticaAscendenteTree.py', 1137), ('opcionTrim -> LEADING', 'opcionTrim', 1, 'p_opcionTrim', 'gramaticaAscendenteTree.py', 1142), ('opcionTrim -> TRAILING', 'opcionTrim', 1, 'p_opcionTrim', 'gramaticaAscendenteTree.py', 1143), ('opcionTrim -> BOTH', 'opcionTrim', 1, 'p_opcionTrim', 'gramaticaAscendenteTree.py', 1144), ('final -> DECIMAL', 'final', 1, 'p_final', 'gramaticaAscendenteTree.py', 1151), ('final -> ENTERO', 'final', 1, 'p_final', 'gramaticaAscendenteTree.py', 1152), ('final -> ID', 'final', 1, 'p_final_id', 'gramaticaAscendenteTree.py', 1165), ('final -> ID PUNTO ID', 'final', 3, 'p_final_invocacion', 'gramaticaAscendenteTree.py', 1177), ('final -> CADENA', 'final', 1, 'p_final_cadena', 'gramaticaAscendenteTree.py', 1184), ('insertinBD -> INSERT INTO ID VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA', 'insertinBD', 8, 'p_insertBD_1', 'gramaticaAscendenteTree.py', 1197), ('insertinBD -> INSERT INTO ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA VALUES PARENTESISIZQUIERDA listaParam PARENTESISDERECHA PUNTOYCOMA', 'insertinBD', 11, 'p_insertBD_2', 'gramaticaAscendenteTree.py', 1227), ('listaParam -> listaParam COMA final', 'listaParam', 3, 'p_listaParam', 'gramaticaAscendenteTree.py', 1232), ('listaParam -> final', 'listaParam', 1, 'p_listaParam_2', 'gramaticaAscendenteTree.py', 1246), ('updateinBD -> UPDATE ID SET asignaciones WHERE asignaciones PUNTOYCOMA', 'updateinBD', 7, 'p_updateBD', 'gramaticaAscendenteTree.py', 1257), ('asignaciones -> asignaciones COMA asigna', 'asignaciones', 3, 'p_asignaciones', 'gramaticaAscendenteTree.py', 1291), ('asignaciones -> asigna', 'asignaciones', 1, 'p_asignaciones_2', 'gramaticaAscendenteTree.py', 1305), ('asigna -> ID IGUAL operacion', 'asigna', 3, 'p_asigna', 'gramaticaAscendenteTree.py', 1316), ('deleteinBD -> DELETE FROM ID PUNTOYCOMA', 'deleteinBD', 4, 'p_deleteinBD_1', 'gramaticaAscendenteTree.py', 1332), ('deleteinBD -> DELETE FROM ID WHERE operacion PUNTOYCOMA', 'deleteinBD', 6, 'p_deleteinBD_2', 'gramaticaAscendenteTree.py', 1336), ('inheritsBD -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA INHERITS PARENTESISIZQUIERDA ID PARENTESISDERECHA PUNTOYCOMA', 'inheritsBD', 11, 'p_inheritsBD', 'gramaticaAscendenteTree.py', 1368), ('createTable -> CREATE TABLE ID PARENTESISIZQUIERDA creaColumnas PARENTESISDERECHA PUNTOYCOMA', 'createTable', 7, 'p_createTable', 'gramaticaAscendenteTree.py', 1402), ('creaColumnas -> creaColumnas COMA Columna', 'creaColumnas', 3, 'p_creaColumna', 'gramaticaAscendenteTree.py', 1429), ('creaColumnas -> Columna', 'creaColumnas', 1, 'p_creaColumna_2', 'gramaticaAscendenteTree.py', 1442), ('Columna -> ID tipo', 'Columna', 2, 'p_columna_1', 'gramaticaAscendenteTree.py', 1454), ('Columna -> ID tipo paramOpcional', 'Columna', 3, 'p_columna_2', 'gramaticaAscendenteTree.py', 1469), ('Columna -> UNIQUE PARENTESISIZQUIERDA listaParam PARENTESISDERECHA', 'Columna', 4, 'p_columna_3', 'gramaticaAscendenteTree.py', 1487), ('Columna -> constraintcheck', 'Columna', 1, 'p_columna_4', 'gramaticaAscendenteTree.py', 1502), ('Columna -> checkinColumn', 'Columna', 1, 'p_columna_5', 'gramaticaAscendenteTree.py', 1512), ('Columna -> primaryKey', 'Columna', 1, 'p_columna_6', 'gramaticaAscendenteTree.py', 1522), ('Columna -> foreignKey', 'Columna', 1, 'p_columna_7', 'gramaticaAscendenteTree.py', 1532), ('paramOpcional -> paramOpcional paramopc', 'paramOpcional', 2, 'p_paramOpcional', 'gramaticaAscendenteTree.py', 1545), ('paramOpcional -> paramopc', 'paramOpcional', 1, 'p_paramOpcional_1', 'gramaticaAscendenteTree.py', 1558), ('paramopc -> DEFAULT final', 'paramopc', 2, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1570), ('paramopc -> NULL', 'paramopc', 1, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1571), ('paramopc -> NOT NULL', 'paramopc', 2, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1572), ('paramopc -> UNIQUE', 'paramopc', 1, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1573), ('paramopc -> PRIMARY KEY', 'paramopc', 2, 'p_paramopc_1', 'gramaticaAscendenteTree.py', 1574), ('paramopc -> constraintcheck', 'paramopc', 1, 'p_paramopc_2', 'gramaticaAscendenteTree.py', 1651), ('paramopc -> checkinColumn', 'paramopc', 1, 'p_paramopc_3', 'gramaticaAscendenteTree.py', 1661), ('paramopc -> CONSTRAINT ID UNIQUE', 'paramopc', 3, 'p_paramopc_4', 'gramaticaAscendenteTree.py', 1674), ('checkinColumn -> CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'checkinColumn', 4, 'p_checkcolumna', 'gramaticaAscendenteTree.py', 1699), ('constraintcheck -> CONSTRAINT ID CHECK PARENTESISIZQUIERDA operacion PARENTESISDERECHA', 'constraintcheck', 6, 'p_constraintcheck', 'gramaticaAscendenteTree.py', 1715), ('primaryKey -> PRIMARY KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA', 'primaryKey', 5, 'p_primaryKey', 'gramaticaAscendenteTree.py', 1741), ('foreignKey -> FOREIGN KEY PARENTESISIZQUIERDA listaParam PARENTESISDERECHA REFERENCES ID PARENTESISIZQUIERDA listaParam PARENTESISDERECHA', 'foreignKey', 10, 'p_foreingkey', 'gramaticaAscendenteTree.py', 1761), ('tipo -> SMALLINT', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1796), ('tipo -> INTEGER', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1797), ('tipo -> BIGINT', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1798), ('tipo -> DECIMAL', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1799), ('tipo -> NUMERIC', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1800), ('tipo -> REAL', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1801), ('tipo -> DOUBLE PRECISION', 'tipo', 2, 'p_tipo', 'gramaticaAscendenteTree.py', 1802), ('tipo -> MONEY', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1803), ('tipo -> VARCHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 4, 'p_tipo', 'gramaticaAscendenteTree.py', 1804), ('tipo -> CHARACTER VARYING PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 5, 'p_tipo', 'gramaticaAscendenteTree.py', 1805), ('tipo -> CHARACTER PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 4, 'p_tipo', 'gramaticaAscendenteTree.py', 1806), ('tipo -> CHAR PARENTESISIZQUIERDA ENTERO PARENTESISDERECHA', 'tipo', 4, 'p_tipo', 'gramaticaAscendenteTree.py', 1807), ('tipo -> TEXT', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1808), ('tipo -> BOOLEAN', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1809), ('tipo -> TIMESTAMP', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1810), ('tipo -> TIME', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1811), ('tipo -> INTERVAL', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1812), ('tipo -> DATE', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1813), ('tipo -> YEAR', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1814), ('tipo -> MONTH', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1815), ('tipo -> DAY', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1816), ('tipo -> HOUR', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1817), ('tipo -> MINUTE', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1818), ('tipo -> SECOND', 'tipo', 1, 'p_tipo', 'gramaticaAscendenteTree.py', 1819), ('selectData -> SELECT select_list FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA', 'selectData', 8, 'p_select', 'gramaticaAscendenteTree.py', 2129), ('selectData -> SELECT POR FROM select_list WHERE search_condition opcionesSelect PUNTOYCOMA', 'selectData', 8, 'p_select', 'gramaticaAscendenteTree.py', 2130), ('selectData -> SELECT select_list FROM select_list WHERE search_condition PUNTOYCOMA', 'selectData', 7, 'p_select_1', 'gramaticaAscendenteTree.py', 2139), ('selectData -> SELECT POR FROM select_list WHERE search_condition PUNTOYCOMA', 'selectData', 7, 'p_select_1', 'gramaticaAscendenteTree.py', 2140), ('selectData -> SELECT select_list FROM select_list PUNTOYCOMA', 'selectData', 5, 'p_select_2', 'gramaticaAscendenteTree.py', 2148), ('selectData -> SELECT POR FROM select_list PUNTOYCOMA', 'selectData', 5, 'p_select_2', 'gramaticaAscendenteTree.py', 2149), ('selectData -> SELECT select_list PUNTOYCOMA', 'selectData', 3, 'p_select_3', 'gramaticaAscendenteTree.py', 2169), ('opcionesSelect -> opcionesSelect opcionSelect', 'opcionesSelect', 2, 'p_opcionesSelect_1', 'gramaticaAscendenteTree.py', 2175), ('opcionesSelect -> opcionSelect', 'opcionesSelect', 1, 'p_opcionesSelect_2', 'gramaticaAscendenteTree.py', 2180), ('opcionSelect -> LIMIT operacion', 'opcionSelect', 2, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2186), ('opcionSelect -> GROUP BY select_list', 'opcionSelect', 3, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2187), ('opcionSelect -> HAVING select_list', 'opcionSelect', 2, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2188), ('opcionSelect -> ORDER BY select_list', 'opcionSelect', 3, 'p_opcionesSelect_3', 'gramaticaAscendenteTree.py', 2189), ('opcionSelect -> LIMIT operacion OFFSET operacion', 'opcionSelect', 4, 'p_opcionesSelect_4', 'gramaticaAscendenteTree.py', 2201), ('opcionSelect -> ORDER BY select_list ordenamiento', 'opcionSelect', 4, 'p_opcionesSelect_4', 'gramaticaAscendenteTree.py', 2202), ('ordenamiento -> ASC', 'ordenamiento', 1, 'p_ordenamiento', 'gramaticaAscendenteTree.py', 2212), ('ordenamiento -> DESC', 'ordenamiento', 1, 'p_ordenamiento', 'gramaticaAscendenteTree.py', 2213), ('search_condition -> search_condition AND search_condition', 'search_condition', 3, 'p_search_condition_1', 'gramaticaAscendenteTree.py', 2217), ('search_condition -> search_condition OR search_condition', 'search_condition', 3, 'p_search_condition_1', 'gramaticaAscendenteTree.py', 2218), ('search_condition -> NOT search_condition', 'search_condition', 2, 'p_search_condition_2', 'gramaticaAscendenteTree.py', 2223), ('search_condition -> operacion', 'search_condition', 1, 'p_search_condition_3', 'gramaticaAscendenteTree.py', 2227), ('search_condition -> PARENTESISIZQUIERDA search_condition PARENTESISDERECHA', 'search_condition', 3, 'p_search_condition_4', 'gramaticaAscendenteTree.py', 2231), ('select_list -> select_list COMA operacion', 'select_list', 3, 'p_select_list_1', 'gramaticaAscendenteTree.py', 2236), ('select_list -> select_list COMA asignacion', 'select_list', 3, 'p_select_list_6', 'gramaticaAscendenteTree.py', 2246), ('select_list -> asignacion', 'select_list', 1, 'p_select_list_7', 'gramaticaAscendenteTree.py', 2253), ('select_list -> operacion', 'select_list', 1, 'p_select_list_2', 'gramaticaAscendenteTree.py', 2262), ('select_list -> select_list condicion_select operacion COMA operacion', 'select_list', 5, 'p_select_list_3', 'gramaticaAscendenteTree.py', 2269), ('select_list -> condicion_select operacion', 'select_list', 2, 'p_select_list_4', 'gramaticaAscendenteTree.py', 2273), ('asignacion -> operacion AS operacion', 'asignacion', 3, 'p_asignacion_', 'gramaticaAscendenteTree.py', 2278), ('condicion_select -> DISTINCT FROM', 'condicion_select', 2, 'p_condicion_select', 'gramaticaAscendenteTree.py', 2286), ('condicion_select -> IS DISTINCT FROM', 'condicion_select', 3, 'p_condicion_select_2', 'gramaticaAscendenteTree.py', 2291), ('condicion_select -> IS NOT DISTINCT FROM', 'condicion_select', 4, 'p_condicion_select_3', 'gramaticaAscendenteTree.py', 2297), ('condicion_select -> DISTINCT', 'condicion_select', 1, 'p_condicion_select_4', 'gramaticaAscendenteTree.py', 2301), ('condicion_select -> IS DISTINCT', 'condicion_select', 2, 'p_condicion_select_5', 'gramaticaAscendenteTree.py', 2305), ('condicion_select -> IS NOT DISTINCT', 'condicion_select', 3, 'p_condicion_select_6', 'gramaticaAscendenteTree.py', 2310), ('funcionBasica -> operacion BETWEEN operacion AND operacion', 'funcionBasica', 5, 'p_funcion_basica_4', 'gramaticaAscendenteTree.py', 2315), ('funcionBasica -> operacion LIKE CADENA', 'funcionBasica', 3, 'p_funcion_basica_5', 'gramaticaAscendenteTree.py', 2319), ('funcionBasica -> operacion IN PARENTESISIZQUIERDA select_list PARENTESISDERECHA', 'funcionBasica', 5, 'p_funcion_basica_6', 'gramaticaAscendenteTree.py', 2323), ('funcionBasica -> operacion NOT BETWEEN operacion AND operacion', 'funcionBasica', 6, 'p_funcion_basica_7', 'gramaticaAscendenteTree.py', 2327), ('funcionBasica -> operacion BETWEEN SYMMETRIC operacion AND operacion', 'funcionBasica', 6, 'p_funcion_basica_8', 'gramaticaAscendenteTree.py', 2331), ('funcionBasica -> operacion NOT BETWEEN SYMMETRIC operacion AND operacion', 'funcionBasica', 7, 'p_funcion_basica_9', 'gramaticaAscendenteTree.py', 2335), ('funcionBasica -> operacion condicion_select operacion', 'funcionBasica', 3, 'p_funcion_basica_10', 'gramaticaAscendenteTree.py', 2340)]
# 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('py-matplotlib@2.0:3.999', type=('build', 'run')) depends_on('py-numpy@1.12.0:1.999', type=('build', 'run')) depends_on('py-pandas@0.20.0:0.999', type=('build', 'run')) depends_on('py-pyyaml@3.0:5.999', type=('build', 'run')) depends_on('py-scipy@0.19.0:1.2.1', type=('build', 'run')) depends_on('py-protobuf@3.5.0:3.999', type=('build', 'run')) depends_on('py-munch@2.0:2.999', type=('build', 'run')) depends_on('py-python-dateutil@2.6.0:2.999', type=('build', 'run')) depends_on('py-tqdm@4.3:4.999', type=('build', 'run')) depends_on('py-hdbscan@0.8.0:1.999', type=('build', 'run')) depends_on('py-seriate@1.1.2:1.999', type=('build', 'run')) depends_on('py-fastdtw@0.3.2:1.999', type=('build', 'run')) depends_on('py-lifelines@0.20.0:1.999', type=('build', 'run'))
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('py-matplotlib@2.0:3.999', type=('build', 'run')) depends_on('py-numpy@1.12.0:1.999', type=('build', 'run')) depends_on('py-pandas@0.20.0:0.999', type=('build', 'run')) depends_on('py-pyyaml@3.0:5.999', type=('build', 'run')) depends_on('py-scipy@0.19.0:1.2.1', type=('build', 'run')) depends_on('py-protobuf@3.5.0:3.999', type=('build', 'run')) depends_on('py-munch@2.0:2.999', type=('build', 'run')) depends_on('py-python-dateutil@2.6.0:2.999', type=('build', 'run')) depends_on('py-tqdm@4.3:4.999', type=('build', 'run')) depends_on('py-hdbscan@0.8.0:1.999', type=('build', 'run')) depends_on('py-seriate@1.1.2:1.999', type=('build', 'run')) depends_on('py-fastdtw@0.3.2:1.999', type=('build', 'run')) depends_on('py-lifelines@0.20.0: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), }, )
"""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 [deployment_zone_info(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)})
def read(filename): with open(filename, "r") as file: lines = file.readlines() result = {} mode = "main" result[mode] = {} for i in lines: i = i.replace("\n", "") if i.startswith(" "): i = i[4:] if i.startswith(" "): i = i[2:] if "//" in i: i = i.split("//")[0] if ":" in i: mode = i.split(":")[0] result[mode] = {} elif "=" in i: key, value = i.split("=") if value.replace(".", "", 1).isdigit(): if "." in value: value = float(value) else: value = int(value) elif value == "true": value = True elif value == "false": value = False result[mode][key] = value return result def write(filename, data): result = "" spaces = 0 if "main" not in data: data = {"main" : data} for i in data: if spaces != 0: spaces -= 1 result += "\n" result += i + ":" + "\n" for j in data[i]: value = data[i][j] if not isinstance(value, bool): if isinstance(value, int) or isinstance(value, float): value = str(value) elif value == True: value = "true" elif value == False: value = "false" result += " " + j + "=" + value + "\n" spaces += 1 with open(filename, "w") as file: file.write(result) def append(filename, data): if "main" not in data: data = {"main" : data} temp_data = data data = read(filename) data.update(temp_data) write(filename, data) def change(filename, key, value): append(filename, {key : value})
def read(filename): with open(filename, 'r') as file: lines = file.readlines() result = {} mode = 'main' result[mode] = {} for i in lines: i = i.replace('\n', '') if i.startswith(' '): i = i[4:] if i.startswith(' '): i = i[2:] if '//' in i: i = i.split('//')[0] if ':' in i: mode = i.split(':')[0] result[mode] = {} elif '=' in i: (key, value) = i.split('=') if value.replace('.', '', 1).isdigit(): if '.' in value: value = float(value) else: value = int(value) elif value == 'true': value = True elif value == 'false': value = False result[mode][key] = value return result def write(filename, data): result = '' spaces = 0 if 'main' not in data: data = {'main': data} for i in data: if spaces != 0: spaces -= 1 result += '\n' result += i + ':' + '\n' for j in data[i]: value = data[i][j] if not isinstance(value, bool): if isinstance(value, int) or isinstance(value, float): value = str(value) elif value == True: value = 'true' elif value == False: value = 'false' result += ' ' + j + '=' + value + '\n' spaces += 1 with open(filename, 'w') as file: file.write(result) def append(filename, data): if 'main' not in data: data = {'main': data} temp_data = data data = read(filename) data.update(temp_data) write(filename, data) def change(filename, key, value): append(filename, {key: value})
"""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, )
"""Interop with Java.""" load('@bazel_skylib//lib:collections.bzl', 'collections') java_interop_info = 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=[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 java_interop_info(inputs=inputs, env=env_dict)
description = '' pages = ['header'] def setup(data): pass def test(data): navigate('http://store.demoqa.com/') click(header.my_account) verify_text('You must be logged in to use this page. Please use the form below to login to your account.') def teardown(data): pass
description = '' pages = ['header'] def setup(data): pass def test(data): navigate('http://store.demoqa.com/') click(header.my_account) verify_text('You must be logged in to use this page. Please use the form below to login to your account.') def teardown(data): pass
# 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
class Solution(object): def two_city_sched_cost(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)
mystr = 'banana' for x in mystr: print(x)
FETCH_DATA_SOURCES_SQL = "select description, downloaded, url, data_source_type, group_name " \ "from data_source " \ "order by downloaded, group_name, description;" class DataSourcesQueryNames(object): DESCRIPTION = 'description' DOWNLOADED = 'downloaded' URL = 'url' DATA_SOURCE_TYPE = 'data_source_type' GROUP_NAME = 'group_name' class DataSourcesQuery(object): def make_query_and_params(self): return FETCH_DATA_SOURCES_SQL, []
fetch_data_sources_sql = 'select description, downloaded, url, data_source_type, group_name from data_source order by downloaded, group_name, description;' class Datasourcesquerynames(object): description = 'description' downloaded = 'downloaded' url = 'url' data_source_type = 'data_source_type' group_name = 'group_name' class Datasourcesquery(object): def make_query_and_params(self): return (FETCH_DATA_SOURCES_SQL, [])
geral = {} aproveitamento = list() geral['nome'] = str(input('Nome jogador: ')) partidas = int(input(f'Quantas partidas {geral["nome"]} jogou ?')) count = 0 total = 0 while count < partidas: gols_games = (int(input(f'Quantos gols na partida {count}?'))) aproveitamento.append(gols_games) total = total + gols_games count +=1 geral['gols'] = aproveitamento[:] geral['total'] = total print('-='*30) print(geral) print('-='*30) for k,v in geral.items(): print(f'o campo {k} tem o valor {v}.') print('-='*30) print(f'O jogador {geral["nome"]} jogou {count} partidas') i = 0 count2 = 0 for c in aproveitamento: print(f' {"=>":>5} Na partida {count2+1}, fez {geral["gols"][i]}') i +=1 count2 +=1
geral = {} aproveitamento = list() geral['nome'] = str(input('Nome jogador: ')) partidas = int(input(f"Quantas partidas {geral['nome']} jogou ?")) count = 0 total = 0 while count < partidas: gols_games = int(input(f'Quantos gols na partida {count}?')) aproveitamento.append(gols_games) total = total + gols_games count += 1 geral['gols'] = aproveitamento[:] geral['total'] = total print('-=' * 30) print(geral) print('-=' * 30) for (k, v) in geral.items(): print(f'o campo {k} tem o valor {v}.') print('-=' * 30) print(f"O jogador {geral['nome']} jogou {count} partidas") i = 0 count2 = 0 for c in aproveitamento: print(f" {'=>':>5} Na partida {count2 + 1}, fez {geral['gols'][i]}") i += 1 count2 += 1
# 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
__all__ = ('CommandFailed', 'InputError', 'OutputError', 'ResourceUnavailable') 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
INTEGER = "int" FLOAT = "float" BOOLEAN = "bool" STRING = "str" EMAIL = "email" ALPHA = "alpha" ALPHANUMERIC = "alphanumeric" STD = "std" LIST = "list" DICT = "dict" FILE = "file" ALLOWED_TYPES = {INTEGER: {"type": "integer"}, FLOAT: {"type": "number"}, BOOLEAN: {"type": "boolean"}, STRING: {"type": "string"}, EMAIL: {"type": "string", "format": "emaili", "pattern": "[^@]+@[^@]+\.[^@]+"}, ALPHA: {"type": "string", "pattern": r"^[a-zA-Z]+$"}, ALPHANUMERIC: {"type": "string", "pattern": r"^[a-zA-Z0-9]+$"}, STD: {"type": "string", "pattern": r"^[a-zA-Z0-9_]+$"}, LIST: {"type": "array"}, DICT: {"type": "object"}}
integer = 'int' float = 'float' boolean = 'bool' string = 'str' email = 'email' alpha = 'alpha' alphanumeric = 'alphanumeric' std = 'std' list = 'list' dict = 'dict' file = 'file' allowed_types = {INTEGER: {'type': 'integer'}, FLOAT: {'type': 'number'}, BOOLEAN: {'type': 'boolean'}, STRING: {'type': 'string'}, EMAIL: {'type': 'string', 'format': 'emaili', 'pattern': '[^@]+@[^@]+\\.[^@]+'}, ALPHA: {'type': 'string', 'pattern': '^[a-zA-Z]+$'}, ALPHANUMERIC: {'type': 'string', 'pattern': '^[a-zA-Z0-9]+$'}, STD: {'type': 'string', 'pattern': '^[a-zA-Z0-9_]+$'}, LIST: {'type': 'array'}, DICT: {'type': 'object'}}
# 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
pairs = (('white', 'yellow'), ('yellow', 'white'), ('red', 'orange'), ('orange', 'red'), ('green', 'blue'), ('blue', 'green')) 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 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 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' ] }
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()
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 not_implemented_error() 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 not_implemented_error() def to_json_schema(self, model): """ return a dictionary representing a jsonschema for the model. """ raise not_implemented_error()
#!/usr/bin/python zoo = ('python', 'elephant', 'penguin') # remember the parentheses are optional print('Number of animals in the zoo is', len(zoo)) new_zoo = ('monkey', 'camel', zoo) print('Number of cages in the zoo is', len(new_zoo)) print('All animals in new zoo are', new_zoo) print('Animals brought from old zoo is', new_zoo[2]) print('last animal brought from old zoo is', new_zoo[2][2]) print('Number of animals in the new zoo is', len(new_zoo) - 1 + len(new_zoo[2]))
zoo = ('python', 'elephant', 'penguin') print('Number of animals in the zoo is', len(zoo)) new_zoo = ('monkey', 'camel', zoo) print('Number of cages in the zoo is', len(new_zoo)) print('All animals in new zoo are', new_zoo) print('Animals brought from old zoo is', new_zoo[2]) print('last animal brought from old zoo is', new_zoo[2][2]) print('Number of animals in the new zoo is', len(new_zoo) - 1 + len(new_zoo[2]))
def interest_template(isPlain, user_id, sim_percent): percent = int(sim_percent * 100) if isPlain: text = "Connect with {{user-%d}} as you have %d%% interests in common" \ % (user_id, percent) else: text = "<orange>Connect with {{user-%d}}</orange> as you have %d%% interests in common" \ % (user_id, percent) return text def mutual_template(isPlain, user_id, num_of_mutual_friends): if isPlain: text = "Connect with {{user-%d}} as you have %d mutual friends in common" % (user_id, num_of_mutual_friends) else: text = "<orange>Connect with {{user-%d}}</orange> as you have %d mutual friends in common" % (user_id, num_of_mutual_friends) return text
def interest_template(isPlain, user_id, sim_percent): percent = int(sim_percent * 100) if isPlain: text = 'Connect with {{user-%d}} as you have %d%% interests in common' % (user_id, percent) else: text = '<orange>Connect with {{user-%d}}</orange> as you have %d%% interests in common' % (user_id, percent) return text def mutual_template(isPlain, user_id, num_of_mutual_friends): if isPlain: text = 'Connect with {{user-%d}} as you have %d mutual friends in common' % (user_id, num_of_mutual_friends) else: text = '<orange>Connect with {{user-%d}}</orange> as you have %d mutual friends in common' % (user_id, num_of_mutual_friends) return text
#!/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)
""" 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' if 'http://' in path: path = path.replace('http://', 'https://') if stem in path: return path 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.")
print('hello world') print(' ') def binary__search(array, start, end, x): if end >= start: mid = (start + end) // 2 if array[mid] == x: return mid elif array[mid] > x: return binary__search(array, start, mid - 1, x) else: return binary__search(array, mid + 1, end, x) else: return -1 arr = [2, 10, 20, 40, 50, 60] x = 10 result = binary__search(arr, 0, len(arr) - 1, x) if result != -1: print('Element is present at %d' % result) else: print('Element is not present.')
with open('1X-PBS_CurrentVsTime_10000sWait_Still.csv', 'r') as f: f.readline() f.readline() lastVoltage = 0.0 line = f.readline() o = None while line: splits = line.split(',') voltage = float(splits[1]) if voltage != lastVoltage: if o is not None: o.close() o = open('1X-PBS_CurrentVsTime_10000s_' + splits[1] + 'V.csv', 'w') o.write(line) line = f.readline() lastVoltage = voltage o.close()
with open('1X-PBS_CurrentVsTime_10000sWait_Still.csv', 'r') as f: f.readline() f.readline() last_voltage = 0.0 line = f.readline() o = None while line: splits = line.split(',') voltage = float(splits[1]) if voltage != lastVoltage: if o is not None: o.close() o = open('1X-PBS_CurrentVsTime_10000s_' + splits[1] + 'V.csv', 'w') o.write(line) line = f.readline() last_voltage = voltage o.close()
#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
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) end = 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 elif 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 elif 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]: if end > regions[chrom][start]: regions[chrom][start] = {key: value for (key, value) in regions[chrom][start].items() if value != regions[chrom][start]} regions[chrom][start][end] = seq else: regions[chrom][start] = {} regions[chrom][start][end] = seq else: 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))
length = int(input()) width = int(input()) height = int(input()) number = float(input()) volume = length * width * height total_liters = volume * 0.001 percent = number * 0.01 result = total_liters * (1 - percent) print('{0:.3f}'.format(result))
class HandshakeRequestMessage(object): def __init__(self, protocol, version): self.protocol = protocol self.version = version
class Handshakerequestmessage(object): def __init__(self, protocol, version): self.protocol = protocol self.version = version
"""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
"""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')
(a, b, c) = input().split(' ') a = int(a) b = int(b) c = int(c) maior_ab = (a + b + abs(a - b)) / 2 maior_abc = (MaiorAB + c + abs(MaiorAB - c)) / 2 print(f'{MaiorABC:.0f} eh o maior')
"""Package init.""" __author__ = """Ivan Savchenko""" __email__ = 'iam.savchenko@gmail.com' __version__ = '0.2.0'
"""Package init.""" __author__ = 'Ivan Savchenko' __email__ = 'iam.savchenko@gmail.com' __version__ = '0.2.0'
def while_loop(): cycle = 1 print('While loop: ') while cycle < 6: print('Inside a loop -> cycle : ', cycle) cycle = cycle + 1 print('Done - cycle =', cycle) def multiplication_table(): print(' -------------------- ') print('Multiplication table: ') number = 1; count = 1 while count <= 10: result = count * number print('{0} * {1} = {2}'.format(number,count,result)) count = count + 1 def countdown(): print(' -------------------- ') print('Countdown :') count = 10 while count >= 0: print(count) count = count - 1 print ('Booooooooooom') def add_natural(): print(' -------------------- ') # sum = 1+2+3+...+n sum = 0 n = 10 i = 0 while n >= 0: sum = sum + i i = i + 1 n = n - 1 print (' sum = 1 + 2 + 3 + ... + n ') print (' n = 10 => 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 =', sum) def loop_with_else(): print(' -------------------- ') print('While loop with else') count = 0 while count < 5: print ('Inside while loop. condition -> count < 5.') print ('count = ', count) count = count + 1 else: print ('Inside else.') print('count = ', count) if __name__ == '__main__': while_loop() multiplication_table() countdown() add_natural() loop_with_else()
def while_loop(): cycle = 1 print('While loop: ') while cycle < 6: print('Inside a loop -> cycle : ', cycle) cycle = cycle + 1 print('Done - cycle =', cycle) def multiplication_table(): print(' -------------------- ') print('Multiplication table: ') number = 1 count = 1 while count <= 10: result = count * number print('{0} * {1} = {2}'.format(number, count, result)) count = count + 1 def countdown(): print(' -------------------- ') print('Countdown :') count = 10 while count >= 0: print(count) count = count - 1 print('Booooooooooom') def add_natural(): print(' -------------------- ') sum = 0 n = 10 i = 0 while n >= 0: sum = sum + i i = i + 1 n = n - 1 print(' sum = 1 + 2 + 3 + ... + n ') print(' n = 10 => 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 =', sum) def loop_with_else(): print(' -------------------- ') print('While loop with else') count = 0 while count < 5: print('Inside while loop. condition -> count < 5.') print('count = ', count) count = count + 1 else: print('Inside else.') print('count = ', count) if __name__ == '__main__': while_loop() multiplication_table() countdown() add_natural() loop_with_else()
class Solution: def lengthOfLongestSubstring(self, s: str) -> int: # simplest case if len(s) == 0: return 0 longestSubstr = "" tempLongest = "" for i in range(0, len(s)): currentChar = s[i] tempLongest = self.getFirstNonrepeatingSubstr(s[i:]) if len(tempLongest) > len(longestSubstr): longestSubstr = tempLongest return len(longestSubstr) def getFirstNonrepeatingSubstr(self, s: str) -> str: if len(s) == 0: return s if len(s) == 1: return s nonrepeating = "" for i in range(0, len(s)): current_char = s[i] if current_char in nonrepeating: return nonrepeating else: nonrepeating = nonrepeating + current_char return nonrepeating
class Solution: def length_of_longest_substring(self, s: str) -> int: if len(s) == 0: return 0 longest_substr = '' temp_longest = '' for i in range(0, len(s)): current_char = s[i] temp_longest = self.getFirstNonrepeatingSubstr(s[i:]) if len(tempLongest) > len(longestSubstr): longest_substr = tempLongest return len(longestSubstr) def get_first_nonrepeating_substr(self, s: str) -> str: if len(s) == 0: return s if len(s) == 1: return s nonrepeating = '' for i in range(0, len(s)): current_char = s[i] if current_char in nonrepeating: return nonrepeating else: nonrepeating = nonrepeating + current_char return nonrepeating
#python3 code def solution(x, y): # Your code here res = ((x+y-1)*(x+y-2))/2 + x return str(res)
def solution(x, y): res = (x + y - 1) * (x + y - 2) / 2 + x return str(res)
"""Top-level package for pytolanalyst.""" __author__ = """Rob Siegwart""" __email__ = 'rob@robsiegwart.com' __version__ = '0.1.0'
"""Top-level package for pytolanalyst.""" __author__ = 'Rob Siegwart' __email__ = 'rob@robsiegwart.com' __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
class Gamestate(object): def __init__(self, boxes, worker, parent): self.boxes = boxes self.worker = worker self.parent = parent def __eq__(self, other): return self.boxes == other.boxes and self.worker == other.worker def __hash__(self): return hash((self.worker, frozenset(self.boxes))) def get_history(self): history = [] current = self while current is not None: history.append(current.worker) current = current.parent history.reverse() return history
def parse_adjustment(data): return parse_adjustment_data(data['$objects'], data['$top']['root'].data) def parse_adjustment_data(data, root_index): out = {} for idx, key in enumerate(data[root_index]['NS.keys']): objkey = data[key.data] keyval = data[root_index]['NS.objects'][idx].data objval = data[keyval] if type(objval) == dict: keycls = objval['$class'] if data[keycls]['$classname'] == "NSMutableDictionary": objval = parse_adjustment_data(data, keyval) out[objkey] = objval return out
def parse_adjustment(data): return parse_adjustment_data(data['$objects'], data['$top']['root'].data) def parse_adjustment_data(data, root_index): out = {} for (idx, key) in enumerate(data[root_index]['NS.keys']): objkey = data[key.data] keyval = data[root_index]['NS.objects'][idx].data objval = data[keyval] if type(objval) == dict: keycls = objval['$class'] if data[keycls]['$classname'] == 'NSMutableDictionary': objval = parse_adjustment_data(data, keyval) out[objkey] = objval return out
def binaryTreePaths(root: Optional[TreeNode]) -> List[str]: paths = [] if not root: return paths if (not root.right) and (not root.left): # This is a leaf paths.append(str(root.val)) if root.right: # append result of subtree on right paths.extend([f"{root.val}->{subpath}" for subpath in self.binaryTreePaths(root.right)]) if root.left: # append result of subtree on left paths.extend([f"{root.val}->{subpath}" for subpath in self.binaryTreePaths(root.left)]) return paths
def binary_tree_paths(root: Optional[TreeNode]) -> List[str]: paths = [] if not root: return paths if not root.right and (not root.left): paths.append(str(root.val)) if root.right: paths.extend([f'{root.val}->{subpath}' for subpath in self.binaryTreePaths(root.right)]) if root.left: paths.extend([f'{root.val}->{subpath}' for subpath in self.binaryTreePaths(root.left)]) return paths
class InnerClass: def __init__(self, a, b, c): self.a = a self.b = b self.c = c def generate_stuff(self): return self.a+10*self.b+100*self.c
class Innerclass: def __init__(self, a, b, c): self.a = a self.b = b self.c = c def generate_stuff(self): return self.a + 10 * self.b + 100 * self.c
def for_pentagon(): for row in range(10): for col in range(9): if (row==9) or (row>4 and (col==0 or col==8)) or (row+col==4 or col-row==4): print("*",end=" ") else: print(end=" ") print() def while_pentagon(): row=0 while row<10: col=0 while col<9: if (row==9) or (row>4 and (col==0 or col==8)) or (row+col==4 or col-row==4): print("*",end=" ") else: print(end=" ") col+=1 row+=1 print()
def for_pentagon(): for row in range(10): for col in range(9): if row == 9 or (row > 4 and (col == 0 or col == 8)) or (row + col == 4 or col - row == 4): print('*', end=' ') else: print(end=' ') print() def while_pentagon(): row = 0 while row < 10: col = 0 while col < 9: if row == 9 or (row > 4 and (col == 0 or col == 8)) or (row + col == 4 or col - row == 4): print('*', end=' ') else: print(end=' ') col += 1 row += 1 print()
""" -------------------------------------------------------------------------------- Description: Generates a statistical report for genetic circuit scoring Written by W.R. Jackson, Ben Bremer, Eric South -------------------------------------------------------------------------------- """
""" -------------------------------------------------------------------------------- Description: Generates a statistical report for genetic circuit scoring Written by W.R. Jackson, Ben Bremer, Eric South -------------------------------------------------------------------------------- """